summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/examples/LoadBalancing/ORBInitializer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/examples/LoadBalancing/ORBInitializer.cpp')
-rw-r--r--TAO/orbsvcs/examples/LoadBalancing/ORBInitializer.cpp81
1 files changed, 81 insertions, 0 deletions
diff --git a/TAO/orbsvcs/examples/LoadBalancing/ORBInitializer.cpp b/TAO/orbsvcs/examples/LoadBalancing/ORBInitializer.cpp
new file mode 100644
index 00000000000..f6239df905c
--- /dev/null
+++ b/TAO/orbsvcs/examples/LoadBalancing/ORBInitializer.cpp
@@ -0,0 +1,81 @@
+#include "ORBInitializer.h"
+#include "ServerRequestInterceptor.h"
+
+#include "orbsvcs/LoadBalancing/LB_ServerRequestInterceptor.h"
+
+#include "orbsvcs/CosLoadBalancingC.h"
+#include "tao/ORB_Constants.h"
+
+
+ACE_RCSID (LoadBalancing,
+ ORBInitializer,
+ "$Id$")
+
+
+ORBInitializer::ORBInitializer (void)
+ : load_alert_ (),
+ interceptor_ (0)
+{
+}
+
+void
+ORBInitializer::pre_init (
+ PortableInterceptor::ORBInitInfo_ptr
+ ACE_ENV_ARG_DECL_NOT_USED)
+ ACE_THROW_SPEC ((CORBA::SystemException))
+{
+}
+
+void
+ORBInitializer::post_init (
+ PortableInterceptor::ORBInitInfo_ptr info
+ ACE_ENV_ARG_DECL)
+ ACE_THROW_SPEC ((CORBA::SystemException))
+{
+
+ ACE_NEW_THROW_EX (this->interceptor_,
+ ServerRequestInterceptor,
+ CORBA::NO_MEMORY (
+ CORBA::SystemException::_tao_minor_code (
+ TAO::VMCID,
+ ENOMEM),
+ CORBA::COMPLETED_NO));
+ ACE_CHECK;
+
+ PortableInterceptor::ServerRequestInterceptor_var sr_interceptor =
+ this->interceptor_;
+
+ info->add_server_request_interceptor (sr_interceptor.in ()
+ ACE_ENV_ARG_PARAMETER);
+ ACE_CHECK;
+
+ PortableInterceptor::ServerRequestInterceptor_ptr reject_interceptor;
+ ACE_NEW_THROW_EX (reject_interceptor,
+ TAO_LB_ServerRequestInterceptor (this->load_alert_),
+ CORBA::NO_MEMORY (
+ CORBA::SystemException::_tao_minor_code (
+ TAO::VMCID,
+ ENOMEM),
+ CORBA::COMPLETED_NO));
+ ACE_CHECK;
+
+ PortableInterceptor::ServerRequestInterceptor_var safe_reject_interceptor =
+ reject_interceptor;
+
+ info->add_server_request_interceptor (safe_reject_interceptor.in ()
+ ACE_ENV_ARG_PARAMETER);
+ ACE_CHECK;
+}
+
+
+TAO_LB_LoadAlert &
+ORBInitializer::load_alert (void)
+{
+ return this->load_alert_;
+}
+
+ServerRequestInterceptor *
+ORBInitializer::interceptor (void) const
+{
+ return this->interceptor_;
+}