summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_interface/strategized_proxy_broker_ss.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_interface/strategized_proxy_broker_ss.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_interface/strategized_proxy_broker_ss.cpp125
1 files changed, 125 insertions, 0 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_interface/strategized_proxy_broker_ss.cpp b/TAO/TAO_IDL/be/be_visitor_interface/strategized_proxy_broker_ss.cpp
new file mode 100644
index 00000000000..5014915c5aa
--- /dev/null
+++ b/TAO/TAO_IDL/be/be_visitor_interface/strategized_proxy_broker_ss.cpp
@@ -0,0 +1,125 @@
+//
+// $Id$
+//
+
+ACE_RCSID (be_visitor_interface,
+ strategized_proxy_broker_ss,
+ "$Id$")
+
+be_visitor_interface_strategized_proxy_broker_ss::
+be_visitor_interface_strategized_proxy_broker_ss (be_visitor_context *ctx)
+ : be_visitor_interface (ctx)
+{
+ // No-Op.
+}
+
+
+be_visitor_interface_strategized_proxy_broker_ss::
+~be_visitor_interface_strategized_proxy_broker_ss (void)
+{
+ // No-Op.
+}
+
+int
+be_visitor_interface_strategized_proxy_broker_ss::visit_interface (
+ be_interface *node
+ )
+{
+ TAO_OutStream *os = this->ctx_->stream ();
+
+ // Generate the class declaration.
+ os->indent ();
+
+ *os << be_nl
+ << "///////////////////////////////////////////////////////////////////////"
+ << be_nl
+ << "// Strategized Proxy Broker Implementation" << be_nl
+ << "//" << be_nl << be_nl;
+
+ *os << "// TAO_IDL - Generated from" << be_nl
+ << "// " << __FILE__ << ":" << __LINE__ << be_nl << be_nl;
+
+ *os << "// Factory function Implementation." << be_nl
+ << node->full_strategized_proxy_broker_name ()
+ << " *" << be_nl
+ << node->full_strategized_proxy_broker_name () << "::the"
+ << node->strategized_proxy_broker_name ()
+ << " (void)" << be_nl
+ << "{" << be_idt_nl
+ << "static " << node->full_strategized_proxy_broker_name () << be_nl
+ << "strategized_proxy_broker;" << be_nl << be_nl
+ << "return &strategized_proxy_broker;" << be_uidt_nl
+ << "}" << be_nl << be_nl;
+
+ // Constructor Implementation.
+ *os << node->full_strategized_proxy_broker_name () << "::"
+ << node->strategized_proxy_broker_name () << " (void)" << be_nl
+ << "{" << be_nl
+ << "}" << be_nl << be_nl;
+
+ // Destructor Implementation.
+ *os << node->full_strategized_proxy_broker_name () << "::~"
+ << node->strategized_proxy_broker_name () << " (void)" << be_nl
+ << "{" << be_nl
+ << "}" << be_nl << be_nl;
+
+ // get_strategy() impementation.
+ *os << "TAO::Collocation_Strategy" << be_nl
+ << node->full_strategized_proxy_broker_name () << "::"
+ << "get_strategy (" << be_idt << be_idt_nl
+ << "::CORBA::Object_ptr obj" << be_uidt_nl
+ << ")" << be_uidt_nl
+ << "{" << be_idt_nl
+ << "TAO::Collocation_Strategy strategy =" << be_idt_nl
+ << "TAO_ORB_Core::collocation_strategy (obj);" << be_uidt
+ << be_nl << be_nl
+ << "return strategy;" << be_uidt_nl
+ << "}" << be_nl << be_nl;
+
+ // create_proxy implementation
+ *os << "void" << be_nl
+ << node->full_strategized_proxy_broker_name () << "::"
+ << "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" << be_uidt_nl
+ << ")" << be_uidt_nl
+ << "{" << be_idt_nl
+ << "TAO::Direct_Collocation_Upcall_Wrapper collocation_upcall_wrapper;" << be_nl
+ << "collocation_upcall_wrapper.upcall (" << be_idt_nl
+ << "obj," << be_nl
+ << "forward_obj," << be_nl
+ << "args," << be_nl
+ << "num_args," << be_nl
+ << "op," << be_nl
+ << "op_len," << be_nl
+ << "strategy);" << be_uidt << be_uidt_nl
+ << "}";
+
+ *os << be_nl << be_nl
+ << "//" << be_nl
+ << "// End Strategized Proxy Broker Implementation" << be_nl
+ << "///////////////////////////////////////////////////////////////////////";
+
+ return 0;
+}
+
+int
+be_visitor_interface_strategized_proxy_broker_ss::visit_component (
+ be_component *node
+ )
+{
+ return this->visit_interface (node);
+}
+
+void
+be_visitor_interface_strategized_proxy_broker_ss::gen_direct_operations (
+ be_interface *,
+ TAO_OutStream *
+ )
+{
+}