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
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
|
// **********************************************************************
//
// Copyright (c) 2003-2017 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 <IceUtil/DisableWarnings.h>
#include <Ice/AsyncResult.h>
#include <Ice/ThreadPool.h>
#include <Ice/Instance.h>
#include <Ice/LoggerUtil.h>
#include <Ice/Properties.h>
#include <Ice/RequestHandler.h>
#include <Ice/OutgoingAsync.h>
using namespace std;
using namespace Ice;
using namespace IceInternal;
IceUtil::Shared* Ice::upCast(AsyncResult* p) { return p; }
const unsigned char Ice::AsyncResult::OK = 0x1;
const unsigned char Ice::AsyncResult::Done = 0x2;
const unsigned char Ice::AsyncResult::Sent = 0x4;
const unsigned char Ice::AsyncResult::EndCalled = 0x8;
void
AsyncResult::cancel()
{
cancel(InvocationCanceledException(__FILE__, __LINE__));
}
Int
AsyncResult::getHash() const
{
return static_cast<Int>(reinterpret_cast<Long>(this) >> 4);
}
CommunicatorPtr
AsyncResult::getCommunicator() const
{
return _communicator;
}
ConnectionPtr
AsyncResult::getConnection() const
{
return 0;
}
ObjectPrx
AsyncResult::getProxy() const
{
return 0;
}
bool
AsyncResult::isCompleted() const
{
IceUtil::Monitor<IceUtil::Mutex>::Lock sync(_monitor);
return _state & Done;
}
void
AsyncResult::waitForCompleted()
{
IceUtil::Monitor<IceUtil::Mutex>::Lock sync(_monitor);
while(!(_state & Done))
{
_monitor.wait();
}
}
bool
AsyncResult::isSent() const
{
IceUtil::Monitor<IceUtil::Mutex>::Lock sync(_monitor);
return _state & Sent;
}
void
AsyncResult::waitForSent()
{
IceUtil::Monitor<IceUtil::Mutex>::Lock sync(_monitor);
while(!(_state & Sent) && !_exception.get())
{
_monitor.wait();
}
}
void
AsyncResult::throwLocalException() const
{
IceUtil::Monitor<IceUtil::Mutex>::Lock sync(_monitor);
if(_exception.get())
{
_exception.get()->ice_throw();
}
}
bool
AsyncResult::sentSynchronously() const
{
return _sentSynchronously;
}
LocalObjectPtr
AsyncResult::getCookie() const
{
return _cookie;
}
const std::string&
AsyncResult::getOperation() const
{
return _operation;
}
void
AsyncResult::__throwUserException()
{
try
{
_is.startReadEncaps();
_is.throwException();
}
catch(const Ice::UserException&)
{
_is.endReadEncaps();
throw;
}
}
bool
AsyncResult::__wait()
{
IceUtil::Monitor<IceUtil::Mutex>::Lock sync(_monitor);
if(_state & EndCalled)
{
throw IceUtil::IllegalArgumentException(__FILE__, __LINE__, "end_ method called more than once");
}
_state |= EndCalled;
while(!(_state & Done))
{
_monitor.wait();
}
if(_exception.get())
{
_exception.get()->ice_throw();
}
return _state & OK;
}
void
AsyncResult::__check(const AsyncResultPtr& r, const IceProxy::Ice::Object* prx, const string& operation)
{
__check(r, operation);
if(r->getProxy().get() != prx)
{
throw IceUtil::IllegalArgumentException(__FILE__, __LINE__, "Proxy for call to end_" + operation +
" does not match proxy that was used to call corresponding begin_" +
operation + " method");
}
}
void
AsyncResult::__check(const AsyncResultPtr& r, const Ice::Communicator* com, const string& operation)
{
__check(r, operation);
if(r->getCommunicator().get() != com)
{
throw IceUtil::IllegalArgumentException(__FILE__, __LINE__, "Communicator for call to end_" + operation +
" does not match communicator that was used to call corresponding " +
"begin_" + operation + " method");
}
}
void
AsyncResult::__check(const AsyncResultPtr& r, const Ice::Connection* con, const string& operation)
{
__check(r, operation);
if(r->getConnection().get() != con)
{
throw IceUtil::IllegalArgumentException(__FILE__, __LINE__, "Connection for call to end_" + operation +
" does not match connection that was used to call corresponding " +
"begin_" + operation + " method");
}
}
void
AsyncResult::__check(const AsyncResultPtr& r, const string& operation)
{
if(!r)
{
throw IceUtil::IllegalArgumentException(__FILE__, __LINE__, "AsyncResult == null");
}
else if(&r->_operation != &operation)
{
throw IceUtil::IllegalArgumentException(__FILE__, __LINE__, "Incorrect operation for end_" + operation +
" method: " + r->_operation);
}
}
AsyncResult::AsyncResult(const CommunicatorPtr& communicator,
const IceInternal::InstancePtr& instance,
const string& op,
const CallbackBasePtr& del,
const LocalObjectPtr& cookie) :
_instance(instance),
_sentSynchronously(false),
_is(instance.get(), Ice::currentProtocolEncoding),
_communicator(communicator),
_operation(op),
_callback(del),
_cookie(cookie),
_state(0)
{
if(!_callback)
{
throw IceUtil::IllegalArgumentException(__FILE__, __LINE__);
}
const_cast<CallbackBasePtr&>(_callback) = _callback->verify(_cookie);
}
AsyncResult::~AsyncResult()
{
}
bool
AsyncResult::sent(bool done)
{
IceUtil::Monitor<IceUtil::Mutex>::Lock sync(_monitor);
assert(!_exception.get());
bool alreadySent = _state & Sent;
_state |= Sent;
if(done)
{
_state |= Done | OK;
_cancellationHandler = 0;
if(!_callback || !_callback->hasSentCallback())
{
_observer.detach();
}
}
_monitor.notifyAll();
return !alreadySent && _callback && _callback->hasSentCallback();
}
bool
AsyncResult::finished(bool ok)
{
IceUtil::Monitor<IceUtil::Mutex>::Lock sync(_monitor);
_state |= Done;
if(ok)
{
_state |= OK;
}
_cancellationHandler = 0;
if(!_callback)
{
_observer.detach();
}
_monitor.notifyAll();
return _callback;
}
bool
AsyncResult::finished(const Ice::Exception& ex)
{
IceUtil::Monitor<IceUtil::Mutex>::Lock sync(_monitor);
_state |= Done;
_exception.reset(ex.ice_clone());
_cancellationHandler = 0;
_observer.failed(ex.ice_name());
if(!_callback)
{
_observer.detach();
}
_monitor.notifyAll();
return _callback;
}
void
AsyncResult::invokeSentAsync()
{
class AsynchronousSent : public DispatchWorkItem
{
public:
AsynchronousSent(const ConnectionPtr& connection, const AsyncResultPtr& result) :
DispatchWorkItem(connection), _result(result)
{
}
virtual void
run()
{
_result->invokeSent();
}
private:
const AsyncResultPtr _result;
};
//
// This is called when it's not safe to call the sent callback
// synchronously from this thread. Instead the exception callback
// is called asynchronously from the client thread pool.
//
try
{
_instance->clientThreadPool()->dispatch(new AsynchronousSent(_cachedConnection, this));
}
catch(const Ice::CommunicatorDestroyedException&)
{
}
}
void
AsyncResult::invokeCompletedAsync()
{
class AsynchronousCompleted : public DispatchWorkItem
{
public:
AsynchronousCompleted(const ConnectionPtr& connection, const AsyncResultPtr& result) :
DispatchWorkItem(connection), _result(result)
{
}
virtual void
run()
{
_result->invokeCompleted();
}
private:
const AsyncResultPtr _result;
};
//
// CommunicatorDestroyedCompleted is the only exception that can propagate directly
// from this method.
//
_instance->clientThreadPool()->dispatch(new AsynchronousCompleted(_cachedConnection, this));
}
void
AsyncResult::invokeSent()
{
assert(_callback);
try
{
AsyncResultPtr self(this);
_callback->sent(self);
}
catch(const std::exception& ex)
{
warning(ex);
}
catch(...)
{
warning();
}
if(_observer)
{
ObjectPrx proxy = getProxy();
if(!proxy || !proxy->ice_isTwoway())
{
_observer.detach();
}
}
}
void
AsyncResult::invokeCompleted()
{
assert(_callback);
try
{
AsyncResultPtr self(this);
_callback->completed(self);
}
catch(const std::exception& ex)
{
warning(ex);
}
catch(...)
{
warning();
}
_observer.detach();
}
void
AsyncResult::cancel(const Ice::LocalException& ex)
{
CancellationHandlerPtr handler;
{
IceUtil::Monitor<IceUtil::Mutex>::Lock sync(_monitor);
_cancellationException.reset(ex.ice_clone());
if(!_cancellationHandler)
{
return;
}
handler = _cancellationHandler;
}
handler->asyncRequestCanceled(OutgoingAsyncBasePtr::dynamicCast(this), ex);
}
void
AsyncResult::cancelable(const CancellationHandlerPtr& handler)
{
IceUtil::Monitor<IceUtil::Mutex>::Lock sync(_monitor);
if(_cancellationException.get())
{
try
{
_cancellationException->ice_throw();
}
catch(const Ice::Exception&)
{
_cancellationException.reset(0);
throw;
}
}
_cancellationHandler = handler;
}
void
AsyncResult::warning(const std::exception& exc) const
{
if(_instance->initializationData().properties->getPropertyAsIntWithDefault("Ice.Warn.AMICallback", 1) > 0)
{
Warning out(_instance->initializationData().logger);
const Exception* ex = dynamic_cast<const Exception*>(&exc);
if(ex)
{
out << "Ice::Exception raised by AMI callback:\n" << *ex;
}
else
{
out << "std::exception raised by AMI callback:\n" << exc.what();
}
}
}
void
AsyncResult::warning() const
{
if(_instance->initializationData().properties->getPropertyAsIntWithDefault("Ice.Warn.AMICallback", 1) > 0)
{
Warning out(_instance->initializationData().logger);
out << "unknown exception raised by AMI callback";
}
}
namespace
{
//
// Dummy class derived from CallbackBase
// We use this class for the __dummyCallback extern pointer in OutgoingAsync. In turn,
// this allows us to test whether the user supplied a null delegate instance to the
// generated begin_ method without having to generate a separate test to throw IllegalArgumentException
// in the inlined versions of the begin_ method. In other words, this reduces the amount of generated
// object code.
//
class DummyCallback : public CallbackBase
{
public:
DummyCallback()
{
}
virtual void
completed(const Ice::AsyncResultPtr&) const
{
assert(false);
}
virtual CallbackBasePtr
verify(const Ice::LocalObjectPtr&)
{
//
// Called by the AsyncResult constructor to verify the delegate. The dummy
// delegate is passed when the user used a begin_ method without delegate.
// By returning 0 here, we tell the AsyncResult that no delegates was
// provided.
//
return 0;
}
virtual void
sent(const AsyncResultPtr&) const
{
assert(false);
}
virtual bool
hasSentCallback() const
{
assert(false);
return false;
}
};
}
//
// This gives a pointer value to compare against in the generated
// begin_ method to decide whether the caller passed a null pointer
// versus the generated inline version of the begin_ method having
// passed a pointer to the dummy delegate.
//
CallbackBasePtr IceInternal::__dummyCallback = new DummyCallback;
#ifdef ICE_CPP11
Ice::CallbackPtr
Ice::newCallback(const ::IceInternal::Function<void (const AsyncResultPtr&)>& completed,
const ::IceInternal::Function<void (const AsyncResultPtr&)>& sent)
{
class Cpp11CB : public GenericCallbackBase
{
public:
Cpp11CB(const ::std::function<void (const AsyncResultPtr&)>& completed,
const ::std::function<void (const AsyncResultPtr&)>& sent) :
_completed(completed),
_sent(sent)
{
checkCallback(true, completed != nullptr);
}
virtual void
completed(const AsyncResultPtr& result) const
{
_completed(result);
}
virtual CallbackBasePtr
verify(const LocalObjectPtr&)
{
return this; // Nothing to do, the cookie is not type-safe.
}
virtual void
sent(const AsyncResultPtr& result) const
{
if(_sent != nullptr)
{
_sent(result);
}
}
virtual bool
hasSentCallback() const
{
return _sent != nullptr;
}
private:
::std::function< void (const AsyncResultPtr&)> _completed;
::std::function< void (const AsyncResultPtr&)> _sent;
};
return new Cpp11CB(completed, sent);
}
#endif
void
IceInternal::CallbackBase::checkCallback(bool obj, bool cb)
{
if(!obj)
{
throw IceUtil::IllegalArgumentException(__FILE__, __LINE__, "callback object cannot be null");
}
if(!cb)
{
throw IceUtil::IllegalArgumentException(__FILE__, __LINE__, "callback cannot be null");
}
}
|