blob: 816f38084cebad9b4dc426cecd1b4651326e734a (
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
|
// **********************************************************************
//
// 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/Ice.h>
#include <SessionI.h>
#include <TestCommon.h>
using namespace std;
using namespace Test;
class DestroyCB : public Glacier2::AMI_SessionControl_destroy
{
public:
DestroyCB(const Test::AMD_Session_destroyFromClientPtr& cb) : _cb(cb)
{
}
void
ice_response()
{
_cb->ice_response();
}
void
ice_exception(const IceUtil::Exception&)
{
test(false);
}
private:
Test::AMD_Session_destroyFromClientPtr _cb;
};
Glacier2::SessionPrx
SessionManagerI::create(const string& userId, const Glacier2::SessionControlPrx& sessionControl,
const Ice::Current& current)
{
if(userId == "rejectme")
{
throw Glacier2::CannotCreateSessionException("");
}
if(userId == "localexception")
{
throw Ice::ObjectNotExistException(__FILE__, __LINE__);
}
return Glacier2::SessionPrx::uncheckedCast(current.adapter->addWithUUID(new SessionI(sessionControl)));
}
SessionI::SessionI(const Glacier2::SessionControlPrx& sessionControl) :
_sessionControl(sessionControl)
{
assert(sessionControl);
}
void
SessionI::destroyFromClient_async(const Test::AMD_Session_destroyFromClientPtr& cb, const Ice::Current& current)
{
_sessionControl->destroy_async(new DestroyCB(cb));
}
void
SessionI::shutdown(const Ice::Current& current)
{
current.adapter->getCommunicator()->shutdown();
}
void
SessionI::destroy(const Ice::Current& current)
{
current.adapter->remove(current.id);
}
|