summaryrefslogtreecommitdiff
path: root/CIAO/ciao/Servant_Impl_T.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/ciao/Servant_Impl_T.cpp')
-rw-r--r--CIAO/ciao/Servant_Impl_T.cpp251
1 files changed, 0 insertions, 251 deletions
diff --git a/CIAO/ciao/Servant_Impl_T.cpp b/CIAO/ciao/Servant_Impl_T.cpp
deleted file mode 100644
index 81eb60789d6..00000000000
--- a/CIAO/ciao/Servant_Impl_T.cpp
+++ /dev/null
@@ -1,251 +0,0 @@
-// $Id$
-
-#ifndef CIAO_SERVANT_IMPL_T_C
-#define CIAO_SERVANT_IMPL_T_C
-
-#include "Servant_Impl_T.h"
-#include "CCM_EntityContextC.h"
-
-namespace CIAO
-{
- template <typename BASE_SKEL,
- typename EXEC,
- typename CONTEXT>
- Servant_Impl<BASE_SKEL, EXEC, CONTEXT>::Servant_Impl (
- EXEC * exe,
- Components::CCMHome_ptr home,
- Home_Servant_Impl_Base *home_servant,
- Session_Container * c
- )
- : Servant_Impl_Base (home, home_servant, c),
- activated_ (false),
- pre_activated_ (false),
- post_activated_ (false),
- executor_ (EXEC::_duplicate (exe))
- {
- }
-
- template <typename BASE_SKEL,
- typename EXEC,
- typename CONTEXT>
- Servant_Impl<BASE_SKEL, EXEC, CONTEXT>::~Servant_Impl (void)
- {
- // **********************************************************************
- /*
- try
- {
- ::Components::SessionComponent_var scom =
- ::Components::SessionComponent::_narrow (
- this->executor_.in ()
- );
-
- if (! ::CORBA::is_nil (scom.in ()))
- {
- scom->ccm_remove ();
- }
- }
- catch (const CORBA::Exception& ex)
- {
- }
- */
- // *********************************************************************
-
- this->context_->_remove_ref ();
- }
-
- // Operations for CCMObject interface.
-
- template <typename BASE_SKEL,
- typename EXEC,
- typename CONTEXT>
- CORBA::Boolean
- Servant_Impl<BASE_SKEL, EXEC, CONTEXT>::same_component (
- CORBA::Object_ptr object_ref
- )
- {
- if (::CORBA::is_nil (object_ref))
- {
- throw ::CORBA::BAD_PARAM ();
- }
-
- ::CORBA::Object_var the_other =
- object_ref->_get_component ();
-
- ::CORBA::Object_var me =
- this->context_->get_CCM_object ();
-
- return me->_is_equivalent (the_other.in ());
-
- }
-
- template <typename BASE_SKEL,
- typename EXEC,
- typename CONTEXT>
- ::Components::CCMHome_ptr
- Servant_Impl<BASE_SKEL, EXEC, CONTEXT>::get_ccm_home (
- )
- {
- return this->context_->get_CCM_home ();
- }
-
- template <typename BASE_SKEL,
- typename EXEC,
- typename CONTEXT>
- Components::SessionComponent_ptr
- Servant_Impl<BASE_SKEL, EXEC, CONTEXT>::get_executor (
- )
- {
- ::Components::SessionComponent_var temp =
- ::Components::SessionComponent::_narrow (
- this->executor_.in ()
- );
- return temp._retn ();
- }
-
- template <typename BASE_SKEL,
- typename EXEC,
- typename CONTEXT>
- CORBA::Object_ptr
- Servant_Impl<BASE_SKEL, EXEC, CONTEXT>::_get_component (
- )
- {
- ::Components::SessionContext_var sc =
- ::Components::SessionContext::_narrow (
- this->context_
- );
-
- if (! ::CORBA::is_nil (sc.in ()))
- {
- return sc->get_CCM_object ();
- }
-
- ::Components::EntityContext_var ec =
- ::Components::EntityContext::_narrow (
- this->context_
- );
-
- if (! ::CORBA::is_nil (ec.in ()))
- {
- return ec->get_CCM_object ();
- }
-
- throw CORBA::INTERNAL ();
- }
-
- // CIAO-specific operations.
-
- template <typename BASE_SKEL,
- typename EXEC,
- typename CONTEXT>
- void
- Servant_Impl<BASE_SKEL, EXEC, CONTEXT>::activate_component (
- )
- {
- if (this->is_activated () == 0)
- {
- this->ciao_preactivate ();
-
- this->ciao_activate ();
-
- this->ciao_postactivate ();
- }
- }
-
- template <typename BASE_SKEL,
- typename EXEC,
- typename CONTEXT>
- void
- Servant_Impl<BASE_SKEL, EXEC, CONTEXT>::ciao_preactivate (
- )
- {
- ::Components::SessionComponent_var temp =
- ::Components::SessionComponent::_narrow (
- this->executor_.in ()
- );
-
- if (! ::CORBA::is_nil (temp.in ()))
- {
- if (this->pre_activated_ == 0)
- {
- this->pre_activated_ = 1;
- temp->ciao_preactivate ();
- }
- }
- }
-
- template <typename BASE_SKEL,
- typename EXEC,
- typename CONTEXT>
- void
- Servant_Impl<BASE_SKEL, EXEC, CONTEXT>::ciao_activate ()
- {
- ::Components::SessionComponent_var temp =
- ::Components::SessionComponent::_narrow (
- this->executor_.in ()
- );
-
- if (! ::CORBA::is_nil (temp.in ()))
- {
- if (this->activated_ == 0)
- {
- this->activated_ = 1;
- temp->ccm_activate ();
- }
- }
- }
-
- template <typename BASE_SKEL,
- typename EXEC,
- typename CONTEXT>
- void
- Servant_Impl<BASE_SKEL, EXEC, CONTEXT>::ciao_postactivate (
- )
- {
- ::Components::SessionComponent_var temp =
- ::Components::SessionComponent::_narrow (
- this->executor_.in ()
- );
-
- if (! ::CORBA::is_nil (temp.in ()))
- {
- if (this->post_activated_ == 0)
- {
- this->post_activated_ = 1;
- temp->ciao_postactivate ();
- }
- }
- }
-
- template <typename BASE_SKEL,
- typename EXEC,
- typename CONTEXT>
- CORBA::Boolean
- Servant_Impl<BASE_SKEL, EXEC, CONTEXT>::is_activated (
- )
- {
- return this->pre_activated_;
- }
-
- template <typename BASE_SKEL,
- typename EXEC,
- typename CONTEXT>
- void
- Servant_Impl<BASE_SKEL, EXEC, CONTEXT>::ciao_passivate (
- )
- {
- // @@ Jai, could you please see why this is required?
- ::Components::SessionComponent_var temp =
- ::Components::SessionComponent::_narrow (
- this->executor_.in ()
- );
-
- if (! ::CORBA::is_nil (temp.in ()))
- temp->ccm_passivate ();
-
- this->pre_activated_ = 0;
- this->activated_ = 0;
- this->post_activated_ = 0;
- }
-}
-
-#endif /* CIAO_SERVANT_IMPL_T_C */