📄 interface_ci.cpp
字号:
// ============================================================================
//
// = LIBRARY
// TAO IDL
//
// = FILENAME
// interface_ci.cpp
//
// = DESCRIPTION
// Visitor generating code for Interfaces in the client inline file
//
// = AUTHOR
// Aniruddha Gokhale
//
// ============================================================================
ACE_RCSID (be_visitor_interface,
interface_ci,
"interface_ci.cpp,v 1.35 2003/10/28 18:30:37 bala Exp")
// **************************************************
// Interface visitor for client inline
// **************************************************
be_visitor_interface_ci::be_visitor_interface_ci (be_visitor_context *ctx)
: be_visitor_interface (ctx)
{
}
be_visitor_interface_ci::~be_visitor_interface_ci (void)
{
}
int
be_visitor_interface_ci::visit_interface (be_interface *node)
{
if (node->imported ())
{
return 0;
}
// Generate inline methods for elements of our scope.
// This will always be done here for any non-imported node,
// whether the _var and _out code has been generated already
// at a forward declaration or not.
if (this->visit_scope (node) == -1)
{
ACE_ERROR_RETURN ((LM_ERROR,
"(%N:%l) be_visitor_interface_ci::"
"visit_interface - "
"codegen for scope failed\n"), -1);
}
// Nothing to generate for a local interface except from it scope.
if (node->is_local ())
{
node->cli_inline_gen (I_TRUE);
return 0;
}
// A forward declared interface may have set this flag.
if (node->cli_inline_gen ())
{
return 0;
}
TAO_OutStream *os = this->ctx_->stream ();
*os << be_nl << be_nl << "// TAO_IDL - Generated from" << be_nl
<< "// " << __FILE__ << ":" << __LINE__;
os->gen_ifdef_macro (node->flat_name (), "");
if (node->is_abstract ())
{
*os << be_nl << be_nl
<< "ACE_INLINE" << be_nl
<< node->name () << "::" << node->local_name ()
<< " (void)" << be_nl
<< "{}" << be_nl << be_nl;
*os << "ACE_INLINE" << be_nl
<< node->name () << "::" << node->local_name ()
<< " (const " << node->local_name () << " &rhs)" << be_idt_nl
<< ": ACE_NESTED_CLASS (CORBA, AbstractBase) (rhs)" << be_uidt_nl
<< "{}";
}
// Generate the constructor from stub and servant.
node->gen_stub_ctor (os);
if (!node->is_local () && !node->is_abstract ())
{
*os << be_nl << be_nl
<< "ACE_INLINE" << be_nl;
*os << node->name () << "::"
<< node->local_name () << " ("
<< be_idt << be_idt_nl
<< "IOP::IOR *ior," << be_nl
<< "TAO_ORB_Core *oc" << be_uidt_nl
<< ")" << be_nl;
*os << ": ACE_NESTED_CLASS (CORBA, Object) (ior, oc)," << be_idt_nl
<< "the"<< node->base_proxy_broker_name () << "_ (0)"
<< be_uidt << be_uidt_nl
<< "{" << be_nl
<< "}" ;
}
os->gen_endif ();
node->cli_inline_gen (I_TRUE);
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -