tizen 2.3.1 release
[framework/web/wearable/wrt-security.git] / ace / include / ace / Rule.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 //
17 //
18 //
19 //  @ Project : Access Control Engine
20 //  @ File Name : Rule.h
21 //  @ Date : 2009-05-06
22 //  @ Author : Samsung
23 //
24 //
25
26 #if !defined(_RULE_H)
27 #define _RULE_H
28
29 #include "Attribute.h"
30 #include "Effect.h"
31 #include "Condition.h"
32 #include <dpl/assert.h>
33
34 class Rule : public AbstractTreeElement
35 {
36   public:
37
38     ExtendedEffect evaluateRule(const AttributeSet * attrSet) const;
39
40     Rule()
41       : effect(Inapplicable)
42     {
43         //TODO we should set it to deny or smth, not inapplicable
44     }
45
46     void setEffect(ExtendedEffect effect)
47     {
48         //We should not allow to set "Inapplicable" effect.
49         //Rules cannot have effect that is inapplicable, evaluation of the rules may however
50         //render the effect inapplicable.
51         Assert(effect.getEffect() != Inapplicable);
52         this->effect = effect;
53     }
54     void setCondition(Condition condition)
55     {
56         this->condition = condition;
57     }
58     void getAttributes(AttributeSet * attrSet)
59     {
60         condition.getAttributes(attrSet);
61     }
62
63     //DEBUG methods
64     std::string printEffect(const ExtendedEffect &effect) const;
65     void printData();
66
67   private:
68
69     ExtendedEffect effect;
70     Condition condition;
71 };
72
73 #endif  //_RULE_H