summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_interface/strategized_proxy_broker_sh.cpp
blob: baf3709e1b74e28ec6980ef6cbf9b4bbd1e867e8 (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
//
// $Id$
//

ACE_RCSID (be_visitor_interface,
           base_proxy_broker_sh,
           "$Id$")

be_visitor_interface_strategized_proxy_broker_sh::
be_visitor_interface_strategized_proxy_broker_sh (be_visitor_context *ctx)
  : be_visitor_interface (ctx)
{
  // No-Op.
}

be_visitor_interface_strategized_proxy_broker_sh::
~be_visitor_interface_strategized_proxy_broker_sh (void)
{
  // No-Op.
}

int
be_visitor_interface_strategized_proxy_broker_sh::visit_interface (
    be_interface *node
  )
{
  TAO_OutStream *os = this->ctx_->stream ();

  *os << be_nl << be_nl
      << "///////////////////////////////////////////////////////////////////////"
      << be_nl
      << "//               Strategized Proxy Broker Declaration " << be_nl
      << "//" << be_nl << be_nl;

  *os << "// TAO_IDL - Generated from" << be_nl
      << "// " << __FILE__ << ":" << __LINE__ << be_nl << be_nl;

  *os << "class " << be_global->skel_export_macro () << " "
      << node->strategized_proxy_broker_name () << be_idt_nl
      << ": public virtual "
      << "TAO::Collocation_Proxy_Broker" << be_uidt_nl <<  "{"
      << be_nl
      << "public: " << be_idt;

  // Constructor
  *os << be_nl
      << node->strategized_proxy_broker_name () << " (void);";

  // Destructor
  *os << be_nl << be_nl
      << "virtual ~" << node->strategized_proxy_broker_name () << " (void);";

  *os << be_nl << be_nl
      << "TAO::Collocation_Strategy" << be_nl
      << "get_strategy (" << be_idt << be_idt_nl
      << "::CORBA::Object_ptr obj" << env_decl << be_uidt_nl
      << ")" << be_nl
      << "ACE_THROW_SPEC (( ::CORBA::SystemException));" << be_uidt;

  *os << be_nl << be_nl
      << "void" << be_nl
      << "dispatch (" << be_idt << be_idt_nl
      << "::CORBA::Object_ptr obj," << be_nl
      << "::CORBA::Object_out forward_obj," << be_nl
      << "TAO::Argument ** args," << be_nl
      << "int num_args," << be_nl
      << "const char * op," << be_nl
      << "size_t op_len," << be_nl
      << "TAO::Collocation_Strategy strategy" << env_decl << be_uidt_nl
      << ")" << be_nl
      << "ACE_THROW_SPEC (( ::CORBA::Exception));";

  *os << be_uidt_nl << be_nl
      << "static " << node->strategized_proxy_broker_name ()
      << " *" << be_nl
      << "the" << node->strategized_proxy_broker_name ()
      << " (void);" << be_uidt_nl;

  *os << "};";

  *os << be_nl << be_nl
      << "//" << be_nl
      << "//            End Strategized Proxy Broker Declaration " << be_nl
      << "///////////////////////////////////////////////////////////////////////"
      << be_nl << be_nl;

  return 0;
}

int be_visitor_interface_strategized_proxy_broker_sh::visit_component (
    be_component *node
  )
{
  return this->visit_interface (node);
}