discriminant_ch.cpp
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C++ 代码 · 共 145 行
CPP
145 行
//
// discriminant_ch.cpp,v 1.7 2003/03/12 16:50:34 parsons Exp
//
// ============================================================================
//
// = LIBRARY
// TAO IDL
//
// = FILENAME
// discriminant_ch.cpp
//
// = DESCRIPTION
// Visitor generating code for discriminant of the Union
//
// = AUTHOR
// Aniruddha Gokhale
//
// ============================================================================
ACE_RCSID (be_visitor_union,
discriminant_ch,
"discriminant_ch.cpp,v 1.7 2003/03/12 16:50:34 parsons Exp")
// *************************************************************************
// Visitor for discriminant in client header file.
// *************************************************************************
be_visitor_union_discriminant_ch::be_visitor_union_discriminant_ch (
be_visitor_context *ctx
)
: be_visitor_decl (ctx)
{
}
be_visitor_union_discriminant_ch::~be_visitor_union_discriminant_ch (void)
{
}
int
be_visitor_union_discriminant_ch::visit_enum (be_enum *node)
{
// Get the enclosing union backend.
be_union *bu = this->ctx_->be_node_as_union ();
be_type *bt;
// Check if we are visiting this node via a visit to a typedef node.
if (this->ctx_->alias ())
{
bt = this->ctx_->alias ();
}
else
{
bt = node;
}
TAO_OutStream *os = this->ctx_->stream ();
// Not a typedef and bt is defined inside the union.
if (bt->node_type () != AST_Decl::NT_typedef
&& bt->is_child (bu))
{
// Instantiate a visitor context with a copy of our context. This info
// will be modified based on what type of node we are visiting.
be_visitor_context ctx (*this->ctx_);
ctx.node (node);
// First generate the enum declaration.
be_visitor_enum_ch visitor (&ctx);
if (node->accept (&visitor) == -1)
{
ACE_ERROR_RETURN ((LM_ERROR,
"(%N:%l) be_visitor_union_discriminant_ch::"
"visit_enum - "
"codegen failed\n"),
-1);
}
}
*os << be_nl << be_nl << "// TAO_IDL - Generated from" << be_nl
<< "// " << __FILE__ << ":" << __LINE__;
// The set method.
*os << be_nl << be_nl
<< "void _d (" << bt->nested_type_name (bu) << ");" << be_nl;
// The get method.
*os << bt->nested_type_name (bu) << " _d (void) const;";
return 0;
}
int
be_visitor_union_discriminant_ch::visit_predefined_type (be_predefined_type
*node)
{
// get the enclosing union backend.
be_union *bu = this->ctx_->be_node_as_union ();
be_type *bt;
// Check if we are visiting this node via a visit to a typedef node.
if (this->ctx_->alias ())
{
bt = this->ctx_->alias ();
}
else
{
bt = node;
}
TAO_OutStream *os = this->ctx_->stream ();
*os << be_nl << be_nl << "// TAO_IDL - Generated from" << be_nl
<< "// " << __FILE__ << ":" << __LINE__;
// The set method.
*os << be_nl << be_nl
<< "void _d (" << bt->nested_type_name (bu) << ");" << be_nl;
// The get method.
*os << bt->nested_type_name (bu) << " _d (void) const;";
return 0;
}
int
be_visitor_union_discriminant_ch::visit_typedef (be_typedef *node)
{
this->ctx_->alias (node);
// The node to be visited in the base primitve type that gets typedefed.
be_type *bt = node->primitive_base_type ();
if (!bt || (bt->accept (this) == -1))
{
ACE_ERROR_RETURN ((LM_ERROR,
"(%N:%l) be_visitor_union_discriminant_ch::"
"visit_typedef - "
"Bad primitive type\n"),
-1);
}
this->ctx_->alias (0);
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?