summaryrefslogtreecommitdiff
path: root/modules/TAO/TAO_IDL/be/be_visitor_component/facet_svh.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/TAO/TAO_IDL/be/be_visitor_component/facet_svh.cpp')
-rw-r--r--modules/TAO/TAO_IDL/be/be_visitor_component/facet_svh.cpp86
1 files changed, 86 insertions, 0 deletions
diff --git a/modules/TAO/TAO_IDL/be/be_visitor_component/facet_svh.cpp b/modules/TAO/TAO_IDL/be/be_visitor_component/facet_svh.cpp
new file mode 100644
index 00000000000..e13f9402e70
--- /dev/null
+++ b/modules/TAO/TAO_IDL/be/be_visitor_component/facet_svh.cpp
@@ -0,0 +1,86 @@
+//
+// $Id$
+//
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// facet_svh.cpp
+//
+// = DESCRIPTION
+// Visitor generating code for a facet servant class in the
+// servant header.
+//
+// = AUTHOR
+// Jeff Parsons
+//
+// ============================================================================
+
+be_visitor_facet_svh::be_visitor_facet_svh (be_visitor_context *ctx)
+ : be_visitor_scope (ctx),
+ os_ (*ctx->stream ()),
+ export_macro_ (be_global->svnt_export_macro ())
+{
+ /// All existing CIAO examples set the servant export values in the CIDL
+ /// compiler to equal the IDL compiler's skel export values. Below is a
+ /// partial effort to decouple them, should be completely decoupled
+ /// sometime. See comment in codegen.cpp, line 1173.
+ if (export_macro_ == "")
+ {
+ export_macro_ = be_global->skel_export_macro ();
+ }
+}
+
+be_visitor_facet_svh::~be_visitor_facet_svh (void)
+{
+}
+
+int
+be_visitor_facet_svh::visit_component (be_component *node)
+{
+ if (this->visit_scope (node) == -1)
+ {
+ ACE_ERROR_RETURN ((LM_ERROR,
+ ACE_TEXT ("be_visitor_facet_svh::")
+ ACE_TEXT ("visit_component() - ")
+ ACE_TEXT ("visit_scope() failed\n")),
+ -1);
+ }
+
+ return 0;
+}
+
+int
+be_visitor_facet_svh::visit_provides (be_provides *node)
+{
+ if (node->gen_facet_svnt_decl (os_) == -1)
+ {
+ ACE_ERROR_RETURN ((LM_ERROR,
+ ACE_TEXT ("be_visitor_facet_svh")
+ ACE_TEXT ("::visit_provides - ")
+ ACE_TEXT ("gen_facet_svnt_decl() ")
+ ACE_TEXT ("failed\n")),
+ -1);
+ }
+
+ return 0;
+}
+
+int
+be_visitor_facet_svh::visit_extended_port (be_extended_port *node)
+{
+ be_visitor_extended_port_facet_svh visitor (this->ctx_);
+
+ return visitor.visit_extended_port (node);
+}
+
+int
+be_visitor_facet_svh::visit_mirror_port (be_mirror_port *)
+{
+ // TODO
+ return 0;
+}
+