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
|
// **********************************************************************
//
// Copyright (c) 2001
// MutableRealms, Inc.
// Huntsville, AL, USA
//
// All Rights Reserved
//
// **********************************************************************
#include <Ice/Instance.h>
#include <Ice/TraceLevels.h>
#include <Ice/ProxyFactory.h>
#include <Ice/ThreadPool.h>
#include <Ice/ConnectionFactory.h>
#include <Ice/ObjectFactoryManager.h>
#include <Ice/UserExceptionFactoryManager.h>
#include <Ice/ObjectAdapterFactory.h>
#include <Ice/Exception.h>
#include <Ice/Properties.h>
#include <Ice/LoggerI.h>
#include <Ice/Network.h>
#ifndef WIN32
# include <Ice/SysLoggerI.h>
#endif
#ifndef WIN32
# include <csignal>
# include <syslog.h>
# include <sys/time.h>
#else
# include <sys/timeb.h>
#endif
using namespace std;
using namespace Ice;
using namespace IceInternal;
int Instance::_globalStateCounter = 0;
JTCMutex* Instance::_globalStateMutex = new JTCMutex;
JTCInitialize* Instance::_globalStateJTC = 0;
#ifndef WIN32
string Instance::_identForOpenlog;
#endif
namespace IceInternal
{
class GlobalStateMutexDestroyer
{
public:
~GlobalStateMutexDestroyer()
{
delete Instance::_globalStateMutex;
Instance::_globalStateMutex = 0;
}
};
static GlobalStateMutexDestroyer destroyer;
}
void IceInternal::incRef(Instance* p) { p->__incRef(); }
void IceInternal::decRef(Instance* p) { p->__decRef(); }
::Ice::CommunicatorPtr
IceInternal::Instance::communicator()
{
JTCSyncT<JTCMutex> sync(*this);
return _communicator;
}
::Ice::PropertiesPtr
IceInternal::Instance::properties()
{
JTCSyncT<JTCMutex> sync(*this);
return _properties;
}
::Ice::LoggerPtr
IceInternal::Instance::logger()
{
JTCSyncT<JTCMutex> sync(*this);
return _logger;
}
void
IceInternal::Instance::logger(const ::Ice::LoggerPtr& logger)
{
JTCSyncT<JTCMutex> sync(*this);
_logger = logger;
}
TraceLevelsPtr
IceInternal::Instance::traceLevels()
{
JTCSyncT<JTCMutex> sync(*this);
return _traceLevels;
}
ProxyFactoryPtr
IceInternal::Instance::proxyFactory()
{
JTCSyncT<JTCMutex> sync(*this);
return _proxyFactory;
}
OutgoingConnectionFactoryPtr
IceInternal::Instance::outgoingConnectionFactory()
{
JTCSyncT<JTCMutex> sync(*this);
return _outgoingConnectionFactory;
}
ObjectFactoryManagerPtr
IceInternal::Instance::servantFactoryManager()
{
JTCSyncT<JTCMutex> sync(*this);
return _servantFactoryManager;
}
UserExceptionFactoryManagerPtr
IceInternal::Instance::userExceptionFactoryManager()
{
JTCSyncT<JTCMutex> sync(*this);
return _userExceptionFactoryManager;
}
ObjectAdapterFactoryPtr
IceInternal::Instance::objectAdapterFactory()
{
JTCSyncT<JTCMutex> sync(*this);
return _objectAdapterFactory;
}
ThreadPoolPtr
IceInternal::Instance::threadPool()
{
JTCSyncT<JTCMutex> sync(*this);
return _threadPool;
}
string
IceInternal::Instance::defaultProtocol()
{
// No synchronization necessary
// JTCSyncT<JTCMutex> sync(*this);
return _defaultProtocol;
}
string
IceInternal::Instance::defaultHost()
{
// No synchronization necessary
// JTCSyncT<JTCMutex> sync(*this);
return _defaultHost;
}
IceInternal::Instance::Instance(const CommunicatorPtr& communicator, const PropertiesPtr& properties) :
_communicator(communicator),
_properties(properties)
{
_globalStateMutex->lock();
if (++_globalStateCounter == 1) // Only on first call
{
string value;
// Must be done before "Ice.Daemon" is checked
value = _properties->getProperty("Ice.PrintProcessId");
if (atoi(value.c_str()) >= 1)
{
#ifdef WIN32
cout << _getpid() << endl;
#else
cout << getpid() << endl;
#endif
}
#ifndef WIN32
value = _properties->getProperty("Ice.Daemon");
if (atoi(value.c_str()) >= 1)
{
value = _properties->getProperty("Ice.DaemonNoClose");
int noclose = atoi(value.c_str());
value = _properties->getProperty("Ice.DaemonNoChdir");
int nochdir = atoi(value.c_str());
if (daemon(nochdir, noclose) == -1)
{
--_globalStateCounter;
_globalStateMutex->unlock();
SystemException ex(__FILE__, __LINE__);
ex.error = getSystemErrno();
throw ex;
}
}
#endif
#ifndef WIN32
value = _properties->getProperty("Ice.UseSyslog");
if (atoi(value.c_str()) >= 1)
{
_identForOpenlog = _properties->getProperty("Ice.ProgramName");
if (_identForOpenlog.empty())
{
_identForOpenlog = "<Unknown Ice Program>";
}
openlog(_identForOpenlog.c_str(), LOG_PID, LOG_USER);
}
#endif
#ifdef WIN32
WORD version = MAKEWORD(1, 1);
WSADATA data;
if (WSAStartup(version, &data) != 0)
{
_globalStateMutex->unlock();
SocketException ex(__FILE__, __LINE__);
ex.error = getSocketErrno();
throw ex;
}
#endif
#ifndef WIN32
struct sigaction action;
action.sa_handler = SIG_IGN;
sigemptyset(&action.sa_mask);
action.sa_flags = 0;
sigaction(SIGPIPE, &action, 0);
#endif
#ifdef WIN32
struct _timeb tb;
_ftime(&tb);
srand(tb.millitm);
#else
timeval tv;
gettimeofday(&tv, 0);
srand(tv.tv_usec);
#endif
if (!JTCInitialize::initialized())
{
_globalStateJTC = new JTCInitialize();
}
}
_globalStateMutex->unlock();
try
{
#ifndef WIN32
string value = _properties->getProperty("Ice.UseSyslog");
if (atoi(value.c_str()) >= 1)
{
_logger = new SysLoggerI;
}
else
{
_logger = new LoggerI;
}
#else
_logger = new LoggerI;
#endif
_traceLevels = new TraceLevels(_properties);
_proxyFactory = new ProxyFactory(this);
_outgoingConnectionFactory = new OutgoingConnectionFactory(this);
_servantFactoryManager = new ObjectFactoryManager();
_userExceptionFactoryManager = new UserExceptionFactoryManager();
_objectAdapterFactory = new ObjectAdapterFactory(this);
_threadPool = new ThreadPool(this);
_defaultProtocol = _properties->getProperty("Ice.DefaultProtocol");
if (_defaultProtocol.empty())
{
_defaultProtocol = "tcp";
}
_defaultHost = _properties->getProperty("Ice.DefaultHost");
if (_defaultHost.empty())
{
_defaultHost = getLocalHost(true);
}
}
catch(...)
{
destroy();
throw;
}
}
IceInternal::Instance::~Instance()
{
assert(!_communicator);
assert(!_properties);
assert(!_logger);
assert(!_traceLevels);
assert(!_proxyFactory);
assert(!_outgoingConnectionFactory);
assert(!_servantFactoryManager);
assert(!_userExceptionFactoryManager);
assert(!_objectAdapterFactory);
assert(!_threadPool);
if (_globalStateMutex != 0)
{
_globalStateMutex->lock();
}
assert(_globalStateCounter > 0);
if (--_globalStateCounter == 0) // Only on last call
{
#ifdef WIN32
WSACleanup();
#endif
#ifndef WIN32
struct sigaction action;
action.sa_handler = SIG_DFL;
sigemptyset(&action.sa_mask);
action.sa_flags = 0;
sigaction(SIGPIPE, &action, 0);
#endif
#ifndef WIN32
if (!_identForOpenlog.empty())
{
closelog();
_identForOpenlog.clear();
}
#endif
delete _globalStateJTC;
_globalStateJTC = 0;
}
if (_globalStateMutex != 0)
{
_globalStateMutex->unlock();
}
}
void
IceInternal::Instance::destroy()
{
JTCSyncT<JTCMutex> sync(*this);
//
// Destroy all contained objects. Then set all references to null,
// to avoid cyclic object dependencies.
//
if(_communicator)
{
// Don't destroy the communicator -- the communicator destroys
// this object, not the other way
_communicator = 0;
}
if(_properties)
{
// No destroy function defined
// _properties->destroy();
_properties = 0;
}
if(_logger)
{
_logger->destroy();
_logger = 0;
}
if(_traceLevels)
{
// No destroy function defined
// _traceLevels->destroy();
_traceLevels = 0;
}
if(_proxyFactory)
{
// No destroy function defined
// _proxyFactory->destroy();
_proxyFactory = 0;
}
if(_outgoingConnectionFactory)
{
_outgoingConnectionFactory->destroy();
_outgoingConnectionFactory = 0;
}
if(_servantFactoryManager)
{
_servantFactoryManager->destroy();
_servantFactoryManager = 0;
}
if(_userExceptionFactoryManager)
{
_userExceptionFactoryManager->destroy();
_userExceptionFactoryManager = 0;
}
if(_objectAdapterFactory)
{
_objectAdapterFactory->shutdown(); // ObjectAdapterFactory has shutdown(), not destroy()
_objectAdapterFactory = 0;
}
if(_threadPool)
{
_threadPool->waitUntilFinished();
_threadPool->destroy();
_threadPool->joinWithAllThreads();
_threadPool = 0;
}
}
|