diff options
author | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-02-10 19:48:55 +0000 |
---|---|---|
committer | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-02-10 19:48:55 +0000 |
commit | 53ae527d407ebcf4cc9efb3bff2527a817da1c70 (patch) | |
tree | e7e6603e0e259db333bf25f2d8c7848e595f0231 /TAO/tao/default_resource.cpp | |
parent | 3b6ee8039f6c120c4290a6a01bf26dcd5032003b (diff) | |
download | ATCD-53ae527d407ebcf4cc9efb3bff2527a817da1c70.tar.gz |
ChangeLogTag:Thu Feb 10 13:25:07 2000 Nanbor Wang <nanbor@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/default_resource.cpp')
-rw-r--r-- | TAO/tao/default_resource.cpp | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/TAO/tao/default_resource.cpp b/TAO/tao/default_resource.cpp index d2a5c3c96c2..528d42bed87 100644 --- a/TAO/tao/default_resource.cpp +++ b/TAO/tao/default_resource.cpp @@ -7,6 +7,7 @@ #include "tao/debug.h" #include "tao/IIOP_Factory.h" #include "tao/UIOP_Factory.h" +#include "tao/SHMIOP_Factory.h" #include "tao/Acceptor_Registry.h" #include "tao/Connector_Registry.h" #include "tao/Single_Reactor.h" @@ -421,6 +422,45 @@ TAO_Default_Resource_Factory::init_protocol_factories (void) "TAO (%P|%t) Loaded default protocol <UIOP_Factory>\n")); } #endif /* TAO_HAS_UIOP == 1 */ + +#if defined (TAO_HAS_SHMIOP) && (TAO_HAS_SHMIOP != 0) + protocol_factory = + ACE_Dynamic_Service<TAO_Protocol_Factory>::instance ("SHMIOP_Factory"); + + if (protocol_factory == 0) + { + if (TAO_orbdebug) + ACE_ERROR ((LM_WARNING, + "(%P|%t) WARNING - No %s found in Service Repository." + " Using default instance.\n", + "SHMIOP Protocol Factory")); + + ACE_NEW_RETURN (protocol_factory, + TAO_SHMIOP_Protocol_Factory, + -1); + } + + ACE_NEW_RETURN (item, TAO_Protocol_Item ("SHMIOP_Factory"), -1); + item->factory (protocol_factory); + + if (this->protocol_factories_.insert (item) == -1) + { + delete item; + delete protocol_factory; + + ACE_ERROR_RETURN ((LM_ERROR, + "TAO (%P|%t) Unable to add " + "<%s> to protocol factory set.\n", + item->protocol_name ().c_str ()), + -1); + } + + if (TAO_debug_level > 0) + { + ACE_DEBUG ((LM_DEBUG, + "TAO (%P|%t) Loaded default protocol <SHMIOP_Factory>\n")); + } +#endif /* TAO_HAS_SHMIOP && TAO_HAS_SHMIOP != 0 */ return 0; } |