summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_state_structure.cpp
blob: 86ab10cac5a6e9ebcf42441da21afc6a8ed1421b (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
// $Id$
//
// ============================================================================
//
// = LIBRARY
//    TAO IDL
//
// = FILENAME
//    be_state_struct.cpp
//
// = DESCRIPTION
//    state based code generation for structs.
//
// = AUTHOR
//    Aniruddha Gokhale
//
// ============================================================================

#include        "idl.h"
#include        "idl_extern.h"
#include        "be.h"

be_state_struct::be_state_struct (void)
{
}

// generate code for structure member
int
be_state_struct ::gen_code (be_type *bt, be_decl *d, be_type *type)
{
  TAO_OutStream *os; // output stream
  TAO_CodeGen *cg = TAO_CODEGEN::instance ();
  be_field *f;       // field node
  be_structure *bs;  // enclosing structure node

  switch (cg->state ())
    {
    case TAO_CodeGen::TAO_STRUCT_CH:
      os = cg->client_header ();
      break;
    case TAO_CodeGen::TAO_STRUCT_CS:
      os = cg->client_stubs ();
      break;
    case TAO_CodeGen::TAO_STRUCT_CI:
      os = cg->client_inline ();
      break;
    default:
      os = 0;  // Force a seg fault.  At least os will have a known value.
    }

  f = be_field::narrow_from_decl (d); // downcast to field node
  if (!f)
    {
      ACE_ERROR_RETURN ((LM_ERROR,
                         "(%N:%l) be_state_structure.cpp - "
                         "Bad field\n"),
                        -1);
    }

  // retrieve the enclosing "struct" node
  bs = be_structure::narrow_from_scope (f->defined_in ());
  if (!bs)
    {
      ACE_ERROR_RETURN ((LM_ERROR,
                         "(%N:%l) be_state_struct.cpp - "
                         "Bad structure\n"),
                        -1);
    }

  if (!type) // not a recursive call
    type = bt;
  else // recursively called thru a typedef. "type" will have the most primitive
       // base class of the typedef
    ACE_ASSERT (bt->node_type () == AST_Decl::NT_typedef);

  // generate code based on type.
  switch (type->node_type ())
    {
    case AST_Decl::NT_interface: // type is an obj reference
      {
        switch (cg->state ())
          {
          case TAO_CodeGen::TAO_STRUCT_CH:
            {
              os->indent (); // start from current indentation
              *os << bt->nested_type_name (bs, "_var") << " " << f->local_name
                () << ";\n";
            }
            break;
          case TAO_CodeGen::TAO_STRUCT_CI:
            {
              // nothing
            }
            break;
          case TAO_CodeGen::TAO_STRUCT_CS:
            {
              // nothing
            }
            break;
          default:
            {
              ACE_ERROR_RETURN ((LM_ERROR,
                                 "(%N:%l) be_state_struct - unknown state\n"), -1);
            }
          } // end switch state
      } // end case interface
      break;
    case AST_Decl::NT_pre_defined: // type is predefined type
      {
        switch (cg->state ())
          {
          case TAO_CodeGen::TAO_STRUCT_CH:
            {
              be_predefined_type *bpd = be_predefined_type::narrow_from_decl
                (type);
              if (!bpd)
                {
                  ACE_ERROR_RETURN ((LM_ERROR,
                                     "(%N:%l) be_state_struct - "
                                     "bad predefined type\n"), -1);
                }
              os->indent (); // start from current indentation
              switch (bpd->pt ())
                {
                case AST_PredefinedType::PT_any:
                case AST_PredefinedType::PT_pseudo:
                  *os << bt->nested_type_name (bs) << "_var " << f->local_name
                    () << ";\n";
                  break;
                default:
                  *os << bt->nested_type_name (bs) << " " << f->local_name ()
                      << ";\n";
                }
            }
            break;
          case TAO_CodeGen::TAO_STRUCT_CI:
            {
              // nothing
            }
            break;
          case TAO_CodeGen::TAO_STRUCT_CS:
            {
              // nothing
            }
            break;
          default:
            {
              ACE_ERROR_RETURN ((LM_ERROR,
                                 "(%N:%l) be_state_struct - unknown state\n"), -1);
            }
          } // end switch state
      }
      break;
    case AST_Decl::NT_string: // type is a string
      {
        switch (cg->state ())
          {
          case TAO_CodeGen::TAO_STRUCT_CH:
            {
              os->indent (); // start from current indentation
              if (bt->node_type () == AST_Decl::NT_typedef)
                {
                  *os << bt->nested_type_name (bs, "_var") << " " <<
                    f->local_name () << ";\n";
                }
              else
                {
                  *os << "CORBA::String_var " << f->local_name () << ";\n";
                }
            }
            break;
          case TAO_CodeGen::TAO_STRUCT_CI:
            {
            }
            break;
          case TAO_CodeGen::TAO_STRUCT_CS:
            {
            }
            break;
          default:
            {
              ACE_ERROR_RETURN ((LM_ERROR,
                                 "(%N:%l) be_state_struct - unknown state\n"), -1);
            }
          } // end switch state
      }
      break;
      // these are all anonymous types
    case AST_Decl::NT_array: // type is an array
    case AST_Decl::NT_sequence: // type is a sequence
    case AST_Decl::NT_enum: // type is an enum
    case AST_Decl::NT_struct: // type is a struct
    case AST_Decl::NT_union: // type is a union
      {
        switch (cg->state ())
          {
          case TAO_CodeGen::TAO_STRUCT_CH:
            {
              // We first need to generate code for this aggregate type. Check
              // if we are not called recursively thru a typedef
              if (bt->node_type () != AST_Decl::NT_typedef
                  && !bt->imported ())
                if (bt->gen_client_header () == -1)
                  {
                    ACE_ERROR_RETURN ((LM_ERROR,
                                       "(%N:%l) be_state_struct - "
                                       "error generating code for type\n"),
                                      -1);
                  }
              // this is not to be generated for arrays
              if (bt->node_type () != AST_Decl::NT_array)
                {
                  os->indent ();
                  *os << bt->nested_type_name (bs) << " " << f->local_name () <<
                    ";\n";
                }
            }
            break;
          case TAO_CodeGen::TAO_STRUCT_CI:
            {
              // We first need to generate code for this aggregate type. Check
              // if we are not called recursively thru a typedef
              if (bt->node_type () != AST_Decl::NT_typedef
                  && !bt->imported ())
                if (bt->gen_client_inline () == -1)
                  {
                    ACE_ERROR_RETURN ((LM_ERROR,
                                       "(%N:%l) be_state_struct - "
                                       "error generating code for type\n"),
                                      -1);
                  }
            }
            break;
          case TAO_CodeGen::TAO_STRUCT_CS:
            {
              // We first need to generate code for this aggregate type. Check
              // if we are not called recursively thru a typedef
              if (bt->node_type () != AST_Decl::NT_typedef
                  && !bt->imported ())
                if (bt->gen_client_stubs () == -1)
                  {
                    ACE_ERROR_RETURN ((LM_ERROR,
                                       "(%N:%l) be_state_struct - "
                                       "error generating code for type\n"),
                                      -1);
                  }
            }
            break;
          default:
            {
              ACE_ERROR_RETURN ((LM_ERROR,
                                 "(%N:%l) be_state_struct - unknown state\n"), -1);
            }
          } // end switch state
      }
      break;
    case AST_Decl::NT_except: // type is an exception
      {
        // XXXASG TODO: is this allowed ???
      }
      break;
    case AST_Decl::NT_typedef: // type is a typedef
      {
        be_type *temp;
        be_typedef *t = be_typedef::narrow_from_decl (bt);

        if (!t)
          return -1;

        temp = t->primitive_base_type ();
        // make a recursive call
        return this->gen_code (t, f, temp);
      } // end of switch
      //break;  unreachable statement!
    }
  // the enclosing structure will be variable length if the field's type is
  // variable length
  bs->size_type (type->size_type ());
  return 0;
}