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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
|
// **********************************************************************
//
// 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/AdminI.h>
#include <IceGrid/RegistryI.h>
#include <IceGrid/Database.h>
#include <IceGrid/Util.h>
#include <IceGrid/DescriptorParser.h>
#include <IceGrid/DescriptorHelper.h>
#include <Ice/LoggerUtil.h>
#include <Ice/TraceUtil.h>
#include <Ice/SliceChecksums.h>
using namespace std;
using namespace Ice;
using namespace IceGrid;
namespace IceGrid
{
class ServerProxyWrapper
{
public:
ServerProxyWrapper(const DatabasePtr& database, const string& id) : _id(id)
{
_proxy = database->getServerWithTimeouts(id, _activationTimeout, _deactivationTimeout, _node);
}
void
useActivationTimeout()
{
_proxy = ServerPrx::uncheckedCast(_proxy->ice_timeout(_activationTimeout * 1000));
}
void
useDeactivationTimeout()
{
_proxy = ServerPrx::uncheckedCast(_proxy->ice_timeout(_deactivationTimeout * 1000));
}
IceProxy::IceGrid::Server*
operator->() const
{
return _proxy.get();
}
void
handleException(const Ice::Exception& ex)
{
try
{
ex.ice_throw();
}
catch(const Ice::ObjectNotExistException&)
{
throw ServerNotExistException(_id);
}
catch(const Ice::LocalException& e)
{
ostringstream os;
os << e;
throw NodeUnreachableException(_node, os.str());
}
}
private:
string _id;
ServerPrx _proxy;
int _activationTimeout;
int _deactivationTimeout;
string _node;
};
class PatchAggregator : public IceUtil::Mutex, public IceUtil::Shared
{
public:
PatchAggregator(const AMD_Admin_patchApplicationPtr& cb,
const TraceLevelsPtr& traceLevels,
const string& application,
int nodeCount) :
_cb(cb), _traceLevels(traceLevels), _application(application), _count(nodeCount), _nSuccess(0), _nFailure(0)
{
}
void
finished(const string& node, const string& failure)
{
Lock sync(*this);
if(failure.empty())
{
if(_traceLevels->patch > 0)
{
Ice::Trace out(_traceLevels->logger, _traceLevels->patchCat);
out << "finished patching of application `" << _application << "' on node `" << node << "'";
}
++_nSuccess;
}
else
{
if(_traceLevels->patch > 0)
{
Ice::Trace out(_traceLevels->logger, _traceLevels->patchCat);
out << "patching of application `" << _application << "' on node `" << node <<"' failed:\n" << failure;
}
++_nFailure;
_lastFailure = failure;
}
if((_nSuccess + _nFailure) == _count)
{
if(_nSuccess > 0)
{
_cb->ice_response();
}
else
{
_cb->ice_exception(PatchException(_lastFailure));
}
}
}
private:
const AMD_Admin_patchApplicationPtr _cb;
const TraceLevelsPtr _traceLevels;
const string _application;
const int _count;
int _nSuccess;
int _nFailure;
string _lastFailure;
};
typedef IceUtil::Handle<PatchAggregator> PatchAggregatorPtr;
class PatchCB : public AMI_Node_patch
{
public:
PatchCB(const PatchAggregatorPtr& cb, const string& node) :
_cb(cb), _node(node)
{
}
void
ice_response()
{
_cb->finished(_node, "");
}
void
ice_exception(const Ice::Exception& ex)
{
string reason;
try
{
ex.ice_throw();
}
catch(const PatchException& ex)
{
reason = ex.reason;
}
catch(const NodeNotExistException&)
{
reason = "node doesn't exist";
}
catch(const NodeUnreachableException&)
{
reason = "node is not active";
}
catch(const Ice::Exception& ex)
{
ostringstream os;
os << ex;
reason = os.str();
}
_cb->finished(_node, reason);
}
private:
const PatchAggregatorPtr _cb;
const string _node;
};
class ServerPatchCB : public AMI_Node_patch
{
public:
ServerPatchCB(const AMD_Admin_patchServerPtr& cb,
const TraceLevelsPtr& traceLevels,
const string& server,
const string& node) :
_cb(cb), _traceLevels(traceLevels), _server(server), _node(node)
{
}
void
ice_response()
{
if(_traceLevels->patch > 0)
{
Ice::Trace out(_traceLevels->logger, _traceLevels->patchCat);
out << "finished patching of server `" << _server << "' on node `" << _node << "'";
}
_cb->ice_response();
}
void
ice_exception(const Ice::Exception& ex)
{
string reason;
try
{
ex.ice_throw();
}
catch(const PatchException& ex)
{
reason = ex.reason;
}
catch(const NodeNotExistException&)
{
reason = "node `" + _node + "' doesn't exist";
}
catch(const NodeUnreachableException&)
{
reason = "node `" + _node + "' is not active";
}
catch(const Ice::Exception& ex)
{
ostringstream os;
os << ex;
reason = os.str();
}
if(_traceLevels->patch > 0)
{
Ice::Trace out(_traceLevels->logger, _traceLevels->patchCat);
out << "patching of server `" << _server << "' on node `" << _node << "' failed:\n" << reason;
}
_cb->ice_exception(PatchException(reason));
}
private:
const AMD_Admin_patchServerPtr _cb;
const TraceLevelsPtr _traceLevels;
const string _server;
const string _node;
};
}
AdminI::AdminI(const DatabasePtr& database, const RegistryPtr& registry, const TraceLevelsPtr& traceLevels) :
_database(database),
_registry(registry),
_traceLevels(traceLevels)
{
}
AdminI::~AdminI()
{
}
void
AdminI::addApplication(const ApplicationDescriptor& descriptor, const Current&)
{
_database->addApplicationDescriptor(0, descriptor);
}
void
AdminI::syncApplication(const ApplicationDescriptor& descriptor, const Current&)
{
_database->syncApplicationDescriptor(0, descriptor);
}
void
AdminI::updateApplication(const ApplicationUpdateDescriptor& descriptor, const Current&)
{
_database->updateApplicationDescriptor(0, descriptor);
}
void
AdminI::removeApplication(const string& name, const Current&)
{
_database->removeApplicationDescriptor(0, name);
}
void
AdminI::instantiateServer(const string& app, const string& node, const ServerInstanceDescriptor& desc, const Current&)
{
_database->instantiateServer(app, node, desc);
}
void
AdminI::patchApplication_async(const AMD_Admin_patchApplicationPtr& amdCB,
const string& name,
bool shutdown,
const Current& current)
{
ApplicationHelper helper(current.adapter->getCommunicator(), _database->getApplicationDescriptor(name));
DistributionDescriptor appDistrib;
vector<string> nodes;
helper.getDistributions(appDistrib, nodes);
if(nodes.empty())
{
amdCB->ice_response();
return;
}
PatchAggregatorPtr aggregator = new PatchAggregator(amdCB, _traceLevels, name, static_cast<int>(nodes.size()));
for(vector<string>::const_iterator p = nodes.begin(); p != nodes.end(); ++p)
{
if(_traceLevels->patch > 0)
{
Ice::Trace out(_traceLevels->logger, _traceLevels->patchCat);
out << "started patching of application `" << name << "' on node `" << *p << "'";
}
AMI_Node_patchPtr cb = new PatchCB(aggregator, *p);
try
{
_database->getNode(*p)->patch_async(cb, name, "", appDistrib, shutdown);
}
catch(const Ice::Exception& ex)
{
cb->ice_exception(ex);
}
}
}
ApplicationDescriptor
AdminI::getApplicationDescriptor(const string& name, const Current&) const
{
return _database->getApplicationDescriptor(name);
}
ApplicationDescriptor
AdminI::getDefaultApplicationDescriptor(const Current& current) const
{
Ice::PropertiesPtr properties = current.adapter->getCommunicator()->getProperties();
string path = properties->getProperty("IceGrid.Registry.DefaultTemplates");
if(path.empty())
{
throw DeploymentException("no default templates configured, you need to set "
"IceGrid.Registry.DefaultTemplates in the IceGrid registry configuration.");
}
ApplicationDescriptor desc;
try
{
desc = DescriptorParser::parseDescriptor(path, current.adapter->getCommunicator());
}
catch(const IceXML::ParserException& ex)
{
throw DeploymentException("can't parse default templates:\n" + ex.reason());
}
desc.name = "";
if(!desc.nodes.empty())
{
Ice::Warning warn(_traceLevels->logger);
warn << "default application descriptor:\nnode definitions are not allowed.";
desc.nodes.clear();
}
if(!desc.distrib.icepatch.empty() || !desc.distrib.directories.empty())
{
Ice::Warning warn(_traceLevels->logger);
warn << "default application descriptor:\ndistribution is not allowed.";
desc.distrib = DistributionDescriptor();
}
if(!desc.replicaGroups.empty())
{
Ice::Warning warn(_traceLevels->logger);
warn << "default application descriptor:\nreplica group definitions are not allowed.";
desc.replicaGroups.clear();
}
if(!desc.description.empty())
{
Ice::Warning warn(_traceLevels->logger);
warn << "default application descriptor:\ndescription is not allowed.";
desc.description = "";
}
if(!desc.variables.empty())
{
Ice::Warning warn(_traceLevels->logger);
warn << "default application descriptor:\nvariable definitions are not allowed.";
desc.variables.clear();
}
return desc;
}
Ice::StringSeq
AdminI::getAllApplicationNames(const Current&) const
{
return _database->getAllApplications();
}
ServerInfo
AdminI::getServerInfo(const string& id, const Current&) const
{
return _database->getServerInfo(id, true);
}
ServerState
AdminI::getServerState(const string& id, const Current&) const
{
ServerProxyWrapper proxy(_database, id);
try
{
return proxy->getState();
}
catch(const Ice::Exception& ex)
{
proxy.handleException(ex);
return Inactive;
}
}
Ice::Int
AdminI::getServerPid(const string& id, const Current&) const
{
ServerProxyWrapper proxy(_database, id);
try
{
return proxy->getPid();
}
catch(const Ice::Exception& ex)
{
proxy.handleException(ex);
return 0;
}
}
void
AdminI::startServer(const string& id, const Current&)
{
ServerProxyWrapper proxy(_database, id);
proxy.useActivationTimeout();
try
{
proxy->start();
}
catch(const ServerStartException&)
{
throw;
}
catch(const Ice::Exception& ex)
{
proxy.handleException(ex);
}
}
void
AdminI::stopServer(const string& id, const Current&)
{
ServerProxyWrapper proxy(_database, id);
proxy.useDeactivationTimeout();
try
{
proxy->stop();
}
catch(const Ice::TimeoutException&)
{
}
catch(const Ice::Exception& ex)
{
proxy.handleException(ex);
}
}
void
AdminI::patchServer_async(const AMD_Admin_patchServerPtr& amdCB, const string& id, bool shutdown,
const Current& current)
{
ServerInfo info = _database->getServerInfo(id);
ApplicationHelper helper(current.adapter->getCommunicator(), _database->getApplicationDescriptor(info.application));
DistributionDescriptor appDistrib;
vector<string> nodes;
helper.getDistributions(appDistrib, nodes, id);
if(appDistrib.icepatch.empty() && nodes.empty())
{
amdCB->ice_response();
return;
}
assert(nodes.size() == 1);
vector<string>::const_iterator p = nodes.begin();
AMI_Node_patchPtr amiCB = new ServerPatchCB(amdCB, _traceLevels, id, *p);
try
{
_database->getNode(*p)->patch_async(amiCB, info.application, id, appDistrib, shutdown);
}
catch(const Ice::Exception& ex)
{
amiCB->ice_exception(ex);
}
}
void
AdminI::sendSignal(const string& id, const string& signal, const Current&)
{
ServerProxyWrapper proxy(_database, id);
try
{
proxy->sendSignal(signal);
}
catch(const Ice::Exception& ex)
{
proxy.handleException(ex);
}
}
void
AdminI::writeMessage(const string& id, const string& message, Int fd, const Current&)
{
ServerProxyWrapper proxy(_database, id);
try
{
proxy->writeMessage(message, fd);
}
catch(const Ice::Exception& ex)
{
proxy.handleException(ex);
}
}
StringSeq
AdminI::getAllServerIds(const Current&) const
{
return _database->getAllServers();
}
void
AdminI::enableServer(const string& id, bool enable, const Ice::Current&)
{
ServerProxyWrapper proxy(_database, id);
try
{
proxy->setEnabled(enable);
}
catch(const Ice::Exception& ex)
{
proxy.handleException(ex);
}
}
bool
AdminI::isServerEnabled(const ::std::string& id, const Ice::Current&) const
{
ServerProxyWrapper proxy(_database, id);
try
{
return proxy->isEnabled();
}
catch(const Ice::Exception& ex)
{
proxy.handleException(ex);
return true; // Keeps the compiler happy.
}
}
AdapterInfoSeq
AdminI::getAdapterInfo(const string& id, const Current&) const
{
return _database->getAdapterInfo(id);
}
void
AdminI::removeAdapter(const string& adapterId, const Ice::Current&)
{
_database->removeAdapter(adapterId);
}
StringSeq
AdminI::getAllAdapterIds(const Current&) const
{
return _database->getAllAdapters();
}
void
AdminI::addObject(const Ice::ObjectPrx& proxy, const ::Ice::Current& current)
{
try
{
addObjectWithType(proxy, proxy->ice_id(), current);
}
catch(const Ice::LocalException& e)
{
ostringstream os;
os << "failed to invoke ice_id() on proxy `" + current.adapter->getCommunicator()->proxyToString(proxy);
os << "':\n" << e;
throw DeploymentException(os.str());
}
}
void
AdminI::updateObject(const Ice::ObjectPrx& proxy, const ::Ice::Current& current)
{
_database->updateObject(proxy);
}
void
AdminI::addObjectWithType(const Ice::ObjectPrx& proxy, const string& type, const ::Ice::Current&)
{
ObjectInfo info;
info.proxy = proxy;
info.type = type;
_database->addObject(info);
}
void
AdminI::removeObject(const Ice::Identity& id, const Ice::Current&)
{
_database->removeObject(id);
}
ObjectInfo
AdminI::getObjectInfo(const Ice::Identity& id, const Ice::Current&) const
{
return _database->getObjectInfo(id);
}
ObjectInfoSeq
AdminI::getObjectInfosByType(const string& type, const Ice::Current&) const
{
return _database->getObjectInfosByType(type);
}
ObjectInfoSeq
AdminI::getAllObjectInfos(const string& expression, const Ice::Current&) const
{
return _database->getAllObjectInfos(expression);
}
NodeInfo
AdminI::getNodeInfo(const string& name, const Ice::Current&) const
{
return _database->getNodeInfo(name);
}
bool
AdminI::pingNode(const string& name, const Current&) const
{
try
{
_database->getNode(name)->ice_ping();
return true;
}
catch(const NodeUnreachableException&)
{
return false;
}
catch(const Ice::ObjectNotExistException&)
{
throw NodeNotExistException();
}
catch(const Ice::LocalException&)
{
return false;
}
}
LoadInfo
AdminI::getNodeLoad(const string& name, const Current&) const
{
try
{
return _database->getNode(name)->getLoad();
}
catch(const Ice::ObjectNotExistException&)
{
throw NodeNotExistException();
}
catch(const Ice::LocalException& ex)
{
ostringstream os;
os << ex;
throw NodeUnreachableException(name, os.str());
}
return LoadInfo(); // Keep the compiler happy.
}
void
AdminI::shutdownNode(const string& name, const Current&)
{
NodePrx node = _database->getNode(name);
try
{
node->shutdown();
}
catch(const Ice::ObjectNotExistException&)
{
throw NodeNotExistException(name);
}
catch(const Ice::LocalException& ex)
{
ostringstream os;
os << ex;
throw NodeUnreachableException(name, os.str());
}
}
string
AdminI::getNodeHostname(const string& name, const Current&) const
{
NodePrx node = _database->getNode(name);
try
{
return node->getHostname();
}
catch(const Ice::ObjectNotExistException&)
{
throw NodeNotExistException(name);
}
catch(const Ice::LocalException& ex)
{
ostringstream os;
os << ex;
throw NodeUnreachableException(name, os.str());
return ""; // Keep the compiler happy.
}
return ""; // Keep the compiler happy.
}
StringSeq
AdminI::getAllNodeNames(const Current&) const
{
return _database->getAllNodes();
}
void
AdminI::shutdown(const Current&)
{
_registry->shutdown();
}
SliceChecksumDict
AdminI::getSliceChecksums(const Current&) const
{
return sliceChecksums();
}
|