From 0425aadc78680e53000fd0108b540d6eca048516 Mon Sep 17 00:00:00 2001 From: gmcdonald Date: Sat, 13 Feb 2010 01:32:03 +0000 Subject: Moving axis svn, part of TLP move INFRA-2441 git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@909681 13f79535-47bb-0310-9956-ffa450edef68 --- samples/server/mtom/Makefile.am | 9 ++ samples/server/mtom/mtom.c | 261 ++++++++++++++++++++++++++++++++++++ samples/server/mtom/mtom.h | 33 +++++ samples/server/mtom/mtom.mk | 8 ++ samples/server/mtom/mtom_skeleton.c | 166 +++++++++++++++++++++++ samples/server/mtom/services.xml | 12 ++ 6 files changed, 489 insertions(+) create mode 100644 samples/server/mtom/Makefile.am create mode 100644 samples/server/mtom/mtom.c create mode 100644 samples/server/mtom/mtom.h create mode 100644 samples/server/mtom/mtom.mk create mode 100644 samples/server/mtom/mtom_skeleton.c create mode 100644 samples/server/mtom/services.xml (limited to 'samples/server/mtom') diff --git a/samples/server/mtom/Makefile.am b/samples/server/mtom/Makefile.am new file mode 100644 index 0000000..198cad3 --- /dev/null +++ b/samples/server/mtom/Makefile.am @@ -0,0 +1,9 @@ +prglibdir=$(prefix)/services/mtom +prglib_LTLIBRARIES = libmtom.la +prglib_DATA= services.xml +EXTRA_DIST = services.xml mtom.mk mtom.h +noinst_HEADERS = mtom.h +SUBDIRS = +libmtom_la_SOURCES = mtom.c mtom_skeleton.c +libmtom_la_LIBADD = +INCLUDES = @AXIS2INC@ diff --git a/samples/server/mtom/mtom.c b/samples/server/mtom/mtom.c new file mode 100644 index 0000000..f00b68b --- /dev/null +++ b/samples/server/mtom/mtom.c @@ -0,0 +1,261 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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 "mtom.h" +#include +#include + +axiom_node_t *build_response1( + const axutil_env_t * env, + axis2_char_t * text); + +axiom_node_t *build_response2( + const axutil_env_t *env, + axiom_data_handler_t *data_handler); + +axiom_node_t* +axis2_mtom_mtom( + const axutil_env_t * env, + axiom_node_t * node, + axis2_msg_ctx_t *msg_ctx) +{ + axiom_node_t *file_name_node = NULL; + axiom_node_t *file_text_node = NULL; + axiom_node_t *ret_node = NULL; + + AXIS2_ENV_CHECK(env, NULL); + + /* Expected request format is :- + * + test.jpg + + + + + */ + if (!node) /* 'mtomSample' node */ + { + AXIS2_ERROR_SET(env->error, AXIS2_ERROR_SVC_SKEL_INPUT_OM_NODE_NULL, + AXIS2_FAILURE); + printf("Echo client ERROR: input parameter NULL\n"); + return NULL; + } + + file_name_node = axiom_node_get_first_child(node, env); + if (!file_name_node) /* 'text' node */ + { + AXIS2_ERROR_SET(env->error, + AXIS2_ERROR_SVC_SKEL_INVALID_XML_FORMAT_IN_REQUEST, + AXIS2_FAILURE); + printf("Echo client ERROR: invalid XML in request\n"); + return NULL; + } + + file_text_node = axiom_node_get_first_child(file_name_node, env); + if (!file_text_node) /* actual text to mtom */ + { + AXIS2_ERROR_SET(env->error, + AXIS2_ERROR_SVC_SKEL_INVALID_XML_FORMAT_IN_REQUEST, + AXIS2_FAILURE); + printf("Echo client ERROR: invalid XML in request\n"); + return NULL; + } + + if (axiom_node_get_node_type(file_text_node, env) == AXIOM_TEXT) + { + axiom_text_t *text = + (axiom_text_t *) axiom_node_get_data_element(file_text_node, env); + if (text && axiom_text_get_value(text, env)) + { + axiom_node_t *image_node = NULL; + axis2_char_t *text_str = + (axis2_char_t *) axiom_text_get_value(text, env); + printf("File Name %s \n", text_str); + + image_node = axiom_node_get_next_sibling(file_name_node, env); + if (image_node) + { + /* axiom_node_t *inc_node = NULL; + inc_node = axiom_node_get_first_child(image_node, env); + if (inc_node) + { */ + axiom_node_t *binary_node = NULL; + binary_node = axiom_node_get_first_child(image_node, env); + if (binary_node) + { + axiom_data_handler_t *data_handler = NULL; + axiom_text_t *bin_text = (axiom_text_t *) + axiom_node_get_data_element(binary_node, env); + data_handler = axiom_text_get_data_handler(bin_text, env); + if (data_handler && !axiom_data_handler_get_cached(data_handler, env)) + { + axiom_data_handler_t *data_handler_res = NULL; + axis2_byte_t *input_buff = NULL; + axis2_byte_t *buff = NULL; + size_t buff_len = 0; + + + axiom_data_handler_set_file_name(data_handler, env, + text_str); + axiom_data_handler_write_to(data_handler, env); + + input_buff = axiom_data_handler_get_input_stream(data_handler, env); + buff_len = axiom_data_handler_get_input_stream_len(data_handler, env); + + data_handler_res = axiom_data_handler_create(env, NULL, NULL); + + buff = AXIS2_MALLOC(env->allocator, sizeof(axis2_byte_t)*buff_len); + + if (!buff) + { + AXIS2_LOG_ERROR (env->log, AXIS2_LOG_SI, + "malloc failed, not enough memory"); + return NULL; + } + + memcpy(buff, input_buff, buff_len); + + axiom_data_handler_set_binary_data(data_handler_res, env, buff, buff_len); + + axis2_msg_ctx_set_doing_mtom (msg_ctx, env, AXIS2_TRUE); + ret_node = build_response2(env, data_handler_res); + } + else if(data_handler && axiom_data_handler_get_cached(data_handler, env)) + { + axiom_data_handler_t *data_handler_res = NULL; + axis2_char_t *file_name = NULL; + + file_name = axiom_data_handler_get_file_name(data_handler, env); + if(!file_name) + { + return NULL; + } + + data_handler_res = axiom_data_handler_create(env, file_name, NULL); + + axis2_msg_ctx_set_doing_mtom (msg_ctx, env, AXIS2_TRUE); + ret_node = build_response2(env, data_handler_res); + } + + else if (axiom_node_get_node_type(binary_node, env) == AXIOM_TEXT) /* attachment has come by value, as non-optimized binary */ + { + int plain_binary_len = 0; + int ret_len = 0; + axiom_text_t *bin_text = (axiom_text_t *) + axiom_node_get_data_element(binary_node, env); + axis2_byte_t *plain_binary = NULL; + axiom_data_handler_t *data_handler = NULL; + + axis2_char_t *base64text = + (axis2_char_t *) axiom_text_get_value(bin_text, + env); + printf("base64text = %s\n", base64text); + plain_binary_len = axutil_base64_decode_len(base64text); + plain_binary = AXIS2_MALLOC(env-> + allocator, + sizeof(unsigned char) * + plain_binary_len); + ret_len = + axutil_base64_decode_binary((unsigned char *) + plain_binary, + base64text); + data_handler = + axiom_data_handler_create(env, text_str, NULL); + axiom_data_handler_set_binary_data(data_handler, env, + plain_binary, + ret_len); + axiom_data_handler_write_to(data_handler, env); + ret_node = build_response1(env, base64text); + } + else /* nothing came */ + { + AXIS2_ERROR_SET(env->error, + AXIS2_ERROR_ATTACHMENT_MISSING, + AXIS2_FAILURE); + printf("Echo client ERROR: attachment is missing.\n"); + return NULL; + } + /* } */ + } + } + + } + } + else + { + AXIS2_ERROR_SET(env->error, + AXIS2_ERROR_SVC_SKEL_INVALID_XML_FORMAT_IN_REQUEST, + AXIS2_FAILURE); + printf("Echo client ERROR: invalid XML in request\n"); + return NULL; + } + + return ret_node; +} + +/* Builds the response content */ +axiom_node_t * +build_response1( + const axutil_env_t * env, + axis2_char_t * text) +{ + axiom_node_t *mtom_om_node = NULL; + axiom_element_t *mtom_om_ele = NULL; + axiom_node_t *om_node = NULL; + axiom_element_t *om_ele = NULL; + + + axiom_namespace_t *ns1 = NULL; + + ns1 = + axiom_namespace_create(env, "http://ws.apache.org/axis2/c/samples", + "ns1"); + + mtom_om_ele = + axiom_element_create(env, NULL, "response", ns1, &mtom_om_node); + + om_ele = axiom_element_create(env, mtom_om_node, "string", NULL, &om_node); + + axiom_element_set_text(mtom_om_ele, env, text, om_node); + + + return mtom_om_node; +} + + +axiom_node_t *build_response2( + const axutil_env_t *env, + axiom_data_handler_t *data_handler) +{ + axiom_node_t *mtom_om_node = NULL; + axiom_element_t *mtom_om_ele = NULL; + axiom_node_t *text_node = NULL; + axiom_namespace_t *ns1 = NULL; + + ns1 = + axiom_namespace_create(env, "http://ws.apache.org/axis2/c/samples", + "ns1"); + mtom_om_ele = + axiom_element_create(env, NULL, "response", ns1, &mtom_om_node); + + axiom_text_create_with_data_handler(env, mtom_om_node, data_handler, + &text_node); + + return mtom_om_node; +} + + + diff --git a/samples/server/mtom/mtom.h b/samples/server/mtom/mtom.h new file mode 100644 index 0000000..8ee6a39 --- /dev/null +++ b/samples/server/mtom/mtom.h @@ -0,0 +1,33 @@ + +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +#ifndef CALC_H +#define CALC_H + +#include +#include +#include +#include +#include +#include + +axiom_node_t *axis2_mtom_mtom( + const axutil_env_t * env, + axiom_node_t * node, + axis2_msg_ctx_t *msg_ctx); + +#endif /* CALC_H */ diff --git a/samples/server/mtom/mtom.mk b/samples/server/mtom/mtom.mk new file mode 100644 index 0000000..a2d9b9b --- /dev/null +++ b/samples/server/mtom/mtom.mk @@ -0,0 +1,8 @@ +echo: + @cl.exe /nologo /D "WIN32" /D "_WINDOWS" /D "_MBCS" *.C /I.\..\..\..\include /c + @link.exe /nologo *.obj /LIBPATH:.\..\..\..\lib axiom.lib axutil.lib axis2_engine.lib axis2_parser.lib /DLL /OUT:mtom.dll + + + + + diff --git a/samples/server/mtom/mtom_skeleton.c b/samples/server/mtom/mtom_skeleton.c new file mode 100644 index 0000000..3ef10b6 --- /dev/null +++ b/samples/server/mtom/mtom_skeleton.c @@ -0,0 +1,166 @@ + +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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 +#include "mtom.h" +#include + +int AXIS2_CALL mtom_free( + axis2_svc_skeleton_t * svc_skeleton, + const axutil_env_t * env); + +/* + * This method invokes the right service method + */ +axiom_node_t *AXIS2_CALL mtom_invoke( + axis2_svc_skeleton_t * svc_skeleton, + const axutil_env_t * env, + axiom_node_t * node, + axis2_msg_ctx_t * msg_ctx); + +int AXIS2_CALL mtom_init( + axis2_svc_skeleton_t * svc_skeleton, + const axutil_env_t * env); + +axiom_node_t *AXIS2_CALL mtom_on_fault( + axis2_svc_skeleton_t * svc_skeli, + const axutil_env_t * env, + axiom_node_t * node); + +static const axis2_svc_skeleton_ops_t mtom_svc_skeleton_ops_var = { + mtom_init, + mtom_invoke, + mtom_on_fault, + mtom_free +}; + +/*Create function */ +axis2_svc_skeleton_t * +axis2_mtom_create( + const axutil_env_t * env) +{ + axis2_svc_skeleton_t *svc_skeleton = NULL; + /* Allocate memory for the structs */ + svc_skeleton = AXIS2_MALLOC(env->allocator, sizeof(axis2_svc_skeleton_t)); + + svc_skeleton->ops = &mtom_svc_skeleton_ops_var; + + svc_skeleton->func_array = NULL; + + return svc_skeleton; +} + +/* Initialize the service */ +int AXIS2_CALL +mtom_init( + axis2_svc_skeleton_t * svc_skeleton, + const axutil_env_t * env) +{ + /* Any initialization stuff of mtom service should go here */ + return AXIS2_SUCCESS; +} + +/* + * This method invokes the right service method + */ +axiom_node_t *AXIS2_CALL +mtom_invoke( + axis2_svc_skeleton_t * svc_skeleton, + const axutil_env_t * env, + axiom_node_t * node, + axis2_msg_ctx_t * msg_ctx) +{ + /* Invoke the business logic. + * Depending on the function name invoke the correct impl method. + * We have only mtom in this sample, hence invoke mtom method. + * To see how to deal with multiple impl methods, have a look at the + * math sample. + */ + return axis2_mtom_mtom(env, node, msg_ctx); +} + +/* On fault, handle the fault */ +axiom_node_t *AXIS2_CALL +mtom_on_fault( + axis2_svc_skeleton_t * svc_skeli, + const axutil_env_t * env, + axiom_node_t * node) +{ + /* Here we are just setting a simple error message inside an element + * called 'EchoServiceError' + */ + axiom_node_t *error_node = NULL; + axiom_node_t *text_node = NULL; + axiom_element_t *error_ele = NULL; + error_ele = axiom_element_create(env, node, "EchoServiceError", NULL, + &error_node); + axiom_element_set_text(error_ele, env, "Echo service failed ", text_node); + return error_node; +} + +/* Free the resources used */ +int AXIS2_CALL +mtom_free( + axis2_svc_skeleton_t * svc_skeleton, + const axutil_env_t * env) +{ + /* Free the function array */ + if (svc_skeleton->func_array) + { + axutil_array_list_free(svc_skeleton->func_array, env); + svc_skeleton->func_array = NULL; + } + + /* Free the service skeleton */ + if (svc_skeleton) + { + AXIS2_FREE(env->allocator, svc_skeleton); + svc_skeleton = NULL; + } + + return AXIS2_SUCCESS; +} + +/** + * Following block distinguish the exposed part of the dll. + */ +AXIS2_EXPORT int +axis2_get_instance( + axis2_svc_skeleton_t ** inst, + const axutil_env_t * env) +{ + *inst = axis2_mtom_create(env); + if (!(*inst)) + { + return AXIS2_FAILURE; + } + + return AXIS2_SUCCESS; +} + +AXIS2_EXPORT int +axis2_remove_instance( + axis2_svc_skeleton_t * inst, + const axutil_env_t * env) +{ + axis2_status_t status = AXIS2_FAILURE; + if (inst) + { + status = AXIS2_SVC_SKELETON_FREE(inst, env); + } + return status; +} diff --git a/samples/server/mtom/services.xml b/samples/server/mtom/services.xml new file mode 100644 index 0000000..1a1b1b2 --- /dev/null +++ b/samples/server/mtom/services.xml @@ -0,0 +1,12 @@ + + mtom + + + This is a testing service , to test the system is working or not + + + + http://ws.apache.org/axis2/c/samples/mtom + + + -- cgit v1.1-32-gdbae