summaryrefslogtreecommitdiff
path: root/trunk/TAO/TAO_IDL/be/be_visitor_interface/interface_ci.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/TAO_IDL/be/be_visitor_interface/interface_ci.cpp')
-rw-r--r--trunk/TAO/TAO_IDL/be/be_visitor_interface/interface_ci.cpp112
1 files changed, 112 insertions, 0 deletions
diff --git a/trunk/TAO/TAO_IDL/be/be_visitor_interface/interface_ci.cpp b/trunk/TAO/TAO_IDL/be/be_visitor_interface/interface_ci.cpp
new file mode 100644
index 00000000000..5f81239c45a
--- /dev/null
+++ b/trunk/TAO/TAO_IDL/be/be_visitor_interface/interface_ci.cpp
@@ -0,0 +1,112 @@
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// interface_ci.cpp
+//
+// = DESCRIPTION
+// Visitor generating code for Interfaces in the client inline file
+//
+// = AUTHOR
+// Aniruddha Gokhale
+//
+// ============================================================================
+
+ACE_RCSID (be_visitor_interface,
+ interface_ci,
+ "$Id$")
+
+// **************************************************
+// Interface visitor for client inline
+// **************************************************
+
+be_visitor_interface_ci::be_visitor_interface_ci (be_visitor_context *ctx)
+ : be_visitor_interface (ctx)
+{
+}
+
+be_visitor_interface_ci::~be_visitor_interface_ci (void)
+{
+}
+
+int
+be_visitor_interface_ci::visit_interface (be_interface *node)
+{
+ if (node->imported ())
+ {
+ return 0;
+ }
+
+ // Generate inline methods for elements of our scope.
+ // This will always be done here for any non-imported node,
+ // whether the _var and _out code has been generated already
+ // at a forward declaration or not.
+ if (this->visit_scope (node) == -1)
+ {
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "(%N:%l) be_visitor_interface_ci::"
+ "visit_interface - "
+ "codegen for scope failed\n"), -1);
+ }
+
+ // Nothing to generate for a local interface except from it scope.
+ if (node->is_local ())
+ {
+ node->cli_inline_gen (true);
+ return 0;
+ }
+
+ // A forward declared interface may have set this flag.
+ if (node->cli_inline_gen ())
+ {
+ return 0;
+ }
+
+ TAO_OutStream *os = this->ctx_->stream ();
+
+ *os << be_nl << be_nl << "// TAO_IDL - Generated from" << be_nl
+ << "// " << __FILE__ << ":" << __LINE__;
+
+ os->gen_ifdef_macro (node->flat_name (), "");
+
+ if (node->is_abstract ())
+ {
+ *os << be_nl << be_nl
+ << "ACE_INLINE" << be_nl
+ << node->name () << "::" << node->local_name ()
+ << " (void)" << be_nl
+ << "{}" << be_nl << be_nl;
+
+ *os << "ACE_INLINE" << be_nl
+ << node->name () << "::" << node->local_name ()
+ << " (const " << node->local_name () << " &rhs)" << be_idt_nl
+ << ": ::CORBA::AbstractBase (rhs)" << be_uidt_nl
+ << "{}";
+ }
+
+ // Generate the constructor from stub and servant.
+ node->gen_stub_ctor (os);
+
+ if (!node->is_local () && !node->is_abstract ())
+ {
+ *os << be_nl << be_nl
+ << "ACE_INLINE" << be_nl;
+ *os << node->name () << "::"
+ << node->local_name () << " ("
+ << be_idt << be_idt_nl
+ << "IOP::IOR *ior," << be_nl
+ << "TAO_ORB_Core *oc" << be_uidt_nl
+ << ")" << be_nl;
+ *os << ": ::CORBA::Object (ior, oc)," << be_idt_nl
+ << "the"<< node->base_proxy_broker_name () << "_ (0)"
+ << be_uidt << be_uidt_nl
+ << "{" << be_nl
+ << "}" ;
+ }
+
+ os->gen_endif ();
+ node->cli_inline_gen (true);
+ return 0;
+}