summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3919_Regression/client.cpp
blob: a1aa68d529296b36a62c72a1e4258a81fc135783 (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
// $Id$

#include "Test2C.h"
#include "tao/IFR_Client/IFR_BaseC.h"
#include "tao/TypeCodeFactory/TypeCodeFactory_Loader.h"

#include "ace/Get_Opt.h"

#include <algorithm>
#include <functional>

const ACE_TCHAR *ior = ACE_TEXT("file://test.ior");

int
parse_args (int argc, ACE_TCHAR *argv[])
{
  ACE_Get_Opt get_opts (argc, argv, ACE_TEXT("k:"));
  int c;

  while ((c = get_opts ()) != -1)
    switch (c)
      {
      case 'k':
        ior = get_opts.opt_arg ();
        break;

      case '?':
      case 'h':
      default:
        ACE_ERROR_RETURN ((LM_ERROR,
                           "usage:  %s "
                           "-k <ior> "
                           "\n",
                           argv [0]),
                          -1);
      }

  // Successful command line parsing.
  return 0;
}

template<typename T> void dump (T *); // Forward declaration.

template<typename T>
void
perform_invocation (Test::Hello_ptr hello,
                    CORBA::Any const & the_any)
{
  // Execute more than once to help verify that mutable recursive
  // TypeCode state is managed correctly.
  for (unsigned int n = 0; n < 2; ++n)
    {
      CORBA::Any_var my_any =
        hello->get_any (the_any);

      T * my_foo = 0;
      if (!(my_any.in () >>= my_foo))
        throw Test::Demarshaling_From_Any_Failed ();

      CORBA::TypeCode_var the_tc = the_any.type ();
      CORBA::TypeCode_var my_tc  = my_any->type ();

      CORBA::Boolean const equal_tc =
        the_tc->equal (my_tc.in ());

      if (!equal_tc)
        throw Test::Recursive_Type_In_Any_Test_Failed ();

      CORBA::Boolean const equiv_tc =
        the_tc->equivalent (my_tc.in ());

      if (!equiv_tc)
        throw Test::Recursive_Type_In_Any_Test_Failed ();
    }
}

void
recursive_typecode_test (CORBA::ORB_ptr /* orb */,
                              Test::Hello_ptr hello)
{
  ACE_DEBUG ((LM_INFO,
              "Executing recursive typecode test\n"));

  CORBA::Any the_any;

  Test::MyAttRefSequence test;

  Test::MyAttRef attr;
  attr.attRefName="attr";
  attr.attRefValue.attrValue("value");
  attr.attRefQualifier="atrQ1";

  Test::MyAttRef attr2;
  attr2.attRefName="attr2";
  attr2.attRefValue.attrValue("value2");
  attr2.attRefQualifier="atrQ2";

  Test::MyAttRef comp;
  comp.attRefName="comp1";
  comp.attRefQualifier="compQ";

  Test::MyAttRef::MyAttRefValue::_compValue_seq compSeq(1);
  compSeq.length(1);
  compSeq[0]=attr2;
  comp.attRefValue.compValue(compSeq);

  Test::MyAttRef inti;
  inti.attRefName="intval";
  inti.attRefValue.intValue(0xAFFEAFFE);

  test.length(3);
  test[0] = comp;
  test[1] = inti;
  test[2] = attr;

  the_any <<= test;

  ::perform_invocation<Test::MyAttRefSequence> (hello, the_any);

}

void
nested_recursive_typecode_test (CORBA::ORB_ptr /* orb */,
                              Test::Hello_ptr hello)
{
  ACE_DEBUG ((LM_INFO,
              "Executing nested recursive typecode test\n"));

  CORBA::Any the_any;

  Test2::MyAttRefSeqStruct test;

  Test::MyAttRef attr;
  attr.attRefName="attr";
  attr.attRefValue.attrValue("value");
  attr.attRefQualifier="atrQ1";

  Test::MyAttRef attr2;
  attr2.attRefName="attr2";
  attr2.attRefValue.attrValue("value2");
  attr2.attRefQualifier="atrQ2";

  Test::MyAttRef comp;
  comp.attRefName="comp1";
  comp.attRefQualifier="compQ";

  Test::MyAttRef::MyAttRefValue::_compValue_seq compSeq(1);
  compSeq.length(1);
  compSeq[0]=attr2;
  comp.attRefValue.compValue(compSeq);

  Test::MyAttRef inti;
  inti.attRefName="intval";
  inti.attRefValue.intValue(0xAFFEAFFE);

  test.attRefSeq.length(3);
  test.attRefSeq[0] = comp;
  test.attRefSeq[1] = inti;
  test.attRefSeq[2] = attr;

  the_any <<= test;

  ::perform_invocation<Test2::MyAttRefSeqStruct> (hello, the_any);

}

/**
 * @struct Caller
 *
 * @brief Test method invocation functor.
 *
 * Test method invocation functor.
 */
template <typename T>
struct Caller : public std::unary_function<T, void>
{
  /// Constructor.
  Caller (CORBA::ORB_ptr o, Test::Hello_ptr h)
    : orb (CORBA::ORB::_duplicate (o))
    , hello (Test::Hello::_duplicate (h))
    , success (true)
  {
  }

  /// Function call operator overload.
  void operator() (T f)
  {
    try
      {
        f (orb.in (),
           hello.in ());
      }
    catch (const CORBA::Exception& ex)
      {
        ex._tao_print_exception ("Exception thrown:");

        success = false;
      }
  }

  CORBA::ORB_var orb;
  Test::Hello_var hello;
  bool success;
};

int
ACE_TMAIN(int argc, ACE_TCHAR *argv[])
{
  try
    {
      CORBA::ORB_var orb =
        CORBA::ORB_init (argc, argv);

      if (parse_args (argc, argv) != 0)
        return 1;

      CORBA::Object_var tmp =
        orb->string_to_object(ior);

      Test::Hello_var hello =
        Test::Hello::_narrow(tmp.in ());

      if (CORBA::is_nil (hello.in ()))
        {
          ACE_ERROR_RETURN ((LM_DEBUG,
                             "Nil Test::Hello reference <%s>\n",
                             ior),
                            1);
        }

      typedef void (*test_func) (CORBA::ORB_ptr,
                                 Test::Hello_ptr);

      static test_func const tests[] =
        {
          recursive_typecode_test,
          nested_recursive_typecode_test
        };

      static size_t const test_count = sizeof (tests) / sizeof (test_func);

      // Have some fun with the STL.  :-)
      Caller<test_func> c =
        std::for_each (tests,
                       tests + test_count,
                       Caller<test_func> (orb.in (),
                                          hello.in ()));

      if (!c.success)
        throw Test::Recursive_Type_In_Any_Test_Failed ();

      hello->shutdown ();

      orb->destroy ();
    }
  catch (const CORBA::Exception& ex)
    {
      ex._tao_print_exception ("Exception caught:");
      return 1;
    }

  return 0;
}