Files | |
file | axis2_handler.h |
Typedefs | |
typedef struct axis2_handler | axis2_handler_t |
typedef axis2_status_t(* | AXIS2_HANDLER_INVOKE )(axis2_handler_t *handler, const axutil_env_t *env, struct axis2_msg_ctx *msg_ctx) |
typedef axis2_handler_t *(* | AXIS2_HANDLER_CREATE_FUNC )(const axutil_env_t *env, const axutil_string_t *name) |
Functions | |
AXIS2_EXTERN void | axis2_handler_free (axis2_handler_t *handler, const axutil_env_t *env) |
AXIS2_EXTERN axis2_status_t | axis2_handler_init (axis2_handler_t *handler, const axutil_env_t *env, struct axis2_handler_desc *handler_desc) |
AXIS2_EXTERN axis2_status_t | axis2_handler_invoke (axis2_handler_t *handler, const axutil_env_t *env, struct axis2_msg_ctx *msg_ctx) |
AXIS2_EXTERN const axutil_string_t * | axis2_handler_get_name (const axis2_handler_t *handler, const axutil_env_t *env) |
AXIS2_EXTERN axutil_param_t * | axis2_handler_get_param (const axis2_handler_t *handler, const axutil_env_t *env, const axis2_char_t *name) |
AXIS2_EXTERN struct axis2_handler_desc * | axis2_handler_get_handler_desc (const axis2_handler_t *handler, const axutil_env_t *env) |
AXIS2_EXTERN axis2_status_t | axis2_handler_set_invoke (axis2_handler_t *handler, const axutil_env_t *env, AXIS2_HANDLER_INVOKE func) |
AXIS2_EXTERN axis2_handler_t * | axis2_handler_create (const axutil_env_t *env) |
AXIS2_EXTERN axis2_handler_t * | axis2_ctx_handler_create (const axutil_env_t *env, const axutil_string_t *qname) |
typedef axis2_handler_t*( * AXIS2_HANDLER_CREATE_FUNC)(const axutil_env_t *env, const axutil_string_t *name) |
Function pointer defining the creates syntax for a handler struct instance.
env | pointer to environment struct | |
pointer | to qname |
typedef struct axis2_handler axis2_handler_t |
Type name for struct axis2_handler
AXIS2_EXTERN axis2_handler_t* axis2_ctx_handler_create | ( | const axutil_env_t * | env, | |
const axutil_string_t * | qname | |||
) |
Creates a handler with invoke method implemented to fill in the service and operation context information.
env | pointer to environment struct | |
qname | pointer to qname, this is cloned within create method |
AXIS2_EXTERN axis2_handler_t* axis2_handler_create | ( | const axutil_env_t * | env | ) |
Creates handler struct instance.
env | pointer to environment struct |
AXIS2_EXTERN void axis2_handler_free | ( | axis2_handler_t * | handler, | |
const axutil_env_t * | env | |||
) |
Free handler struct.
handler | pointer to handler | |
env | pointer to environment struct |
AXIS2_EXTERN struct axis2_handler_desc* axis2_handler_get_handler_desc | ( | const axis2_handler_t * | handler, | |
const axutil_env_t * | env | |||
) | [read] |
Gets the handler description related to the handler.
handler | pointer to handler | |
env | pointer to environment struct |
AXIS2_EXTERN const axutil_string_t* axis2_handler_get_name | ( | const axis2_handler_t * | handler, | |
const axutil_env_t * | env | |||
) |
Gets QName.
handler | pointer to handler | |
env | pointer to environment struct |
AXIS2_EXTERN axutil_param_t* axis2_handler_get_param | ( | const axis2_handler_t * | handler, | |
const axutil_env_t * | env, | |||
const axis2_char_t * | name | |||
) |
Gets the named parameter.
handler | pointer to handler | |
env | pointer to environment struct | |
name | name of the parameter to be accessed |
AXIS2_EXTERN axis2_status_t axis2_handler_init | ( | axis2_handler_t * | handler, | |
const axutil_env_t * | env, | |||
struct axis2_handler_desc * | handler_desc | |||
) |
Initializes the handler with the information form handler description.
handler | pointer to handler | |
env | pointer to environment struct | |
handler_desc | pointer to handler description related to the handler |
AXIS2_EXTERN axis2_status_t axis2_handler_invoke | ( | axis2_handler_t * | handler, | |
const axutil_env_t * | env, | |||
struct axis2_msg_ctx * | msg_ctx | |||
) |
Invoke is called to do the actual work assigned to the handler. The phase that owns the handler is responsible for calling invoke on top of the handler. Those structs that implement the interface of the handler should implement the logic for invoke and assign the respective function pointer to invoke operation of the ops struct.
handler | pointer to handler | |
env | pointer to environment struct | |
msg_ctx | pointer to message context |