summaryrefslogtreecommitdiffstats
path: root/src/core/transport/amqp/sender/qpid_sender/axis2_qpid_sender_interface.cpp
blob: ac4f51e29f059e27385f45c763101ae19403f81a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/*
* 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 <axis2_amqp_util.h>
#include <axis2_qpid_sender.h>
#include <axis2_qpid_sender_interface.h>

#ifdef __cplusplus
extern "C"
{
#endif

AXIS2_EXTERN axis2_amqp_response_t* AXIS2_CALL
axis2_qpid_send_receive(
	const axis2_char_t* request_content,
	const axutil_env_t* env,
	const axis2_char_t* content_type,
	const axis2_char_t* soap_action,
	axis2_msg_ctx_t* msg_ctx)
{
	axis2_amqp_destination_info_t* destination_info = NULL;
	destination_info = axis2_amqp_util_msg_ctx_get_destination_info(msg_ctx, env);

	if (!destination_info || !destination_info->broker_ip || 
		!destination_info->broker_port || !destination_info->queue_name)
	{
		return NULL;
	}

	axis2_bool_t is_soap_11 = axis2_msg_ctx_get_is_soap_11(msg_ctx, env);
	axutil_array_list_t* mime_parts = axis2_msg_ctx_get_mime_parts(msg_ctx, env);
	int timeout = axis2_amqp_util_msg_ctx_get_request_timeout(msg_ctx, env);

	/* Get Response */
	Axis2QpidSender qpid_sender(destination_info->broker_ip, 
			destination_info->broker_port, env);
	
	bool status = qpid_sender.SendReceive(request_content, destination_info->queue_name, 
			is_soap_11, content_type, soap_action, mime_parts, timeout);

	axis2_amqp_destination_info_free(destination_info, env);

	if (!status)
	{
		return NULL;
	}

	/* Create response */
	axis2_amqp_response_t* response = (axis2_amqp_response_t*)AXIS2_MALLOC(
			env->allocator, sizeof(axis2_amqp_response_t));

	/* Data */
	response->data = AXIS2_MALLOC(env->allocator, qpid_sender.responseContent.size());
	memcpy(response->data, qpid_sender.responseContent.c_str(), 
			qpid_sender.responseContent.size());

	/* Length */
	response->length = qpid_sender.responseContent.size();

	/* ContentType */
	response->content_type = (axis2_char_t*)AXIS2_MALLOC(
			env->allocator, qpid_sender.responseContentType.size() + 1);
	strcpy(response->content_type, qpid_sender.responseContentType.c_str());

	return response;
}


AXIS2_EXTERN axis2_status_t AXIS2_CALL
axis2_qpid_send(
	const axis2_char_t* request_content,
	const axutil_env_t* env,
	const axis2_char_t* content_type,
	const axis2_char_t* soap_action,
	axis2_msg_ctx_t* msg_ctx)
{
	axis2_amqp_destination_info_t* destination_info = NULL;
	axis2_status_t status =  AXIS2_FAILURE;
	string reply_to_queue_name = "";

	destination_info = axis2_amqp_util_msg_ctx_get_destination_info(msg_ctx, env);

	if (!destination_info || !destination_info->broker_ip || 
		!destination_info->broker_port || !destination_info->queue_name)
	{
		return AXIS2_FAILURE;
	}

	axis2_bool_t is_soap_11 = axis2_msg_ctx_get_is_soap_11(msg_ctx, env);
	axutil_array_list_t* mime_parts = axis2_msg_ctx_get_mime_parts(msg_ctx, env);

	/* If client side, find reply_to_queue_name */
	if (!axis2_msg_ctx_get_server_side(msg_ctx, env))
	{
		axis2_conf_ctx_t* conf_ctx = axis2_msg_ctx_get_conf_ctx(msg_ctx, env);

		axis2_char_t* queue_name = 
			axis2_amqp_util_conf_ctx_get_dual_channel_queue_name(conf_ctx, env);
		if (queue_name)
			reply_to_queue_name = queue_name;
	}

	Axis2QpidSender qpid_sender(destination_info->broker_ip, 
			destination_info->broker_port, env);

	status = qpid_sender.Send(request_content, destination_info->queue_name, 
			reply_to_queue_name, is_soap_11, content_type, soap_action, mime_parts);

	axis2_amqp_destination_info_free(destination_info, env);

	return status;
}

#ifdef __cplusplus
}
#endif