summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/LifespanStrategyFactoryImpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/PortableServer/LifespanStrategyFactoryImpl.cpp')
-rw-r--r--TAO/tao/PortableServer/LifespanStrategyFactoryImpl.cpp106
1 files changed, 0 insertions, 106 deletions
diff --git a/TAO/tao/PortableServer/LifespanStrategyFactoryImpl.cpp b/TAO/tao/PortableServer/LifespanStrategyFactoryImpl.cpp
deleted file mode 100644
index 4b3166af831..00000000000
--- a/TAO/tao/PortableServer/LifespanStrategyFactoryImpl.cpp
+++ /dev/null
@@ -1,106 +0,0 @@
-// $Id$
-
-#include "LifespanStrategyFactoryImpl.h"
-#include "LifespanStrategy.h"
-#include "ace/Dynamic_Service.h"
-
-ACE_RCSID (PortableServer,
- LifespanStrategyFactoryImpl,
- "$Id$")
-
-namespace TAO
-{
- namespace Portable_Server
- {
- LifespanStrategy*
- LifespanStrategyFactoryImpl::create (
- ::PortableServer::LifespanPolicyValue value)
- {
- LifespanStrategy *strategy = 0;
- const char *strategy_name = 0;
-
- switch (value)
- {
- case ::PortableServer::PERSISTENT :
- {
- strategy_name = "LifespanStrategyPersistentFactory";
- break;
- }
- case ::PortableServer::TRANSIENT :
- {
- strategy_name = "LifespanStrategyTransientFactory";
- break;
- }
- }
-
- LifespanStrategyFactory *strategy_factory =
- ACE_Dynamic_Service<LifespanStrategyFactory>::instance (strategy_name);
-
- if (strategy_factory != 0)
- strategy = strategy_factory->create (value);
- else
- ACE_ERROR ((LM_ERROR,
- ACE_TEXT ("(%P|%t) ERROR, Unable to get %s\n"),
- strategy_name));
-
-
- return strategy;
- }
-
- void
- LifespanStrategyFactoryImpl::destroy (
- LifespanStrategy *strategy
- ACE_ENV_ARG_DECL)
- {
- switch (strategy->type ())
- {
- case ::PortableServer::PERSISTENT :
- {
- LifespanStrategyFactory *strategy_factory =
- ACE_Dynamic_Service<LifespanStrategyFactory>::instance ("LifespanStrategyPersistentFactory");
-
- if (strategy_factory != 0)
- {
- strategy_factory->destroy (strategy ACE_ENV_ARG_PARAMETER);
- ACE_CHECK;
- }
- break;
- }
- case ::PortableServer::TRANSIENT :
- {
- LifespanStrategyFactory *strategy_factory =
- ACE_Dynamic_Service<LifespanStrategyFactory>::instance ("LifespanStrategyTransientFactory");
-
- if (strategy_factory != 0)
- {
- strategy_factory->destroy (strategy ACE_ENV_ARG_PARAMETER);
- ACE_CHECK;
- }
- break;
- }
- }
- }
-
- ACE_STATIC_SVC_DEFINE (
- LifespanStrategyFactoryImpl,
- ACE_TEXT ("LifespanStrategyFactory"),
- ACE_SVC_OBJ_T,
- &ACE_SVC_NAME (LifespanStrategyFactoryImpl),
- ACE_Service_Type::DELETE_THIS | ACE_Service_Type::DELETE_OBJ,
- 0
- )
-
- ACE_FACTORY_DEFINE (TAO_PortableServer, LifespanStrategyFactoryImpl)
-
- #if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
-
- template class ACE_Dynamic_Service<LifespanStrategyFactoryImpl>;
-
- #elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
-
- #pragma instantiate ACE_Dynamic_Service<LifespanStrategyFactoryImpl>
-
- #endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */
- }
-}
-