blob: 5f5995ff3ffd8e2d797f492ece0b645b0b44fb1d [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 <xml_schema/axis2_xml_schema_enum.h>
#include <axis2_hash.h>
typedef struct axis2_xml_schema_enum_impl
axis2_xml_schema_enum_impl_t;
/**
* @brief Xml Schema Enum Impl
* Axis2 Xml Schema Enum
*/
struct axis2_xml_schema_enum_impl
{
axis2_xml_schema_enum_t schema_enum;
axis2_xml_schema_types_t obj_type;
axis2_hash_t *super;
axis2_array_list_t *values;
axis2_char_t *value;
};
#define AXIS2_INTF_TO_IMPL(schema_enum) \
((axis2_xml_schema_enum_impl_t *) schema_enum)
axis2_status_t AXIS2_CALL
axis2_xml_schema_enum_free(
void *schema_enum,
axis2_env_t **env);
axis2_hash_t *AXIS2_CALL
axis2_xml_schema_enum_super_objs(
void *schema_enum,
axis2_env_t **env);
axis2_xml_schema_types_t AXIS2_CALL
axis2_xml_schema_enum_type(
void *schema_enum,
axis2_env_t **env);
axis2_char_t * AXIS2_CALL
axis2_xml_schema_enum_get_value(void *schema_enum,
axis2_env_t **env);
axis2_status_t AXIS2_CALL
axis2_xml_schema_enum_set_value(void *schema_enum,
axis2_env_t **env,
axis2_char_t *value);
axis2_bool_t AXIS2_CALL
axis2_xml_schema_enum_equals(void *schema_enum,
axis2_env_t **env,
void *obj);
axis2_array_list_t *AXIS2_CALL
axis2_xml_schema_enum_get_values(void *schema_enum,
axis2_env_t **env);
AXIS2_DECLARE(axis2_xml_schema_enum_t *)
axis2_xml_schema_enum_create(axis2_env_t **env,
axis2_char_t *value)
{
axis2_xml_schema_enum_impl_t *schema_enum_impl = NULL;
schema_enum_impl = AXIS2_MALLOC((*env)->allocator,
sizeof(axis2_xml_schema_enum_impl_t));
if(!schema_enum_impl)
{
AXIS2_ERROR_SET((*env)->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
return NULL;
}
schema_enum_impl->obj_type = AXIS2_XML_SCHEMA_ENUM;
schema_enum_impl->super = NULL;
schema_enum_impl->values = NULL;
schema_enum_impl->value = NULL;
schema_enum_impl->schema_enum.ops = NULL;
schema_enum_impl->schema_enum.ops = AXIS2_MALLOC((*env)->allocator,
sizeof(axis2_xml_schema_enum_ops_t));
if(!(schema_enum_impl->schema_enum.ops))
{
AXIS2_FREE((*env)->allocator, schema_enum_impl);
AXIS2_ERROR_SET((*env)->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
return NULL;
}
axis2_xml_schema_enum_set_value(&(schema_enum_impl->schema_enum),
env, value);
schema_enum_impl->schema_enum.ops->free =
axis2_xml_schema_enum_free;
schema_enum_impl->schema_enum.ops->super_objs =
axis2_xml_schema_enum_super_objs;
schema_enum_impl->schema_enum.ops->type =
axis2_xml_schema_enum_type;
schema_enum_impl->schema_enum.ops->get_value =
axis2_xml_schema_enum_get_value;
schema_enum_impl->schema_enum.ops->set_value =
axis2_xml_schema_enum_set_value;
schema_enum_impl->schema_enum.ops->equals =
axis2_xml_schema_enum_equals;
schema_enum_impl->schema_enum.ops->get_values =
axis2_xml_schema_enum_get_values;
schema_enum_impl->super = axis2_hash_make(env);
if(!schema_enum_impl->super)
{
axis2_xml_schema_enum_free(&(schema_enum_impl->schema_enum), env);
AXIS2_ERROR_SET((*env)->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
return NULL;
}
axis2_hash_set(schema_enum_impl->super, "AXIS2_XML_SCHEMA_ENUM",
AXIS2_HASH_KEY_STRING, &(schema_enum_impl->schema_enum));
return &(schema_enum_impl->schema_enum);
}
axis2_status_t AXIS2_CALL
axis2_xml_schema_enum_free(void *schema_enum,
axis2_env_t **env)
{
axis2_xml_schema_enum_impl_t *schema_enum_impl = NULL;
schema_enum_impl = AXIS2_INTF_TO_IMPL(schema_enum);
if(NULL != schema_enum_impl->value)
{
AXIS2_FREE((*env)->allocator, schema_enum_impl->value);
schema_enum_impl->value = NULL;
}
if(NULL != schema_enum_impl->values)
{
AXIS2_ARRAY_LIST_FREE(schema_enum_impl->values, env);
schema_enum_impl->values = NULL;
}
if(NULL != schema_enum_impl->super)
{
axis2_hash_free(schema_enum_impl->super, env);
schema_enum_impl->super = NULL;
}
if(NULL != (&(schema_enum_impl->schema_enum))->ops)
{
AXIS2_FREE((*env)->allocator, ((&(schema_enum_impl->schema_enum))->ops));
(&(schema_enum_impl->schema_enum))->ops = NULL;
}
if(NULL != schema_enum_impl)
{
AXIS2_FREE((*env)->allocator, (schema_enum_impl));
schema_enum_impl = NULL;
}
return AXIS2_SUCCESS;
}
axis2_hash_t *AXIS2_CALL
axis2_xml_schema_enum_super_objs(
void *schema_enum,
axis2_env_t **env)
{
axis2_xml_schema_enum_impl_t *schema_enum_impl = NULL;
AXIS2_ENV_CHECK(env, NULL);
schema_enum_impl = AXIS2_INTF_TO_IMPL(schema_enum);
return schema_enum_impl->super;
}
axis2_xml_schema_types_t AXIS2_CALL
axis2_xml_schema_enum_type(
void *schema_enum,
axis2_env_t **env)
{
axis2_xml_schema_enum_impl_t *schema_enum_impl = NULL;
AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
schema_enum_impl = AXIS2_INTF_TO_IMPL(schema_enum);
return schema_enum_impl->obj_type;
}
AXIS2_DECLARE(axis2_status_t)
axis2_xml_schema_enum_resolve_methods(
axis2_xml_schema_enum_t *schema_enum,
axis2_env_t **env,
axis2_xml_schema_enum_t *schema_enum_impl,
axis2_hash_t *methods)
{
axis2_xml_schema_enum_impl_t *schema_enum_impl_l = NULL;
AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
AXIS2_PARAM_CHECK((*env)->error, schema_enum_impl, AXIS2_FAILURE);
AXIS2_PARAM_CHECK((*env)->error, methods, AXIS2_FAILURE);
schema_enum_impl_l = (axis2_xml_schema_enum_impl_t *) schema_enum_impl;
schema_enum->ops = AXIS2_MALLOC((*env)->allocator,
sizeof(axis2_xml_schema_enum_ops_t));
if(NULL != schema_enum->ops)
{
AXIS2_ERROR_SET((*env)->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
return AXIS2_FAILURE;
}
schema_enum->ops->free = axis2_hash_get(methods, "free",
AXIS2_HASH_KEY_STRING);
schema_enum->ops->super_objs = axis2_hash_get(methods, "super_objs",
AXIS2_HASH_KEY_STRING);
schema_enum->ops->type = axis2_hash_get(methods, "type",
AXIS2_HASH_KEY_STRING);
schema_enum->ops->get_value = axis2_hash_get(methods,
"get_value", AXIS2_HASH_KEY_STRING);
if(!schema_enum->ops->get_value)
schema_enum->ops->get_value =
schema_enum_impl_l->schema_enum.ops->get_value;
schema_enum->ops->set_value = axis2_hash_get(methods,
"set_value", AXIS2_HASH_KEY_STRING);
if(!schema_enum->ops->set_value)
schema_enum->ops->set_value =
schema_enum_impl_l->schema_enum.ops->set_value;
schema_enum->ops->equals = axis2_hash_get(methods,
"equals", AXIS2_HASH_KEY_STRING);
if(!schema_enum->ops->equals)
schema_enum->ops->equals =
schema_enum_impl_l->schema_enum.ops->equals;
schema_enum->ops->get_values = axis2_hash_get(methods,
"get_values", AXIS2_HASH_KEY_STRING);
if(!schema_enum->ops->get_values)
schema_enum->ops->get_values =
schema_enum_impl_l->schema_enum.ops->get_values;
return AXIS2_SUCCESS;
}
axis2_char_t * AXIS2_CALL
axis2_xml_schema_enum_get_value(void *schema_enum,
axis2_env_t **env)
{
axis2_xml_schema_enum_impl_t *schema_enum_impl = NULL;
axis2_hash_t *super = NULL;
super = AXIS2_XML_SCHEMA_ENUM_SUPER_OBJS(schema_enum, env);
schema_enum_impl = AXIS2_INTF_TO_IMPL(axis2_hash_get(super,
"AXIS2_XML_SCHEMA_ENUM", AXIS2_HASH_KEY_STRING));
return schema_enum_impl->value;
}
axis2_status_t AXIS2_CALL
axis2_xml_schema_enum_set_value(void *schema_enum,
axis2_env_t **env,
axis2_char_t *value)
{
axis2_xml_schema_enum_impl_t *schema_enum_impl = NULL;
axis2_hash_t *super = NULL;
super = AXIS2_XML_SCHEMA_ENUM_SUPER_OBJS(schema_enum, env);
schema_enum_impl = AXIS2_INTF_TO_IMPL(axis2_hash_get(super,
"AXIS2_XML_SCHEMA_ENUM", AXIS2_HASH_KEY_STRING));
if(NULL != schema_enum_impl->value)
{
AXIS2_FREE((*env)->allocator, (schema_enum_impl->value));
schema_enum_impl->value = NULL;
}
schema_enum_impl->value = AXIS2_STRDUP(value, env);
if(!schema_enum_impl->value)
{
AXIS2_ERROR_SET((*env)->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
return AXIS2_FAILURE;
}
return AXIS2_SUCCESS;
}
axis2_bool_t AXIS2_CALL
axis2_xml_schema_enum_equals(void *schema_enum,
axis2_env_t **env,
void *obj)
{
axis2_xml_schema_enum_impl_t *schema_enum_impl = NULL;
axis2_hash_t *super = NULL;
super = AXIS2_XML_SCHEMA_ENUM_SUPER_OBJS(schema_enum, env);
schema_enum_impl = AXIS2_INTF_TO_IMPL(axis2_hash_get(super,
"AXIS2_XML_SCHEMA_ENUM", AXIS2_HASH_KEY_STRING));
/** TODO */
return AXIS2_TRUE;
}
axis2_array_list_t *AXIS2_CALL
axis2_xml_schema_enum_get_values(void *schema_enum,
axis2_env_t **env)
{
axis2_xml_schema_enum_impl_t *schema_enum_impl = NULL;
axis2_hash_t *super = NULL;
super = AXIS2_XML_SCHEMA_ENUM_SUPER_OBJS(schema_enum, env);
schema_enum_impl = AXIS2_INTF_TO_IMPL(axis2_hash_get(super,
"AXIS2_XML_SCHEMA_ENUM", AXIS2_HASH_KEY_STRING));
return schema_enum_impl->values;
}
int AXIS2_CALL
axis2_xml_schema_enum_index(axis2_char_t *value,
axis2_env_t **env,
axis2_array_list_t *values)
{
int size = 0;
int i = 0;
AXIS2_ENV_CHECK(env, -1);
AXIS2_PARAM_CHECK((*env)->error, value, -1);
AXIS2_PARAM_CHECK((*env)->error, values, -1);
size = AXIS2_ARRAY_LIST_SIZE(values, env);
for(i =0; i <size; i++)
{
axis2_char_t *mem_val = NULL;
mem_val = (axis2_char_t *)AXIS2_ARRAY_LIST_GET(values, env, i);
if(NULL != mem_val && AXIS2_STRCMP(mem_val, value) == 0)
{
return i;
}
}
return -1;
}