summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/IdAssignmentStrategyFactoryImpl.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2023-02-14 09:05:54 +0100
committerGitHub <noreply@github.com>2023-02-14 09:05:54 +0100
commit54406e2ff1e39a3245d04253648153d5f4751938 (patch)
tree2c92b2450e6872403cdd50b43ff764da236ffb12 /TAO/tao/PortableServer/IdAssignmentStrategyFactoryImpl.cpp
parent69fbec6c475060cf01a710a3d7ed6e756538858c (diff)
parentd19030946af88f57a4b2b29af9228cbbf0386a71 (diff)
downloadATCD-54406e2ff1e39a3245d04253648153d5f4751938.tar.gz
Merge pull request #2050 from jwillemsen/jwi-portableserverstrategysimplify
Major cleanup in PortableServer library
Diffstat (limited to 'TAO/tao/PortableServer/IdAssignmentStrategyFactoryImpl.cpp')
-rw-r--r--TAO/tao/PortableServer/IdAssignmentStrategyFactoryImpl.cpp64
1 files changed, 0 insertions, 64 deletions
diff --git a/TAO/tao/PortableServer/IdAssignmentStrategyFactoryImpl.cpp b/TAO/tao/PortableServer/IdAssignmentStrategyFactoryImpl.cpp
deleted file mode 100644
index e2d04886b10..00000000000
--- a/TAO/tao/PortableServer/IdAssignmentStrategyFactoryImpl.cpp
+++ /dev/null
@@ -1,64 +0,0 @@
-#include "tao/PortableServer/IdAssignmentStrategyFactoryImpl.h"
-#include "tao/PortableServer/IdAssignmentStrategy.h"
-#include "ace/Dynamic_Service.h"
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-namespace TAO
-{
- namespace Portable_Server
- {
- IdAssignmentStrategy *
- IdAssignmentStrategyFactoryImpl::create (
- ::PortableServer::IdAssignmentPolicyValue value)
- {
- IdAssignmentStrategy *strategy = 0;
- const char *strategy_name = 0;
-
- switch (value)
- {
- case ::PortableServer::SYSTEM_ID :
- {
- strategy_name = "IdAssignmentStrategySystem";
- break;
- }
- case ::PortableServer::USER_ID :
- {
- strategy_name = "IdAssignmentStrategyUser";
- break;
- }
- }
-
- strategy =
- ACE_Dynamic_Service <IdAssignmentStrategy>::instance (strategy_name);
-
- if (strategy == 0)
- TAOLIB_ERROR ((LM_ERROR,
- ACE_TEXT ("(%P|%t) ERROR, Unable to get %C\n"),
- strategy_name));
-
- return strategy;
- }
-
- void
- IdAssignmentStrategyFactoryImpl::destroy (IdAssignmentStrategy *)
- {
- // Noop because both types are singletons
- }
-
- }
-}
-
-ACE_STATIC_SVC_DEFINE (
- IdAssignmentStrategyFactoryImpl,
- ACE_TEXT ("IdAssignmentStrategyFactory"),
- ACE_SVC_OBJ_T,
- &ACE_SVC_NAME (IdAssignmentStrategyFactoryImpl),
- ACE_Service_Type::DELETE_THIS | ACE_Service_Type::DELETE_OBJ,
- 0)
-
-ACE_FACTORY_NAMESPACE_DEFINE (
- ACE_Local_Service,
- IdAssignmentStrategyFactoryImpl,
- TAO::Portable_Server::IdAssignmentStrategyFactoryImpl)
-TAO_END_VERSIONED_NAMESPACE_DECL