cdr_op_ci.cpp
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C++ 代码 · 共 840 行 · 第 1/2 页
CPP
840 行
//
// cdr_op_ci.cpp,v 1.23 2003/10/31 14:51:39 bala Exp
//
// ============================================================================
//
// = LIBRARY
// TAO IDL
//
// = FILENAME
// cdr_op_ci.cpp
//
// = DESCRIPTION
// Visitor for code generation of Arrays for the CDR operators in the client
// stubs.
//
// = AUTHOR
// Aniruddha Gokhale
//
// ============================================================================
ACE_RCSID (be_visitor_array,
cdr_op_ci,
"cdr_op_ci.cpp,v 1.23 2003/10/31 14:51:39 bala Exp")
#include "be_visitor_sequence/cdr_op_ci.h"
// ***************************************************************************
// Array visitor for generating CDR operator declarations in the client
// stubs file
// ***************************************************************************
be_visitor_array_cdr_op_ci::be_visitor_array_cdr_op_ci (
be_visitor_context *ctx
)
: be_visitor_decl (ctx)
{
}
be_visitor_array_cdr_op_ci::~be_visitor_array_cdr_op_ci (void)
{
}
int
be_visitor_array_cdr_op_ci::visit_array (be_array *node)
{
if (this->ctx_->alias ())
{
// We are here because we are visiting base type
// of the array node which is itself an
// array, i.e., this is a case of array of array.
return this->visit_node (node);
}
if (node->cli_inline_cdr_op_gen ()
|| node->imported ()
|| node->is_local ())
{
return 0;
}
TAO_OutStream *os = this->ctx_->stream ();
be_type *bt = be_type::narrow_from_decl (node->base_type ());
if (!bt)
{
ACE_ERROR_RETURN ((LM_ERROR,
"(%N:%l) be_visitor_array_cdr_op_ci::"
"visit_array - "
"Bad base type\n"),
-1);
}
// If we contain an anonymous sequence,
// generate code for the sequence here.
AST_Decl::NodeType nt = bt->node_type ();
ACE_CString unique;
if (nt == AST_Decl::NT_typedef)
{
be_typedef *td = be_typedef::narrow_from_decl (bt);
unique = td->primitive_base_type ()->flat_name ();
}
else
{
unique = bt->flat_name ();
}
char buf[NAMEBUFSIZE];
for (unsigned long i = 0; i < node->n_dims (); ++i)
{
ACE_OS::memset (buf,
'\0',
NAMEBUFSIZE);
ACE_OS::sprintf (buf,
"_%ld",
node->dims ()[i]->ev ()->u.ulval);
unique += buf;
}
unique += "_cdr_op";
os->gen_ifdef_macro (unique.fast_rep ());
// If the node is an array of anonymous sequence, we need to
// generate the sequence's cdr operator declaration here.
if (nt == AST_Decl::NT_sequence && bt->anonymous ())
{
be_visitor_sequence_cdr_op_ci visitor (this->ctx_);
if (bt->accept (&visitor) == -1)
{
ACE_ERROR_RETURN ((LM_ERROR,
"be_visitor_array_cdr_op_ci::"
"visit_array - "
"accept on anonymous base type failed\n"),
-1);
}
}
// If the array is an anonymous member and if its element type
// is a declaration (not a reference), we must generate code for
// the declaration.
if (this->ctx_->alias () == 0 // Not a typedef.
&& bt->is_child (this->ctx_->scope ()))
{
int status = 0;
be_visitor_context ctx (*this->ctx_);
switch (nt)
{
case AST_Decl::NT_enum:
{
be_visitor_enum_cdr_op_ci ec_visitor (&ctx);
status = bt->accept (&ec_visitor);
break;
}
case AST_Decl::NT_struct:
{
be_visitor_structure_cdr_op_ci sc_visitor (&ctx);
status = bt->accept (&sc_visitor);
break;
}
case AST_Decl::NT_union:
{
be_visitor_union_cdr_op_ci uc_visitor (&ctx);
status = bt->accept (&uc_visitor);
break;
}
default:
break;
}
if (status == -1)
{
ACE_ERROR_RETURN ((LM_ERROR,
"(%N:%l) be_visitor_array_ch::"
"visit_array - "
"array base type codegen failed\n"),
-1);
}
}
// For anonymous arrays, the type name has a _ prepended. We compute the
// full_name with or without the underscore and use it later on.
char fname [NAMEBUFSIZE]; // to hold the full and
// Save the node's local name and full name in a buffer for quick use later
// on.
ACE_OS::memset (fname,
'\0',
NAMEBUFSIZE);
if (this->ctx_->tdef ())
{
ACE_OS::sprintf (fname, "%s", node->full_name ());
}
else
{
// For anonymous arrays ...
// We have to generate a name for us that has an underscope prepended
// to our local name. This needs to be inserted after the parents's
// name.
if (node->is_nested ())
{
be_decl *parent =
be_scope::narrow_from_scope (node->defined_in ())->decl ();
ACE_OS::sprintf (fname,
"%s::_%s",
parent->full_name (),
node->local_name ()->get_string ());
}
else
{
ACE_OS::sprintf (fname,
"_%s",
node->full_name ());
}
}
// Generate the CDR << and >> operator defns.
// Save the array node for further use.
this->ctx_->node (node);
*os << be_nl << be_nl << "// TAO_IDL - Generated from" << be_nl
<< "// " << __FILE__ << ":" << __LINE__ << be_nl << be_nl;
// Set the sub state as generating code for the output operator.
this->ctx_->sub_state (TAO_CodeGen::TAO_CDR_OUTPUT);
*os << "ACE_INLINE" << be_nl
<< "CORBA::Boolean operator<< (" << be_idt << be_idt_nl
<< "TAO_OutputCDR &strm," << be_nl
<< "const " << fname << "_forany &_tao_array" << be_uidt_nl
<< ")" << be_uidt_nl
<< "{" << be_idt_nl;
if (bt->accept (this) == -1)
{
ACE_ERROR_RETURN ((LM_ERROR,
"be_visitor_array_cdr_op_ci::"
"visit_array - "
"Base type codegen failed\n"),
-1);
}
*os << "}" << be_nl << be_nl;
this->ctx_->sub_state (TAO_CodeGen::TAO_CDR_INPUT);
*os << "ACE_INLINE" << be_nl
<< "CORBA::Boolean operator>> (" << be_idt << be_idt_nl
<< "TAO_InputCDR &strm," << be_nl
<< fname << "_forany &_tao_array" << be_uidt_nl
<< ")" << be_uidt_nl
<< "{" << be_idt_nl;
if (bt->accept (this) == -1)
{
ACE_ERROR_RETURN ((LM_ERROR,
"be_visitor_array_cdr_op_ci::"
"visit_array - "
"Base type codegen failed\n"),
-1);
}
*os << "}";
os->gen_endif ();
node->cli_inline_cdr_op_gen (1);
return 0;
}
// Handle all the base types.
int
be_visitor_array_cdr_op_ci::visit_enum (be_enum *node)
{
return this->visit_node (node);
}
int
be_visitor_array_cdr_op_ci::visit_interface (be_interface *node)
{
return this->visit_node (node);
}
int
be_visitor_array_cdr_op_ci::visit_interface_fwd (be_interface_fwd *node)
{
return this->visit_node (node);
}
int
be_visitor_array_cdr_op_ci::visit_valuetype (be_valuetype *node)
{
return this->visit_node (node);
}
int
be_visitor_array_cdr_op_ci::visit_valuetype_fwd (be_valuetype_fwd *node)
{
return this->visit_node (node);
}
int
be_visitor_array_cdr_op_ci::visit_predefined_type (be_predefined_type *node)
{
TAO_OutStream *os = this->ctx_->stream ();
switch (node->pt ())
{
case AST_PredefinedType::PT_pseudo:
case AST_PredefinedType::PT_object:
case AST_PredefinedType::PT_any:
// Let the helper handle this.
return this->visit_node (node);
case AST_PredefinedType::PT_void:
// error
ACE_ERROR_RETURN ((LM_ERROR,
"(%N:%l) be_visitor_array_cdr_op_ci::"
"visit_predefined_type - "
"Bad primitive type\n"),
-1);
default:
// All other primitive types. Handle them as shown below.
break;
};
// We get here if the "type" of individual elements of the array is a
// primitive type. In this case, we treat the array as a single dimensional
// array (even though it was multi-dimensional), and pass the total length
// of the array as a cross product of the dimensions.
unsigned long i;
// Grab the array node.
be_array *array = this->ctx_->be_node_as_array ();
if (!node)
{
ACE_ERROR_RETURN ((LM_ERROR,
"(%N:%l) be_visitor_array_cdr_op_ci::"
"visit_predefined_type - "
"bad array node\n"),
-1);
}
// We generate optimized code based on an optimized interface available from
// the CDR class. These optimizations are applicable only to primitive
// types.
*os << " return strm.";
// Based on our substate, we may be reading from a stream or writing into a
// stream.
switch (this->ctx_->sub_state ())
{
case TAO_CodeGen::TAO_CDR_INPUT:
*os << "read_";
break;
case TAO_CodeGen::TAO_CDR_OUTPUT:
*os << "write_";
break;
default:
ACE_ERROR_RETURN ((LM_ERROR,
"(%N:%l) be_visitor_array_cdr_op_ci::"
"visit_predefined_type - "
"bad sub state\n"),
-1);
}
// Determine what kind of array are we reading/writing.
switch (node->pt ())
{
case AST_PredefinedType::PT_long:
*os << "long_array";
break;
case AST_PredefinedType::PT_ulong:
*os << "ulong_array";
break;
case AST_PredefinedType::PT_short:
*os << "short_array";
break;
case AST_PredefinedType::PT_ushort:
*os << "ushort_array";
break;
case AST_PredefinedType::PT_octet:
*os << "octet_array";
break;
case AST_PredefinedType::PT_char:
*os << "char_array";
break;
case AST_PredefinedType::PT_wchar:
*os << "wchar_array";
break;
case AST_PredefinedType::PT_float:
*os << "float_array";
break;
case AST_PredefinedType::PT_double:
*os << "double_array";
break;
case AST_PredefinedType::PT_longlong:
*os << "longlong_array";
break;
case AST_PredefinedType::PT_ulonglong:
*os << "ulonglong_array";
break;
case AST_PredefinedType::PT_longdouble:
*os << "longdouble_array";
break;
case AST_PredefinedType::PT_boolean:
*os << "boolean_array";
break;
default:
ACE_ERROR_RETURN ((LM_ERROR,
"(%N:%l) be_visitor_array_cdr_op_ci::"
"visit_predefined_type - "
"bad primitive type for optimized code gen\n"),
-1);
}
// Handle special case to avoid compiler errors.
switch (this->ctx_->sub_state ())
{
case TAO_CodeGen::TAO_CDR_INPUT:
*os << " ((";
break;
case TAO_CodeGen::TAO_CDR_OUTPUT:
*os << " ((const ";
break;
default:
ACE_ERROR_RETURN ((LM_ERROR,
"(%N:%l) be_visitor_array_cdr_op_ci::"
"visit_predefined_type - "
"bad substate in context\n"),
-1);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?