summaryrefslogtreecommitdiff
path: root/TAO/tao/PICurrent.h
blob: 0a2e24675517e85ac54e05524c37e9a96c5ebeb8 (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
// -*- C++ -*-

// ===================================================================
/**
 *  @file   PICurrent.h
 *
 *  $Id$
 *
 *  @author Ossama Othman <ossama@uci.edu>
 */
// ===================================================================

#ifndef TAO_PI_CURRENT_H
#define TAO_PI_CURRENT_H

#include "ace/pre.h"

#include "tao/corbafwd.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

#if TAO_HAS_INTERCEPTORS == 1

#include "ace/Array_Base.h"

#include "PortableInterceptorC.h"
#include "LocalObject.h"

// This is to remove "inherits via dominance" warnings from MSVC.
// MSVC is being a little too paranoid.
#if defined(_MSC_VER)
#if (_MSC_VER >= 1200)
#pragma warning(push)
#endif /* _MSC_VER >= 1200 */
#pragma warning(disable:4250)
#endif /* _MSC_VER */

/// Forward declarations.
class TAO_ORB_Core;
class TAO_PICurrent_Impl;

/**
 * @class TAO_PICurrent
 *
 * @brief Implementation of the PortableInterceptor::Current
 * interface.
 *
 * PortableInterceptor::Current is useful for passing data between
 * request interceptors, in addition to passing data from an
 * interceptor to the calling thread.
 */
class TAO_Export TAO_PICurrent :
  public virtual PortableInterceptor::Current,
  public virtual TAO_Local_RefCounted_Object
{
public:

  /// Constructor.
  TAO_PICurrent (TAO_ORB_Core *orb_core);

  /**
   * @name PortableInterceptor::Current Methods
   *
   * These are methods exposed by the PortableInterceptor::Current
   * interface.
   */
  //@{
  /// Retrieve information stored in the slot table at the given
  /// SlotId.
  virtual CORBA::Any * get_slot (PortableInterceptor::SlotId id,
				 CORBA::Environment &ACE_TRY_ENV =
				   TAO_default_environment ())
    ACE_THROW_SPEC ((CORBA::SystemException,
		     PortableInterceptor::InvalidSlot));

  /// Set information in the slot table at the given SlotId.
  virtual void set_slot (PortableInterceptor::SlotId id,
			 const CORBA::Any & data,
			 CORBA::Environment &ACE_TRY_ENV =
                           TAO_default_environment ())
    ACE_THROW_SPEC ((CORBA::SystemException,
		     PortableInterceptor::InvalidSlot));
  //@}

  /// Allocate a new SlotId.
  /* This reserves a slot in the data array.  This method is only
   * invoked by TAO_ORBInitInfo::allocate_slot_id(), which is why it
   * is protected.
   */
  PortableInterceptor::SlotId allocate_slot_id (void);

  /// Number of slots allocated in the slot table.
  PortableInterceptor::SlotId slot_count (void) const;

  /// Retrieve the PICurrent implementation from TSS, i.e. the thread
  /// scope current (TSC).
  TAO_PICurrent_Impl * tsc (void);

  /// Verify the validity of the given SlotId.
  void check_validity (const PortableInterceptor::SlotId &id,
		       CORBA::Environment &ACE_TRY_ENV);

protected:

  /// Destructor
  /**
   * Protected destructor to enforce the fact this class is reference
   * counted, and should not be destroyed using delete() by anything
   * other than the reference counting mechanism.
   */
  ~TAO_PICurrent (void);

private:

  /// Prevent copying through the copy constructor and the assignment
  /// operator.
  //@{
  ACE_UNIMPLEMENTED_FUNC (TAO_PICurrent (const TAO_PICurrent &))
  ACE_UNIMPLEMENTED_FUNC (void operator= (const TAO_PICurrent &))
  //@}

private:

  /// Pointer to the orb core.
  TAO_ORB_Core *orb_core_;

  /// The number of allocated slots.
  PortableInterceptor::SlotId slot_count_;

};

// ------------------------------------------------------------------

/**
 * @class TAO_PICurrent_Impl
 *
 * @brief Implementation of the PortableInterceptor::Current
 *        interface.
 *
 * This class implements both the "request scope current" and the
 * "thread scope current" objects as required by Portable
 * Interceptors.
 */
class TAO_Export TAO_PICurrent_Impl
{
public:

  /// Typedef for the underyling "slot table."
  /**
   * @note The slot table is implemented as an array of pointers to
   *       void to simply avoid increasing the footprint of the ORB.
   *       A template instance of ACE_Array_Base&lt;void*&gt; is
   *       already used by TAO_ORB_Core_TSS_Resources.  Thus, no
   *       increase in footprint will occur due to this template
   *       instance.
   */
  typedef ACE_Array_Base<void *> Table;

  /// Constructor
  TAO_PICurrent_Impl (void);

  /// Destructor
  ~TAO_PICurrent_Impl (void);

  /// Retrieve information stored in the slot table at the given
  /// SlotId.
  CORBA::Any * get_slot (PortableInterceptor::SlotId id,
			 CORBA::Environment &ACE_TRY_ENV)
    ACE_THROW_SPEC ((CORBA::SystemException,
		     PortableInterceptor::InvalidSlot));

  /// Set information in the slot table at the given SlotId.
  void set_slot (PortableInterceptor::SlotId id,
		 const CORBA::Any & data,
		 CORBA::Environment &ACE_TRY_ENV)
    ACE_THROW_SPEC ((CORBA::SystemException,
		     PortableInterceptor::InvalidSlot));


  /// Get the PICurrent peer associated with this PICurrent
  /// implementation.
  TAO_PICurrent_Impl *pi_peer (void);

  /// Set the PICurrent peer associated with this PICurrent
  /// implementation.
  void pi_peer (TAO_PICurrent_Impl *peer);

  /// Return a reference to the underlying slot table.
  Table &slot_table (void);

  /// Mark the slot table as being clean or dirty.  The slot table is
  /// dirty if it has been modified since the last time it was
  /// copied.
  void dirty (CORBA::Boolean dirty);

  /// Flag that specifies if the underlying slot table has been
  /// modified since last copy.
  CORBA::Boolean dirty (void) const;

  /// Copy the contents of the given PICurrent.
  void copy (TAO_PICurrent_Impl &rhs, CORBA::Boolean deep_copy);

private:

  /// Prevent copying through the copy constructor and the assignment
  //operator.
  //@{
  ACE_UNIMPLEMENTED_FUNC (
    TAO_PICurrent_Impl (const TAO_PICurrent_Impl &))
  ACE_UNIMPLEMENTED_FUNC (void operator= (const TAO_PICurrent_Impl &))
  //@}

private:

  /// The PICurrent implementation with which this implementation's
  /// slot table interacts.
  TAO_PICurrent_Impl *pi_peer_;

  /// Array of CORBA::Anys that is the underlying "slot table."
  Table slot_table_;

  /// Table that was logically copied from a PICurrent in another
  /// scope, i.e. either the request scope or the thread scope.
  Table *lc_slot_table_;

  /// Flag that specifies if the underlying slot table has been
  /// modified since last copy.
  /**
   * @note This flag is only used when copying between a request scope
   *       current and a thread scope current.
   */
  CORBA::Boolean dirty_;

};

// ------------------------------------------------------------------

/**
 * @class TAO_PICurrent_Guard
 *
 * @brief Class used to make copying between request scope current and
 *        thread scope current exception-safe.
 *
 * Since copies between the request scope current and thread scope
 * current must also occur if an exception is thrown, e.g. made
 * available to the receive_exception() and send_exception()
 * interception points, the "guard" idiom is used to make this action
 * exception-safe.
 */
class TAO_Export TAO_PICurrent_Guard
{
public:

  /// Constructor
  /**
   * This constructor copies data held in a given PICurrent when
   * transitioning from one PICurrent scope to another immediately
   * before any starting interception points are invoked (e.g. on the
   * client side just before send_request() is invoked).
   */
  TAO_PICurrent_Guard (TAO_Stub *stub, TAO_PICurrent_Impl &rsc);

  /// Constructor
  /**
   * This constructor sets up this guard to copy the data held in a
   * given PICurrent when transitioning from that PICurrent's scope to
   * another scope (e.g. request scope to thread scope transition
   * immediately following receive_request_service_contexts() on
   * server side).
   */
  TAO_PICurrent_Guard (TAO_ServerRequest &server_request,
                       CORBA::Boolean tsc_to_rsc);

  /// Destructor
  /**
   * The destructor copies (a logical copy whenever possible) data
   * held in a given PICurrent when transitioning from one PICurrent
   * scope to another immediately before any ending interception
   * points are invoked, and after the sending and intermediate (if
   * any) interception points are invoked.
   */
  ~TAO_PICurrent_Guard (void);

private:

  /// The PICurrent implementation whose slot table will copied.
  TAO_PICurrent_Impl *src_;

  /// The PICurrent implementation whose slot table will filled with
  /// the contents of another PICurrent's slot table.
  TAO_PICurrent_Impl *dest_;

};


#if defined (__ACE_INLINE__)
# include "PICurrent.inl"
#endif /* __ACE_INLINE__ */

#if defined(_MSC_VER) && (_MSC_VER >= 1200)
#pragma warning(pop)
#endif /* _MSC_VER */

#endif  /* TAO_HAS_INTERCEPTORS == 1 */

#include "ace/post.h"

#endif /* TAO_PI_CURRENT_H */