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
|
// **********************************************************************
//
// Copyright (c) 2003-2004 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.
//
// **********************************************************************
#ifndef ICE_OBJECT_ADAPTER_ICE
#define ICE_OBJECT_ADAPTER_ICE
#include <Ice/CommunicatorF.ice>
#include <Ice/ServantLocatorF.ice>
#include <Ice/RouterF.ice>
#include <Ice/LocatorF.ice>
#include <Ice/Identity.ice>
#include <Ice/FacetMap.ice>
module Ice
{
/**
*
* The object adapter, which is responsible for receiving requests
* from endpoints, and for mapping between servants, identities, and
* proxies.
*
* @see Communicator
* @see ServantLocator
*
**/
local interface ObjectAdapter
{
/**
*
* Get the name of this object adapter.
*
* @return This object adapter's name.
*
**/
nonmutating string getName();
/**
*
* Get the communicator this object adapter belongs to.
*
* @return This object adapter's communicator.
*
* @see Communicator
*
**/
nonmutating Communicator getCommunicator();
/**
*
* Activate all endpoints that belong to this object
* adapter. After activation, the object adapter can dispatch
* requests received through its endpoints.
*
* @see hold
* @see deactivate
*
**/
void activate();
/**
*
* Temporarily hold receiving and dispatching requests. The object
* adapter can be reactivated with the [activate] operation.
*
* <note><para> Holding is not immediate, i.e., after [hold]
* returns, the object adapter might still be active for some
* time. You can use [waitForHold] to wait until holding is
* complete. </para></note>
*
* @see activate
* @see deactivate
* @see waitForHold
*
**/
void hold();
/**
*
* Wait until the object adapter holds requests. Calling [hold]
* initiates holding of requests, and [waitForHold] only returns
* when holding of requests has been completed.
*
* @see hold
* @see waitForDeactivate
* @see Communicator::waitForShutdown
*
**/
void waitForHold();
/**
*
* Deactivate all endpoints that belong to this object
* adapter. After deactivation, the object adapter stops receiving
* requests through its endpoints. Object adapters that have been
* deactivated must not be reactivated again, i.e., the
* deactivation is permanent and [activate] or [hold] must not be
* called after calling [deactivate]; attempting to do so results
* in an [ObjectAdapterDeactivatedException] being thrown. Calls
* to [deactivate] on an already deactivated object adapter are
* ignored.
*
* <note><para> After [deactivate] returns, no new requests are
* processed by the object adapter. However, requests that have
* been started before [deactivate] was called might still be
* active. You can use [waitForDeactivate] to wait for the
* completion of all requests for this object
* adapter. </para></note>
*
* @see activate
* @see hold
* @see waitForDeactivate
* @see Communicator::shutdown
*
**/
void deactivate();
/**
*
* Wait until the object adapter has deactivated. Calling
* [deactivate] initiates object adapter deactivation, and
* [waitForDeactivate] only returns when deactivation has
* been completed.
*
* @see deactivate
* @see waitForHold
* @see Communicator::waitForShutdown
*
**/
void waitForDeactivate();
/**
*
* Add a servant to this object adapter's Active Servant Map. Note
* that one servant can implement several &Ice; objects by
* registering the servant with multiple identities. Adding a
* servant with an identity that is in the map already throws
* [AlreadyRegisteredException].
*
* @param servant The servant to add.
*
* @param id The identity of the &Ice; object that is
* implemented by the servant.
*
* @return A proxy that matches the given identity and this object
* adapter.
*
* @see Identity
* @see addFacet
* @see addWithUUID
* @see remove
* @see find
*
**/
Object* add(Object servant, Identity id);
/**
*
* Like [add], but with a facet. Calling <literal>add(servant, * id)</literal>
* is equivalent to calling [addFacet] with an empty
* facet.
*
* @param servant The servant to add.
*
* @param id The identity of the &Ice; object that is
* implemented by the servant.
*
* @param facet The facet. An empty facet means the default
* facet.
*
* @return A proxy that matches the given identity, facet, and
* this object adapter.
*
* @see Identity
* @see add
* @see addFacetWithUUID
* @see removeFacet
* @see findFacet
*
**/
Object* addFacet(Object servant, Identity id, string facet);
/**
*
* Add a servant to this object adapter's Active Servant Map,
* using an automatically generated UUID as its identity. Note that
* the generated UUID identity can be accessed using the proxy's
* [ice_getIdentity] operation.
*
* @param servant The servant to add.
*
* @return A proxy that matches the generated UUID identity and
* this object adapter.
*
* @see Identity
* @see add
* @see addFacetWithUUID
* @see remove
* @see find
*
**/
Object* addWithUUID(Object servant);
/**
*
* Like [addWithUUID], but with a facet. Calling
* <literal>addWithUUID(servant)</literal> is equivalent to calling
* [addFacetWithUUID] with an empty facet.
*
* @param servant The servant to add.
*
* @param facet The facet. An empty facet means the default
* facet.
*
* @return A proxy that matches the generated UUID identity,
* facet, and this object adapter.
*
* @see Identity
* @see addFacet
* @see addWithUUID
* @see removeFacet
* @see findFacet
*
**/
Object* addFacetWithUUID(Object servant, string facet);
/**
*
* Remove a servant (that is, the default facet) from the
* object adapter's Active Servant Map.
*
* @param id The identity of the &Ice; object that is
* implemented by the servant. If the servant implements multiple
* &Ice; objects, [remove] has to be called for all those &Ice;
* objects. Removing an identity that is not in the map throws
* [NotRegisteredException].
*
* @return The removed servant.
*
* @see Identity
* @see add
* @see addWithUUID
*
**/
Object remove(Identity id);
/**
*
* Like [remove], but with a facet. Calling
* <literal>remove(id)</literal> is equivalent to calling
* [removeFacet] with an empty facet.
*
* @param id The identity of the &Ice; object that is
* implemented by the servant.
*
* @param facet The facet. An empty facet means the default
* facet.
*
* @return The removed servant.
*
* @see Identity
* @see addFacet
* @see addFacetWithUUID
*
**/
Object removeFacet(Identity id, string facet);
/**
*
* Remove all facets with the given identity from the Active
* Servant Map (that is, completely remove the &Ice; object,
* including it's default facet). Removing an identity that
* is not in the map throws [NotRegisteredException].
*
* @param id The identity of the &Ice; object to be removed.
*
* @return A collection containing all the facet names and
* servants of the removed &Ice; object.
*
* @see remove
* @see removeFacet
*
**/
FacetMap removeAllFacets(Identity id);
/**
*
* Look up a servant in this object adapter's Active Servant Map
* by the identity of the &Ice; object it implements.
*
* <note><para>This operation only tries to lookup a servant in
* the Active Servant Map. It does not attempt to find a servant
* by using any installed [ServantLocator].</para></note>
*
* @param id The identity of the &Ice; object for which the
* servant should be returned.
*
* @return The servant that implements the &Ice; object with the
* given identity, or null if no such servant has been found.
*
* @see Identity
* @see findFacet
* @see findByProxy
*
**/
nonmutating Object find(Identity id);
/**
*
* Like [find], but with a facet. Calling
* <literal>find(id)</literal> is equivalent to calling
* [findFacet] with an empty facet.
*
* @param id The identity of the &Ice; object for which the
* servant should be returned.
*
* @param facet The facet. An empty facet means the default
* facet.
*
* @return The servant that implements the &Ice; object with the
* given identity and facet, or null if no such servant has been
* found.
*
* @see Identity
* @see find
* @see findByProxy
*
**/
nonmutating Object findFacet(Identity id, string facet);
/**
*
* Find all facets with the given identity in the Active Servant
* Map.
*
* @param id The identity of the &Ice; object for which the facets
* should be returned.
*
* @return A collection containing all the facet names and
* servants which have been found, or an empty map if there is no
* facet for the given identity.
*
* @see find
* @see findFacet
*
**/
nonmutating FacetMap findAllFacets(Identity id);
/**
*
* Look up a servant in this object adapter's Active Servant Map,
* given a proxy.
*
* <note><para>This operation only tries to lookup a servant in
* the Active Servant Map. It does not attempt to find a servant
* via any installed [ServantLocator]s.</para></note>
*
* @param proxy The proxy for which the servant should be returned.
*
* @return The servant that matches the proxy, or null if no such
* servant has been found.
*
* @see find
* @see findFacet
*
**/
nonmutating Object findByProxy(Object* proxy);
/**
*
* Add a Servant Locator to this object adapter. Adding a servant
* locator for a category for which a servant locator is already
* registered throws [AlreadyRegisteredException]. To dispatch
* operation calls on servants, the object adapter tries to find a
* servant for a given &Ice; object identity and facet in the
* following order:
*
* <orderedlist>
*
* <listitem><para>The object adapter tries to find a servant for
* the identity and facet in the Active Servant
* Map.</para></listitem>
*
* <listitem><para>If no servant has been found in the Active
* Servant Map, the object adapter tries to find a locator for the
* category component of the identity. If a locator is found, the
* object adapter tries to find a servant using this
* locator.</para></listitem>
*
* <listitem><para>If no servant has been found by any of the
* preceding steps, the object adapter tries to find a locator for
* an empty category, regardless of the category contained in the
* identity. If a locator is found, the object adapter tries to
* find a servant using this locator.</para></listitem>
*
* <listitem><para>If no servant has been found with any of the
* preceding steps, the object adapter gives up and the caller
* receives [ObjectNotExistException] or
* [FacetNotExistException].</para></listitem>
*
* </orderedlist>
*
* <note><para>Only one locator for the empty category can be
* installed.</para></note>
*
* @param locator The locator to add.
*
* @param category The category for which the Servant Locator can
* locate servants, or an empty string if the Servant Locator does
* not belong to any specific category.
*
* @see Identity
* @see findServantLocator
* @see ServantLocator
*
**/
void addServantLocator(ServantLocator locator, string category);
/**
*
* Find a Servant Locator installed with this object adapter.
*
* @param category The category for which the Servant Locator can
* locate servants, or an empty string if the Servant Locator does
* not belong to any specific category.
*
* @return The Servant Locator, or null if no Servant Locator was
* found for the given category.
*
* @see Identity
* @see addServantLocator
* @see ServantLocator
*
**/
nonmutating ServantLocator findServantLocator(string category);
/**
*
* Create a proxy that matches this object adapter and the given
* identity.
*
* @param id The identity for which a proxy is to be created.
*
* @return A proxy that matches the given identity and this object
* adapter.
*
* @see Identity
*
**/
nonmutating Object* createProxy(Identity id);
/**
*
* Create a "direct proxy" that matches this object adapter and
* the given identity. A direct proxy always contains the current
* adapter endpoints.
*
* <note><para> This operation is intended to be used by locator
* implementations. Regular user code should not attempt to use
* this operation.</para></note>
*
* @param id The identity for which a proxy is to be created.
*
* @return A proxy that matches the given identity and this object
* adapter.
*
* @see Identity
*
**/
nonmutating Object* createDirectProxy(Identity id);
/**
*
* Create a "reverse proxy" that matches this object adapter and
* the given identity. A reverse proxy uses the incoming
* connections that have been established from a client to this
* object adapter.
*
* <note><para> This operation is intended to be used by special
* services, such as [Router] implementations. Regular user code
* should not attempt to use this operation. </para></note>
*
* @param id The identity for which a proxy is to be created.
*
* @return A "reverse proxy" that matches the given identity and
* uses the incoming connections of this object adapter.
*
* @see Identity
*
**/
nonmutating Object* createReverseProxy(Identity id);
/**
*
* Add a router to this object adapter. By doing so,
* this object adapter can receive callbacks from this router
* over connections that are established from this process to
* the router. This avoids the need for the router to establish
* a separate connection back to this object adapter.
*
* <note><para> You can add a particular router to only a single
* object adapter. Adding the same router to more than one object
* adapter results in undefined behavior. However, it is possible
* to add different routers to different object
* adapters. </para></note>
*
* @param rtr The router to add to this object adapter.
*
* @see Router
* @see Communicator::setDefaultRouter
*
**/
void addRouter(Router* rtr);
/**
* Set an &Ice; locator for this object adapter. By doing so, the
* object adapter will register itself with the locator registry
* when it is activated for the first time. Furthermore, the proxies
* created by this object adapter will contain the adapter name instead
* of its endpoints.
*
* @param loc The locator used by this object adapter.
*
* @see createDirectProxy
* @see Locator
* @see LocatorRegistry
*
**/
void setLocator(Locator* loc);
};
};
#endif
|