summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_interface/smart_proxy_ch.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_interface/smart_proxy_ch.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_interface/smart_proxy_ch.cpp291
1 files changed, 142 insertions, 149 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_interface/smart_proxy_ch.cpp b/TAO/TAO_IDL/be/be_visitor_interface/smart_proxy_ch.cpp
index 2349632edd5..8d4031086ae 100644
--- a/TAO/TAO_IDL/be/be_visitor_interface/smart_proxy_ch.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_interface/smart_proxy_ch.cpp
@@ -40,169 +40,162 @@ be_visitor_interface_smart_proxy_ch::~be_visitor_interface_smart_proxy_ch (void)
int be_visitor_interface_smart_proxy_ch::visit_interface (be_interface *node)
{
- if (be_global->gen_smart_proxies ())
+ TAO_OutStream *os = this->ctx_->stream ();
+ be_type *bt;
+
+ if (this->ctx_->alias ())
{
- TAO_OutStream *os = this->ctx_->stream ();
- be_type *bt;
+ bt = this->ctx_->alias ();
+ }
+ else
+ {
+ bt = node;
+ }
- if (this->ctx_->alias ())
- {
- bt = this->ctx_->alias ();
- }
- else
- {
- bt = node;
- }
+ *os << be_nl << be_nl << "// TAO_IDL - Generated from" << be_nl
+ << "// " << __FILE__ << ":" << __LINE__ << be_nl << be_nl;
+
+ *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
+ <<"// <permanent> signifies that the proxy factory will remain" <<be_nl
+ <<"// registered with the Proxy Factory Adapter until the program"<<be_nl
+ <<"// terminates. That is, it will be a one-shot factory for the "<<be_nl
+ <<"// interface. If this value is set to 0, then the factory will"<<be_nl
+ <<"// be unregistered after the first invocation providing the "<<be_nl
+ << "// flexibility of having a different smart proxy per object "<<be_nl
+ <<"// instead of per interface."<<be_nl<< be_nl
+ << "virtual ~TAO_" << node->flat_name ()
+ << "_Default_Proxy_Factory (void);" << be_nl << be_nl
+ << "virtual "<< node->local_name ()
+ << "_ptr create_proxy (" << be_idt << be_idt_nl
+ << node->local_name ()
+ << "_ptr proxy" << be_nl
+ << "ACE_ENV_ARG_DECL_WITH_DEFAULTS" << 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_Singleton<TAO_" << node->flat_name ()
+ << "_Proxy_Factory_Adapter, TAO_SYNCH_RECURSIVE_MUTEX>;" << be_nl << be_nl
+ << "void register_proxy_factory (" << be_idt << be_idt_nl
+ << "TAO_" << node->flat_name () << "_Default_Proxy_Factory *df,"<< be_nl
+ << "int one_shot_factory = 1" << be_nl
+ << "ACE_ENV_ARG_DECL_WITH_DEFAULTS" << be_uidt_nl
+ << ");" << be_uidt_nl << be_nl
+ << "void unregister_proxy_factory (" << be_idt << be_idt_nl
+ << "ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS" << be_uidt_nl
+ << ");" << be_uidt_nl << be_nl
+ << node->local_name ()
+ << "_ptr create_proxy (" << be_idt << be_idt_nl
+ << node->local_name () << "_ptr proxy" << be_nl
+ << "ACE_ENV_ARG_DECL_WITH_DEFAULTS" << be_uidt_nl
+ << ");" << be_uidt << be_uidt_nl << be_nl
+ << "protected:" << be_idt_nl
+ << "TAO_" << node->flat_name ()
+ << "_Proxy_Factory_Adapter (void);" << be_nl
+ << "~TAO_" << node->flat_name ()
+ << "_Proxy_Factory_Adapter (void);" << 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
+ << "int one_shot_factory_;" << be_nl
+ << "int disable_factory_;"<<be_nl
+ << "TAO_SYNCH_RECURSIVE_MUTEX lock_;" << be_uidt_nl
+ << "};";
+
+ *os << be_nl << be_nl
+ << "typedef TAO_Singleton<TAO_"<<node->flat_name ()
+ << "_Proxy_Factory_Adapter, TAO_SYNCH_RECURSIVE_MUTEX> TAO_"
+ << node->flat_name ()<< "_PROXY_FACTORY_ADAPTER;"<<be_nl << be_nl;
+
+ *os << "class " << be_global->stub_export_macro ()<< " "
+ << "TAO_"<< node->flat_name ()
+ << "_Smart_Proxy_Base" << be_idt_nl
+ << ": public virtual "
+ << bt->nested_type_name (this->ctx_->scope ());
+
+
+ if (node->n_inherits () > 0)
+ {
+ long i;
- *os << be_nl << "// TAO_IDL - Generated from" << be_nl
- << "// " << __FILE__ << ":" << __LINE__ << be_nl << be_nl;
-
- *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
- <<"// <permanent> signifies that the proxy factory will remain" <<be_nl
- <<"// registered with the Proxy Factory Adapter until the program"<<be_nl
- <<"// terminates. That is, it will be a one-shot factory for the "<<be_nl
- <<"// interface. If this value is set to 0, then the factory will"<<be_nl
- <<"// be unregistered after the first invocation providing the "<<be_nl
- << "// flexibility of having a different smart proxy per object "<<be_nl
- <<"// instead of per interface."<<be_nl<< be_nl
- << "virtual ~TAO_" << node->flat_name ()
- << "_Default_Proxy_Factory (void);" << be_nl << be_nl
- << "virtual "<< node->local_name ()
- << "_ptr create_proxy (" << be_idt << be_idt_nl
- << node->local_name ()
- << "_ptr proxy" << be_nl
- << "ACE_ENV_ARG_DECL_WITH_DEFAULTS" << 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_Singleton<TAO_" << node->flat_name ()
- << "_Proxy_Factory_Adapter, TAO_SYNCH_RECURSIVE_MUTEX>;" << be_nl << be_nl
- << "void register_proxy_factory (" << be_idt << be_idt_nl
- << "TAO_" << node->flat_name () << "_Default_Proxy_Factory *df,"<< be_nl
- << "int one_shot_factory = 1" << be_nl
- << "ACE_ENV_ARG_DECL_WITH_DEFAULTS" << be_uidt_nl
- << ");" << be_uidt_nl << be_nl
- << "void unregister_proxy_factory (" << be_idt << be_idt_nl
- << "ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS" << be_uidt_nl
- << ");" << be_uidt_nl << be_nl
- << node->local_name ()
- << "_ptr create_proxy (" << be_idt << be_idt_nl
- << node->local_name () << "_ptr proxy" << be_nl
- << "ACE_ENV_ARG_DECL_WITH_DEFAULTS" << be_uidt_nl
- << ");" << be_uidt << be_uidt_nl << be_nl
- << "protected:" << be_idt_nl
- << "TAO_" << node->flat_name ()
- << "_Proxy_Factory_Adapter (void);" << be_nl
- << "~TAO_" << node->flat_name ()
- << "_Proxy_Factory_Adapter (void);" << 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
- << "int one_shot_factory_;" << be_nl
- << "int disable_factory_;"<<be_nl
- << "TAO_SYNCH_RECURSIVE_MUTEX lock_;" << be_uidt_nl
- << "};";
-
- *os << be_nl << be_nl
- << "typedef TAO_Singleton<TAO_"<<node->flat_name ()
- << "_Proxy_Factory_Adapter, TAO_SYNCH_RECURSIVE_MUTEX> TAO_"
- << node->flat_name ()<< "_PROXY_FACTORY_ADAPTER;"<<be_nl << be_nl;
-
- *os << "class " << be_global->stub_export_macro ()<< " "
- << "TAO_"<< node->flat_name ()
- << "_Smart_Proxy_Base" << be_idt_nl
- << ": public virtual "
- << bt->nested_type_name (this->ctx_->scope ());
-
-
- if (node->n_inherits () > 0)
+ for (i = 0; i < node->n_inherits (); i++)
{
- long i;
+ be_interface *inherited =
+ be_interface::narrow_from_decl (node->inherits ()[i]);
+ be_decl *scope = 0;
- for (i = 0; i < node->n_inherits (); i++)
+ if (inherited->is_nested ())
{
- be_interface *inherited =
- be_interface::narrow_from_decl (node->inherits ()[i]);
- be_decl *scope = 0;
-
- if (inherited->is_nested ())
- {
- // Inherited node is used in the scope of "node" node.
- scope =
- be_scope::narrow_from_scope (node->defined_in ())->decl ();
- }
-
- *os << "," << be_nl << " public virtual ";
- *os << inherited->nested_sp_type_name (scope,
- "_Smart_Proxy_Base");
+ // Inherited node is used in the scope of "node" node.
+ scope =
+ be_scope::narrow_from_scope (node->defined_in ())->decl ();
}
- }
- 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 (void);"
- << 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 (void);"
- << be_nl
- // This method will delegate this method to the <base_proxy_>
- // member of the smart proxy and so the smart proxy's (nil)
- // stubobj will not be returned.
- << "virtual TAO_Stub *_stubobj (void) const;"
- << be_nl
- // Another version of the above method..
- << "virtual TAO_Stub *_stubobj (void);"
- << 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 << "," << be_nl << " public virtual ";
+ *os << inherited->nested_sp_type_name (scope,
+ "_Smart_Proxy_Base");
}
-
- *os << "protected:" << be_idt_nl
- << "::" << node->full_name ()
- << "_ptr get_proxy (void);" << be_nl
- << "::" << node->full_name () << "_var proxy_;"
- << be_uidt_nl
- << "};\n\n";
}
else
{
- ACE_UNUSED_ARG (node);
+ *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 (void);"
+ << 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 (void);"
+ << be_nl
+ // This method will delegate this method to the <base_proxy_>
+ // member of the smart proxy and so the smart proxy's (nil)
+ // stubobj will not be returned.
+ << "virtual TAO_Stub *_stubobj (void) const;"
+<< be_nl
+// Another version of the above method..
+<< "virtual TAO_Stub *_stubobj (void);"
+ << 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 (void);" << be_nl
+ << "::" << node->full_name () << "_var proxy_;"
+ << be_uidt_nl
+ << "};\n\n";
+
return 0;
}