summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_structure/cdr_op_cs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_structure/cdr_op_cs.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_structure/cdr_op_cs.cpp167
1 files changed, 167 insertions, 0 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_structure/cdr_op_cs.cpp b/TAO/TAO_IDL/be/be_visitor_structure/cdr_op_cs.cpp
new file mode 100644
index 00000000000..2463764b749
--- /dev/null
+++ b/TAO/TAO_IDL/be/be_visitor_structure/cdr_op_cs.cpp
@@ -0,0 +1,167 @@
+//
+// $Id$
+//
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// cdr_op_cs.cpp
+//
+// = DESCRIPTION
+// Visitor generating code for CDR operators for structures
+//
+// = AUTHOR
+// Aniruddha Gokhale
+//
+// ============================================================================
+
+ACE_RCSID (be_visitor_structure,
+ cdr_op_cs,
+ "$Id$")
+
+be_visitor_structure_cdr_op_cs::be_visitor_structure_cdr_op_cs (
+ be_visitor_context *ctx
+ )
+ : be_visitor_structure (ctx)
+{
+}
+
+be_visitor_structure_cdr_op_cs::~be_visitor_structure_cdr_op_cs (void)
+{
+}
+
+int
+be_visitor_structure_cdr_op_cs::visit_structure (be_structure *node)
+{
+ if (node->cli_stub_cdr_op_gen ()
+ || node->imported ()
+ || node->is_local ())
+ {
+ return 0;
+ }
+
+ // Set the substate as generating code for the types defined in our scope.
+ this->ctx_->sub_state (TAO_CodeGen::TAO_CDR_SCOPE);
+
+ if (this->visit_scope (node) == -1)
+ {
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "(%N:%l) be_visitor_structure_cdr_op_cs::"
+ "visit_structure - "
+ "codegen for scope failed\n"),
+ -1);
+ }
+
+ TAO_OutStream *os = this->ctx_->stream ();
+
+ *os << be_nl << be_nl << "// TAO_IDL - Generated from" << be_nl
+ << "// " << __FILE__ << ":" << __LINE__ << be_nl << be_nl;
+
+ *os << be_global->core_versioning_begin () << be_nl;
+
+ // Set the sub state as generating code for the output operator.
+ this->ctx_->sub_state (TAO_CodeGen::TAO_CDR_OUTPUT);
+
+ *os << "::CORBA::Boolean operator<< (" << be_idt << be_idt_nl
+ << "TAO_OutputCDR &strm," << be_nl
+ << "const " << node->name () << " &_tao_aggregate" << be_uidt_nl
+ << ")" << be_uidt_nl
+ << "{" << be_idt_nl;
+
+ be_visitor_context new_ctx (*this->ctx_);
+ be_visitor_cdr_op_field_decl field_decl (&new_ctx);
+ field_decl.visit_scope (node);
+
+ *os << "return" << be_idt_nl;
+
+ if (this->visit_scope (node) == -1)
+ {
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "(%N:%l) be_visitor_structure_cdr_op_cs::"
+ "visit_structure - "
+ "codegen for scope failed\n"),
+ -1);
+ }
+
+ *os << ";" << be_uidt << be_uidt_nl
+ << "}" << be_nl << be_nl;
+
+ // Set the substate as generating code for the input operator.
+ this->ctx_->sub_state (TAO_CodeGen::TAO_CDR_INPUT);
+
+ *os << "::CORBA::Boolean operator>> (" << be_idt << be_idt_nl
+ << "TAO_InputCDR &";
+
+ if (! node->is_local ())
+ {
+ *os << "strm";
+ }
+
+ *os << "," << be_nl
+ << node->name () << " &";
+
+ if (! node->is_local ())
+ {
+ *os << "_tao_aggregate";
+ }
+
+ *os << be_uidt_nl
+ << ")" << be_uidt_nl
+ << "{" << be_idt_nl;
+
+ if (node->is_local ())
+ {
+ *os << "return false;";
+ }
+ else
+ {
+ new_ctx.sub_state (TAO_CodeGen::TAO_CDR_INPUT);
+ field_decl.visit_scope (node);
+
+ *os << "return" << be_idt_nl;
+
+ if (this->visit_scope (node) == -1)
+ {
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "(%N:%l) be_visitor_structure_cdr_op_cs"
+ "::visit_structure - "
+ "codegen for scope failed\n"),
+ -1);
+ }
+
+ *os << ";" << be_uidt << be_uidt;
+ }
+
+ *os << be_uidt_nl << "}";
+
+ *os << be_global->core_versioning_end () << be_nl;
+
+ node->cli_stub_cdr_op_gen (true);
+ return 0;
+}
+
+int
+be_visitor_structure_cdr_op_cs::post_process (be_decl *bd)
+{
+ TAO_OutStream *os = this->ctx_->stream ();
+
+ if (!this->last_node (bd)
+ && bd->node_type () != AST_Decl::NT_enum_val)
+ {
+ switch (this->ctx_->sub_state ())
+ {
+ case TAO_CodeGen::TAO_CDR_OUTPUT:
+ case TAO_CodeGen::TAO_CDR_INPUT:
+ *os << " &&" << be_nl;
+ break;
+ case TAO_CodeGen::TAO_CDR_SCOPE:
+ default:
+ break;
+ };
+ }
+
+ return 0;
+}