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
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
#include <Ice/Ice.h>
#include <SessionI.h>
#include <TestHelper.h>
using namespace std;
using namespace Test;
class DestroyCB : public virtual IceUtil::Shared
{
public:
DestroyCB(const Test::AMD_Session_destroyFromClientPtr& cb) : _cb(cb)
{
}
void
response()
{
_cb->ice_response();
}
void
exception(const IceUtil::Exception&)
{
test(false);
}
private:
Test::AMD_Session_destroyFromClientPtr _cb;
};
typedef IceUtil::Handle<DestroyCB> DestroyCBPtr;
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&)
{
DestroyCBPtr asyncCB = new DestroyCB(cb);
Glacier2::Callback_SessionControl_destroyPtr amiCB = Glacier2::newCallback_SessionControl_destroy(asyncCB,
&DestroyCB::response,
&DestroyCB::exception);
_sessionControl->begin_destroy(amiCB);
}
void
SessionI::shutdown(const Ice::Current& current)
{
current.adapter->getCommunicator()->shutdown();
}
void
SessionI::destroy(const Ice::Current& current)
{
current.adapter->remove(current.id);
}
|