blob: 29ed3ec4cac8d68232efb4522b863fece6fb1d7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
// $Id$
#include "tao/PortableServer/LifespanStrategyPersistentFactoryImpl.h"
#include "ace/Dynamic_Service.h"
#include "tao/PortableServer/LifespanStrategyPersistent.h"
ACE_RCSID (PortableServer,
LifespanStrategyFactoryImpl,
"$Id$")
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
namespace TAO
{
namespace Portable_Server
{
LifespanStrategy*
LifespanStrategyPersistentFactoryImpl::create (
::PortableServer::LifespanPolicyValue value)
{
LifespanStrategy* strategy = 0;
switch (value)
{
case ::PortableServer::PERSISTENT :
{
ACE_NEW_RETURN (strategy, LifespanStrategyPersistent, 0);
break;
}
case ::PortableServer::TRANSIENT :
{
ACE_ERROR ((LM_ERROR, "Incorrect type in LifespanStrategyPersistentFactoryImpl"));
break;
}
}
return strategy;
}
void
LifespanStrategyPersistentFactoryImpl::destroy (
LifespanStrategy *strategy
)
{
strategy->strategy_cleanup ();
delete strategy;
}
}
}
TAO_END_VERSIONED_NAMESPACE_DECL
ACE_STATIC_SVC_DEFINE (
LifespanStrategyPersistentFactoryImpl,
ACE_TEXT ("LifespanStrategyPersistentFactory"),
ACE_SVC_OBJ_T,
&ACE_SVC_NAME (LifespanStrategyPersistentFactoryImpl),
ACE_Service_Type::DELETE_THIS | ACE_Service_Type::DELETE_OBJ,
0)
ACE_FACTORY_NAMESPACE_DEFINE (
ACE_Local_Service,
LifespanStrategyPersistentFactoryImpl,
TAO::Portable_Server::LifespanStrategyPersistentFactoryImpl)
|