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
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
#ifndef ICE_CPP11_MAPPING
#include <Ice/AsyncResult.h>
#include <Ice/Proxy.h>
using namespace std;
using namespace Ice;
IceUtil::Shared* Ice::upCast(AsyncResult* p) { return p; }
AsyncResult::~AsyncResult()
{
// Out of line to avoid weak vtable
}
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->getOperation() != operation)
{
throw IceUtil::IllegalArgumentException(__FILE__, __LINE__, "Incorrect operation for end_" + operation +
" method: " + r->getOperation());
}
}
#endif
|