2 * Copyright (c) 2014 Samsung Electronics Co., Ltd All Rights Reserved
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 * @file src/cyad/CommandlineParser/CyadCommand.h
18 * @author Aleksander Zdyb <a.zdyb@samsung.com>
20 * @brief A representation of Cyad command
23 #ifndef SRC_CYAD_COMMANDLINEPARSER_CYADCOMMAND_H_
24 #define SRC_CYAD_COMMANDLINEPARSER_CYADCOMMAND_H_
28 #include <types/PolicyBucketId.h>
29 #include <types/PolicyResult.h>
33 class CommandsDispatcher;
37 CyadCommand() = default;
38 virtual ~CyadCommand() {}
40 virtual int run(CommandsDispatcher &dispatcher);
42 virtual bool isError(void) const {
47 class ErrorCyadCommand : public CyadCommand {
49 ErrorCyadCommand(const std::string &message) : m_message(message) {}
50 virtual ~ErrorCyadCommand() {}
52 virtual int run(CommandsDispatcher &dispatcher);
54 virtual bool isError(void) const {
58 virtual const std::string &message(void) const {
63 std::string m_message;
66 class HelpCyadCommand : public CyadCommand {
68 using CyadCommand::CyadCommand;
70 virtual int run(CommandsDispatcher &dispatcher);
73 class SetBucketCyadCommand : public CyadCommand {
75 SetBucketCyadCommand(const PolicyBucketId &bucketId, const PolicyResult &policyResult)
76 : m_bucketId(bucketId), m_policyResult(policyResult) {}
78 virtual ~SetBucketCyadCommand() {}
80 virtual int run(CommandsDispatcher &dispatcher);
82 const PolicyBucketId &bucketId(void) const {
86 const PolicyResult &policyResult(void) const {
87 return m_policyResult;
91 PolicyBucketId m_bucketId;
92 PolicyResult m_policyResult;
95 class DeleteBucketCyadCommand : public CyadCommand {
97 explicit DeleteBucketCyadCommand(const PolicyBucketId &bucketId) : m_bucketId(bucketId) {}
99 virtual ~DeleteBucketCyadCommand() {}
101 virtual int run(CommandsDispatcher &dispatcher);
103 const PolicyBucketId &bucketId(void) const {
108 PolicyBucketId m_bucketId;
111 } /* namespace Cynara */
113 #endif /* SRC_CYAD_COMMANDLINEPARSER_CYADCOMMAND_H_ */