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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
|
// **********************************************************************
//
// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
#include <Ice/ConnectRequestHandler.h>
#include <Ice/ConnectionRequestHandler.h>
#include <Ice/Instance.h>
#include <Ice/Proxy.h>
#include <Ice/ConnectionI.h>
#include <Ice/RouterInfo.h>
#include <Ice/Outgoing.h>
#include <Ice/OutgoingAsync.h>
#include <Ice/Protocol.h>
#include <Ice/Properties.h>
#include <Ice/ThreadPool.h>
using namespace std;
using namespace IceInternal;
namespace
{
class FlushRequestsWithException : public ThreadPoolWorkItem
{
public:
FlushRequestsWithException(const ConnectRequestHandlerPtr& handler, const Ice::LocalException& ex) :
_handler(handler),
_exception(dynamic_cast<Ice::LocalException*>(ex.ice_clone()))
{
}
virtual void
execute(const ThreadPoolPtr& threadPool)
{
threadPool->promoteFollower();
_handler->flushRequestsWithException(*_exception.get());
}
private:
const ConnectRequestHandlerPtr _handler;
const auto_ptr<Ice::LocalException> _exception;
};
class FlushRequestsWithExceptionWrapper : public ThreadPoolWorkItem
{
public:
FlushRequestsWithExceptionWrapper(const ConnectRequestHandlerPtr& handler, const LocalExceptionWrapper& ex) :
_handler(handler),
_exception(ex)
{
}
virtual void
execute(const ThreadPoolPtr& threadPool)
{
threadPool->promoteFollower();
_handler->flushRequestsWithException(_exception);
}
private:
const ConnectRequestHandlerPtr _handler;
const LocalExceptionWrapper _exception;
};
class FlushSentRequests : public ThreadPoolWorkItem
{
public:
FlushSentRequests(const InstancePtr& instance, const vector<OutgoingAsyncMessageCallbackPtr>& callbacks) :
_instance(instance), _callbacks(callbacks)
{
}
virtual void
execute(const ThreadPoolPtr& threadPool)
{
threadPool->promoteFollower();
for(vector<OutgoingAsyncMessageCallbackPtr>::const_iterator p = _callbacks.begin(); p != _callbacks.end(); ++p)
{
(*p)->__sentCallback(_instance);
}
}
private:
InstancePtr _instance;
vector<OutgoingAsyncMessageCallbackPtr> _callbacks;
};
};
ConnectRequestHandler::ConnectRequestHandler(const ReferencePtr& ref,
const Ice::ObjectPrx& proxy,
const Handle< ::IceDelegate::Ice::Object>& delegate) :
RequestHandler(ref),
_proxy(proxy),
_delegate(delegate),
_batchAutoFlush(
ref->getInstance()->initializationData().properties->getPropertyAsIntWithDefault("Ice.BatchAutoFlush", 1) > 0),
_initialized(false),
_flushing(false),
_batchRequestInProgress(false),
_batchRequestsSize(sizeof(requestBatchHdr)),
_batchStream(ref->getInstance().get(), _batchAutoFlush),
_updateRequestHandler(false)
{
}
ConnectRequestHandler::~ConnectRequestHandler()
{
}
RequestHandlerPtr
ConnectRequestHandler::connect()
{
_reference->getConnection(this);
Lock sync(*this);
if(initialized())
{
assert(_connection);
return new ConnectionRequestHandler(_reference, _connection, _compress);
}
else
{
_updateRequestHandler = true; // The proxy request handler will be updated when the connection is set.
return this;
}
}
void
ConnectRequestHandler::prepareBatchRequest(BasicStream* os)
{
{
Lock sync(*this);
while(_batchRequestInProgress)
{
wait();
}
if(!initialized())
{
_batchRequestInProgress = true;
_batchStream.swap(*os);
return;
}
}
_connection->prepareBatchRequest(os);
}
void
ConnectRequestHandler::finishBatchRequest(BasicStream* os)
{
{
Lock sync(*this);
if(!initialized())
{
assert(_batchRequestInProgress);
_batchRequestInProgress = false;
notifyAll();
_batchStream.swap(*os);
if(!_batchAutoFlush &&
_batchStream.b.size() + _batchRequestsSize > _reference->getInstance()->messageSizeMax())
{
throw Ice::MemoryLimitException(__FILE__, __LINE__);
}
_batchRequestsSize += _batchStream.b.size();
Request req;
req.os = new BasicStream(_reference->getInstance().get(), _batchAutoFlush);
req.os->swap(_batchStream);
_requests.push_back(req);
return;
}
}
_connection->finishBatchRequest(os, _compress);
}
void
ConnectRequestHandler::abortBatchRequest()
{
{
Lock sync(*this);
if(!initialized())
{
assert(_batchRequestInProgress);
_batchRequestInProgress = false;
notifyAll();
BasicStream dummy(_reference->getInstance().get(), _batchAutoFlush);
_batchStream.swap(dummy);
_batchRequestsSize = sizeof(requestBatchHdr);
return;
}
}
_connection->abortBatchRequest();
}
Ice::ConnectionI*
ConnectRequestHandler::sendRequest(Outgoing* out)
{
// Must be called first, _compress might not be initialized before this returns.
Ice::ConnectionIPtr connection = getConnection(true);
assert(connection);
if(!connection->sendRequest(out, _compress, _response) || _response)
{
return _connection.get(); // The request has been sent or we're expecting a response.
}
else
{
return 0; // The request hasn't been sent yet.
}
}
bool
ConnectRequestHandler::sendAsyncRequest(const OutgoingAsyncPtr& out)
{
{
Lock sync(*this);
if(!initialized())
{
Request req;
req.out = out;
_requests.push_back(req);
return false;
}
}
return _connection->sendAsyncRequest(out, _compress, _response);
}
bool
ConnectRequestHandler::flushBatchRequests(BatchOutgoing* out)
{
return getConnection(true)->flushBatchRequests(out);
}
bool
ConnectRequestHandler::flushAsyncBatchRequests(const BatchOutgoingAsyncPtr& out)
{
{
Lock sync(*this);
if(!initialized())
{
Request req;
req.batchOut = out;
_requests.push_back(req);
return false;
}
}
return _connection->flushAsyncBatchRequests(out);
}
Ice::ConnectionIPtr
ConnectRequestHandler::getConnection(bool waitInit)
{
if(waitInit)
{
//
// Wait for the connection establishment to complete or fail.
//
Lock sync(*this);
while(!_initialized && !_exception.get())
{
wait();
}
}
if(_exception.get())
{
_exception->ice_throw();
return false; // Keep the compiler happy.
}
else
{
assert(!waitInit || _initialized);
return _connection;
}
}
void
ConnectRequestHandler::setConnection(const Ice::ConnectionIPtr& connection, bool compress)
{
{
Lock sync(*this);
assert(!_exception.get() && !_connection);
assert(_updateRequestHandler || _requests.empty());
_connection = connection;
_compress = compress;
}
//
// If this proxy is for a non-local object, and we are using a router, then
// add this proxy to the router info object.
//
RouterInfoPtr ri = _reference->getRouterInfo();
if(ri && !ri->addProxy(_proxy, this))
{
return; // The request handler will be initialized once addProxy returns.
}
//
// We can now send the queued requests.
//
flushRequests();
}
void
ConnectRequestHandler::setException(const Ice::LocalException& ex)
{
Lock sync(*this);
assert(!_initialized && !_exception.get());
assert(_updateRequestHandler || _requests.empty());
_exception.reset(dynamic_cast<Ice::LocalException*>(ex.ice_clone()));
_proxy = 0; // Break cyclic reference count.
_delegate = 0; // Break cyclic reference count.
//
// If some requests were queued, we notify them of the failure. This is done from a thread
// from the client thread pool since this will result in ice_exception callbacks to be
// called.
//
if(!_requests.empty())
{
_reference->getInstance()->clientThreadPool()->execute(new FlushRequestsWithException(this, ex));
}
notifyAll();
}
void
ConnectRequestHandler::addedProxy()
{
//
// The proxy was added to the router info, we're now ready to send the
// queued requests.
//
flushRequests();
}
bool
ConnectRequestHandler::initialized()
{
// Must be called with the mutex locked.
if(_initialized)
{
assert(_connection);
return true;
}
else
{
while(_flushing && !_exception.get())
{
wait();
}
if(_exception.get())
{
_exception->ice_throw();
return false; // Keep the compiler happy.
}
else
{
return _initialized;
}
}
}
void
ConnectRequestHandler::flushRequests()
{
{
Lock sync(*this);
assert(_connection && !_initialized);
while(_batchRequestInProgress)
{
wait();
}
//
// We set the _flushing flag to true to prevent any additional queuing. Callers
// might block for a little while as the queued requests are being sent but this
// shouldn't be an issue as the request sends are non-blocking.
//
_flushing = true;
}
vector<OutgoingAsyncMessageCallbackPtr> sentCallbacks;
try
{
while(!_requests.empty()) // _requests is immutable when _flushing = true
{
Request& req = _requests.front();
if(req.out)
{
if(_connection->sendAsyncRequest(req.out, _compress, _response))
{
if(dynamic_cast<Ice::AMISentCallback*>(req.out.get()))
{
sentCallbacks.push_back(req.out);
}
}
}
else if(req.batchOut)
{
if(_connection->flushAsyncBatchRequests(req.batchOut))
{
if(dynamic_cast<Ice::AMISentCallback*>(req.batchOut.get()))
{
sentCallbacks.push_back(req.batchOut);
}
}
}
else
{
BasicStream os(req.os->instance());
_connection->prepareBatchRequest(&os);
try
{
const Ice::Byte* bytes;
req.os->i = req.os->b.begin();
req.os->readBlob(bytes, req.os->b.size());
os.writeBlob(bytes, req.os->b.size());
_connection->finishBatchRequest(&os, _compress);
delete req.os;
}
catch(const Ice::LocalException&)
{
_connection->abortBatchRequest();
throw;
}
}
_requests.pop_front();
}
}
catch(const LocalExceptionWrapper& ex)
{
Lock sync(*this);
assert(!_exception.get() && !_requests.empty());
_exception.reset(dynamic_cast<Ice::LocalException*>(ex.get()->ice_clone()));
_reference->getInstance()->clientThreadPool()->execute(new FlushRequestsWithExceptionWrapper(this, ex));
}
catch(const Ice::LocalException& ex)
{
Lock sync(*this);
assert(!_exception.get() && !_requests.empty());
_exception.reset(dynamic_cast<Ice::LocalException*>(ex.ice_clone()));
_reference->getInstance()->clientThreadPool()->execute(new FlushRequestsWithException(this, ex));
}
if(!sentCallbacks.empty())
{
InstancePtr instance = _reference->getInstance();
instance->clientThreadPool()->execute(new FlushSentRequests(instance, sentCallbacks));
}
//
// We've finished sending the queued requests and the request handler now send
// the requests over the connection directly. It's time to substitute the
// request handler of the proxy with the more efficient connection request
// handler which does not have any synchronization. This also breaks the cyclic
// reference count with the proxy.
//
if(_updateRequestHandler && !_exception.get())
{
_proxy->__setRequestHandler(_delegate, new ConnectionRequestHandler(_reference, _connection, _compress));
}
{
Lock sync(*this);
assert(!_initialized);
if(!_exception.get())
{
_initialized = true;
_flushing = false;
}
_proxy = 0; // Break cyclic reference count.
_delegate = 0; // Break cyclic reference count.
notifyAll();
}
}
void
ConnectRequestHandler::flushRequestsWithException(const Ice::LocalException& ex)
{
for(deque<Request>::const_iterator p = _requests.begin(); p != _requests.end(); ++p)
{
if(p->out)
{
p->out->__finished(ex);
}
else if(p->batchOut)
{
p->batchOut->__finished(ex);
}
else
{
assert(p->os);
delete p->os;
}
}
_requests.clear();
}
void
ConnectRequestHandler::flushRequestsWithException(const LocalExceptionWrapper& ex)
{
for(deque<Request>::const_iterator p = _requests.begin(); p != _requests.end(); ++p)
{
if(p->out)
{
p->out->__finished(ex);
}
else if(p->batchOut)
{
p->batchOut->__finished(*ex.get());
}
else
{
assert(p->os);
delete p->os;
}
}
_requests.clear();
}
|