blob: f51c5b3b93635cd0c1f4a0a47b177aaff06d1f04 (
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
|
// -*- C++ -*-
//=============================================================================
/**
* @file Policy_Manager.h
*
* $Id$
*
* An implementation for the CORBA::PolicyManager interface.
*
*
* @author Carlos O'Ryan (coryan@cs.wustl.edu)
*/
//=============================================================================
#ifndef TAO_POLICY_MANAGER_H
#define TAO_POLICY_MANAGER_H
#include /**/ "ace/pre.h"
#include "ace/Guard_T.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/orbconf.h"
#if (TAO_HAS_CORBA_MESSAGING == 1)
#include "tao/PolicyC.h"
#include "tao/LocalObject.h"
#include "tao/Policy_Set.h"
#if defined(_MSC_VER)
#if (_MSC_VER >= 1200)
#pragma warning(push)
#endif /* _MSC_VER >= 1200 */
#pragma warning(disable:4250)
#endif /* _MSC_VER */
class TAO_Export TAO_Policy_Manager :
public CORBA::PolicyManager,
public TAO_Local_RefCounted_Object
{
public:
/// constructor
TAO_Policy_Manager (void);
/// Obtain a single policy.
CORBA::Policy_ptr get_policy (CORBA::PolicyType policy
ACE_ENV_ARG_DECL_WITH_DEFAULTS);
// = The CORBA::PolicyManager operations
virtual CORBA::PolicyList * get_policy_overrides (
const CORBA::PolicyTypeSeq & ts
ACE_ENV_ARG_DECL_WITH_DEFAULTS
)
ACE_THROW_SPEC ((CORBA::SystemException));
virtual void set_policy_overrides (const CORBA::PolicyList & policies,
CORBA::SetOverrideType set_add
ACE_ENV_ARG_DECL_WITH_DEFAULTS)
ACE_THROW_SPEC ((CORBA::SystemException,
CORBA::InvalidPolicies));
/// Obtain a single cached policy.
CORBA::Policy_ptr get_cached_policy (TAO_Cached_Policy_Type type);
private:
/// Protect access
TAO_SYNCH_MUTEX mutex_;
/// The implementation.
TAO_Policy_Set impl_;
};
// ****************************************************************
class TAO_Export TAO_Policy_Current_Impl
{
public:
TAO_Policy_Current_Impl (void);
/// Obtain a single policy.
CORBA::Policy_ptr get_policy (CORBA::PolicyType policy
ACE_ENV_ARG_DECL_WITH_DEFAULTS);
// = The CORBA::PolicyManager operations
CORBA::PolicyList * get_policy_overrides (
const CORBA::PolicyTypeSeq & ts
ACE_ENV_ARG_DECL_WITH_DEFAULTS
);
void set_policy_overrides (const CORBA::PolicyList & policies,
CORBA::SetOverrideType set_add
ACE_ENV_ARG_DECL_WITH_DEFAULTS);
/// Obtain a single cached policy.
CORBA::Policy_ptr get_cached_policy (TAO_Cached_Policy_Type type);
private:
/// The implementation.
TAO_Policy_Set manager_impl_;
};
// ****************************************************************
class TAO_Export TAO_Policy_Current :
public CORBA::PolicyCurrent,
public TAO_Local_RefCounted_Object
{
public:
/// Constructor
TAO_Policy_Current (void);
/// Obtain a single policy.
CORBA::Policy_ptr get_policy (
CORBA::PolicyType policy
ACE_ENV_ARG_DECL_WITH_DEFAULTS);
// = The CORBA::PolicyManager operations
virtual CORBA::PolicyList * get_policy_overrides (
const CORBA::PolicyTypeSeq & ts
ACE_ENV_ARG_DECL_WITH_DEFAULTS
)
ACE_THROW_SPEC ((CORBA::SystemException));
virtual void set_policy_overrides (
const CORBA::PolicyList & policies,
CORBA::SetOverrideType set_add
ACE_ENV_ARG_DECL_WITH_DEFAULTS
)
ACE_THROW_SPEC ((CORBA::SystemException,
CORBA::InvalidPolicies));
/// Obtain a single cached policy.
CORBA::Policy_ptr get_cached_policy (TAO_Cached_Policy_Type type);
// = Set and get the implementation.
TAO_Policy_Current_Impl &implementation (void) const;
TAO_Policy_Current_Impl &implementation (TAO_Policy_Current_Impl &);
};
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
#pragma warning(pop)
#endif /* _MSC_VER */
#if defined (__ACE_INLINE__)
# include "tao/Policy_Manager.i"
#endif /* __ACE_INLINE__ */
#endif /* TAO_HAS_CORBA_MESSAGING == 1 */
#include /**/ "ace/post.h"
#endif /* TAO_POLICY_MANAGER_H */
|