blob: 405c4703bf5cfa113b0b4151941ead328269f25e [file] [log] [blame]
/*
* Copyright 2004,2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <axis2_conf_ctx.h>
#include <axis2_svc_grp.h>
#include <axis2.h>
#include <axis2_uuid_gen.h>
typedef struct axis2_conf_ctx_impl
{
/** configuration context interface struct */
axis2_conf_ctx_t conf_ctx;
/** base context struct */
axis2_ctx_t *base;
/** engine configuration */
axis2_conf_t *conf;
/** root dir */
/* should be handled as a URL string ? */
axis2_char_t *root_dir;
/**
* axis2_hash_t *containing <code>MessageID</code> to
* <code>OperationContext</code> mapping.
*/
axis2_hash_t *op_ctx_map;
axis2_hash_t *svc_ctx_map;
axis2_hash_t *svc_grp_ctx_map;
/* Mutex to syncronize the read/write operations */
axis2_thread_mutex_t *mutex;
} axis2_conf_ctx_impl_t;
/** Interface to implementation conversion macro */
#define AXIS2_INTF_TO_IMPL(conf_ctx) ((axis2_conf_ctx_impl_t *)conf_ctx)
axis2_status_t AXIS2_CALL axis2_conf_ctx_set_conf(struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env,
axis2_conf_t *conf);
axis2_ctx_t* AXIS2_CALL axis2_conf_ctx_get_base(struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env);
axis2_conf_t* AXIS2_CALL axis2_conf_ctx_get_conf(struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env);
axis2_hash_t* AXIS2_CALL axis2_conf_ctx_get_op_ctx_map(struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env);
axis2_hash_t* AXIS2_CALL axis2_conf_ctx_get_svc_ctx_map(struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env);
axis2_hash_t* AXIS2_CALL axis2_conf_ctx_get_svc_grp_ctx_map(struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env);
axis2_status_t AXIS2_CALL axis2_conf_ctx_register_op_ctx(struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env,
axis2_char_t *message_id,
axis2_op_ctx_t *op_ctx);
axis2_op_ctx_t* AXIS2_CALL axis2_conf_ctx_get_op_ctx(struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env,
axis2_char_t *message_id);
axis2_status_t AXIS2_CALL axis2_conf_ctx_register_svc_ctx(struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env,
axis2_char_t *svc_id,
axis2_svc_ctx_t *svc_ctx);
axis2_svc_ctx_t* AXIS2_CALL axis2_conf_ctx_get_svc_ctx(struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env,
axis2_char_t *svc_id);
axis2_status_t AXIS2_CALL axis2_conf_ctx_register_svc_grp_ctx(struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env,
axis2_char_t *svc_grp_id,
axis2_svc_grp_ctx_t *svc_grp_ctx);
axis2_svc_grp_ctx_t* AXIS2_CALL axis2_conf_ctx_get_svc_grp_ctx(struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env,
axis2_char_t *svc_grp_id);
axis2_char_t* AXIS2_CALL axis2_conf_ctx_get_root_dir(struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env);
axis2_status_t AXIS2_CALL axis2_conf_ctx_set_root_dir(struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env,
axis2_char_t *path);
axis2_status_t AXIS2_CALL axis2_conf_ctx_init(struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env,
axis2_conf_t *conf);
axis2_status_t AXIS2_CALL axis2_conf_ctx_free(struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env);
axis2_svc_grp_ctx_t* AXIS2_CALL axis2_conf_ctx_fill_ctxs(struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env,
axis2_msg_ctx_t *msg_ctx);
AXIS2_DECLARE(axis2_conf_ctx_t*)
axis2_conf_ctx_create(axis2_env_t **env, axis2_conf_t *conf)
{
axis2_conf_ctx_impl_t *conf_ctx_impl = NULL;
AXIS2_ENV_CHECK(env, NULL);
conf_ctx_impl = AXIS2_MALLOC( (*env)->allocator, sizeof(axis2_conf_ctx_impl_t) );
if (!conf_ctx_impl)
{
AXIS2_ERROR_SET((*env)->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
return NULL;
}
conf_ctx_impl->conf_ctx.ops = NULL;
conf_ctx_impl->base = NULL;
conf_ctx_impl->conf = NULL;
conf_ctx_impl->root_dir = NULL;
conf_ctx_impl->op_ctx_map = NULL;
conf_ctx_impl->svc_ctx_map = NULL;
conf_ctx_impl->svc_grp_ctx_map = NULL;
conf_ctx_impl->mutex = axis2_thread_mutex_create((*env)->allocator,
AXIS2_THREAD_MUTEX_DEFAULT);
if(NULL == conf_ctx_impl->mutex)
{
axis2_conf_ctx_free(&(conf_ctx_impl->conf_ctx), env);
return NULL;
}
if (conf)
conf_ctx_impl->conf = conf;
conf_ctx_impl->base = axis2_ctx_create(env);
if (!(conf_ctx_impl->base))
{
axis2_conf_ctx_free(&(conf_ctx_impl->conf_ctx), env);
return NULL;
}
conf_ctx_impl->op_ctx_map = axis2_hash_make(env);
if (!(conf_ctx_impl->op_ctx_map))
{
axis2_conf_ctx_free(&(conf_ctx_impl->conf_ctx), env);
return NULL;
}
conf_ctx_impl->svc_ctx_map = axis2_hash_make(env);
if (!(conf_ctx_impl->svc_ctx_map))
{
axis2_conf_ctx_free(&(conf_ctx_impl->conf_ctx), env);
return NULL;
}
conf_ctx_impl->svc_grp_ctx_map = axis2_hash_make(env);
if (!(conf_ctx_impl->svc_grp_ctx_map))
{
axis2_conf_ctx_free(&(conf_ctx_impl->conf_ctx), env);
return NULL;
}
/* initialize ops */
conf_ctx_impl->conf_ctx.ops = AXIS2_MALLOC( (*env)->allocator, sizeof(axis2_conf_ctx_ops_t) );
if (!conf_ctx_impl->conf_ctx.ops)
{
AXIS2_ERROR_SET((*env)->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
axis2_conf_ctx_free(&(conf_ctx_impl->conf_ctx), env);
return NULL;
}
conf_ctx_impl->conf_ctx.ops->free = axis2_conf_ctx_free;
conf_ctx_impl->conf_ctx.ops->set_conf = axis2_conf_ctx_set_conf;
conf_ctx_impl->conf_ctx.ops->get_base = axis2_conf_ctx_get_base;
conf_ctx_impl->conf_ctx.ops->get_conf = axis2_conf_ctx_get_conf;
conf_ctx_impl->conf_ctx.ops->get_op_ctx_map = axis2_conf_ctx_get_op_ctx_map;
conf_ctx_impl->conf_ctx.ops->get_svc_ctx_map = axis2_conf_ctx_get_svc_ctx_map;
conf_ctx_impl->conf_ctx.ops->get_svc_grp_ctx_map = axis2_conf_ctx_get_svc_grp_ctx_map;
conf_ctx_impl->conf_ctx.ops->register_op_ctx = axis2_conf_ctx_register_op_ctx;
conf_ctx_impl->conf_ctx.ops->get_op_ctx = axis2_conf_ctx_get_op_ctx;
conf_ctx_impl->conf_ctx.ops->register_svc_ctx = axis2_conf_ctx_register_svc_ctx;
conf_ctx_impl->conf_ctx.ops->get_svc_ctx = axis2_conf_ctx_get_svc_ctx;
conf_ctx_impl->conf_ctx.ops->register_svc_grp_ctx = axis2_conf_ctx_register_svc_grp_ctx;
conf_ctx_impl->conf_ctx.ops->get_svc_grp_ctx = axis2_conf_ctx_get_svc_grp_ctx;
conf_ctx_impl->conf_ctx.ops->get_root_dir = axis2_conf_ctx_get_root_dir;
conf_ctx_impl->conf_ctx.ops->set_root_dir = axis2_conf_ctx_set_root_dir;
conf_ctx_impl->conf_ctx.ops->init = axis2_conf_ctx_init;
conf_ctx_impl->conf_ctx.ops->free = axis2_conf_ctx_free;
conf_ctx_impl->conf_ctx.ops->fill_ctxs = axis2_conf_ctx_fill_ctxs;
return &(conf_ctx_impl->conf_ctx);
}
axis2_status_t AXIS2_CALL axis2_conf_ctx_set_conf(struct axis2_conf_ctx *conf_ctx, axis2_env_t **env, axis2_conf_t *conf)
{
AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
AXIS2_INTF_TO_IMPL(conf_ctx)->conf = conf; /* we just maitain a shalow copy here */
return AXIS2_SUCCESS;
}
axis2_ctx_t* AXIS2_CALL axis2_conf_ctx_get_base(struct axis2_conf_ctx *conf_ctx, axis2_env_t **env)
{
AXIS2_ENV_CHECK(env, NULL);
return AXIS2_INTF_TO_IMPL(conf_ctx)->base;
}
axis2_conf_t* AXIS2_CALL axis2_conf_ctx_get_conf(struct axis2_conf_ctx *conf_ctx, axis2_env_t **env)
{
AXIS2_ENV_CHECK(env, NULL);
return AXIS2_INTF_TO_IMPL(conf_ctx)->conf;
}
axis2_hash_t* AXIS2_CALL axis2_conf_ctx_get_op_ctx_map(struct axis2_conf_ctx *conf_ctx, axis2_env_t **env)
{
AXIS2_ENV_CHECK(env, NULL);
return AXIS2_INTF_TO_IMPL(conf_ctx)->op_ctx_map;
}
axis2_hash_t* AXIS2_CALL axis2_conf_ctx_get_svc_ctx_map(struct axis2_conf_ctx *conf_ctx, axis2_env_t **env)
{
AXIS2_ENV_CHECK(env, NULL);
return AXIS2_INTF_TO_IMPL(conf_ctx)->svc_ctx_map;
}
axis2_hash_t* AXIS2_CALL axis2_conf_ctx_get_svc_grp_ctx_map(struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env)
{
AXIS2_ENV_CHECK(env, NULL);
return AXIS2_INTF_TO_IMPL(conf_ctx)->svc_grp_ctx_map;
}
axis2_status_t AXIS2_CALL axis2_conf_ctx_register_op_ctx(struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env,
axis2_char_t *message_id,
axis2_op_ctx_t *op_ctx)
{
axis2_conf_ctx_impl_t *conf_ctx_impl = NULL;
AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
conf_ctx_impl = AXIS2_INTF_TO_IMPL(conf_ctx);
axis2_thread_mutex_lock(conf_ctx_impl->mutex);
if (conf_ctx_impl->op_ctx_map)
{
axis2_hash_set(conf_ctx_impl->op_ctx_map, message_id, AXIS2_HASH_KEY_STRING, op_ctx);
}
axis2_thread_mutex_unlock(conf_ctx_impl->mutex);
return AXIS2_SUCCESS;
}
axis2_op_ctx_t* AXIS2_CALL axis2_conf_ctx_get_op_ctx(struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env,
axis2_char_t *message_id)
{
axis2_conf_ctx_impl_t *conf_ctx_impl = NULL;
AXIS2_ENV_CHECK(env, NULL);
conf_ctx_impl = AXIS2_INTF_TO_IMPL(conf_ctx);
axis2_thread_mutex_lock(conf_ctx_impl->mutex);
if (conf_ctx_impl->op_ctx_map)
{
axis2_op_ctx_t *rv = NULL;
rv = (axis2_op_ctx_t*)axis2_hash_get(conf_ctx_impl->op_ctx_map,
message_id, AXIS2_HASH_KEY_STRING);
axis2_thread_mutex_unlock(conf_ctx_impl->mutex);
return rv;
}
axis2_thread_mutex_unlock(conf_ctx_impl->mutex);
return NULL;
}
axis2_status_t AXIS2_CALL axis2_conf_ctx_register_svc_ctx(struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env,
axis2_char_t *svc_id,
axis2_svc_ctx_t *svc_ctx)
{
axis2_conf_ctx_impl_t *conf_ctx_impl = NULL;
AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
conf_ctx_impl = AXIS2_INTF_TO_IMPL(conf_ctx);
axis2_thread_mutex_lock(conf_ctx_impl->mutex);
if (conf_ctx_impl->svc_ctx_map)
{
axis2_hash_set(conf_ctx_impl->svc_ctx_map, svc_id, AXIS2_HASH_KEY_STRING, svc_ctx);
}
axis2_thread_mutex_unlock(conf_ctx_impl->mutex);
return AXIS2_SUCCESS;
}
axis2_svc_ctx_t* AXIS2_CALL axis2_conf_ctx_get_svc_ctx(struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env,
axis2_char_t *svc_id)
{
axis2_conf_ctx_impl_t *conf_ctx_impl = NULL;
AXIS2_ENV_CHECK(env, NULL);
conf_ctx_impl = AXIS2_INTF_TO_IMPL(conf_ctx);
axis2_thread_mutex_lock(conf_ctx_impl->mutex);
if (conf_ctx_impl->svc_ctx_map)
{
axis2_svc_ctx_t *rv = NULL;
rv = (axis2_svc_ctx_t*)axis2_hash_get(conf_ctx_impl->svc_ctx_map,
svc_id, AXIS2_HASH_KEY_STRING);
axis2_thread_mutex_unlock(conf_ctx_impl->mutex);
return rv;
}
axis2_thread_mutex_unlock(conf_ctx_impl->mutex);
return NULL;
}
axis2_status_t AXIS2_CALL axis2_conf_ctx_register_svc_grp_ctx(struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env,
axis2_char_t *svc_grp_id,
axis2_svc_grp_ctx_t *svc_grp_ctx)
{
axis2_conf_ctx_impl_t *conf_ctx_impl = NULL;
AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
conf_ctx_impl = AXIS2_INTF_TO_IMPL(conf_ctx);
axis2_thread_mutex_lock(conf_ctx_impl->mutex);
if (conf_ctx_impl->svc_grp_ctx_map)
{
axis2_hash_set(conf_ctx_impl->svc_grp_ctx_map, svc_grp_id, AXIS2_HASH_KEY_STRING, svc_grp_ctx);
}
axis2_thread_mutex_unlock(conf_ctx_impl->mutex);
return AXIS2_SUCCESS;
}
axis2_svc_grp_ctx_t* AXIS2_CALL axis2_conf_ctx_get_svc_grp_ctx(struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env,
axis2_char_t *svc_grp_id)
{
axis2_conf_ctx_impl_t *conf_ctx_impl = NULL;
AXIS2_ENV_CHECK(env, NULL);
conf_ctx_impl = AXIS2_INTF_TO_IMPL(conf_ctx);
axis2_thread_mutex_lock(conf_ctx_impl->mutex);
if (conf_ctx_impl->svc_grp_ctx_map)
{
axis2_svc_grp_ctx_t *rv = NULL;
rv = (axis2_svc_grp_ctx_t*)axis2_hash_get(conf_ctx_impl->svc_grp_ctx_map
, svc_grp_id, AXIS2_HASH_KEY_STRING);
axis2_thread_mutex_unlock(conf_ctx_impl->mutex);
return rv;
}
axis2_thread_mutex_unlock(conf_ctx_impl->mutex);
return NULL;
}
axis2_char_t* AXIS2_CALL axis2_conf_ctx_get_root_dir(struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env)
{
axis2_char_t *rv = NULL;
axis2_conf_ctx_impl_t *conf_ctx_impl = NULL;
AXIS2_ENV_CHECK(env, NULL);
conf_ctx_impl = AXIS2_INTF_TO_IMPL(conf_ctx);
axis2_thread_mutex_lock(conf_ctx_impl->mutex);
rv = AXIS2_INTF_TO_IMPL(conf_ctx)->root_dir;
axis2_thread_mutex_unlock(conf_ctx_impl->mutex);
return rv;
}
axis2_status_t AXIS2_CALL axis2_conf_ctx_set_root_dir(struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env,
axis2_char_t *path)
{
axis2_conf_ctx_impl_t *conf_ctx_impl = NULL;
AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
conf_ctx_impl = AXIS2_INTF_TO_IMPL(conf_ctx);
axis2_thread_mutex_lock(conf_ctx_impl->mutex);
if (conf_ctx_impl->root_dir)
{
AXIS2_FREE((*env)->allocator, conf_ctx_impl->root_dir);
conf_ctx_impl->root_dir = NULL;
}
if (path)
{
conf_ctx_impl->root_dir = AXIS2_STRDUP(path, env);
if (!(conf_ctx_impl->root_dir))
{
AXIS2_ERROR_SET((*env)->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
axis2_thread_mutex_unlock(conf_ctx_impl->mutex);
return AXIS2_FAILURE;
}
}
axis2_thread_mutex_unlock(conf_ctx_impl->mutex);
return AXIS2_SUCCESS;
}
axis2_status_t AXIS2_CALL axis2_conf_ctx_init(struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env,
axis2_conf_t *conf)
{
axis2_conf_ctx_impl_t *conf_ctx_impl = NULL;
axis2_hash_index_t *hi = NULL;
void* ctx = NULL;
AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
conf_ctx_impl = AXIS2_INTF_TO_IMPL(conf_ctx);
axis2_thread_mutex_lock(conf_ctx_impl->mutex);
conf_ctx_impl->conf = conf;
for (hi = axis2_hash_first (conf_ctx_impl->op_ctx_map, env);
hi; hi = axis2_hash_next (env, hi))
{
axis2_hash_this (hi, NULL, NULL, &ctx);
if (ctx)
{
axis2_op_ctx_t *op_ctx = (axis2_op_ctx_t*) ctx;
AXIS2_OP_CTX_INIT(op_ctx, env, conf);
}
}
for (hi = axis2_hash_first (conf_ctx_impl->svc_ctx_map, env);
hi; hi = axis2_hash_next (env, hi))
{
axis2_hash_this (hi, NULL, NULL, &ctx);
if (ctx)
{
axis2_svc_ctx_t *svc_ctx = (axis2_svc_ctx_t*) ctx;
AXIS2_SVC_CTX_INIT(svc_ctx, env, conf);
}
}
for (hi = axis2_hash_first (conf_ctx_impl->svc_grp_ctx_map, env);
hi; hi = axis2_hash_next (env, hi))
{
axis2_hash_this (hi, NULL, NULL, &ctx);
if (ctx)
{
axis2_svc_grp_ctx_t *svc_grp_ctx = (axis2_svc_grp_ctx_t*) ctx;
AXIS2_SVC_GRP_CTX_INIT(svc_grp_ctx, env, conf);
}
}
axis2_thread_mutex_unlock(conf_ctx_impl->mutex);
return AXIS2_SUCCESS;
}
axis2_status_t AXIS2_CALL axis2_conf_ctx_free (struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env)
{
axis2_conf_ctx_impl_t *conf_ctx_impl = NULL;
AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
conf_ctx_impl = AXIS2_INTF_TO_IMPL(conf_ctx);
if (conf_ctx_impl->conf_ctx.ops)
{
AXIS2_FREE((*env)->allocator, conf_ctx_impl->conf_ctx.ops);
conf_ctx_impl->conf_ctx.ops = NULL;
}
if (conf_ctx_impl->base)
{
AXIS2_CTX_FREE(conf_ctx_impl->base, env);
conf_ctx_impl->base = NULL;
}
if (conf_ctx_impl->op_ctx_map)
{
axis2_hash_free(conf_ctx_impl->op_ctx_map, env);
conf_ctx_impl->op_ctx_map = NULL;
}
if (conf_ctx_impl->svc_ctx_map)
{
axis2_hash_free(conf_ctx_impl->svc_ctx_map, env);
conf_ctx_impl->svc_ctx_map = NULL;
}
if (conf_ctx_impl->svc_grp_ctx_map)
{
axis2_hash_free(conf_ctx_impl->svc_grp_ctx_map, env);
conf_ctx_impl->svc_grp_ctx_map = NULL;
}
AXIS2_FREE((*env)->allocator, conf_ctx_impl);
conf_ctx_impl = NULL;
return AXIS2_SUCCESS;
}
axis2_svc_grp_ctx_t* AXIS2_CALL axis2_conf_ctx_fill_ctxs(struct axis2_conf_ctx *conf_ctx,
axis2_env_t **env,
axis2_msg_ctx_t *msg_ctx)
{
axis2_conf_ctx_impl_t *conf_ctx_impl = NULL;
axis2_char_t *svc_grp_ctx_id = NULL;
axis2_svc_grp_ctx_t *svc_grp_ctx = NULL;
axis2_svc_ctx_t *svc_ctx = NULL;
axis2_svc_t *svc = NULL;
axis2_qname_t *qname = NULL;
axis2_char_t *svc_id = NULL;
axis2_op_ctx_t *op_ctx = NULL;
AXIS2_ENV_CHECK(env, NULL);
conf_ctx_impl = AXIS2_INTF_TO_IMPL(conf_ctx);
AXIS2_PARAM_CHECK((*env)->error, msg_ctx, NULL);
svc = AXIS2_MSG_CTX_GET_SVC(msg_ctx, env);
if (!svc)
{
AXIS2_ERROR_SET((*env)->error, AXIS2_ERROR_SERVICE_NOT_YET_FOUND, AXIS2_FAILURE);
return NULL;
}
qname = AXIS2_SVC_GET_QNAME(svc, env);
if (!qname)
{
AXIS2_ERROR_SET((*env)->error, AXIS2_ERROR_INVALID_STATE_SVC, AXIS2_FAILURE);
return NULL;
}
svc_id = AXIS2_QNAME_GET_LOCALPART(qname, env);
if (!svc_id)
{
AXIS2_ERROR_SET((*env)->error, AXIS2_ERROR_INVALID_STATE_SVC, AXIS2_FAILURE);
return NULL;
}
svc_grp_ctx_id = AXIS2_MSG_CTX_GET_SVC_GRP_CTX_ID(msg_ctx, env);
/* by this time service group context id must have a value,
either from transport or from addressing */
if (svc_grp_ctx_id)
{
svc_grp_ctx = (axis2_svc_grp_ctx_t*) axis2_hash_get(conf_ctx_impl->svc_grp_ctx_map,
svc_grp_ctx_id, AXIS2_HASH_KEY_STRING);
if (svc_grp_ctx)
{
svc_ctx = AXIS2_SVC_GRP_CTX_GET_SVC_CTX(svc_grp_ctx, env, svc_id);
if (!svc_ctx)
{
AXIS2_ERROR_SET((*env)->error, AXIS2_ERROR_INVALID_STATE_SVC_GRP, AXIS2_FAILURE);
return NULL;
}
}
}
if (!svc_grp_ctx_id)
{
svc_grp_ctx_id = axis2_uuid_gen(env);
AXIS2_MSG_CTX_SET_SVC_GRP_CTX_ID(msg_ctx, env, svc_grp_ctx_id);
}
if (!svc_grp_ctx)
{
axis2_svc_grp_t *svc_grp = NULL;
svc_grp = AXIS2_SVC_GET_PARENT(svc, env);
svc_grp_ctx = AXIS2_SVC_GRP_GET_SVC_GRP_CTX(svc_grp, env, conf_ctx);
svc_ctx = AXIS2_SVC_GRP_CTX_GET_SVC_CTX(svc_grp_ctx, env, svc_id);
if (!svc_ctx)
{
AXIS2_ERROR_SET((*env)->error, AXIS2_ERROR_INVALID_STATE_SVC_GRP, AXIS2_FAILURE);
return NULL;
}
AXIS2_SVC_GRP_CTX_SET_ID(svc_grp_ctx, env, svc_grp_ctx_id);
axis2_conf_ctx_register_svc_grp_ctx(conf_ctx, env, svc_grp_ctx_id, svc_grp_ctx);
}
/* when you come here op context MUST already been assigned to the message context */
op_ctx = AXIS2_MSG_CTX_GET_OP_CTX(msg_ctx, env);
if (!op_ctx)
{
AXIS2_ERROR_SET((*env)->error, AXIS2_ERROR_INVALID_STATE_MSG_CTX, AXIS2_FAILURE);
return NULL;
}
AXIS2_OP_CTX_SET_PARENT(op_ctx, env, svc_ctx);
AXIS2_MSG_CTX_SET_SVC_CTX(msg_ctx, env, svc_ctx);
AXIS2_MSG_CTX_SET_SVC_GRP_CTX(msg_ctx, env, svc_grp_ctx);
return svc_grp_ctx;
}