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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
#include <Glacier2/Blobject.h>
#include <Glacier2/SessionRouterI.h>
#include <Glacier2/Instrumentation.h>
using namespace std;
using namespace Ice;
using namespace Glacier2;
using namespace Glacier2::Instrumentation;
namespace
{
const string serverForwardContext = "Glacier2.Server.ForwardContext";
const string clientForwardContext = "Glacier2.Client.ForwardContext";
const string serverTraceRequest = "Glacier2.Server.Trace.Request";
const string clientTraceRequest = "Glacier2.Client.Trace.Request";
const string serverTraceOverride = "Glacier2.Server.Trace.Override";
const string clientTraceOverride = "Glacier2.Client.Trace.Override";
}
Glacier2::Blobject::Blobject(shared_ptr<Instance> instance, shared_ptr<Connection> reverseConnection,
const Context& context) :
_instance(move(instance)),
_reverseConnection(move(reverseConnection)),
_forwardContext(_reverseConnection ?
_instance->properties()->getPropertyAsInt(serverForwardContext) > 0 :
_instance->properties()->getPropertyAsInt(clientForwardContext) > 0),
_requestTraceLevel(_reverseConnection ?
_instance->properties()->getPropertyAsInt(serverTraceRequest) :
_instance->properties()->getPropertyAsInt(clientTraceRequest)),
_overrideTraceLevel(reverseConnection ?
_instance->properties()->getPropertyAsInt(serverTraceOverride) :
_instance->properties()->getPropertyAsInt(clientTraceOverride)),
_context(context)
{
auto t = _reverseConnection ? _instance->serverRequestQueueThread() : _instance->clientRequestQueueThread();
if(t)
{
const_cast<shared_ptr<RequestQueue>&>(_requestQueue) = make_shared<RequestQueue>(t,
_instance,
_reverseConnection);
}
}
void
Glacier2::Blobject::destroy()
{
if(_requestQueue)
{
_requestQueue->destroy();
}
}
void
Glacier2::Blobject::updateObserver(const shared_ptr<Glacier2::Instrumentation::SessionObserver>& observer)
{
if(_requestQueue)
{
_requestQueue->updateObserver(observer);
}
}
void
Glacier2::Blobject::invoke(shared_ptr<ObjectPrx>& proxy,
const std::pair<const Byte*, const Byte*>& inParams,
function<void(bool, const pair<const Byte*, const Byte*>&)> response,
function<void(exception_ptr)> exception,
const Current& current)
{
//
// Set the correct facet on the proxy.
//
if(!current.facet.empty())
{
proxy = proxy->ice_facet(current.facet);
}
//
// Modify the proxy according to the request id. This can
// be overridden by the _fwd context.
//
if(current.requestId == 0)
{
proxy = proxy->ice_oneway();
}
else if(current.requestId > 0)
{
proxy = proxy->ice_twoway();
}
//
// Modify the proxy according to the _fwd context field.
//
Context::const_iterator p = current.ctx.find("_fwd");
if(p != current.ctx.end())
{
for(unsigned int i = 0; i < p->second.length(); ++i)
{
char option = p->second[i];
switch(option)
{
case 't':
{
proxy = proxy->ice_twoway();
break;
}
case 'o':
{
proxy = proxy->ice_oneway();
break;
}
case 'd':
{
proxy = proxy->ice_datagram();
break;
}
case 'O':
{
// Batch support has been removed. These requests will be forwarded as oneway
proxy = proxy->ice_oneway();
break;
}
case 'D':
{
// Batch support has been removed. These requests will be forwarded as datagram
proxy = proxy->ice_datagram();
break;
}
case 's':
{
proxy = proxy->ice_secure(true);
break;
}
case 'z':
{
proxy = proxy->ice_compress(true);
break;
}
default:
{
Warning out(_instance->logger());
out << "unknown forward option `" << option << "'";
break;
}
}
}
}
if(_requestTraceLevel >= 1)
{
Trace out(_instance->logger(), "Glacier2");
if(_reverseConnection)
{
out << "reverse ";
}
out << "routing";
if(_requestQueue)
{
out << " (buffered)";
}
else
{
out << " (not buffered)";
}
if(_reverseConnection)
{
out << "\nidentity = " << _instance->communicator()->identityToString(proxy->ice_getIdentity());
}
else
{
out << "\nproxy = " << _instance->communicator()->proxyToString(proxy);
}
out << "\noperation = " << current.operation;
out << "\ncontext = ";
Context::const_iterator q = current.ctx.begin();
while(q != current.ctx.end())
{
out << q->first << '/' << q->second;
if(++q != current.ctx.end())
{
out << ", ";
}
}
}
if(_requestQueue)
{
//
// If we are in buffered mode, we create a new request and add
// it to the request queue. If the request is twoway, we use
// AMI.
//
bool override;
try
{
override = _requestQueue->addRequest(make_shared<Request>(proxy, inParams, current, _forwardContext,
_context, move(response), exception));
}
catch(const ObjectNotExistException&)
{
exception(current_exception());
return;
}
if(override && _overrideTraceLevel >= 1)
{
Trace out(_instance->logger(), "Glacier2");
if(_reverseConnection)
{
out << "reverse ";
}
out << "routing override";
if(_reverseConnection)
{
out << "\nidentity = " << _instance->communicator()->identityToString(proxy->ice_getIdentity());
}
else
{
out << "\nproxy = " << _instance->communicator()->proxyToString(proxy);
}
out << "\noperation = " << current.operation;
out << "\ncontext = ";
Context::const_iterator q = current.ctx.begin();
while(q != current.ctx.end())
{
out << q->first << '/' << q->second;
if(++q != current.ctx.end())
{
out << ", ";
}
}
}
}
else
{
//
// If we are in not in buffered mode, we send the request directly.
//
try
{
function<void(bool, pair<const Byte*, const Byte*>)> amiResponse = nullptr;
function<void(bool)> amiSent = nullptr;
if(proxy->ice_isTwoway())
{
amiResponse = move(response);
}
else
{
amiSent = [amdResponse = move(response)](bool)
{
amdResponse(true, {nullptr, nullptr});
};
}
if(_forwardContext)
{
if(_context.size() > 0)
{
Context ctx = current.ctx;
ctx.insert(_context.begin(), _context.end());
proxy->ice_invokeAsync(current.operation, current.mode, inParams,
move(amiResponse), move(exception), move(amiSent), ctx);
}
else
{
proxy->ice_invokeAsync(current.operation, current.mode, inParams,
move(amiResponse), move(exception), move(amiSent), current.ctx);
}
}
else
{
if(_context.size() > 0)
{
proxy->ice_invokeAsync(current.operation, current.mode, inParams,
move(amiResponse), move(exception), move(amiSent), _context);
}
else
{
proxy->ice_invokeAsync(current.operation, current.mode, inParams,
move(amiResponse), move(exception), move(amiSent));
}
}
}
catch(const LocalException&)
{
exception(current_exception());
}
}
}
|