summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_operation.cpp
blob: 07fae5799dd1176c0f886123de9f9e651a5a748e (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
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
// ============================================================================
//
// = LIBRARY
//    TAO IDL
//
// = FILENAME
//    be_operation.cpp
//
// = DESCRIPTION
//    Extension of class AST_Operation that provides additional means for C++
//    mapping.
//
// = AUTHOR
//    Copyright 1994-1995 by Sun Microsystems, Inc.
//    and
//    Aniruddha Gokhale
//
// ============================================================================

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

/*
 * BE_Operation
 */
be_operation::be_operation (void)
{
}

be_operation::be_operation (AST_Type *rt, AST_Operation::Flags fl,
                            UTL_ScopedName *n, UTL_StrList *p)
  : AST_Operation (rt, fl, n, p),
    AST_Decl (AST_Decl::NT_op, n, p),
    UTL_Scope (AST_Decl::NT_op)
{
}

int
be_operation::gen_client_header (void)
{
  TAO_OutStream *ch; // output stream
  be_type *bt;       // type node
  be_state *s;       // state based code gen object

  // retrieve a singleton instance of the code generator
  TAO_CodeGen *cg = TAO_CODEGEN::instance ();
  ch = cg->client_header ();
  cg->outstream (ch); // important to set the current stream

  ch->indent (); // start with the current indentation level

  // every operation is declared virtual in the client code
  *ch << "virtual ";

  // first generate the return type
  bt = be_type::narrow_from_decl (this->return_type ());
  cg->push (TAO_CodeGen::TAO_OPERATION_CH); // we are now generating an
                                            // operation definition with the
                                            // return type first

  s = cg->make_state (); // retrieve state based object

  if (!s || !bt || (s->gen_code (bt, this) == -1))
    {
      ACE_ERROR_RETURN ((LM_ERROR,
                         "(%N:%l) be_operation::gen_client_header - "
                         "return type generation failure\n"),
                        -1);
    }
  cg->pop (); // restore previous state

  // generate the operation name
  *ch << " " << this->local_name () << " (";

  // generate the arguments with the appropriate mapping
  cg->push (TAO_CodeGen::TAO_ARGUMENT_CH); // generating code for arguments in
                                           // the signature
  if (be_scope::gen_client_header () == -1)
    {
      ACE_ERROR_RETURN ((LM_ERROR,
                         "(%N:%l) be_operation::gen_client_header - "
                         "failed in argument generation in signature\n"),
                        -1);
    }
  cg->pop ();

  // XXXASG
  // additional argument in the form of CORBA::Environment since TAO does not
  // yet support C++ style Exceptions. However, we can have an option to the
  // "tao" IDL compiler to ask it to generate code for exceptions. This will be
  // handled in a later release.
  *ch << "CORBA::Environment &env);\n";

  return 0;
}

int
be_operation::gen_client_stubs (void)
{
  TAO_OutStream *cs; // output stream
  TAO_NL  nl;        // end line
  be_type *bt;       // type node
  UTL_ScopeActiveIterator *si; // scope iterator
  AST_Decl *d;       // temp node
  be_argument *bd;   // argument node
  be_predefined_type *bpd=0; // predefined type used for return VOID type
  be_state *s;       // state based code gen object
  long paramtblsize = 0;  // size of the paradata table


  // retrieve a singleton instance of the code generator
  TAO_CodeGen *cg = TAO_CODEGEN::instance ();

  cs = cg->client_stubs ();

  // for each operation, generate the paramdata and calldata tables followed by
  // the actual stub

  cs->indent (); // start with current indentation level

  // retrieve the return type
  bt = be_type::narrow_from_decl (this->return_type ());

  // bt holds the return type. Declare a variable that will hold the return
  // type. However, we must be careful if the return type is a void
  if (bt->node_type () == AST_Decl::NT_pre_defined)
    {
      bpd = be_predefined_type::narrow_from_decl (bt);
    }

  // generate the TAO_Param_Data table
  *cs << "static const TAO_Param_Data " << this->flatname () <<
    "_paramdata [] = " << nl;
  *cs << "{\n";
  cs->incr_indent ();

  // entry for the return type
  *cs << "{" << bt->tc_name () << ", PARAM_RETURN, 0}";
  paramtblsize++;
  // if we have any arguments, get each one of them
  if (this->nmembers () > 0)
    {
      // if there are elements in this scope

      si = new UTL_ScopeActiveIterator (this, UTL_Scope::IK_decls);
      // instantiate a scope iterator.

      while (!(si->is_done ()))
        {
          // get the next AST decl node
          d = si->item ();
          // only if this is an argument node
          if (d->node_type () == AST_Decl::NT_argument)
            {
              bd = be_argument::narrow_from_decl (d);
              bt = be_type::narrow_from_decl (bd->field_type ());
              *cs << "," << nl; // put a comma and newline before the
              // previous entry
              *cs << "{" << bt->tc_name ();
              // based on the direction, output the appropriate constant.
              switch (bd->direction ())
                {
                case AST_Argument::dir_IN:
                  *cs << ", PARAM_IN, 0}";
                  break;
                case AST_Argument::dir_INOUT:
                  *cs << ", PARAM_INOUT, 0}";
                  break;
                case AST_Argument::dir_OUT:
                  *cs << ", PARAM_OUT, 0}";
                  break;
                } // end switch
              paramtblsize++;
            } // end if argument node
          si->next ();
        } // end of while
      delete si; // free the iterator object
    } // end of arg list
  *cs << "\n";
  cs->decr_indent ();
  *cs << "};\n\n";

  // now generate the calldata table

  cs->indent ();
  *cs << "static const TAO_Call_Data " << this->flatname () << "_calldata = "
      << nl;
  *cs << "{";
  *cs << "\"" << this->local_name () << "\", ";

  // are we oneway or two operation?
  if (this->flags () == AST_Operation::OP_oneway)
    {
      *cs << "0, "; // for false
    }
  else
    {
      *cs << "1, "; // for true
    }
  // insert the size of the paramdata table
  *cs << paramtblsize << ", ";

  // insert the address of the paramdata table
  *cs << this->flatname () << "_paramdata, ";

  // XXXASG - Exception list goes here (if it exists) - TODO
  *cs << "0, 0};\n\n";

  // now generate the actual stub

  // retrieve the return type again because we have used bt to also retrieve
  // the argument types
  bt = be_type::narrow_from_decl (this->return_type ());

  // bt holds the return type. Declare a variable that will hold the return
  // type. However, we must be careful if the return type is a void
  if (bt->node_type () == AST_Decl::NT_pre_defined)
    {
      bpd = be_predefined_type::narrow_from_decl (bt);
    }

  // first generate the return type
  cs->indent ();
  cg->push (TAO_CodeGen::TAO_OPERATION_RETURN_TYPE_CS); // declare a return
                                                        // type of the stub
  s = cg->make_state ();
  if (!s || !bt || (s->gen_code (bt, this) == -1))
    {
      ACE_ERROR_RETURN ((LM_ERROR,
                         "(%N:%l) be_operation::gen_client_stubs - "
                         "return type generation failure\n"),
                        -1);
    }
  cg->pop ();

  // generate the operation name
  *cs << " " << this->name () << " (";

  // generate the arguments with the appropriate mapping
  cg->push (TAO_CodeGen::TAO_ARGUMENT_CS); // generating code for arguments in
                                           // the signature
  if (be_scope::gen_client_stubs () == -1)
    {
      ACE_ERROR_RETURN ((LM_ERROR,
                         "(%N:%l) be_operation::gen_client_stubs - "
                         "failure in argument generation in signature\n"),
                        -1);
    }
  cg->pop ();

  // last argument - is always CORBA::Environment
  *cs << "CORBA::Environment &env)" << nl;
  *cs << "{\n";
  cs->incr_indent ();

  // declare a return type
  cg->push (TAO_CodeGen::TAO_OPERATION_RETVAL_DECL_CS);
  s = cg->make_state ();
  if (!s || !bt || (s->gen_code (bt, this) == -1))
    {
      ACE_ERROR_RETURN ((LM_ERROR,
                         "(%N:%l) be_operation::gen_client_stubs - "
                         "retval declaration failure\n"),
                        -1);
    }
  cg->pop ();

  // generate code that calls QueryInterface
  *cs << "STUB_Object *istub;\n\n";
  cs->indent ();
  *cs << "if (this->QueryInterface (IID_STUB_Object, " <<
    "(void **)&istub) != NOERROR)" << nl;
  *cs << "{\n";
  cs->incr_indent ();
  *cs << "env.exception (new CORBA::DATA_CONVERSION (CORBA::COMPLETED_NO));" <<
    nl;

  // return the appropriate error value on exception
  cg->push (TAO_CodeGen::TAO_OPERATION_RETVAL_EXCEPTION_CS);
  s = cg->make_state ();
  if (!s || !bt || (s->gen_code (bt, this) == -1))
    {
      ACE_ERROR_RETURN ((LM_ERROR,
                         "(%N:%l) be_operation::gen_client_stubs - "
                         "failure returning from exception\n"),
                        -1);
    }
  cg->pop ();

  cs->decr_indent ();
  *cs << "}" << nl;
  *cs << "this->Release (); // QueryInterface has bumped up our refcount" << nl;

  // do any pre do_call stuff with arguments
  cg->push (TAO_CodeGen::TAO_ARGUMENT_PRE_DOCALL_CS);
  if (be_scope::gen_client_stubs () == -1)
    {
      ACE_ERROR_RETURN ((LM_ERROR,
                         "(%N:%l) be_operation::gen_client_stubs - "
                         "failure generating pre docall stuff\n"),
                        -1);
    }
  cg->pop ();

  // call do_call with appropriate number of arguments
  *cs << "istub->do_call (env, &" << this->flatname () << "_calldata";

  // if our return type is not void, then pass the address of retval
  if (!bpd || (bpd->pt () != AST_PredefinedType::PT_void))
    {
      *cs << ", &retval";
    }
  else
    {
      // pass a 0
      *cs << ", 0";
    }

  cg->push (TAO_CodeGen::TAO_ARGUMENT_DOCALL_CS);
  if (be_scope::gen_client_stubs () == -1)
    {
      ACE_ERROR_RETURN ((LM_ERROR,
                         "(%N:%l) be_operation::gen_client_stubs - "
                         "failed to emit code for arguments in docall\n"),
                        -1);
    }
  cg->pop ();
  *cs << ");" << nl;

  // do any post do_call stuff with arguments
  cg->push (TAO_CodeGen::TAO_ARGUMENT_POST_DOCALL_CS);
  if (be_scope::gen_client_stubs () == -1)
    {
      ACE_ERROR_RETURN ((LM_ERROR,
                         "(%N:%l) be_operation::gen_client_stubs - "
                         "failed to emit code for post docall processing\n"),
                        -1);
    }
  cg->pop ();

  // return the retval
  cg->push (TAO_CodeGen::TAO_OPERATION_RETVAL_RETURN_CS);
  s = cg->make_state ();
  if (!s || !bt || (s->gen_code (bt, this) == -1))
    {
      ACE_ERROR_RETURN ((LM_ERROR,
                         "(%N:%l) be_operation::gen_client_stubs\n"
                         "return val return generation failure\n"),
                        -1);
    }
  cg->pop ();

  cs->decr_indent (0);
  *cs << "\n}\n\n";
  return 0;
}

int
be_operation::gen_server_header (void)
{
  TAO_OutStream *sh; // output stream
  be_type *bt;       // type node
  be_state *s;       // state based code generator object

  // retrieve a singleton instance of the code generator
  TAO_CodeGen *cg = TAO_CODEGEN::instance ();
  cg->push (TAO_CodeGen::TAO_OPERATION_SH); // we are now generating an
                                            // operation definition

  sh = cg->server_header ();
  cg->outstream (sh); // set current stream
  sh->indent (); // start with the current indentation level

  // every operation is declared virtual
  *sh << "virtual ";

  // first generate the return type
  bt = be_type::narrow_from_decl (this->return_type ());
  s = cg->make_state (); // retrieve code gen object for this state
  if (!s || !bt || (s->gen_code (bt, this) == -1))
    {
      ACE_ERROR ((LM_ERROR, "be_operation::gen_server_header\n"));
      ACE_ERROR ((LM_ERROR, "return type generation failure\n"));
      return -1;
    }
  // generate the operation name
  *sh << " " << this->local_name () << " (";

  // generate the arguments with the appropriate mapping
  cg->push (TAO_CodeGen::TAO_ARGUMENT_SH); // generating code for arguments in
                                           // the signature
  if (be_scope::gen_server_header () == -1)
    {
      ACE_ERROR ((LM_ERROR, "be_operation::gen_server_header\n"));
      ACE_ERROR ((LM_ERROR, "Argument generation failure\n"));
      return -1;
    }
  cg->pop ();

  // XXXASG
  // additional argument in the form of CORBA::Environment since TAO does not
  // yet support Exceptions. However, we can have an option to the "tao" IDL
  // compiler to ask it to generate code for exceptions. This will be handled
  // in a later release.
  *sh << " CORBA::Environment &env) = 0; // pure virtual\n";

  sh->indent ();

  // generate the static method corresponding to this method
  *sh << "static void " << this->local_name () << "_skel (CORBA::ServerRequest &req,"
      << " CORBA::Object_ptr obj, CORBA::Environment &env);\n\n";
  cg->pop (); // restore previous state
  return 0;
}

// Generate code for the operation skeleton that makes the upcall.
// Special Note: We deviate a bit from our policy of handing over code
// generation for elements in our scope to the be_scope class. For this method,
// it is best to simulate that behavior here as it involves a lot of
// complexity.
int
be_operation::gen_server_skeletons (void)
{
  TAO_OutStream *ss; // output stream
  TAO_NL  nl;        // end line
  be_type *bt;       // type node
  be_type *rt;       // type node for the return type
  UTL_ScopeActiveIterator *si; // scope iterator
  AST_Decl *d;       // temp node
  be_argument *bd = 0;   // argument node
  be_state *s;       // state based code gen object
  be_predefined_type *bpd=0; // predefined return type
  be_interface *intf; // enclosing interface node

  // retrieve a singleton instance of the code generator
  TAO_CodeGen *cg = TAO_CODEGEN::instance ();
  ss = cg->server_skeletons ();
  cg->outstream (ss); // set current stream

  ss->indent (); // start with the current indentation level

  // retrieve our enclosing interface decl
  intf = be_interface::narrow_from_decl (ScopeAsDecl (this->defined_in ()));

  *ss << "void " << intf->full_skel_name () << "::"
      << this->local_name () << "_skel ("
      << "CORBA::ServerRequest &_tao_server_request, "
      << "CORBA::Object_ptr _tao_object_reference, "
      << "CORBA::Environment &_tao_environment)" << nl;
  *ss << "{\n";
  ss->incr_indent ();
  // define an NVList to hold arguments
  *ss << "CORBA::NVList_ptr \t nvlist;" << nl;
  // define a variable that will eventually point to our implementation object
  *ss << intf->full_skel_name () << "_ptr \t impl;" << nl;

  // verify if we need to define a variable intended to hold the operation
  // return type. We do not need one if the return type is void

  rt = be_type::narrow_from_decl (this->return_type ());
  if (!rt)
    {
      ACE_ERROR ((LM_ERROR,
                  "be_operation::gen_server_skeletons - bad return type\n"));
      return -1;
    }
  if (rt->node_type () == AST_Decl::NT_pre_defined)
    {
      bpd = be_predefined_type::narrow_from_decl (rt);
    }
  if (!bpd || (bpd->pt () != AST_PredefinedType::PT_void))
    {
      // not a void type
      *ss << "CORBA::Any *result;" << nl;

      // emit the return type
      cg->push (TAO_CodeGen::TAO_OPERATION_RETVAL_DECL_SS); // emit type for
                                                            // return value
      // get a state based code gen object
      s = cg->make_state ();

      if (s->gen_code (rt, this) == -1)
        {
          ACE_ERROR ((LM_ERROR,
           "be_operation::gen_server_skeletons - codegen failed for return type\n"));
          return -1;
        }
      cg->pop ();
    }

  // if we have any arguments, get each one of them and allocate an Any and
  // NamedValue for each. In addition, define a variable of that type
  cg->push (TAO_CodeGen::TAO_ARGUMENT_VARDECL_SS);
  if (be_scope::gen_server_skeletons () == -1)
    {
      ACE_ERROR_RETURN ((LM_ERROR,
          "be_operation::gen_server_skeletons - argument gen code failed\n"),
                         -1);
    }
  *ss << "\n";
  cg->pop ();

  // declare an NVList and create one
  ss->indent ();
  *ss << "// create an NV list and populate it with typecodes" << nl;
  *ss << "_tao_server_request.orb ()->create_list (0, nvlist); // initialize a list" << nl;

  // add each argument according to the in, out, inout semantics
  *ss << "// add each argument according to the in, out, inout semantics" << nl;
  if (this->nmembers () > 0)
    {
      // if there are elements in this scope

      si = new UTL_ScopeActiveIterator (this, UTL_Scope::IK_decls);
      // instantiate a scope iterator.

      while (!(si->is_done ()))
        {
          // get the next AST decl node
          d = si->item ();
          if (!d->imported ())
            {
              // only if this is an argument node
              if (d->node_type () == AST_Decl::NT_argument)
                {
                  bd = be_argument::narrow_from_decl (d);
                  bt = be_type::narrow_from_decl (bd->field_type ());
                  // emit code that adds this argument to the
                  *ss << "nv_" << bd->local_name () <<
                    " = nvlist->add_value (\"" << bd->local_name () << "\", "
                      << "any_" << bd->local_name () << ", ";
                  switch (bd->direction ())
                    {
                    case AST_Argument::dir_IN:
                      *ss << "CORBA::ARG_IN, _tao_environment);" << nl;
                      break;
                    case AST_Argument::dir_INOUT:
                      *ss << "CORBA::ARG_INOUT, _tao_environment);" << nl;
                      break;
                    case AST_Argument::dir_OUT:
                      *ss << "CORBA::ARG_OUT, _tao_environment);" << nl;
                      break;
                    }
                } // end if argument node
            } // end if ! imported
          si->next ();
        } // end of while
      delete si; // free the iterator object
    } // end of arg list

  // parse the arguments
  *ss << "// parse the arguments" << nl;
  *ss << "_tao_server_request.params (nvlist, _tao_environment);" << nl;
  *ss << "if (_tao_environment.exception ()) return;" << nl;

  cg->push (TAO_CodeGen::TAO_ARGUMENT_PRE_UPCALL_SS);
  if (be_scope::gen_server_skeletons () == -1)
    {
      ACE_ERROR_RETURN ((LM_ERROR,
          "be_operation::gen_server_skeletons - argument gen code failed\n"),
                         -1);
    }
  cg->pop ();

  // make the upcall
  *ss << "impl = (" << intf->full_skel_name () << "_ptr) _tao_object_reference->get_subclass ();"
      << nl;
  if (!bpd || (bpd->pt () != AST_PredefinedType::PT_void))
    {
      cg->push (TAO_CodeGen::TAO_OPERATION_RETVAL_ASSIGN_SS);
      s = cg->make_state ();
      // emit code to assign to retval
      if (!s || (s->gen_code (rt, this) == -1))
        {
          return -1;
        }
      *ss << " = impl->" << this->local_name () << "(";
      cg->pop ();
    }
  else
    {
      // void return type
      *ss << "impl->" << this->local_name () << "(";
    }

  cg->push (TAO_CodeGen::TAO_ARGUMENT_UPCALL_SS);
  if (be_scope::gen_server_skeletons () == -1)
    {
      ACE_ERROR_RETURN ((LM_ERROR,
       "be_operation::gen_server_skeletons - argument in upcall\n"),
                        -1);
    }
  cg->pop ();
  *ss << "_tao_environment);" << nl;

  cg->push (TAO_CodeGen::TAO_ARGUMENT_POST_UPCALL_SS);
  if (be_scope::gen_server_skeletons () == -1)
    {
      ACE_ERROR_RETURN ((LM_ERROR,
          "be_operation::gen_server_skeletons - argument gen code failed\n"),
                         -1);
    }
  cg->pop ();

  // if there is any return type, send it via the ServerRequest
  if (!bpd || (bpd->pt () != AST_PredefinedType::PT_void))
    {
      cg->push (TAO_CodeGen::TAO_OPERATION_RESULT_SS);
      s = cg->make_state ();
      if (!s || (s->gen_code (rt, this) == -1))
        return -1;
      cg->pop ();
      *ss << "_tao_server_request.result (result, _tao_environment);" << nl;
    }
  *ss << "\n";
  ss->decr_indent ();
  *ss << "}\n\n";

  return 0;
}

// Generates the client-side inline information
int
be_operation::gen_client_inline (void)
{
  // nothing to be done
  return 0;
}

// Generates the server-side inline
int
be_operation::gen_server_inline (void)
{
  // nothing to be done
  return 0;
}

// Narrowing
IMPL_NARROW_METHODS3 (be_operation, AST_Operation, be_scope, be_decl)
IMPL_NARROW_FROM_DECL (be_operation)
IMPL_NARROW_FROM_SCOPE (be_operation)