Add --set-policy option to Cyad
[platform/core/security/cynara.git] / src / cyad / CommandlineParser / CyadCommand.h
1 /*
2  * Copyright (c) 2014 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  * @file        src/cyad/CommandlineParser/CyadCommand.h
18  * @author      Aleksander Zdyb <a.zdyb@samsung.com>
19  * @version     1.0
20  * @brief       A representation of Cyad command
21  */
22
23 #ifndef SRC_CYAD_COMMANDLINEPARSER_CYADCOMMAND_H_
24 #define SRC_CYAD_COMMANDLINEPARSER_CYADCOMMAND_H_
25
26 #include <string>
27
28 #include <types/PolicyBucketId.h>
29 #include <types/PolicyKey.h>
30 #include <types/PolicyResult.h>
31
32 namespace Cynara {
33
34 class CommandsDispatcher;
35
36 class CyadCommand {
37 public:
38     CyadCommand() = default;
39     virtual ~CyadCommand() {}
40
41     virtual int run(CommandsDispatcher &dispatcher);
42
43     virtual bool isError(void) const {
44         return false;
45     }
46 };
47
48 class ErrorCyadCommand : public CyadCommand {
49 public:
50     ErrorCyadCommand(const std::string &message) : m_message(message) {}
51     virtual ~ErrorCyadCommand() {}
52
53     virtual int run(CommandsDispatcher &dispatcher);
54
55     virtual bool isError(void) const {
56         return true;
57     }
58
59     virtual const std::string &message(void) const {
60         return m_message;
61     }
62
63 private:
64     std::string m_message;
65 };
66
67 class HelpCyadCommand : public CyadCommand {
68 public:
69     using CyadCommand::CyadCommand;
70
71     virtual int run(CommandsDispatcher &dispatcher);
72 };
73
74 class SetBucketCyadCommand : public CyadCommand {
75 public:
76     SetBucketCyadCommand(const PolicyBucketId &bucketId, const PolicyResult &policyResult)
77         : m_bucketId(bucketId), m_policyResult(policyResult) {}
78
79     virtual ~SetBucketCyadCommand() {}
80
81     virtual int run(CommandsDispatcher &dispatcher);
82
83     const PolicyBucketId &bucketId(void) const {
84         return m_bucketId;
85     }
86
87     const PolicyResult &policyResult(void) const {
88         return m_policyResult;
89     }
90
91 private:
92     PolicyBucketId m_bucketId;
93     PolicyResult m_policyResult;
94 };
95
96 class DeleteBucketCyadCommand : public CyadCommand {
97 public:
98     explicit DeleteBucketCyadCommand(const PolicyBucketId &bucketId) : m_bucketId(bucketId) {}
99
100     virtual ~DeleteBucketCyadCommand() {}
101
102     virtual int run(CommandsDispatcher &dispatcher);
103
104     const PolicyBucketId &bucketId(void) const {
105         return m_bucketId;
106     }
107
108 private:
109     PolicyBucketId m_bucketId;
110 };
111
112 class SetPolicyCyadCommand : public CyadCommand {
113 public:
114     SetPolicyCyadCommand(const PolicyBucketId &bucketId, const PolicyResult &policyResult,
115                          const PolicyKey &policyKey)
116         : m_bucketId(bucketId), m_policyResult(policyResult), m_policyKey(policyKey) {}
117
118     virtual ~SetPolicyCyadCommand() {}
119
120     virtual int run(CommandsDispatcher &dispatcher);
121
122     const PolicyBucketId &bucketId(void) const {
123         return m_bucketId;
124     }
125
126     const PolicyResult &policyResult(void) const {
127         return m_policyResult;
128     }
129
130     const PolicyKey &policyKey(void) const {
131         return m_policyKey;
132     }
133
134 private:
135     PolicyBucketId m_bucketId;
136     PolicyResult m_policyResult;
137     PolicyKey m_policyKey;
138 };
139
140 } /* namespace Cynara */
141
142 #endif /* SRC_CYAD_COMMANDLINEPARSER_CYADCOMMAND_H_ */