blob: 7cd13e96777b33f711f75a62246938cdda749efb (
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
|
// @(#) $Id$
#include "Policy_Validator.h"
#include "Environment.h"
#include "ORB_Core.h"
#include "debug.h"
ACE_RCSID(tao, Policy_Validator, "$Id$")
TAO_Policy_Validator *TAO_Policy_Validator::last_ = 0;
TAO_Policy_Validator::TAO_Policy_Validator (TAO_ORB_Core &orb_core)
: orb_core_ (orb_core),
next_ (0)
{
// No-Op.
}
TAO_Policy_Validator::~TAO_Policy_Validator (void)
{
if (this == this->last_)
this-> last_ = 0;
if (this->next_)
delete this->next_;
}
void
TAO_Policy_Validator::add_validator (TAO_Policy_Validator *validator)
{
if (this->last_ == 0)
{
this->last_ = this->next_ = validator;
}
else
{
if (this->last_ == validator)
{
if (TAO_debug_level > 3)
ACE_DEBUG ((LM_DEBUG,
ACE_LIB_TEXT ("(%P|%t) Skipping validator [0x%x] ")
ACE_LIB_TEXT ("since it would create a circular list \n"),
validator));
return;
}
this->last_ = this->last_->next_ = validator;
}
}
void
TAO_Policy_Validator::validate (TAO_Policy_Set &policies
ACE_ENV_ARG_DECL)
{
this->validate_impl (policies ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
if (this->next_ != 0)
{
this->next_->validate (policies ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
}
}
void
TAO_Policy_Validator::merge_policies (TAO_Policy_Set &policies
ACE_ENV_ARG_DECL)
{
this->merge_policies_impl (policies ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
if (this->next_ != 0)
{
this->next_->merge_policies (policies ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
}
}
CORBA::Boolean
TAO_Policy_Validator::legal_policy (CORBA::PolicyType type)
{
return (this->legal_policy_impl (type) ||
((this->next_ != 0) && this->next_->legal_policy_impl (type)));
}
|