summaryrefslogtreecommitdiff
path: root/trunk/TAO/tao/PortableServer/ServantRetentionStrategyNonRetainFactoryImpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/tao/PortableServer/ServantRetentionStrategyNonRetainFactoryImpl.cpp')
-rw-r--r--trunk/TAO/tao/PortableServer/ServantRetentionStrategyNonRetainFactoryImpl.cpp74
1 files changed, 74 insertions, 0 deletions
diff --git a/trunk/TAO/tao/PortableServer/ServantRetentionStrategyNonRetainFactoryImpl.cpp b/trunk/TAO/tao/PortableServer/ServantRetentionStrategyNonRetainFactoryImpl.cpp
new file mode 100644
index 00000000000..8da6d151764
--- /dev/null
+++ b/trunk/TAO/tao/PortableServer/ServantRetentionStrategyNonRetainFactoryImpl.cpp
@@ -0,0 +1,74 @@
+// $Id$
+
+#include "tao/orbconf.h"
+
+ACE_RCSID (PortableServer,
+ ServantRetentionStrategyNonRetainFactoryImpl,
+ "$Id$")
+
+#if (TAO_HAS_MINIMUM_POA == 0) && !defined (CORBA_E_COMPACT) && !defined (CORBA_E_MICRO)
+
+#include "tao/PortableServer/ServantRetentionStrategyNonRetainFactoryImpl.h"
+#include "tao/PortableServer/ServantRetentionStrategy.h"
+#include "tao/PortableServer/ServantRetentionStrategyNonRetain.h"
+#include "ace/Dynamic_Service.h"
+#include "ace/Log_Msg.h"
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+namespace TAO
+{
+ namespace Portable_Server
+ {
+ ServantRetentionStrategy*
+ ServantRetentionStrategyNonRetainFactoryImpl::create (
+ ::PortableServer::ServantRetentionPolicyValue value)
+ {
+ ServantRetentionStrategy* strategy = 0;
+
+ switch (value)
+ {
+ case ::PortableServer::NON_RETAIN :
+ {
+ ACE_NEW_RETURN (strategy, ServantRetentionStrategyNonRetain, 0);
+ break;
+ }
+ case ::PortableServer::RETAIN :
+ {
+ ACE_ERROR ((LM_ERROR, "Incorrect type in ServantRetentionStrategyNonRetainFactoryImpl"));
+ break;
+ }
+ }
+
+ return strategy;
+ }
+
+ void
+ ServantRetentionStrategyNonRetainFactoryImpl::destroy (
+ ServantRetentionStrategy *strategy
+ ACE_ENV_ARG_DECL)
+ {
+ strategy->strategy_cleanup (ACE_ENV_SINGLE_ARG_PARAMETER);
+ ACE_CHECK;
+
+ delete strategy;
+ }
+ }
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+ACE_STATIC_SVC_DEFINE (
+ ServantRetentionStrategyNonRetainFactoryImpl,
+ ACE_TEXT ("ServantRetentionStrategyNonRetainFactory"),
+ ACE_SVC_OBJ_T,
+ &ACE_SVC_NAME (ServantRetentionStrategyNonRetainFactoryImpl),
+ ACE_Service_Type::DELETE_THIS | ACE_Service_Type::DELETE_OBJ,
+ 0)
+
+ACE_FACTORY_NAMESPACE_DEFINE (
+ ACE_Local_Service,
+ ServantRetentionStrategyNonRetainFactoryImpl,
+ TAO::Portable_Server::ServantRetentionStrategyNonRetainFactoryImpl)
+
+#endif /* TAO_HAS_MINIMUM_POA == 0 && !CORBA_E_COMPACT && !CORBA_E_MICRO */