summaryrefslogtreecommitdiff
path: root/trunk/TAO/docs/interceptors.html
blob: 318f202331573f5774eff93c4dcf9660c68f2fe8 (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
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
<HTML>
<TITLE>Portable Interceptors</TITLE>
<BODY>

<hr><P>
<H3>Portable Interceptors</H3>

<BODY text = "#000000"
link="#000fff"
vlink="#ff0f0f"
bgcolor="#ffffff">

<p>We have revised TAO's interceptor implementation so that it
conforms to the Portable Interceptor specification which is now a part
of the <a href="http://www.omg.org/cgi-bin/doc?formal/04-03-01">CORBA
3.0.3</A> specification.  The purpose of this document is to provide a
transition guide for those who have used our old interceptors.  The
old interceptors will no longer be supported now that we have the new
mechanism in place.  A paper that describes TAO's portable
interceptors and <A HREF="Smart_Proxies.html">smart proxies</A> is
available
<A HREF="http://www.cs.wustl.edu/~schmidt/PDF/smart_proxies.pdf">online</A>.
</p>

<hr><P>
<h3><a name="toc">Table of Contents</a></h3>
<ul>
  <li><a href="#context">Context</a>
  <li><a href="#implement">TAO's Implementation</a>
  <li><a href="#api">Transition</a>
  <li><a href="#status">Current Status</a>
  <li><a href="#future">Future Work</a>
  <li><a href="#issues">Known Issues</a>
  <li><a href="#ref">References</a>
</ul>

<hr><P>
<h2><a name="context">Context</a></h2>

<p>Interceptors allow you to interpose other CORBA services to the ORB
and extend the ORB's functionalities.  They are most commonly used in,
but not limited to, Security Service, Transaction Service.  They are
also for accounting, auditing and debugging distributed applications.
</p>

<hr><P>
<h3><a name="implement">TAO's Implementation of "Portable
Interceptors"</a></h3>

<p>We have modifed TAO's interceptor interface to conform with the
CORBA 2.5 spec.  The current implementation of interceptors consists of
support for the <CODE>Dynamic</CODE> module as well as the canonical
interception points including
(1) <CODE>send_request</CODE>,
(2) <CODE>receive_reply</CODE>,
(3) <CODE>receive_exception</CODE>,
(4) <CODE>receive_other</CODE>,
(5) <CODE>receive_request_service_contexts</CODE>,
(6) <CODE>receive_request</CODE>,
(7) <CODE>send_reply</CODE>,
(8) <CODE>send_exception</CODE>,
(9) <CODE>send_other</CODE>, and
(10) <CODE>establish_components</CODE> (specific to
<CODE>IORInterceptor</CODE>s).  Each request interception point is
passed a <CODE>RequestInfo</CODE> object which encapsulates the
details of the operation like arguments, etc.  The IOR interception
point is passed an <CODE>IORInfo</CODE> object that encapsulates
operations for adding tagged components to profiles in an IOR.
Registration of all three types of interceptors (client and server
request interceptors, and IOR interceptors) is now done using the
interface provided by the standard <CODE>ORBInitInfo</CODE>
object.</p>

<p>
Details of this implementation along with benchmarking is available in
the paper on <a
href="http://www.cs.wustl.edu/~schmidt/PDF/COOTS-00.pdf">Meta-programming
mechanisms.</a>
</p>

<p> Examples on this new version of Portable Interceptors is available
at <CODE>$TAO_ROOT/tests/Portable_Interceptors</CODE>.</p>

<hr><P>
<h3><a name="api">Transitting from TAO's Old "Portable"
Interceptor APIs to the Standard Portable Interceptor APIs</a></h3>

<p>Please refer to CORBA 2.5 specification for details on the proposed
Portable Interceptor interfaces.  Below is the old but now obsolete
interceptor version in TAO.</p>

<pre>
// -*- IDL -*- $Id$

// This file contains the interface definitions for "Portable"
// Interceptor support.

// **********************************************************
//   Notice that the Portable Interceptor specification
//   is still under discussion in OMG and both the IDL
//   and the implementation details in TAO will eventually
//   change to conform with the PI spec in the future.
//
//   @@ Now that a working draft of the Portable Interceptors
//      is available, we will provide a compliant implementation
//      shortly.
//
//      Please see the annotation marked with "@@" in this file
//      for hints on transitting from the temporary
//      implementation to new APIs.
//
//      See $TAO_ROOT/docs/interceptors.html for more info.
// **********************************************************

// Author (currently): Nanbor Wang <nanbor@cs.wustl.edu>
// @@ I will no longer be the author of this IDL file. ;-)

#include <corba.pidl>
#include <IOP.pidl>

#pragma prefix "TAO"
// The prefix should be changed to "omg.org" once the spec. gets
// finallized.
// @@ The prefix will be changed to "omg.org".

module PortableInterceptor
{
  interface Cookie
    {
      // Cookie's are used to pass information among interceptors
      // within a invocation or an upcall.
      //
      // @@ Cookie will no longer be available.
      string myname ();
    };

  typedef sequence<Cookie>  Cookies;
  // Collections of Cookie's become Cookies'es.
  //
  // @@ Cookies will no longer be available.

  interface Interceptor
    {
      // Base interface for Interceptors.
      //
      // @@ This interface will not change.
      readonly attribute string name;
    };

  interface ServerRequestInterceptor : Interceptor
    {
      // Server side request interceptor definition.
      //
      // @@ The name of the interface will not change.

      void preinvoke (in unsigned long request_id,
                      in boolean response_expected,
                      in CORBA::Object objref,
                      in string operation_name,
                      inout IOP::ServiceContextList sc,
                      inout NVList arguments,
                      inout Cookies ck);
      // Interception pointer before invoking the servant method.
      // Currently, we don't pass NVList into the interceptor because
      // I haven't figured out how to best optimize this stuff.
      // In the future, NVList will contain all in and inout arguments
      // of the operation.
      //
      // @@ This operation will map to either
      // &lt;receive_request_service_contexts&gt; or &lt;receive_request&gt; of
      // the standard APIs.  If you are not sure, use
      // &lt;receive_request&gt;.
      //
      // void receive_request_service_contexts (in ServerRequestInfo ri) raises (ForwardRequest);
      // void receive_request (in ServerRequestInfo ri) raises (ForwardRequest);
      //
      // @@ Note that all arguments will be accessed thru
      // &lt;PortableInterceptor::ServerRequestInfo&gt; interface.

      void postinvoke (in unsigned long request_id,
                       in boolean response_expected,
                       in CORBA::Object objref,
                       in string operation_name,
                       inout IOP::ServiceContextList sc,
                       inout NVList arguments,
                       inout Cookies ck);
      // Interception pointer after invoking the servant method.
      // Currently, we don't pass NVList into the interceptor because
      // I haven't figured out how to best optimize this stuff.
      // In the future, NVList will contain all out, inout arguments
      // and the return value of the operation.
      //
      // @@ This operation will map to &lt;send_reply&gt;.
      // It is not clear whether oneway call will invoke &lt;send_other&gt;
      // operation or not.
      //
      // void send_reply (in ServerRequestInfo ri);
      // void send_other (in ServerRequestInfo ri) raises (ForwardRequest);
      //
      // @@ Note that all arguments will be accessed thru
      // &lt;PortableInterceptor::ServerRequestInfo&gt; interface.

      void exception_occurred (in unsigned long request_id,
                               in boolean response_expected,
                               in CORBA::Object objref,
                               in string operation_name,
                               inout Cookies ck);
      // Exception interception point.
      //
      // @@ This method will map to &lt;send_exception&gt; method.
      //
      // void send_exception (in ServerRequestInfo ri) raises (ForwardRequest);
      //
      // @@ Note that all arguments will be accessed thru
      // &lt;PortableInterceptor::ServerRequestInfo&gt; interface.
    };

  interface ClientRequestInterceptor : Interceptor
    {
      // Client side interceptor.
      //
      // @@ The name of the interface will not change.

      void preinvoke (in unsigned long request_id,
                      in boolean response_expected,
                      in CORBA::Object objref,
                      in string operation_name,
                      inout IOP::ServiceContextList sc,
                      inout NVList arguments,
                      inout Cookies ck);
      // Before remote invocation.
      // Currently, we don't pass NVList into the interceptor because
      // I haven't figured out how to best optimize this stuff.
      // In the future, NVList will contain all in and inout arguments
      // of the operation.
      //
      // @@ This operation will map to &lt;send_request&gt; of the standard
      // APIs.
      //
      // void send_request (in ClientRequestInfo) raises (ForwardRequest);
      //
      // @@ Note that all arguments will be accessed thru
      // &lt;PortableInterceptor::ClientRequestInfo&gt; interface.

      void postinvoke (in unsigned long request_id,
                       in boolean response_expected,
                       in CORBA::Object objref,
                       in string operation_name,
                       inout IOP::ServiceContextList sc,
                       inout NVList arguments,
                       inout Cookies ck);
      // After returned from remote invocation.
      // Currently, we don't pass NVList into the interceptor because
      // I haven't figured out how to best optimize this stuff.
      // In the future, NVList will contain all out, inout arguments
      // and the return value of the operation.
      //
      // @@ This operation will map to either &lt;receive_reply&gt; or
      // &lt;receive_other&gt; in the standard APIs depending on whether the
      // operation is oneway or not.
      //
      // void receive_reply (in ClientRequestInfo ri);
      // void receive_other (in ClientRequestInfo ri);
      //
      // @@ Note that all arguments will be accessed thru
      // &lt;PortableInterceptor::ClientRequestInfo&gt; interface.

      void exception_occurred (in unsigned long request_id,
                               in boolean response_expected,
                               in CORBA::Object objref,
                               in string operation_name,
                               inout Cookies ck);
      // Exception occurred.
      //
      // @@ This method will map to &lt;receive_exception&gt; method as:
      //
      //    void receive_exception (in ClientRequestInfo ri) raises (ForwardRequest);
      //
      // @@ Note that all arguments will be accessed thru
      // &lt;PortableInterceptor::ClientRequestInfo&gt; interface.
    };
};

#pragma prefix ""
</pre>

<hr><P>
<h3><a name="status">Current Status</a></h3>
<ul>
  <li>The core infrastructure is in place as well as the canonical
      request and IOR interception points:
      <CODE>send_request</CODE>,
      <CODE>receive_reply</CODE>,
      <CODE>receive_exception</CODE>,
      <CODE>receive_other</CODE>,
      <CODE>receive_request_service_contexts</CODE>,
      <CODE>receive_request</CODE>,
      <CODE>send_reply</CODE>,
      <CODE>send_exception</CODE>,
      <CODE>send_other</CODE>, and
      <CODE>establish_components</CODE>.
      The remaining client request interception point,
      <CODE>send_poll</CODE>, is <EM>time independent invocation</EM>
      specific.  Once TAO supports time independent invocations, the
      <CODE>send_poll</CODE> interception point will be implemented.
  <li><CODE>ORBInitializer</CODE> registration has been implemented,
      as per the spec.
  <li>Registration of interceptors is now conformant to the spec
      through the <CODE>ORBInitInfo</CODE> class.  Multiple
      interceptors may now be registered.
  <li>IOR interceptors have been implemented.  They allow an external
      service, for example, to add tagged components to profiles
      within IORs as they are being generated.
  <li>Policy factory registration, i.e.
      <CODE>ORBInitInfo::register_policy_factory</CODE>, has been
      implemented.  Corresponding policies can then be created using
      the <CODE>ORB::create_policy</CODE> method.
  <li>Initial reference registration, i.e.
      <CODE>ORBInitInfo::register_initial_reference</CODE>, has been
      implemented.  This is particularly useful for registering local
      objects with the ORB's <CODE>resolve_initial_references</CODE>
      mechanism since they can't be stringified and registered via
      <CODE>-ORBInitRef</CODE> ORB option.
  <li>Basically, all <CODE>ORBInitInfo</CODE> methods have been
      implemented except <CODE>allocate_slot_id</CODE>.
  <li>Implemented most of the remaining
      <CODE>ClientRequestInfo</CODE>, <CODE>ServerRequestInfo</CODE>
      and <CODE>IORInfo</CODE> methods.
  <li>Added support for the
      <CODE>PortableInterceptor::ForwardRequest</CODE>
      exception on both the client and server sides.
  <li>Implemented the <CODE>IOP::CodecFactory</CODE> and the CDR
      encapsulation <CODE>IOP::Codec</CODE> objects.  The CDR
      encapsulation <CODE>Codec</CODE> is useful for embedding data in
      an <CODE>octet</CODE> sequence that conforms to the CDR
      encapsulation rules.  For example, it could be used to marshal
      data into the <CODE>octet</CODE> sequence that is part of an
      <CODE>IOP::ServiceContext</CODE> or an
      <CODE>IOP::TaggedComponent</CODE>.  This means that it could
      compliment the IOR interceptor support, and the service context
      manipulation support found in request interceptors.
  <li>Implemented the
      <CODE>PortableInterceptor::ServerRequestInfo::object_id</CODE>,
      <CODE>PortableInterceptor::ServerRequestInfo::adapter_id</CODE>
      and
      <CODE>PortableServer::POA::id</CODE> methods.
  <li>Greatly improved the speed of the
      <CODE>PortableInterceptor::RequestInfo::arguments</CODE> method
      for the case when a given target method has more than one
      parameter.
  <li>Corrected the <CODE>Dynamic::Parameter</CODE> IDL.  It now
      correctly uses the <CODE>CORBA::ParameterMode</CODE> enumeration
      in place of the <CODE>Dynamic::ParameterMode</CODE>
      enumeration.  The latter has been removed since it was not a
      standard type.
  <li>The
      <CODE>PortableInterceptor::ClientRequestInterceptor::send_request</CODE>
      interception point now occurs before a connection attempt to the
      target is ever made.  This greatly improves the speed of client
      request interceptor initiated <CODE>LOCATION_FORWARD</CODE>s, in
      addition to making it possible to prevent connection attempts
      from occuring by throwing an exception, for example.
  <li>Corrected <CODE>PortableInterceptor::ForwardRequest</CODE>
      exception support.  It is longer possible to throw a
      <CODE>PortableInterceptor::ForwardRequest</CODE> exception in
      application code (i.e. not an interceptor) and expect it to be
      converted to a <CODE>LOCATION_FORWARD</CODE>.  A
      <CODE>PortableInterceptor::ForwardRequest</CODE> exception will
      now only be treated as a <CODE>LOCATION_FORWARD</CODE> if it is
      thrown from an interception point capable of raising that
      exception.  Otherwise it will be propagated to the client.  This
      change also has the added benefit of reducing the stub/skeleton
      footprint, particularly for IDL with many interfaces.
  <li>Implemented <CODE>PortableInterceptor::Current</CODE> interface,
      <CODE>ORBInitInfo::allocate_slot_id</CODE>,
      <CODE>ClientRequestInfo::get_slot</CODE>,
      <CODE>ServerRequestInfo::get_slot</CODE>,
      <CODE>ServerRequestInfo::set_slot</CODE>, and
      <CODE>ServerRequestInfo::get_server_policy</CODE> methods.
  <li>Client interception points are now invoked for AMI calls.
</ul>

<hr><P>
<h2><a name="future">Future Work</a></h2>
<ol>
  <li>Add support for the <CODE>ThruPOA</CODE> collocation
      optimization to the interceptor chain; the <CODE>direct</CODE>
      collocation optimization will not go through the interceptor
      chain.
  <li>The <CODE>send_poll</CODE> request interception point
      implementation will most likely be deferred until TII is
      supported in TAO.
</ol>

<hr><p>
<h3><a name="issues">Known Issues</a></h3>
<ul>
  <li>Currently none.</li>
</ul>

<hr><P>
<H3><a name="ref">References</a></H3>
<UL>
  <LI><A HREF="http://www.omg.org/cgi-bin/doc?formal/04-03-01">formal/2004-03-01</A> -- CORBA 3.0.3 Specification -- contains the Portable Interceptors chapter</LI>

</UL>
<hr>

</BODY>