summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/main.cpp
blob: d3e20a587c10a26d6fe1cee4c3d04e2c1604cd66 (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
// $Id$

// ============================================================================
//
// = LIBRARY
//    TAO/tests/IDL_Test
//
// = FILENAME
//    main.cpp
//
// = DESCRIPTION
//    The only things that needs to be tested in execution
//    are the pragma prefixes generated in pragma.idl, so
//    we check them here. The rest needs only to build cleanly
//
// = AUTHORS
//    Jeff Parsons <parsons@cs.wustl.edu>
//
// ============================================================================

#include "ace/Log_Msg.h"
#include "pragmaS.h"
#include "unionC.h"

class hello_i : public virtual POA_hello
{
};

class goodbye_i : public virtual POA_goodbye
{
};

class sayonara_i : public virtual POA_salutation::sayonara
{
};

class ciao_i : public virtual POA_ciao
{
};

class aloha_i : public virtual POA_aloha
{
};

int 
main (int argc , char *argv[])
{
  ACE_TRY_NEW_ENV
    {
      CORBA::ORB_var orb =
        CORBA::ORB_init (argc, argv, "", ACE_TRY_ENV);
      ACE_TRY_CHECK;

      CORBA::Object_var poa_object =
        orb->resolve_initial_references ("RootPOA");

      PortableServer::POA_var root_poa =
        PortableServer::POA::_narrow (poa_object.in (), 
                                      ACE_TRY_ENV);
      ACE_TRY_CHECK;

      // Test of pragma prefix handling.

      CORBA::ULong error_count = 0;

      CORBA::Object_var obj;

      hello_i h;

      obj = h._this (ACE_TRY_ENV);

      ACE_TRY_CHECK;

      if (ACE_OS::strcmp (obj->_interface_repository_id (),
                          "IDL:anvil.com/hello:1.0"))
        {
          ACE_DEBUG ((LM_DEBUG,
                      "pragma prefix error in object 'hello'\n"));

          error_count++;
        }

      goodbye_i g;

      obj = g._this (ACE_TRY_ENV);

      ACE_TRY_CHECK;

      if (ACE_OS::strcmp (obj->_interface_repository_id (),
                          "IDL:anvil.com/goodbye:1.0"))
        {          
          ACE_DEBUG ((LM_DEBUG,
                      "pragma prefix error in object 'goodbye'\n"));

          error_count++;
        }

      sayonara_i s;

      obj = s._this (ACE_TRY_ENV);

      ACE_TRY_CHECK;

      if (ACE_OS::strcmp (obj->_interface_repository_id (),
                          "IDL:hammer.com/salutation/sayonara:1.0"))
        {          
          ACE_DEBUG ((LM_DEBUG,
                      "pragma prefix error in object 'sayonara'\n"));

          error_count++;
        }

      ciao_i c;

      obj = c._this (ACE_TRY_ENV);

      ACE_TRY_CHECK;

      if (ACE_OS::strcmp (obj->_interface_repository_id (),
                          "IDL:anvil.com/ciao:1.0"))
        {          
          ACE_DEBUG ((LM_DEBUG,
                      "pragma prefix error in object 'ciao'\n"));

          error_count++;
        }

      aloha_i a;

      obj = a._this (ACE_TRY_ENV);

      ACE_TRY_CHECK;

      if (ACE_OS::strcmp (obj->_interface_repository_id (),
                          "IDL:anvil.com/aloha:1.0"))
        {          
          ACE_DEBUG ((LM_DEBUG,
                      "pragma prefix error in object 'aloha'\n"));

          error_count++;
        }

      ACE_DEBUG ((LM_DEBUG,
                 "Pragma prefix test completed with %d errors\n"
                 "Check compiler output for build warnings\n",
                 error_count));

      // Test of duplicate case labels.

      Field field;
      field.value.strValue (CORBA::string_dup ("duplicate case label test string"));
      field.value._d (FTYPE_VARCHAR);
      CORBA::Any any1;
      any1 <<= field;
      Field *outfield;
      any1 >>= outfield;
      const char *str = outfield->value.strValue ();
      ACE_DEBUG ((LM_DEBUG,
                  "\n%s\n",
                  str));

      field.value.defstr (CORBA::string_dup ("default case test string"));
      any1 <<= field;
      any1 >>= outfield;
      str = outfield->value.defstr ();
      ACE_DEBUG ((LM_DEBUG,
                  "%s\n",
                  str));

      root_poa->destroy (1,
                         1,
                         ACE_TRY_ENV);
      ACE_TRY_CHECK;
    }
  ACE_CATCHANY
    {
      ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION, 
                           "Unexpected exception in main");
      return 1;
    }
  ACE_ENDTRY;

  return 0;
}