summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/NodeSessionManager.cpp
blob: 4e6381c38c90900dce0fb3a76a5c6dc7a20ef2b0 (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
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
// **********************************************************************
//
// Copyright (c) 2003-2006 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 <IceGrid/NodeSessionManager.h>
#include <IceGrid/TraceLevels.h>
#include <IceGrid/NodeI.h>
#include <IceGrid/Query.h>

using namespace std;
using namespace IceGrid;

NodeSessionKeepAliveThread::NodeSessionKeepAliveThread(const InternalRegistryPrx& registry, 
						       const NodeIPtr& node) : 
    _registry(InternalRegistryPrx::uncheckedCast(registry->ice_adapterId(""))),
    _node(node), 
    _timeout(IceUtil::Time::seconds(5)), 
    _shutdown(false)
{
}

void
NodeSessionKeepAliveThread::run()
{
    //
    // Keep alive the session.
    //
    NodeSessionPrx session;
    while(true)
    {
	keepAlive(session);

	{
	    Lock sync(*this);

	    session = _session;	    

	    if(!_shutdown)
	    {
		timedWait(_timeout);
	    }

	    if(_shutdown)
	    {
		break;
	    }
	}	
    }
    
    //
    // Destroy the session.
    //
    if(session)
    {
	try
	{
	    session->destroy();
	}
	catch(const Ice::LocalException&)
	{
	    //
	    // TODO: XXX: TRACE?
	    //
//	    ostringstream os;
//	    os << "couldn't contact the IceGrid registry to destroy the node session:\n" << ex;
//	    _node->getTraceLevels()->logger->warning(os.str());
	}
    }
}

void
NodeSessionKeepAliveThread::waitForCreate()
{
    Lock sync(*this);
    while(!_session)
    {
	wait();
    }
}

void
NodeSessionKeepAliveThread::terminate()
{
    Lock sync(*this);
    _shutdown = true;
    notifyAll();
}

void
NodeSessionKeepAliveThread::keepAlive(const NodeSessionPrx& session)
{
    if(session)
    {
	try
	{
	    session->keepAlive(_node->getPlatformInfo().getLoadInfo());
	    return; // We're done!
	}
	catch(const Ice::LocalException&)
	{
	}
    }

    try
    {
	NodeSessionPrx newSession = _node->registerWithRegistry(_registry);
	int timeout = newSession->getTimeout();
	{
	    Lock sync(*this);
	    if(timeout > 0)
	    {
		_timeout = IceUtil::Time::seconds(timeout);
	    }
	    _session = newSession;
	    notifyAll();
	}
    }
    catch(const NodeActiveException&)
    {
	_node->getTraceLevels()->logger->error("a node with the same name is already registered and active");
    }
    catch(const Ice::LocalException&)
    {
	//
	// TODO: FIX THIS SHOULD BE A TRACE
	//
// 	ostringstream os;
// 	os << "couldn't contact the IceGrid registry:\n" << ex;
// 	_node->getTraceLevels()->logger->warning(os.str());
    }
}

NodeSessionManager::NodeSessionManager()
{
}

void
NodeSessionManager::create(const NodeIPtr& node)
{
    assert(!_node);
    const_cast<NodeIPtr&>(_node) = node;

    Ice::CommunicatorPtr communicator = _node->getCommunicator();
    Ice::PropertiesPtr properties = communicator->getProperties();

    Ice::LocatorPrx locator = communicator->getDefaultLocator();
    assert(locator);
    string instanceName = locator->ice_getIdentity().category;

    QueryPrx query = QueryPrx::uncheckedCast(communicator->stringToProxy(instanceName + "/Query"));
    Ice::ObjectProxySeq proxies = query->findAllObjectsByType(InternalRegistry::ice_staticId());
    NodeSessionKeepAliveThreadPtr thread;

    Lock sync(*this);
    for(Ice::ObjectProxySeq::const_iterator p = proxies.begin(); p != proxies.end(); ++p)
    {
	thread = new NodeSessionKeepAliveThread(InternalRegistryPrx::uncheckedCast(*p), _node);
	thread->start();
	_sessions.insert(make_pair((*p)->ice_getIdentity(), thread));
    }
}

void
NodeSessionManager::waitForCreate()
{
    Lock sync(*this);
    for(NodeSessionMap::const_iterator p = _sessions.begin(); p != _sessions.end(); ++p)
    {
	p->second->waitForCreate();
    }
}

void
NodeSessionManager::destroy()
{
    Lock sync(*this);
    NodeSessionMap::const_iterator p;
    for(p = _sessions.begin(); p != _sessions.end(); ++p)
    {
	p->second->terminate();
    }
    for(p = _sessions.begin(); p != _sessions.end(); ++p)
    {
	p->second->getThreadControl().join();
    }
}

void
NodeSessionManager::replicaAdded(const InternalRegistryPrx& replica)
{
    Lock sync(*this);
    if(_sessions.find(replica->ice_getIdentity()) != _sessions.end())
    {
	return;
    }

    NodeSessionKeepAliveThreadPtr thread = new NodeSessionKeepAliveThread(replica, _node);
    thread->start();
    _sessions.insert(make_pair(replica->ice_getIdentity(), thread));
}

void
NodeSessionManager::replicaRemoved(const InternalRegistryPrx& replica)
{
    NodeSessionKeepAliveThreadPtr thread;
    {
	Lock sync(*this);
	NodeSessionMap::iterator p = _sessions.find(replica->ice_getIdentity());
	if(p != _sessions.end())
	{
	    thread = p->second;
	    _sessions.erase(p);
	}
    }
    if(thread)
    {
	thread->terminate();
	thread->getThreadControl().join();
    }
}