Implement --set-policy option in Cyad
[platform/core/security/cynara.git] / src / cyad / CommandlineParser / CyadCommandlineParser.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/CyadCommandlineParser.h
18  * @author      Aleksander Zdyb <a.zdybsamsung.com>
19  * @version     1.0
20  * @brief       Commandline parser for Cyad
21  */
22
23 #ifndef SRC_CYAD_COMMANDLINEPARSER_CYADCOMMANDLINEPARSER_H_
24 #define SRC_CYAD_COMMANDLINEPARSER_CYADCOMMANDLINEPARSER_H_
25
26 #include <memory>
27
28 #include <cyad/CommandlineParser/CyadCommand.h>
29
30 namespace Cynara {
31
32 namespace CyadCmdlineArgs {
33     extern const char HELP;
34     extern const char * const HELP_LONG;
35
36     extern const char SET_BUCKET;
37     extern const char * const SET_BUCKET_LONG;
38
39     extern const char DELETE_BUCKET;
40     extern const char * const DELETE_BUCKET_LONG;
41
42     extern const char POLICY;
43     extern const char * const POLICY_LONG;
44
45     extern const char METADATA;
46     extern const char * const METADATA_LONG;
47
48     extern const char BUCKET;
49     extern const char * const BUCKET_LONG;
50
51     extern const char CLIENT;
52     extern const char * const CLIENT_LONG;
53
54     extern const char USER;
55     extern const char * const USER_LONG;
56
57     extern const char PRIVILEGE;
58     extern const char * const PRIVILEGE_LONG;
59
60     extern const char BULK;
61     extern const char * const BULK_LONG;
62 }
63
64 namespace CyadCmdlineErrors {
65     extern const char * const UNKNOWN_ERROR;
66     extern const char * const NO_OPTION;
67     extern const char * const UNKNOWN_OPTION;
68     extern const char * const UNKNOWN_OPTION_SET_BUCKET;
69     extern const char * const UNKNOWN_OPTION_DELETE_BUCKET;
70     extern const char * const UNKNOWN_OPTION_SET_POLICY;
71     extern const char * const NO_POLICY;
72     extern const char * const NO_BUCKET;
73     extern const char * const INVALID_POLICY;
74     extern const char * const OPTION_MISSING_SET_POLICY;
75     extern const char * const ARGUMENT_MISSING_SET_POLICY;
76 }
77
78 class CyadCommandlineParser {
79 public:
80     CyadCommandlineParser(int argc, char * const *argv);
81     virtual ~CyadCommandlineParser();
82
83     std::shared_ptr<CyadCommand> parseMain(void);
84     static PolicyType parsePolicyType(const std::string &rawPolicy);
85
86 protected:
87     std::shared_ptr<CyadCommand> parseSetBucket(const std::string &bucketId);
88     std::shared_ptr<CyadCommand> parseDeleteBucket(const std::string &bucketId);
89     std::shared_ptr<CyadCommand> parseSetPolicy(void);
90
91 private:
92     int m_argc;
93     char * const *m_argv;
94 };
95
96 } /* namespace Cynara */
97
98 #endif /* SRC_CYAD_COMMANDLINEPARSER_CYADCOMMANDLINEPARSER_H_ */