#include <ZIOP_ORBInitializer.h>


Public Member Functions | |
| TAO_ZIOP_ORBInitializer (TAO_ZIOP_Loader *loader) | |
PortableInterceptor::ORBInitializer Methods | |
| virtual void | pre_init (PortableInterceptor::ORBInitInfo_ptr info) |
| virtual void | post_init (PortableInterceptor::ORBInitInfo_ptr info) |
Private Member Functions | |
| void | register_policy_factories (PortableInterceptor::ORBInitInfo_ptr info) |
| Register policy factories. | |
Private Attributes | |
| TAO_ZIOP_Loader * | loader_ |
ZIOP ORB initializer.
Definition at line 43 of file ZIOP_ORBInitializer.h.
| TAO_ZIOP_ORBInitializer::TAO_ZIOP_ORBInitializer | ( | TAO_ZIOP_Loader * | loader | ) |
Definition at line 20 of file ZIOP_ORBInitializer.cpp.
: loader_ (loader) { }
| void TAO_ZIOP_ORBInitializer::post_init | ( | PortableInterceptor::ORBInitInfo_ptr | info | ) | [virtual] |
Definition at line 58 of file ZIOP_ORBInitializer.cpp.
{
this->register_policy_factories (info);
}
| void TAO_ZIOP_ORBInitializer::pre_init | ( | PortableInterceptor::ORBInitInfo_ptr | info | ) | [virtual] |
Definition at line 25 of file ZIOP_ORBInitializer.cpp.
{
// Narrow to a TAO_ORBInitInfo object to get access to the
// orb_core() TAO extension.
TAO_ORBInitInfo_var tao_info = TAO_ORBInitInfo::_narrow (info);
if (CORBA::is_nil (tao_info.in ()))
{
if (TAO_debug_level > 0)
ACE_ERROR ((LM_ERROR,
"(%P|%t) TAO_ZIOP_ORBInitializer::pre_init:\n"
"(%P|%t) Unable to narrow "
"\"PortableInterceptor::ORBInitInfo_ptr\" to\n"
"(%P|%t) \"TAO_ORBInitInfo *.\"\n"));
throw ::CORBA::INTERNAL ();
}
tao_info->orb_core ()->ziop_adapter (this->loader_);
// Set the name of the stub factory to be ZIOP_Stub_Factory.
tao_info->orb_core ()->orb_params ()->stub_factory_name ("ZIOP_Stub_Factory");
ACE_Service_Config::process_directive (ace_svc_desc_TAO_ZIOP_Stub_Factory);
#if defined (TAO_HAS_CORBA_MESSAGING) && TAO_HAS_CORBA_MESSAGING != 0
// Bind the service context handler for ZIOP
TAO_ZIOP_Service_Context_Handler* h = 0;
ACE_NEW (h,
TAO_ZIOP_Service_Context_Handler());
tao_info->orb_core ()->service_context_registry ().bind (IOP::INVOCATION_POLICIES, h);
#endif
}
| void TAO_ZIOP_ORBInitializer::register_policy_factories | ( | PortableInterceptor::ORBInitInfo_ptr | info | ) | [private] |
Register policy factories.
Definition at line 64 of file ZIOP_ORBInitializer.cpp.
{
// Register the ZIOP policy factories.
PortableInterceptor::PolicyFactory_ptr policy_factory_ptr;
ACE_NEW_THROW_EX (policy_factory_ptr,
TAO_ZIOP_PolicyFactory,
CORBA::NO_MEMORY (
CORBA::SystemException::_tao_minor_code (
TAO::VMCID,
ENOMEM),
CORBA::COMPLETED_NO));
PortableInterceptor::PolicyFactory_var policy_factory =
policy_factory_ptr;
try
{
info->register_policy_factory (ZIOP::COMPRESSION_ENABLING_POLICY_ID,
policy_factory.in ());
info->register_policy_factory (ZIOP::COMPRESSOR_ID_LEVEL_LIST_POLICY_ID,
policy_factory.in ());
info->register_policy_factory (ZIOP::COMPRESSION_LOW_VALUE_POLICY_ID,
policy_factory.in ());
info->register_policy_factory (ZIOP::COMPRESSION_MIN_RATIO_POLICY_ID,
policy_factory.in ());
}
catch (const CORBA::BAD_INV_ORDER& ex)
{
if (ex.minor () == (CORBA::OMGVMCID | 16))
{
// The factory is already there, it happens because the
// magic initializer in Messaging.cpp registers with the
// ORB multiple times. This is an indication that we
// should do no more work in this ORBInitializer.
return;
}
throw;
}
catch (...)
{
// Rethrow any other exceptions...
throw;
}
}
TAO_ZIOP_Loader* TAO_ZIOP_ORBInitializer::loader_ [private] |
Definition at line 67 of file ZIOP_ORBInitializer.h.
1.7.0