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
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
|
// **********************************************************************
//
// Copyright (c) 2003-2017 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.
//
// **********************************************************************
#pragma once
[["cpp:header-ext:h", "objc:header-dir:objc", "js:ice-build"]]
[["cpp:include:IceGrid/Config.h"]]
#include <Ice/Identity.ice>
#include <Ice/BuiltinSequences.ice>
#include <Ice/Properties.ice>
#include <Ice/SliceChecksumDict.ice>
#include <Glacier2/Session.ice>
#include <IceGrid/Exception.ice>
#include <IceGrid/Descriptor.ice>
["objc:prefix:ICEGRID"]
module IceGrid
{
/**
*
* An enumeration representing the state of the server.
*
**/
enum ServerState
{
/**
*
* The server is not running.
*
**/
Inactive,
/**
*
* The server is being activated and will change to the active
* state when the registered server object adapters are activated
* or to the activation timed out state if the activation timeout
* expires.
*
**/
Activating,
/**
*
* The activation timed out state indicates that the server
* activation timed out.
*
**/
ActivationTimedOut,
/**
*
* The server is running.
*
**/
Active,
/**
*
* The server is being deactivated.
*
**/
Deactivating,
/**
*
* The server is being destroyed.
*
**/
Destroying,
/**
*
* The server is destroyed.
*
**/
Destroyed
};
/**
*
* A dictionary of proxies.
*
**/
dictionary<string, Object*> StringObjectProxyDict;
/**
*
* Information about an Ice object.
*
**/
["cpp:comparable"]
struct ObjectInfo
{
/**
*
* The proxy of the object.
*
**/
Object* proxy;
/**
*
* The type of the object.
*
**/
string type;
};
/**
*
* A sequence of object information structures.
*
**/
sequence<ObjectInfo> ObjectInfoSeq;
/**
*
* Information about an adapter registered with the IceGrid registry.
*
**/
["cpp:comparable"]
struct AdapterInfo
{
/**
*
* The id of the adapter.
*
**/
string id;
/**
*
* A dummy direct proxy that contains the adapter endpoints.
*
**/
Object* proxy;
/**
*
* The replica group id of the object adapter, or empty if the
* adapter doesn't belong to a replica group.
*
**/
string replicaGroupId;
};
/**
*
* A sequence of adapter information structures.
*
**/
sequence<AdapterInfo> AdapterInfoSeq;
/**
*
* Information about a server managed by an IceGrid node.
*
**/
struct ServerInfo
{
/**
*
* The server application.
*
**/
string application;
/**
*
* The application uuid.
*
**/
string uuid;
/**
*
* The application revision.
*
**/
int revision;
/**
*
* The server node.
*
**/
string node;
/**
*
* The server descriptor.
*
**/
ServerDescriptor descriptor;
/**
*
* The id of the session which allocated the server.
*
**/
string sessionId;
};
/**
*
* Information about an IceGrid node.
*
**/
struct NodeInfo
{
/**
*
* The name of the node.
*
**/
string name;
/**
*
* The operating system name.
*
**/
string os;
/**
*
* The network name of the host running this node (as defined in
* uname()).
*
**/
string hostname;
/**
*
* The operation system release level (as defined in uname()).
*
**/
string release;
/**
*
* The operation system version (as defined in uname()).
*
**/
string version;
/**
*
* The machine hardware type (as defined in uname()).
*
**/
string machine;
/**
*
* The number of processor threads on the node.
* For example, nProcessors is 8 on a computer with a single quad-core
* processor and two HT threads per core.
*
**/
int nProcessors;
/**
*
* The path to the node data directory.
*
**/
string dataDir;
};
/**
*
* Information about an IceGrid registry replica.
*
**/
struct RegistryInfo
{
/**
*
* The name of the registry.
*
**/
string name;
/**
*
* The network name of the host running this registry (as defined in
* uname()).
*
**/
string hostname;
};
/**
*
* A sequence of {@link RegistryInfo} structures.
*
**/
sequence<RegistryInfo> RegistryInfoSeq;
/**
*
* Information about the load of a node.
*
**/
struct LoadInfo
{
/** The load average over the past minute. */
float avg1;
/** The load average over the past 5 minutes. */
float avg5;
/** The load average over the past 15 minutes. */
float avg15;
};
/**
*
* Information about an IceGrid application.
*
**/
struct ApplicationInfo
{
/** Unique application identifier. */
string uuid;
/** The creation time. */
long createTime;
/** The user who created the application. */
string createUser;
/** The update time. */
long updateTime;
/** The user who updated the application. */
string updateUser;
/** The application revision number. */
int revision;
/** The application descriptor */
ApplicationDescriptor descriptor;
};
/**
*
* A sequence of {@link ApplicationInfo} structures.
*
**/
["java:type:java.util.LinkedList<ApplicationInfo>"] sequence<ApplicationInfo> ApplicationInfoSeq;
/**
*
* Information about updates to an IceGrid application.
*
**/
struct ApplicationUpdateInfo
{
/** The update time. */
long updateTime;
/** The user who updated the application. */
string updateUser;
/** The application revision number. */
int revision;
/** The update descriptor. */
ApplicationUpdateDescriptor descriptor;
};
/**
*
* The IceGrid administrative interface. </p>
* <p class="Warning">Allowing access to this interface
* is a security risk! Please see the IceGrid documentation
* for further information.
*
**/
interface Admin
{
/**
*
* Add an application to IceGrid.
*
* @param descriptor The application descriptor.
*
* @throws AccessDeniedException Raised if the session doesn't
* hold the exclusive lock or if another session is holding the
* lock.
*
* @throws DeploymentException Raised if application deployment
* failed.
*
**/
void addApplication(ApplicationDescriptor descriptor)
throws AccessDeniedException, DeploymentException;
/**
*
* Synchronize a deployed application with the given application
* descriptor. This operation will replace the current descriptor
* with this new descriptor.
*
* @param descriptor The application descriptor.
*
* @throws AccessDeniedException Raised if the session doesn't
* hold the exclusive lock or if another session is holding the
* lock.
*
* @throws DeploymentException Raised if application deployment
* failed.
*
* @throws ApplicationNotExistException Raised if the application
* doesn't exist.
*
**/
void syncApplication(ApplicationDescriptor descriptor)
throws AccessDeniedException, DeploymentException, ApplicationNotExistException;
/**
*
* Update a deployed application with the given update application
* descriptor.
*
* @param descriptor The update descriptor.
*
* @throws AccessDeniedException Raised if the session doesn't
* hold the exclusive lock or if another session is holding the
* lock.
*
* @throws DeploymentException Raised if application deployment
* failed.
*
* @throws ApplicationNotExistException Raised if the application
* doesn't exist.
*
**/
void updateApplication(ApplicationUpdateDescriptor descriptor)
throws AccessDeniedException, DeploymentException, ApplicationNotExistException;
/**
*
* Synchronize a deployed application with the given application
* descriptor. This operation will replace the current descriptor
* with this new descriptor only if no server restarts are
* necessary for the update of the application. If some servers
* need to be restarted, the synchronization is rejected with a
* DeploymentException.
*
* @param descriptor The application descriptor.
*
* @throws AccessDeniedException Raised if the session doesn't
* hold the exclusive lock or if another session is holding the
* lock.
*
* @throws DeploymentException Raised if application deployment
* failed.
*
* @throws ApplicationNotExistException Raised if the application
* doesn't exist.
*
**/
void syncApplicationWithoutRestart(ApplicationDescriptor descriptor)
throws AccessDeniedException, DeploymentException, ApplicationNotExistException;
/**
*
* Update a deployed application with the given update application
* descriptor only if no server restarts are necessary for the
* update of the application. If some servers need to be
* restarted, the synchronization is rejected with a
* DeploymentException.
*
* @param descriptor The update descriptor.
*
* @throws AccessDeniedException Raised if the session doesn't
* hold the exclusive lock or if another session is holding the
* lock.
*
* @throws DeploymentException Raised if application deployment
* failed.
*
* @throws ApplicationNotExistException Raised if the application
* doesn't exist.
*
**/
void updateApplicationWithoutRestart(ApplicationUpdateDescriptor descriptor)
throws AccessDeniedException, DeploymentException, ApplicationNotExistException;
/**
*
* Remove an application from IceGrid.
*
* @param name The application name.
*
* @throws AccessDeniedException Raised if the session doesn't
* hold the exclusive lock or if another session is holding the
* lock.
*
* @throws ApplicationNotExistException Raised if the application
* doesn't exist.
*
**/
void removeApplication(string name)
throws AccessDeniedException, DeploymentException, ApplicationNotExistException;
/**
*
* Instantiate a server template from an application on the given
* node.
*
* @param application The application name.
*
* @param node The name of the node where the server will be
* deployed.
*
* @param desc The descriptor of the server instance to deploy.
*
* @throws AccessDeniedException Raised if the session doesn't
* hold the exclusive lock or if another session is holding the
* lock.
*
* @throws DeploymentException Raised if server instantiation
* failed.
*
* @throws ApplicationNotExistException Raised if the application
* doesn't exist.
*
**/
void instantiateServer(string application, string node, ServerInstanceDescriptor desc)
throws AccessDeniedException, ApplicationNotExistException, DeploymentException;
/**
*
* Patch the given application data.
*
* @param name The application name.
*
* @param shutdown If true, the servers depending on the data to
* patch will be shut down if necessary.
*
* @throws ApplicationNotExistException Raised if the application
* doesn't exist.
*
* @throws PatchException Raised if the patch failed.
*
**/
["amd"] void patchApplication(string name, bool shutdown)
throws ApplicationNotExistException, PatchException;
/**
*
* Get an application descriptor.
*
* @param name The application name.
*
* @return The application descriptor.
*
* @throws ApplicationNotExistException Raised if the application
* doesn't exist.
*
**/
["nonmutating", "cpp:const"] idempotent ApplicationInfo getApplicationInfo(string name)
throws ApplicationNotExistException;
/**
*
* Get the default application descriptor.
*
* @throws DeploymentException Raised if the default application
* descriptor can't be accessed or is invalid.
*
**/
["nonmutating", "cpp:const"] idempotent ApplicationDescriptor getDefaultApplicationDescriptor()
throws DeploymentException;
/**
*
* Get all the IceGrid applications currently registered.
*
* @return The application names.
*
**/
["nonmutating", "cpp:const"] idempotent Ice::StringSeq getAllApplicationNames();
/**
*
* Get the server information for the server with the given id.
*
* @param id The server id.
*
* @throws ServerNotExistException Raised if the server doesn't exist.
*
* @return The server information.
*
**/
["nonmutating", "cpp:const"] idempotent ServerInfo getServerInfo(string id)
throws ServerNotExistException;
/**
*
* Get a server's state.
*
* @param id The server id.
*
* @return The server state.
*
* @throws ServerNotExistException Raised if the server doesn't exist.
*
* @throws NodeUnreachableException Raised if the node could not be
* reached.
*
* @throws DeploymentException Raised if the server couldn't be
* deployed on the node.
*
**/
["nonmutating", "cpp:const"] idempotent ServerState getServerState(string id)
throws ServerNotExistException, NodeUnreachableException, DeploymentException;
/**
*
* Get a server's system process id. The process id is operating
* system dependent.
*
* @param id The server id.
*
* @return The server's process id.
*
* @throws ServerNotExistException Raised if the server doesn't exist.
*
* @throws NodeUnreachableException Raised if the node could not be
* reached.
*
* @throws DeploymentException Raised if the server couldn't be
* deployed on the node.
*
**/
["nonmutating", "cpp:const"] idempotent int getServerPid(string id)
throws ServerNotExistException, NodeUnreachableException, DeploymentException;
/**
*
* Get the category for server admin objects. You can manufacture a server admin
* proxy from the admin proxy by changing its identity: use the server ID as name
* and the returned category as category.
*
* @return The category for server admin objects.
*
**/
["cpp:const"]
idempotent string getServerAdminCategory();
/**
*
* Get a proxy to the server's admin object.
*
* @param id The server id.
*
* @return A proxy to the server's admin object
*
* @throws ServerNotExistException Raised if the server doesn't exist.
*
* @throws NodeUnreachableException Raised if the node could not
* be reached.
*
* @throws DeploymentException Raised if the server couldn't be
* deployed on the node.
*
**/
["cpp:const"]
idempotent Object* getServerAdmin(string id)
throws ServerNotExistException, NodeUnreachableException, DeploymentException;
/**
*
* Enable or disable a server. A disabled server can't be started
* on demand or administratively. The enable state of the server
* is not persistent: if the node is shut down and restarted, the
* server will be enabled by default.
*
* @param id The server id.
*
* @param enabled True to enable the server, false to disable it.
*
* @throws ServerNotExistException Raised if the server doesn't exist.
*
* @throws NodeUnreachableException Raised if the node could not
* be reached.
*
* @throws DeploymentException Raised if the server couldn't be
* deployed on the node.
*
**/
idempotent void enableServer(string id, bool enabled)
throws ServerNotExistException, NodeUnreachableException, DeploymentException;
/**
*
* Check if the server is enabled or disabled.
*
* @param id The server id.
*
* @throws ServerNotExistException Raised if the server doesn't
* exist.
*
* @throws NodeUnreachableException Raised if the node could not
* be reached.
*
* @throws DeploymentException Raised if the server couldn't be
* deployed on the node.
*
**/
["nonmutating", "cpp:const"] idempotent bool isServerEnabled(string id)
throws ServerNotExistException, NodeUnreachableException, DeploymentException;
/**
*
* Start a server and wait for its activation.
*
* @param id The server id.
*
* @throws ServerNotExistException Raised if the server doesn't
* exist.
*
* @throws ServerStartException Raised if the server couldn't be
* started.
*
* @throws NodeUnreachableException Raised if the node could not
* be reached.
*
* @throws DeploymentException Raised if the server couldn't be
* deployed on the node.
*
**/
["amd"] void startServer(string id)
throws ServerNotExistException, ServerStartException, NodeUnreachableException, DeploymentException;
/**
*
* Stop a server.
*
* @param id The server id.
*
* @throws ServerNotExistException Raised if the server doesn't
* exist.
*
* @throws ServerStopException Raised if the server couldn't be
* stopped.
*
* @throws NodeUnreachableException Raised if the node could not be
* reached.
*
* @throws DeploymentException Raised if the server couldn't be
* deployed on the node.
*
**/
["amd"] void stopServer(string id)
throws ServerNotExistException, ServerStopException, NodeUnreachableException, DeploymentException;
/**
*
* Patch a server.
*
* @param id The server id.
*
* @param shutdown If true, servers depending on the data to patch
* will be shut down if necessary.
*
* @throws ServerNotExistException Raised if the server doesn't
* exist.
*
* @throws NodeUnreachableException Raised if the node could not be
* reached.
*
* @throws DeploymentException Raised if the server couldn't be
* deployed on the node.
*
* @throws PatchException Raised if the patch failed.
*
**/
["amd"] void patchServer(string id, bool shutdown)
throws ServerNotExistException, NodeUnreachableException, DeploymentException, PatchException;
/**
*
* Send signal to a server.
*
* @param id The server id.
*
* @param signal The signal, for example SIGTERM or 15.
*
* @throws ServerNotExistException Raised if the server doesn't
* exist.
*
* @throws NodeUnreachableException Raised if the node could not be
* reached.
*
* @throws DeploymentException Raised if the server couldn't be
* deployed on the node.
*
* @throws BadSignalException Raised if the signal is not recognized
* by the target server.
*
**/
void sendSignal(string id, string signal)
throws ServerNotExistException, NodeUnreachableException, DeploymentException, BadSignalException;
/**
*
* Get all the server ids registered with IceGrid.
*
* @return The server ids.
*
**/
["nonmutating", "cpp:const"] idempotent Ice::StringSeq getAllServerIds();
/**
*
* Get the adapter information for the replica group or adapter
* with the given id.
*
* @param id The adapter id.
*
* @return A sequence of adapter information structures. If the
* given id refers to an adapter, this sequence will contain only
* one element. If the given id refers to a replica group, the
* sequence will contain the adapter information of each member of
* the replica group.
*
* @throws AdapterNotExistException Raised if the adapter or
* replica group doesn't exist.
*
**/
["nonmutating", "cpp:const"] idempotent AdapterInfoSeq getAdapterInfo(string id)
throws AdapterNotExistException;
/**
*
* Remove the adapter with the given id.
*
* @param id The adapter id.
* @throws AdapterNotExistException Raised if the adapter doesn't
* exist.
*
**/
void removeAdapter(string id)
throws AdapterNotExistException, DeploymentException;
/**
*
* Get all the adapter ids registered with IceGrid.
*
* @return The adapter ids.
*
**/
["nonmutating", "cpp:const"] idempotent Ice::StringSeq getAllAdapterIds();
/**
*
* Add an object to the object registry. IceGrid will get the
* object type by calling <tt>ice_id</tt> on the given proxy. The object
* must be reachable.
*
* @param obj The object to be added to the registry.
*
* @throws ObjectExistsException Raised if the object is already
* registered.
*
* @throws DeploymentException Raised if the object can't be
* added. This might be raised if the invocation on the proxy to
* get the object type failed.
*
**/
void addObject(Object* obj)
throws ObjectExistsException, DeploymentException;
/**
*
* Update an object in the object registry. Only objects added
* with this interface can be updated with this operation. Objects
* added with deployment descriptors should be updated with the
* deployment mechanism.
*
* @param obj The object to be updated to the registry.
*
* @throws ObjectNotRegisteredException Raised if the object isn't
* registered with the registry.
*
* @throws DeploymentException Raised if the object can't be
* updated. This might happen if the object was added with a
* deployment descriptor.
*
**/
void updateObject(Object* obj)
throws ObjectNotRegisteredException, DeploymentException;
/**
*
* Add an object to the object registry and explicitly specify
* its type.
*
* @param obj The object to be added to the registry.
*
* @param type The object type.
*
* @throws ObjectExistsException Raised if the object is already
* registered.
*
**/
void addObjectWithType(Object* obj, string type)
throws ObjectExistsException, DeploymentException;
/**
*
* Remove an object from the object registry. Only objects added
* with this interface can be removed with this operation. Objects
* added with deployment descriptors should be removed with the
* deployment mechanism.
*
* @param id The identity of the object to be removed from the
* registry.
*
* @throws ObjectNotRegisteredException Raised if the object isn't
* registered with the registry.
*
* @throws DeploymentException Raised if the object can't be
* removed. This might happen if the object was added with a
* deployment descriptor.
*
**/
void removeObject(Ice::Identity id)
throws ObjectNotRegisteredException, DeploymentException;
/**
*
* Get the object info for the object with the given identity.
*
* @param id The identity of the object.
*
* @return The object info.
*
* @throws ObjectNotRegisteredException Raised if the object isn't
* registered with the registry.
*
**/
["nonmutating", "cpp:const"] idempotent ObjectInfo getObjectInfo(Ice::Identity id)
throws ObjectNotRegisteredException;
/**
*
* Get the object info of all the registered objects with the
* given type.
*
* @param type The type of the object.
*
* @return The object infos.
*
**/
["nonmutating", "cpp:const"] idempotent ObjectInfoSeq getObjectInfosByType(string type);
/**
*
* Get the object info of all the registered objects whose stringified
* identities match the given expression.
*
* @param expr The expression to match against the stringified
* identities of registered objects. The expression may contain
* a trailing wildcard (<tt>*</tt>) character.
*
* @return All the object infos with a stringified identity
* matching the given expression.
*
**/
["nonmutating", "cpp:const"] idempotent ObjectInfoSeq getAllObjectInfos(string expr);
/**
*
* Ping an IceGrid node to see if it is active.
*
* @param name The node name.
*
* @return true if the node ping succeeded, false otherwise.
*
* @throws NodeNotExistException Raised if the node doesn't exist.
*
**/
["nonmutating", "cpp:const"] idempotent bool pingNode(string name)
throws NodeNotExistException;
/**
*
* Get the load averages of the node.
*
* @param name The node name.
*
* @return The node load information.
*
* @throws NodeNotExistException Raised if the node doesn't exist.
*
* @throws NodeUnreachableException Raised if the node could not be
* reached.
*
**/
["nonmutating", "cpp:const"] idempotent LoadInfo getNodeLoad(string name)
throws NodeNotExistException, NodeUnreachableException;
/**
*
* Get the node information for the node with the given name.
*
* @param name The node name.
*
* @return The node information.
*
* @throws NodeNotExistException Raised if the node doesn't exist.
*
* @throws NodeUnreachableException Raised if the node could not be
* reached.
*
**/
["nonmutating", "cpp:const"] idempotent NodeInfo getNodeInfo(string name)
throws NodeNotExistException, NodeUnreachableException;
/**
*
* Get a proxy to the IceGrid node's admin object.
*
* @param name The IceGrid node name
*
* @return A proxy to the IceGrid node's admin object
*
* @throws NodeNotExistException Raised if the node doesn't exist.
*
* @throws NodeUnreachableException Raised if the node could not be
* reached.
*
**/
["cpp:const"] idempotent Object* getNodeAdmin(string name)
throws NodeNotExistException, NodeUnreachableException;
/**
*
* Get the number of physical processor sockets for the machine
* running the node with the given name.
*
* Note that this method will return 1 on operating systems where
* this can't be automatically determined and where the
* IceGrid.Node.ProcessorSocketCount property for the node is not
* set.
*
* @param name The node name.
*
* @return The number of processor sockets or 1 if the number of
* sockets can't determined.
*
* @throws NodeNotExistException Raised if the node doesn't exist.
*
* @throws NodeUnreachableException Raised if the node could not be
* reached.
*
**/
["nonmutating", "cpp:const"] idempotent int getNodeProcessorSocketCount(string name)
throws NodeNotExistException, NodeUnreachableException;
/**
*
* Shutdown an IceGrid node.
*
* @param name The node name.
*
* @throws NodeNotExistException Raised if the node doesn't exist.
*
* @throws NodeUnreachableException Raised if the node could not be
* reached.
*
**/
void shutdownNode(string name)
throws NodeNotExistException, NodeUnreachableException;
/**
*
* Get the hostname of this node.
*
* @param name The node name.
*
* @return The node hostname.
*
* @throws NodeNotExistException Raised if the node doesn't exist.
*
* @throws NodeUnreachableException Raised if the node could not be
* reached.
*
**/
["nonmutating", "cpp:const"] idempotent string getNodeHostname(string name)
throws NodeNotExistException, NodeUnreachableException;
/**
*
* Get all the IceGrid nodes currently registered.
*
* @return The node names.
*
**/
["nonmutating", "cpp:const"] idempotent Ice::StringSeq getAllNodeNames();
/**
*
* Ping an IceGrid registry to see if it is active.
*
* @param name The registry name.
*
* @return true if the registry ping succeeded, false otherwise.
*
* @throws RegistryNotExistException Raised if the registry doesn't exist.
*
**/
["cpp:const"] idempotent bool pingRegistry(string name)
throws RegistryNotExistException;
/**
*
* Get the registry information for the registry with the given name.
*
* @param name The registry name.
*
* @return The registry information.
*
* @throws RegistryNotExistException Raised if the registry doesn't exist.
*
* @throws RegistryUnreachableException Raised if the registry could not be
* reached.
*
**/
["cpp:const"] idempotent RegistryInfo getRegistryInfo(string name)
throws RegistryNotExistException, RegistryUnreachableException;
/**
*
* Get a proxy to the IceGrid registry's admin object.
*
* @param name The registry name
*
* @return A proxy to the IceGrid registry's admin object
*
* @throws RegistryNotExistException Raised if the registry doesn't exist.
*
**/
["cpp:const"] idempotent Object* getRegistryAdmin(string name)
throws RegistryNotExistException;
/**
*
* Shutdown an IceGrid registry.
*
* @param name The registry name.
*
* @throws RegistryNotExistException Raised if the registry doesn't exist.
*
* @throws RegistryUnreachableException Raised if the registry could not be
* reached.
*
**/
idempotent void shutdownRegistry(string name)
throws RegistryNotExistException, RegistryUnreachableException;
/**
*
* Get all the IceGrid registries currently registered.
*
* @return The registry names.
*
**/
["cpp:const"] idempotent Ice::StringSeq getAllRegistryNames();
/**
*
* Shut down the IceGrid registry.
*
**/
void shutdown();
/**
*
* Returns the checksums for the IceGrid Slice definitions.
*
* @return A dictionary mapping Slice type ids to their checksums.
*
**/
["nonmutating", "cpp:const"] idempotent Ice::SliceChecksumDict getSliceChecksums();
};
/**
*
* This interface provides access to IceGrid log file contents.
*
**/
interface FileIterator
{
/**
*
* Read lines from the log file.
*
* @param size Specifies the maximum number of bytes to be
* received. The server will ensure that the returned message
* doesn't exceed the given size.
*
* @param lines The lines read from the file. If there was nothing to
* read from the file since the last call to read, an empty
* sequence is returned. The last line of the sequence is always
* incomplete (and therefore no '\n' should be added when writing
* the last line to the to the output device).
*
* @return True if EOF is encountered.
*
* @throws FileNotAvailableException Raised if there was a problem
* to read lines from the file.
*
**/
bool read(int size, out Ice::StringSeq lines)
throws FileNotAvailableException;
/**
*
* Destroy the iterator.
*
**/
void destroy();
};
interface RegistryObserver;
interface NodeObserver;
interface ApplicationObserver;
interface AdapterObserver;
interface ObjectObserver;
/**
*
* Used by administrative clients to view,
* update, and receive observer updates from the IceGrid
* registry. Admin sessions are created either with the {@link Registry}
* object or the registry admin {@link Glacier2.SessionManager} object.
*
* @see Registry
* @see Glacier2.SessionManager
*
**/
interface AdminSession extends Glacier2::Session
{
/**
*
* Keep the session alive. Clients should call this operation
* regularly to prevent the server from reaping the session.
*
* @see Registry#getSessionTimeout
*
**/
idempotent void keepAlive();
/**
*
* Get the admin interface. The admin object returned by this
* operation can only be accessed by the session.
*
* @return The admin interface proxy.
*
**/
["nonmutating", "cpp:const"] idempotent Admin* getAdmin();
/**
*
* Get a "template" proxy for admin callback objects.
* An Admin client uses this proxy to set the category of its callback
* objects, and the published endpoints of the object adapter hosting
* the admin callback objects.
*
* @return A template proxy. The returned proxy is null when the Admin
* session was established using Glacier2.
*
**/
["cpp:const"] idempotent Object* getAdminCallbackTemplate();
/**
*
* Set the observer proxies that receive
* notifications when the state of the registry
* or nodes changes.
*
* @param registryObs The registry observer.
*
* @param nodeObs The node observer.
*
* @param appObs The application observer.
*
* @param adptObs The adapter observer.
*
* @param objObs The object observer.
*
* @throws ObserverAlreadyRegisteredException Raised if an
* observer is already registered with this registry.
*
**/
idempotent void setObservers(RegistryObserver* registryObs, NodeObserver* nodeObs, ApplicationObserver* appObs,
AdapterObserver* adptObs, ObjectObserver* objObs)
throws ObserverAlreadyRegisteredException;
/**
*
* Set the observer identities that receive
* notifications the state of the registry
* or nodes changes. This operation should be used by clients that
* are using a bidirectional connection to communicate with the
* session.
*
* @param registryObs The registry observer identity.
*
* @param nodeObs The node observer identity.
*
* @param appObs The application observer.
*
* @param adptObs The adapter observer.
*
* @param objObs The object observer.
*
* @throws ObserverAlreadyRegisteredException Raised if an
* observer is already registered with this registry.
*
**/
idempotent void setObserversByIdentity(Ice::Identity registryObs, Ice::Identity nodeObs, Ice::Identity appObs,
Ice::Identity adptObs, Ice::Identity objObs)
throws ObserverAlreadyRegisteredException;
/**
*
* Acquires an exclusive lock to start updating the registry applications.
*
* @return The current serial.
*
* @throws AccessDeniedException Raised if the exclusive lock can't be
* acquired. This might happen if the lock is currently acquired by
* another session.
*
**/
int startUpdate()
throws AccessDeniedException;
/**
*
* Finish updating the registry and release the exclusive lock.
*
* @throws AccessDeniedException Raised if the session doesn't hold the
* exclusive lock.
*
**/
void finishUpdate()
throws AccessDeniedException;
/**
*
* Get the name of the registry replica hosting this session.
*
* @return The replica name of the registry.
*
**/
["cpp:const"] idempotent string getReplicaName();
/**
*
* Open the given server log file for reading. The file can be
* read with the returned file iterator.
*
* @param id The server id.
*
* @param path The path of the log file. A log file can be opened
* only if it's declared in the server or service deployment
* descriptor.
*
* @param count Specifies where to start reading the file. If
* negative, the file is read from the begining. If 0 or positive,
* the file is read from the last <tt>count</tt> lines.
*
* @return An iterator to read the file.
*
* @throws FileNotAvailableException Raised if the file can't be
* read.
*
* @throws ServerNotExistException Raised if the server doesn't
* exist.
*
* @throws NodeUnreachableException Raised if the node could not
* be reached.
*
* @throws DeploymentException Raised if the server couldn't be
* deployed on the node.
*
**/
FileIterator* openServerLog(string id, string path, int count)
throws FileNotAvailableException, ServerNotExistException, NodeUnreachableException, DeploymentException;
/**
*
* Open the given server stderr file for reading. The file can be
* read with the returned file iterator.
*
* @param id The server id.
*
* @param count Specifies where to start reading the file. If
* negative, the file is read from the begining. If 0 or positive,
* the file is read from the last <tt>count</tt> lines.
*
* @return An iterator to read the file.
*
* @throws FileNotAvailableException Raised if the file can't be
* read.
*
* @throws ServerNotExistException Raised if the server doesn't
* exist.
*
* @throws NodeUnreachableException Raised if the node could not
* be reached.
*
* @throws DeploymentException Raised if the server couldn't be
* deployed on the node.
*
**/
FileIterator* openServerStdErr(string id, int count)
throws FileNotAvailableException, ServerNotExistException, NodeUnreachableException, DeploymentException;
/**
*
* Open the given server stdout file for reading. The file can be
* read with the returned file iterator.
*
* @param id The server id.
*
* @param count Specifies where to start reading the file. If
* negative, the file is read from the begining. If 0 or positive,
* the file is read from the last <tt>count</tt> lines.
*
* @return An iterator to read the file.
*
* @throws FileNotAvailableException Raised if the file can't be
* read.
*
* @throws ServerNotExistException Raised if the server doesn't
* exist.
*
* @throws NodeUnreachableException Raised if the node could not
* be reached.
*
* @throws DeploymentException Raised if the server couldn't be
* deployed on the node.
*
**/
FileIterator* openServerStdOut(string id, int count)
throws FileNotAvailableException, ServerNotExistException, NodeUnreachableException, DeploymentException;
/**
*
* Open the given node stderr file for reading. The file can be
* read with the returned file iterator.
*
* @param name The node name.
*
* @param count Specifies where to start reading the file. If
* negative, the file is read from the begining. If 0 or positive,
* the file is read from the last <tt>count</tt> lines.
*
* @return An iterator to read the file.
*
* @throws FileNotAvailableException Raised if the file can't be
* read.
*
* @throws NodeNotExistException Raised if the node doesn't exist.
*
* @throws NodeUnreachableException Raised if the node could not
* be reached.
*
**/
FileIterator* openNodeStdErr(string name, int count)
throws FileNotAvailableException, NodeNotExistException, NodeUnreachableException;
/**
*
* Open the given node stdout file for reading. The file can be
* read with the returned file iterator.
*
* @param name The node name.
*
* @param count Specifies where to start reading the file. If
* negative, the file is read from the begining. If 0 or positive,
* the file is read from the last <tt>count</tt> lines.
*
* @return An iterator to read the file.
*
* @throws FileNotAvailableException Raised if the file can't be
* read.
*
* @throws NodeNotExistException Raised if the node doesn't exist.
*
* @throws NodeUnreachableException Raised if the node could not
* be reached.
*
**/
FileIterator* openNodeStdOut(string name, int count)
throws FileNotAvailableException, NodeNotExistException, NodeUnreachableException;
/**
*
* Open the given registry stderr file for reading. The file can be
* read with the returned file iterator.
*
* @param name The registry name.
*
* @param count Specifies where to start reading the file. If
* negative, the file is read from the begining. If 0 or positive,
* the file is read from the last <tt>count</tt> lines.
*
* @return An iterator to read the file.
*
* @throws FileNotAvailableException Raised if the file can't be
* read.
*
* @throws RegistryNotExistException Raised if the registry
* doesn't exist.
*
* @throws RegistryUnreachableException Raised if the registry
* could not be reached.
*
**/
FileIterator* openRegistryStdErr(string name, int count)
throws FileNotAvailableException, RegistryNotExistException, RegistryUnreachableException;
/**
*
* Open the given registry stdout file for reading. The file can be
* read with the returned file iterator.
*
* @param name The registry name.
*
* @param count Specifies where to start reading the file. If
* negative, the file is read from the begining. If 0 or positive,
* the file is read from the last <tt>count</tt> lines.
*
* @return An iterator to read the file.
*
* @throws FileNotAvailableException Raised if the file can't be
* read.
*
* @throws RegistryNotExistException Raised if the registry
* doesn't exist.
*
* @throws RegistryUnreachableException Raised if the registry
* could not be reached.
*
**/
FileIterator * openRegistryStdOut(string name, int count)
throws FileNotAvailableException, RegistryNotExistException, RegistryUnreachableException;
};
};
|