summaryrefslogtreecommitdiff
path: root/TAO/tao/Any.h
blob: 89e4adf2d91674539c0c069b06f3f9ad79461228 (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
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
// This may look like C, but it's really -*- C++ -*-

//=============================================================================
/**
 *  @file    Any.h
 *
 *  $Id$
 *
 *  @author  Copyright 1994-1995 by Sun Microsystems Inc.
 *  @author  Aniruddha Gokhale
 */
//=============================================================================


#ifndef TAO_ANY_H
#define TAO_ANY_H
#include "ace/pre.h"

#include "tao/CDR.h"

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

#include "tao/Environment.h"
#include "tao/Object.h"
#include "tao/Typecode.h"

/**
 * @class CORBA_Any
 *
 * @brief Class "Any" can wrap values of any type, with the assistance
 * of a TypeCode to describe that type.
 *
 * This includes three constructors, a destructor, and a "replace"
 * method for the "Any" data type.  "Any" values pair a pointer to
 * a data structure in the native binary representation (e.g. C
 * struct) with a TypeCode that describes that data structure.
 * The copy constructor and the destructor each use the TypeCode
 * interpreter with specialized "visit" callback routines.  The
 * "visit" routines are used respectively to make "deep copies"
 * and perform "deep frees" of the aritrary values as described by
 * the "Any" value's typecode.
 * Note that these "visit" routines are called directly, and they
 * choose whether or not to use the TypeCode interpreter to
 * examine constituents.  In the simple cases, the "visit"
 * routines can do their work without any further calls; only for
 * constructed types is the interpreter's knowledge really
 * required.
 * THREADING NOTE: "Any" is a data structure which must be
 * protected by external critical sections.  Like simpler numeric
 * types, "Any" instances are accessed and modified atomically.
 * This implementation is reentrant, so that independent "Any"
 * values may be manipulated concurrently when the underlying
 * programming environment is itself reentrant.
 */
class TAO_Export CORBA_Any
{
public:

  // = Minor codes for exceptional returns
  enum
  {
    UNINITIALIZED_type = 0xf000,
    VALUE_WITHOUT_TYPE,
    UNSUPPORTED_OPERATION
  };

  // = Initialization and termination operations.

  /// Default constructor.
  CORBA_Any (void);

  /// Constructor.
  CORBA_Any (CORBA::TypeCode_ptr type);

  // = TAO extension
  /**
   * Constructor. Used by DynAny and others to optimize Any activities
   * by using CDR. The dummy arg is to keep calls like CORBA_Any foo
   * (CORBA::TypeCode_ptr bar (NULL), NULL) from being confused with
   * the constructor above.
   */
  CORBA_Any (CORBA::TypeCode_ptr type,
             CORBA::UShort dummy,
             int byte_order,
             const ACE_Message_Block* mb);

  /// Copy constructor.
  CORBA_Any (const CORBA_Any &a);

  /// Destructor.
  ~CORBA_Any (void);

  /// assignment operator
  CORBA_Any &operator= (const CORBA_Any &);

  // = NOTE: 94-9-14 has assignment operator plus many insertion, as
  // specified below.

  // =type safe insertion

  /// Insert a short.
  void operator<<= (CORBA::Short);

  /// Insert an unsigned short.
  void operator<<= (CORBA::UShort);

  /// Insert a long.
  void operator<<= (CORBA::Long);

  /// Insert an unsigned long.
  void operator<<= (CORBA::ULong);

  /// Insert a long long.
  void operator<<= (CORBA::LongLong);

  /// Insert an unsigned long long.
  void operator<<= (CORBA::ULongLong);

  /// Insert a float.
  void operator<<= (CORBA::Float);

  /// Insert a double.
  void operator<<= (CORBA::Double);

  /// Insert a long double.
  void operator<<= (CORBA::LongDouble);

  /// Insert an Any, copying.
  void operator<<= (const CORBA_Any&);

  /// Insert an Any, non-copying.
  void operator<<= (CORBA_Any_ptr);

  /// Insert unbounded string
  void operator<<= (const char*);

  /// Insert unbounded wide string.
  void operator<<= (const CORBA::WChar*);

  /// Insert a TypeCode.
  void operator<<= (CORBA::TypeCode_ptr);

  /// Insert an object reference, copying.
  void operator<<= (const CORBA::Object_ptr);

  /// Insert an object reference, non-copying. Any assumes the ownership
  /// of the object.
  void operator<<= (CORBA::Object_ptr *);

  // =Type safe extraction.

  /// Extract a short.
  CORBA::Boolean operator>>= (CORBA::Short&) const;

  /// Extract an unsigned short.
  CORBA::Boolean operator>>= (CORBA::UShort&) const;

  /// Extract a long.
  CORBA::Boolean operator>>= (CORBA::Long&) const;

  /// Extract an unsigned long.
  CORBA::Boolean operator>>= (CORBA::ULong&) const;

  /// Extract a long long.
  CORBA::Boolean operator>>= (CORBA::LongLong&) const;

  /// Extract an unsigned long long.
  CORBA::Boolean operator>>= (CORBA::ULongLong&) const;

  /// Extract a float.
  CORBA::Boolean operator>>= (CORBA::Float&) const;

  /// Extract a double.
  CORBA::Boolean operator>>= (CORBA::Double&) const;

  /// Extract a long double.
  CORBA::Boolean operator>>= (CORBA::LongDouble&) const;

  /// Extract an Any.
  CORBA::Boolean operator>>= (CORBA_Any&) const; // non-spec
  CORBA::Boolean operator>>= (const CORBA_Any*&) const;

  /// Extract a TypeCode.
  CORBA::Boolean operator>>= (CORBA::TypeCode_ptr&) const;

  /// Extract an unbounded string
  CORBA::Boolean operator>>= (const char*&) const;

  /// Extract an unbounded wide string.
  CORBA::Boolean operator>>= (const CORBA::WChar*&) const;

  // = Special types.

  // These are needed for insertion and extraction of booleans,
  // octets, chars, and bounded strings. CORBA spec requires
  // that they be here, we just typedef to the already-defined
  // ACE_OutputCDR types.

  typedef ACE_OutputCDR::from_boolean from_boolean;
  typedef ACE_OutputCDR::from_octet from_octet;
  typedef ACE_OutputCDR::from_char from_char;
  typedef ACE_OutputCDR::from_wchar from_wchar;
  typedef ACE_OutputCDR::from_string from_string;
  typedef ACE_OutputCDR::from_wstring from_wstring;

  /// Insert a boolean.
  void operator<<= (from_boolean);

  /// Insert a char.
  void operator<<= (from_char);

  /// Insert a wchar.
  void operator<<= (from_wchar);

  /// Insert an octet.
  void operator<<= (from_octet);

  /// Insert a bounded string.
  void operator<<= (from_string);

  /// Insert a bounded wide string.
  void operator<<= (from_wstring);

  /// Insert an exception into the Any (copying)
  void operator<<= (const CORBA_Exception &exception);

  /// Insert an exception into the Any (non-copying).
  void operator<<= (CORBA_Exception *exception);

  // = Special types.

  // These extract octets, chars, booleans, bounded strings, and
  // object references. All these are defined in ACE_InputCDR.

  typedef ACE_InputCDR::to_boolean to_boolean;
  typedef ACE_InputCDR::to_char to_char;
  typedef ACE_InputCDR::to_wchar to_wchar;
  typedef ACE_InputCDR::to_octet to_octet;
  typedef ACE_InputCDR::to_string to_string;
  typedef ACE_InputCDR::to_wstring to_wstring;

  // These are not in ACE.

  struct TAO_Export to_object
  {
    // This signature reflects the change set out in
    // issue 154 of the 1.3 RTF.
    to_object (CORBA_Object_out obj);
    CORBA::Object_ptr &ref_;
  };

  struct TAO_Export to_abstract_base
  {
    to_abstract_base (CORBA_AbstractBase_ptr &obj);
    CORBA::AbstractBase_ptr &ref_;
  };

  struct TAO_Export to_value
  {
    to_value (CORBA_ValueBase *&base);
    CORBA::ValueBase *&ref_;
  };

  // Extraction of the special types.

  /// extract a boolean
  CORBA::Boolean operator>>= (to_boolean) const;

  /// extract an octet
  CORBA::Boolean operator>>= (to_octet) const;

  /// extract a char
  CORBA::Boolean operator>>= (to_char) const;

  /// extract a wchar
  CORBA::Boolean operator>>= (to_wchar) const;

  /// extract a bounded string
  CORBA::Boolean operator>>= (to_string) const;

  /// extract a bounded wide string
  CORBA::Boolean operator>>= (to_wstring) const;

  /// extract an object reference
  CORBA::Boolean operator>>= (to_object) const;

  /// extract an abstract interface
  CORBA::Boolean operator>>= (to_abstract_base) const;

  /// extract a valuetype
  CORBA::Boolean operator>>= (to_value) const;

  // the following are unsafe operations
  // ORBOS/90-01-11, pg 672: For C++ mapping using the CORBA_Environment
  // parameter, two forms of the replace method are provided.

  /// Return TypeCode of the element stored in the Any.
  CORBA::TypeCode_ptr type (void) const;

  /// For use along with <<= of a value of aliased type when the alias must
  /// be preserved.
  void type (CORBA::TypeCode_ptr type
             ACE_ENV_ARG_DECL_WITH_DEFAULTS);

  /**
   * Returns 0 if the Any has not been assigned a value, following the
   * CORBA spec (ORBOS/98-01-11) it returns a non-zero value
   * otherwise. TAO does *not* guarantee that this value may be casted
   * to the contained type safely.
   */
  const void *value (void) const;

  // = TAO extensions
  /**
   * Reports whether the Any own the data or not. This is used by the
   * >>= operators generated by the IDL compiler. The >>= operator
   * checks if the Any owns the data. If it does, then it will simply
   * retrieve the data from internal cache.  Otherwise, the operator
   * will have to decode the cdr string.
   */
  CORBA::Boolean any_owns_data (void) const;

  /// Reports whether the Any contains (at some level) a local type.
  CORBA::Boolean contains_local (void) const;

  /// Set the member contains_local_.
  void contains_local (CORBA::Boolean val);

  /// Message block accessor.
  /// Get the byte order inside the CDR stream.
  ACE_Message_Block* _tao_get_cdr (void) const;
  int _tao_byte_order (void) const;

  /// Generated data types define a 'destructor' function that
  /// correctly destroys an object stored in the Any.
  typedef void (*_tao_destructor)(void*);

  /// Replace via message block instead of <value_>.
  void _tao_replace (CORBA::TypeCode_ptr,
                     int byte_order,
                     const ACE_Message_Block *mb);

  /// Replace all the contents of the any, used in the <<= operators.
  void _tao_replace (CORBA::TypeCode_ptr type,
                     int byte_order,
                     const ACE_Message_Block *mb,
                     CORBA::Boolean any_owns_data,
                     void* value,
                     CORBA::Any::_tao_destructor destructor);

  /// Replace the value of the Any, used in the >>= operators.
  void _tao_replace (CORBA::TypeCode_ptr type,
                     CORBA::Boolean any_owns_data,
                     void* value,
                     CORBA::Any::_tao_destructor destructor);

  /// Encode the contents of the Any into <cdr>
  void _tao_encode (TAO_OutputCDR &cdr,
                    TAO_ORB_Core *orb_core
                    ACE_ENV_ARG_DECL);

  /// Decode the <cdr> using the typecode in the Any object.
  void _tao_decode (TAO_InputCDR &cdr
                    ACE_ENV_ARG_DECL);

#if !defined(__GNUC__) || __GNUC__ > 2 || __GNUC_MINOR__ >= 8
  typedef CORBA_Any_ptr _ptr_type;
  typedef CORBA_Any_var _var_type;
#endif /* __GNUC__ */
  // Useful for template programming.

  /// Used to release Anys contained into anys.
  static void _tao_any_destructor (void*);
  static void _tao_any_string_destructor (void*);
  static void _tao_any_wstring_destructor (void*);
  static void _tao_any_tc_destructor (void*);

protected:
  /// Release the <value_>.
  void free_value (void);

private:
  /// Typecode for the <Any>.
  CORBA::TypeCode_var type_;

  /// encoded value.
  int byte_order_;
  ACE_Message_Block *cdr_;

  /// Flag that indicates the ORB is responsible for deleting the data.
  CORBA::Boolean any_owns_data_;

  /// Flag that indicates the Any contains (at some level) a locality-
  // constrained type, and so cannot be marshaled.
  CORBA::Boolean contains_local_;

  /// Value for the <Any>.
  void *value_;

  /// If not zero this is the function used to destroy objects.
  CORBA::Any::_tao_destructor destructor_;

  // 94-9-14 hides unsigned char insert/extract
  void operator<<= (unsigned char);
  CORBA::Boolean operator>>= (unsigned char&) const;

  friend class CORBA_NVList;
  friend class TAO_Marshal_Any;
};

/**
 * @class CORBA_Any_var
 *
 * @brief Provide for automatic storage deallocation on going out of
 * scope.
 */
class TAO_Export CORBA_Any_var
{
public:
  /// default constructor
  CORBA_Any_var (void);

  /// construct from an Any pointer
  CORBA_Any_var (CORBA_Any *a);

  /// copy constructor
  CORBA_Any_var (const CORBA_Any_var &a);

  /// destructor
  ~CORBA_Any_var (void);

  /// assignment from a pointer to Any
  CORBA_Any_var &operator= (CORBA_Any *a);

  /**
   * assignment from an Any_var
   * This operation requires memory allocation.
   * If the allocation fails, *this is returned
   * unmodified.
   */
  CORBA_Any_var &operator= (const CORBA_Any_var &a);

  /// arrow operator (smart pointer)
  CORBA_Any *operator-> (void);

  /// cast
  operator CORBA_Any &();

  /// cast
  operator const CORBA_Any *() const;

  /// cast
  operator CORBA_Any *&();

  /// for in Any parameter
  const CORBA_Any &in (void) const;

  /// for inout Any parameter
  CORBA_Any &inout (void);

  /// for out Any parameter
  CORBA_Any *&out (void);

  /// for Any return types
  CORBA_Any *_retn (void);

private:
  /// Holds the Any.
  CORBA_Any *ptr_;
};

/**
 * @class CORBA_Any_out
 *
 * @brief CORBA_Any_out
 *
 * The _out class for CORBA_Any. This is used to help in
 * managing the out parameters.
 */
class TAO_Export CORBA_Any_out
{
public:
  // = operations.

  /// construction from a reference to a CORBA_Any
  CORBA_Any_out (CORBA_Any *&p);

  /// construction from a var
  CORBA_Any_out (CORBA_Any_var &p);

  /// copy constructor
  CORBA_Any_out (const CORBA_Any_out &s);

  /// assignment from a CORBA_Any_out
  CORBA_Any_out &operator= (const CORBA_Any_out &s);

  /// assignment from a CORBA_Any
  CORBA_Any_out &operator= (CORBA_Any *p);

  /// cast
  operator CORBA_Any *&();

  /// return underlying instance
  CORBA_Any *& ptr (void);

  CORBA_Any *operator-> (void);

private:
  /// Instance
  CORBA_Any *&ptr_;

  /// assignment from _var disallowed
  void operator= (const CORBA_Any_var &);
};

// These operators are too complex to be inline....
TAO_Export CORBA::Boolean operator<< (TAO_OutputCDR& cdr,
                                      const CORBA::Any &x);
TAO_Export CORBA::Boolean operator>> (TAO_InputCDR& cdr,
                                      CORBA::Any &x);

#if defined (__ACE_INLINE__)
# include "tao/Any.i"
#else

// Copying versions of insertion
// operators which are defined as members of the Any class
// must also be defined for Any_var.
TAO_Export void operator<<= (CORBA_Any_var &,
                             CORBA::Short);
TAO_Export void operator<<= (CORBA_Any_var &,
                             CORBA::UShort);
TAO_Export void operator<<= (CORBA_Any_var &,
                             CORBA::Long);
TAO_Export void operator<<= (CORBA_Any_var &,
                             CORBA::ULong);
TAO_Export void operator<<= (CORBA_Any_var &,
                             CORBA::LongLong);
TAO_Export void operator<<= (CORBA_Any_var &,
                             CORBA::ULongLong);
TAO_Export void operator<<= (CORBA_Any_var &,
                             CORBA::Float);
TAO_Export void operator<<= (CORBA_Any_var &,
                             CORBA::Double);
TAO_Export void operator<<= (CORBA_Any_var &,
                             const CORBA_Any&);
TAO_Export void operator<<= (CORBA_Any_var &,
                             const char*);
TAO_Export void operator<<= (CORBA_Any_var &,
                             CORBA::TypeCode_ptr);
TAO_Export void operator<<= (CORBA_Any_var &,
                             const CORBA::Object_ptr);
TAO_Export void operator<<= (CORBA_Any_var &,
                             CORBA::Any::from_boolean);
TAO_Export void operator<<= (CORBA_Any_var &,
                             CORBA::Any::from_char);
TAO_Export void operator<<= (CORBA_Any_var &,
                             CORBA::Any::from_wchar);
TAO_Export void operator<<= (CORBA_Any_var &,
                             CORBA::Any::from_octet);
TAO_Export void operator<<= (CORBA_Any_var &,
                             CORBA::Any::from_string);
TAO_Export void operator<<= (CORBA_Any_var &,
                             CORBA::Any::from_wstring);

// These are not required by the spec, but will make users
// of other ORBs that are used to them more comfortable.
TAO_Export CORBA::Boolean operator>>= (CORBA_Any_var &,
                                       CORBA::Short&);
TAO_Export CORBA::Boolean operator>>= (CORBA_Any_var &,
                                       CORBA::UShort&);
TAO_Export CORBA::Boolean operator>>= (CORBA_Any_var &,
                                       CORBA::Long&);
TAO_Export CORBA::Boolean operator>>= (CORBA_Any_var &,
                                       CORBA::ULong&);
TAO_Export CORBA::Boolean operator>>= (CORBA_Any_var &,
                                       CORBA::LongLong&);
TAO_Export CORBA::Boolean operator>>= (CORBA_Any_var &,
                                       CORBA::ULongLong&);
TAO_Export CORBA::Boolean operator>>= (CORBA_Any_var &,
                                       CORBA::Float&);
TAO_Export CORBA::Boolean operator>>= (CORBA_Any_var &,
                                       CORBA::Double&);
TAO_Export CORBA::Boolean operator>>= (CORBA_Any_var &,
                                       CORBA_Any&);
TAO_Export CORBA::Boolean operator>>= (CORBA_Any_var &,
                                       CORBA::TypeCode_ptr&);
TAO_Export CORBA::Boolean operator>>= (CORBA_Any_var &,
                                       const char*&);
TAO_Export CORBA::Boolean operator>>= (CORBA_Any_var &,
                                       const CORBA::WChar*&);
TAO_Export CORBA::Boolean operator>>= (CORBA_Any_var &,
                                       CORBA::Any::to_boolean);
TAO_Export CORBA::Boolean operator>>= (CORBA_Any_var &,
                                       CORBA::Any::to_octet);
TAO_Export CORBA::Boolean operator>>= (CORBA_Any_var &,
                                       CORBA::Any::to_char);
TAO_Export CORBA::Boolean operator>>= (CORBA_Any_var &,
                                       CORBA::Any::to_wchar);
TAO_Export CORBA::Boolean operator>>= (CORBA_Any_var &,
                                       CORBA::Any::to_string);
TAO_Export CORBA::Boolean operator>>= (CORBA_Any_var &,
                                       CORBA::Any::to_wstring);
TAO_Export CORBA::Boolean operator>>= (CORBA_Any_var &,
                                       CORBA::Any::to_object);

#endif /* __ACE_INLINE__ */

#include "ace/post.h"
#endif /* TAO_ANY_H */