marshal_cs.cpp
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C++ 代码 · 共 252 行
CPP
252 行
//
// marshal_cs.cpp,v 1.9 2002/09/25 16:25:37 parsons Exp
//
// ============================================================================
//
// = LIBRARY
// TAO IDL
//
// = FILENAME
// marshal_cs.cpp
//
// = DESCRIPTION
// Concrete visitor for valuetypes.
// This one provides code generation for marshalling.
//
// = AUTHOR
// Torsten Kuepper <kuepper2@lfa.uni-wuppertal.de>
//
// ============================================================================
ACE_RCSID (be_visitor_valuetype,
marshal_cs,
"marshal_cs.cpp,v 1.9 2002/09/25 16:25:37 parsons Exp")
be_visitor_valuetype_marshal_cs::be_visitor_valuetype_marshal_cs (
be_visitor_context *ctx
)
: be_visitor_scope (ctx)
{
}
be_visitor_valuetype_marshal_cs::~be_visitor_valuetype_marshal_cs (void)
{
}
int
be_visitor_valuetype_marshal_cs::visit_valuetype (be_valuetype *node)
{
TAO_OutStream *os = this->ctx_->stream ();
this->ctx_->sub_state (TAO_CodeGen::TAO_CDR_OUTPUT);
*os << "// TAO_IDL - Generated from" << be_nl
<< "// " << __FILE__ << ":" << __LINE__ << be_nl << be_nl;
*os << "CORBA::Boolean" << be_nl;
this->class_name (node, os);
*os << "::_tao_marshal_state (TAO_OutputCDR &";
be_valuetype *inh = node->statefull_inherit ();
// If the valuetype has no fields, and no stateful inherit,
// the stream arg is unused.
if (inh != 0 || node->data_members_count () > 0)
{
*os << "strm";
}
*os << ")" << be_nl
<< "{" << be_idt_nl;
if (inh)
{
if (inh->opt_accessor ())
{
*os << "if (!this->";
this->class_name (inh, os);
*os << "::_tao_marshal_state (strm))" << be_idt_nl
<< "{" << be_idt_nl
<< "return 0;" << be_uidt_nl
<< "}" << be_uidt_nl << be_nl;
}
// Can access base class only via virtual function.
else
{
*os << "if (! this->_tao_marshal__"
<< inh->flat_name ()
<< " (strm))" << be_idt_nl
<< "{" << be_idt_nl
<< "return 0;" << be_uidt_nl
<< "}" << be_uidt_nl << be_nl;
}
}
be_visitor_context new_ctx = *this->ctx_;
be_visitor_valuetype_field_cdr_decl field_out_cdr (&new_ctx);
field_out_cdr.visit_scope (node);
*os << "if (" << be_idt_nl;
// All we have to do is to visit the scope and generate code.
this->gen_fields (node,
*this->ctx_);
*os << be_uidt_nl
<< " )" << be_idt_nl
<< "{" << be_idt_nl
<< "return 1;" << be_uidt_nl
<< "}" << be_uidt_nl
<< "else" << be_idt_nl
<< "{" << be_idt_nl
<< "return 0;" << be_uidt_nl
<< "}" << 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" << be_nl;
this->class_name (node, os);
*os << "::_tao_unmarshal_state (TAO_InputCDR &";
// If the valuetype has no fields, and no stateful inherit,
// the stream arg is unused.
if (inh != 0 || node->data_members_count () > 0)
{
*os << "strm";
}
*os << ")" << be_nl
<< "{" << be_idt_nl;
if (inh)
{
if (inh->opt_accessor ())
{
*os << "if (!this->";
this->class_name (inh, os);
*os << "::_tao_unmarshal_state (strm))" << be_idt_nl
<< "{" << be_idt_nl
<< "return 0;" << be_uidt_nl
<< "}" << be_uidt_nl << be_nl;
}
else // only can access base class via virtual function
{
*os << "if (! this->_tao_unmarshal__"
<< inh->flat_name ()
<< " (strm))" << be_idt_nl
<< "{" << be_idt_nl
<< "return 0;" << be_uidt_nl
<< "}" << be_uidt_nl << be_nl;
}
}
be_visitor_valuetype_field_cdr_decl field_in_cdr (&new_ctx);
field_in_cdr.visit_scope (node);
*os << "if (" << be_idt_nl;
// All we have to do is to visit the scope and generate code.
this->gen_fields (node,
*this->ctx_);
*os << be_uidt_nl
<< " )" << be_idt_nl
<< "{" << be_idt_nl
<< "return 1;" << be_uidt_nl
<< "}" << be_uidt_nl
<< "else" << be_idt_nl
<< "{" << be_idt_nl
<< "return 0;" << be_uidt_nl
<< "}" << be_uidt << be_uidt_nl
<< "}";
return 0;
}
// Retrieve the fully scoped skeleton name.
void
be_visitor_valuetype_marshal_cs::class_name (be_valuetype *node,
TAO_OutStream *os)
{
if (node->opt_accessor ())
{
be_decl *scope =
be_scope::narrow_from_scope (node->defined_in ())->decl ();
*os << "ACE_NESTED_CLASS ("
<< scope->name () << ","
<< node->local_name () << ")";
}
else
{
*os << node->full_obv_skel_name ();
}
}
// Operations for field marshaling.
int
be_visitor_valuetype_marshal_cs::gen_fields (be_valuetype *node,
be_visitor_context &ctx)
{
int n_processed = 0;
TAO_OutStream *os = ctx.stream ();
this->elem_number_ = 0;
// Initialize an iterator to iterate thru our scope.
for (UTL_ScopeActiveIterator si (node, UTL_Scope::IK_decls);
!si.is_done ();
si.next())
{
AST_Decl *d = si.item ();
if (!d)
{
ACE_ERROR_RETURN ((LM_ERROR,
"(%N:%l) be_visitor_scope::visit_scope - "
"bad node in this scope\n"),
-1);
}
be_field *field = be_field::narrow_from_decl (d);
if (field)
{
if (n_processed > 0)
{
*os << " &&" << be_nl;
}
++n_processed;
be_visitor_valuetype_field_cdr_ci visitor (&ctx);
visitor.pre_ = node->field_pd_prefix ();
visitor.post_ = node->field_pd_postfix ();
if (visitor.visit_field (field) == -1)
{
ACE_ERROR_RETURN ((LM_ERROR,
"(%N:%l) be_visitor_valuetype_marshal_cs::"
"visit_valuetype - "
"codegen for scope failed\n"),
-1);
}
}
}
if (n_processed == 0)
{
*os << "1";
}
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?