summaryrefslogtreecommitdiff
path: root/TAO/tao/Union_TypeCode.cpp
blob: 777493202e558e75ad75d36e854198594b5809d9 (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
// $Id$

#ifndef TAO_UNION_TYPECODE_CPP
#define TAO_UNION_TYPECODE_CPP

#include "tao/Union_TypeCode.h"
#include "tao/TypeCode_Case.h"

#ifndef __ACE_INLINE__
# include "tao/Union_TypeCode.inl"
#endif  /* !__ACE_INLINE__ */


template <typename StringType, class CaseArrayType, class RefCountPolicy>
bool
TAO::TypeCode::Union<StringType,
                     CaseArrayType,
                     RefCountPolicy>::tao_marshal (
  TAO_OutputCDR & cdr) const
{
  // A tk_union TypeCode has a "complex" parameter list type (see
  // Table 15-2 in Section 15.3.5.1 "TypeCode" in the CDR section of
  // the CORBA specification), meaning that it must be marshaled into
  // a CDR encapsulation.

  CORBA::ULong const count = this->case_count ();

  // Create a CDR encapsulation.
  bool const success =
    (cdr << TAO_ENCAP_BYTE_ORDER)
    && (cdr << this->base_attributes_.id ())
    && (cdr << this->base_attributes_.name ())
    && (cdr << *(this->discriminant_type_))
    && (cdr << this->default_index_)
    && (cdr << count);

  if (!success)
    return false;

  // Note that we handle the default case below, too.  The default
  // case handling is hidden behind the case_count() and case()
  // methods.

  for (unsigned int i = 0; i < count; ++i)
    {
      case_type const & c = this->case (i);

      if (!c.marshal (cdr))
        return false;
    }

  return true;
}

template <typename StringType, class CaseArrayType, class RefCountPolicy>
void
TAO::TypeCode::Union<StringType,
                     CaseArrayType,
                     RefCountPolicy>::tao_duplicate (void)
{
  this->RefCountPolicy::add_ref (void);
}

template <typename StringType, class CaseArrayType, class RefCountPolicy>
void
TAO::TypeCode::Union<StringType,
                     CaseArrayType,
                     RefCountPolicy>::tao_release (void)
{
  this->RefCountPolicy::remove_ref (void);
}

template <typename StringType, class CaseArrayType, class RefCountPolicy>
CORBA::Boolean
TAO::TypeCode::Union<StringType,
                     CaseArrayType,
                     RefCountPolicy>::equal_i (
  CORBA::TypeCode_ptr tc
  ACE_ENV_ARG_DECL) const
{
  // These calls shouldn't throw since CORBA::TypeCode::equal()
  // verified that the TCKind is the same as our's prior to invoking
  // this method, meaning that the CORBA::tk_union TypeCode methods
  // are supported.

  CORBA::ULong const tc_count =
    tc->member_count (ACE_ENV_SINGLE_ARG_PARAMETER);
  ACE_CHECK_RETURN (0);

  CORBA::Long tc_def = tc->default_index (ACE_ENV_ARG_PARAMETER);
  ACE_CHECK_RETURN (0);

  CORBA::ULong const this_count = this->case_count ();

  if (tc_count != this_count
      || tc_def != this->default_index_)
    return 0;

  // Check the discriminator type.
  CORBA::TypeCode_var tc_discriminator =
    tc->discriminator_type (ACE_ENV_ARG_PARAMETER);
  ACE_CHECK_RETURN (0);

  CORBA::Boolean const equal_discriminators =
    (*this->discriminator_type_)->equal (tc_discriminator.in ()
                                         ACE_ENV_ARG_PARAMETER);
  ACE_CHECK_RETURN (0);

  if (!equal_discriminators)
    return 0;

  for (CORBA::ULong i = 0; i < this_count; ++i)
    {
      case_type const & lhs_case = this->case (i);

      bool const equal_case =
        lhs_case.equal (i,
                        tc
                        ACE_ENV_ARG_PARAMETER);
      ACE_CHECK_RETURN (0);

      if (!equal_case)
        return 0;
    }

  return 1;
}

template <typename StringType, class CaseArrayType, class RefCountPolicy>
CORBA::Boolean
TAO::TypeCode::Union<StringType,
                     CaseArrayType,
                     RefCountPolicy>::equivalent_i (
  CORBA::TypeCode_ptr tc
  ACE_ENV_ARG_DECL) const
{
  // We could refactor this code to the CORBA::TypeCode::equivalent()
  // method but doing so would force us to determine the unaliased
  // kind of this TypeCode.  Since we already know the unaliased kind
  // of this TypeCode, choose to optimize away the additional kind
  // unaliasing operation rather than save space.

  CORBA::TCKind const tc_kind =
    TAO::unaliased_kind (tc
                         ACE_ENV_ARG_PARAMETER);
  ACE_CHECK_RETURN (0);

  // Call kind_i() instead of using CORBA::tk_union directly since a
  // subclass, such as Except_TypeCode, can use this equivalent_i()
  // implementation.
  CORBA::TCKind const this_kind =
    this->kind_i (ACE_ENV_SINGLE_ARG_PARAMETER);
  ACE_CHECK_RETURN (0);

  if (tc_kind != this_kind)
    return 0;

  char const * const this_id = this->base_attributes_.id ();
  char const * const tc_id   = tc->id (ACE_ENV_SINGLE_ARG_PARAMETER);
  ACE_CHECK_RETURN (0);

  if (ACE_OS::strlen (this_id) == 0
      || ACE_OS::strlen (tc_id) == 0)
    {
      // Perform a structural comparison, excluding the name() and
      // member_name() operations.

      CORBA::ULong const tc_count =
        tc->member_count (ACE_ENV_SINGLE_ARG_PARAMETER);
      ACE_CHECK_RETURN (0);

      CORBA::Long tc_def = tc->default_index (ACE_ENV_ARG_PARAMETER);
      ACE_CHECK_RETURN (0);

      CORBA::ULong const this_count = this->case_count ();

      if (tc_count != this_count
          || tc_def != this->default_index_)
        return 0;

      CORBA::TypeCode_var tc_discriminator =
        tc->discriminator_type (ACE_ENV_ARG_PARAMETER);
      ACE_CHECK_RETURN (0);

      CORBA::Boolean const equiv_discriminators =
        (*this->discriminator_type_)->equivalent (tc_discriminator.in ()
                                                  ACE_ENV_ARG_PARAMETER);
      ACE_CHECK_RETURN (0);

      if (!equiv_discriminators)
        return 0;

      for (CORBA::ULong i = 0; i < this_count; ++i)
        {
          case_type const & lhs_case = this->case (i);

          bool const equivalent_case =
            lhs_case.equivalent (i,
                                 tc
                                 ACE_ENV_ARG_PARAMETER);
          ACE_CHECK_RETURN (0);

          if (!equivalent_case)
            return 0;
        }
    }
  else if (ACE_OS::strcmp (this_id, tc_id) != 0)
    {
      return 0;
    }

  return 1;
}

template <typename StringType, class CaseArrayType, class RefCountPolicy>
CORBA::TCKind
TAO::TypeCode::Union<StringType, CaseArrayType, RefCountPolicy>::kind_i (
  ACE_ENV_SINGLE_ARG_DECL_NOT_USED) const
{
  return CORBA::tk_union;
}

template <typename StringType, class CaseArrayType, class RefCountPolicy>
CORBA::TypeCode_ptr
TAO::TypeCode::Union<StringType,
                     CaseArrayType,
                     RefCountPolicy>::get_compact_typecode_i (
  ACE_ENV_SINGLE_ARG_DECL) const
{
  case_type * tc_cases = 0;

  ACE_Auto_Array_Ptr<Case<CORBA::String_var> > safe_cases;

  if (this->ncases_ > 0)
    {
      // Dynamically construct a new array of cases stripped of
      // member names.

      ACE_NEW_THROW_EX (tc_cases,
                        case_type[this->ncases_],
                        CORBA::NO_MEMORY ());
      ACE_CHECK_RETURN (CORBA::TypeCode::_nil ());

      safe_cases.reset (tc_cases);

      static char const * empty_name = "";

      for (CORBA::ULong i = 0; i < this->ncases_; ++i)
        {
          // Member names will be stripped, i.e. not embedded within
          // the compact TypeCode.
          tc_cases[i].name = empty_name;
          tc_cases[i].type =
            &(this->case (i).type ()->get_compact_typecode (
                  ACE_ENV_ARG_PARAMETER));
          ACE_CHECK_RETURN (CORBA::TypeCode::_nil ());
        }
    }

  // Create the compact union TypeCode.
  TAO_TypeCodeFactory_Adapter * adapter =
    ACE_Dynamic_Service<TAO_TypeCodeFactory_Adapter>::instance (
      TAO_ORB_Core::typecodefactory_adapter_name ());

  if (adapter == 0)
    {
      ACE_THROW_RETURN (CORBA::INTERNAL (),
                        CORBA::TypeCode::_nil ());
    }

  CORBA::TCKind const this_kind =
    this->kind_i (ACE_ENV_SINGLE_ARG_PARAMETER);
  ACE_CHECK_RETURN (CORBA::TypeCode::_nil ());

  tc = adapter->_tao_create_union_tc (this->base_attributes_.id (),
                                      "",  /* empty name */
                                      this->discriminant_type_,
                                      tc_cases,
                                      this->ncases_,
                                      this->default_index_,
                                      "",
                                      CORBA::TypeCode_ptr * default_member_type
                                      ACE_ENV_ARG_PARAMETER);
  ACE_CHECK_RETURN (CORBA::TypeCode::_nil ());

  (void) safe_cases.release ();

  return tc;
}

template <typename StringType, class CaseArrayType, class RefCountPolicy>
char const *
TAO::TypeCode::Union<StringType, CaseArrayType, RefCountPolicy>::id_i (
  ACE_ENV_SINGLE_ARG_DECL_NOT_USED) const
{
  // Ownership is retained by the TypeCode, as required by the C++
  // mapping.
  return this->base_attributes_.id ();
}

template <typename StringType, class CaseArrayType, class RefCountPolicy>
char const *
TAO::TypeCode::Union<StringType, CaseArrayType, RefCountPolicy>::name_i (
  ACE_ENV_SINGLE_ARG_DECL_NOT_USED) const
{
  // Ownership is retained by the TypeCode, as required by the C++
  // mapping.
  return this->base_attributes_.name ();
}

template <typename StringType, class CaseArrayType, class RefCountPolicy>
CORBA::ULong
TAO::TypeCode::Union<StringType,
                      CaseArrayType,
                      RefCountPolicy>::member_count_i (
  ACE_ENV_SINGLE_ARG_DECL_NOT_USED) const
{
  return this->case_count ();
}

template <typename StringType, class CaseArrayType, class RefCountPolicy>
char const *
TAO::TypeCode::Union<StringType,
                     CaseArrayType,
                     RefCountPolicy>::member_name_i (
  CORBA::ULong index
  ACE_ENV_ARG_DECL) const
{
  // Ownership is retained by the TypeCode, as required by the C++
  // mapping.
  if (index >= this->case_count ())
    ACE_THROW_RETURN (CORBA::TypeCode::Bounds (), 0);

  return this->case (index).name ();
}

template <typename StringType, class CaseArrayType, class RefCountPolicy>
CORBA::TypeCode_ptr
TAO::TypeCode::Union<StringType,
                     CaseArrayType,
                     RefCountPolicy>::member_type_i (
  CORBA::ULong index
  ACE_ENV_ARG_DECL) const
{
  if (index >= this->case_count ())
    ACE_THROW_RETURN (CORBA::TypeCode::Bounds (),
                      CORBA::TypeCode::_nil ());

  return CORBA::TypeCode::_duplicate (this->case (index).type ());
}

template <typename StringType, class CaseArrayType, class RefCountPolicy>
CORBA::Any *
TAO::TypeCode::Union<StringType,
                     CaseArrayType,
                     RefCountPolicy>::member_label_i (ULong index
                                                      ACE_ENV_ARG_DECL) const
{
  if (index >= this->case_count ())
    ACE_THROW_RETURN (CORBA::TypeCode::Bounds (),
                      0);

  return this->case (index).label (ACE_ENV_ARG_PARAMETER);
}

template <typename StringType, class CaseArrayType, class RefCountPolicy>
CORBA::TypeCode_ptr
TAO::TypeCode::Union<StringType,
                     CaseArrayType,
                     RefCountPolicy>::discriminator_type_i (
  ACE_ENV_SINGLE_ARG_DECL) const
{
  return CORBA::TypeCode::_duplicate (*this->discriminator_type_);
}

template <typename StringType, class CaseArrayType, class RefCountPolicy>
CORBA::Long
TAO::TypeCode::Union<StringType,
                     CaseArrayType,
                     RefCountPolicy>::default_index_i (
  ACE_ENV_SINGLE_ARG_DECL_NOT_USED) const
{
  return this->default_index_;
}


#endif  /* TAO_UNION_TYPECODE_CPP */