//============================================================================= /** * @file smart_proxy_ch.cpp * * This provides code generation for smart proxy classes for an * interface in the client header. * * @author Kirthika Parameswaran */ //============================================================================= #include "interface.h" be_visitor_interface_smart_proxy_ch::be_visitor_interface_smart_proxy_ch ( be_visitor_context *ctx) : be_visitor_interface (ctx) { } be_visitor_interface_smart_proxy_ch::~be_visitor_interface_smart_proxy_ch () { } int be_visitor_interface_smart_proxy_ch::visit_interface (be_interface *node) { TAO_OutStream *os = this->ctx_->stream (); be_type *bt = nullptr; if (this->ctx_->alias ()) { bt = this->ctx_->alias (); } else { bt = node; } *os << be_nl_2 << "// TAO_IDL - Generated from" << be_nl << "// " << __FILE__ << ":" << __LINE__ << be_nl_2; *os << "class " << be_global->stub_export_macro ()<< " " << "TAO_" << node->flat_name () << "_Default_Proxy_Factory" << be_nl << "{" << be_nl << "public:" << be_idt_nl << be_nl << "TAO_" << node->flat_name () << "_Default_Proxy_Factory (int permanent = 1);" << be_nl <<"// signifies that the proxy factory will remain" <flat_name () << "_Default_Proxy_Factory ();" << be_nl_2 << "virtual "<< node->local_name () << "_ptr create_proxy (" << be_idt << be_idt_nl << node->local_name () << "_ptr proxy" << be_uidt_nl << ");" << be_uidt << be_uidt_nl << "};\n\n"; *os << "class " << be_global->stub_export_macro ()<< " " << "TAO_" << node->flat_name () << "_Proxy_Factory_Adapter" << be_nl << "{" << be_nl << "public:" << be_idt_nl << be_nl << "friend class TAO_Singletonflat_name () << "_Proxy_Factory_Adapter, TAO_SYNCH_RECURSIVE_MUTEX>;" << be_nl_2 << "void register_proxy_factory (" << be_idt << be_idt_nl << "TAO_" << node->flat_name () << "_Default_Proxy_Factory *df,"<< be_nl << "bool one_shot_factory = true" << be_uidt_nl << ");" << be_uidt_nl << be_nl << "void unregister_proxy_factory ();" << be_nl_2 << node->local_name () << "_ptr create_proxy (" << be_idt << be_idt_nl << node->local_name () << "_ptr proxy" << be_uidt_nl << ");" << be_uidt << be_uidt_nl << be_nl << "protected:" << be_idt_nl << "TAO_" << node->flat_name () << "_Proxy_Factory_Adapter ();" << be_nl << "~TAO_" << node->flat_name () << "_Proxy_Factory_Adapter ();" << be_nl << "TAO_" << node->flat_name () << "_Proxy_Factory_Adapter &operator= (" << be_idt << be_idt_nl << "const TAO_" << node->flat_name () << "_Proxy_Factory_Adapter &" << be_uidt_nl << ");" << be_uidt_nl << "TAO_" << node->flat_name () << "_Default_Proxy_Factory *proxy_factory_;" << be_nl << "bool one_shot_factory_;" << be_nl << "bool disable_factory_;"<flat_name () << "_Proxy_Factory_Adapter, TAO_SYNCH_RECURSIVE_MUTEX> TAO_" << node->flat_name ()<< "_PROXY_FACTORY_ADAPTER;"<stub_export_macro ()<< " " << "TAO_"<< node->flat_name () << "_Smart_Proxy_Base" << be_idt_nl << ": public virtual " << bt->nested_type_name (this->ctx_->scope ()->decl ()); if (node->n_inherits () > 0) { long i; for (i = 0; i < node->n_inherits (); i++) { be_interface *inherited = dynamic_cast (node->inherits ()[i]); be_decl *scope = nullptr; if (inherited->is_nested ()) { // Inherited node is used in the scope of "node" node. scope = dynamic_cast (node->defined_in ())->decl (); } *os << "," << be_nl << " public virtual "; *os << inherited->nested_sp_type_name (scope, "_Smart_Proxy_Base"); } } else { *os << "," << be_nl << " public virtual TAO_Smart_Proxy_Base"; } *os << be_uidt_nl; *os << "{" << be_nl << "public:" << be_idt_nl << "TAO_"<< node->flat_name () << "_Smart_Proxy_Base ();" << be_nl // Just to keep Old g++ complier (version: 2.7.2.3) happy it's // necesssary to declare and define the destructor explicitly. << "~TAO_"<< node->flat_name () << "_Smart_Proxy_Base ();" << be_nl // This method will delegate this method to the // member of the smart proxy and so the smart proxy's (nil) // stubobj will not be returned. << "virtual TAO_Stub *_stubobj () const;" << be_nl // Another version of the above method.. << "virtual TAO_Stub *_stubobj ();" << be_uidt_nl; // Generate code for the interface definition by traversing thru the // elements of its scope. We depend on the front-end to have made sure // that only legal syntactic elements appear in our scope. os->indent (); if (this->visit_scope (node) == -1) { ACE_ERROR_RETURN ((LM_ERROR, "(%N:%l) be_visitor_interface_ch::" "visit_interface - " "codegen for scope failed\n"), -1); } *os << "protected:" << be_idt_nl << "::" << node->full_name () << "_ptr get_proxy ();" << be_nl << "::" << node->full_name () << "_var proxy_;" << be_uidt_nl << "};\n\n"; return 0; } int be_visitor_interface_smart_proxy_ch::visit_component (be_component *node) { return this->visit_interface (node); }