Implement --set-bucket and --delete-bucket 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
49 namespace CyadCmdlineErrors {
50     extern const char * const UNKNOWN_ERROR;
51     extern const char * const NO_OPTION;
52     extern const char * const UNKNOWN_OPTION;
53     extern const char * const UNKNOWN_OPTION_SET_BUCKET;
54     extern const char * const UNKNOWN_OPTION_DELETE_BUCKET;
55     extern const char * const NO_POLICY;
56     extern const char * const NO_BUCKET;
57     extern const char * const INVALID_POLICY;
58 }
59
60 class CyadCommandlineParser {
61 public:
62     CyadCommandlineParser(int argc, char * const *argv);
63     virtual ~CyadCommandlineParser();
64
65     std::shared_ptr<CyadCommand> parseMain(void);
66     static PolicyType parsePolicyType(const std::string &rawPolicy);
67
68 protected:
69     std::shared_ptr<CyadCommand> parseSetBucket(const std::string &bucketId);
70     std::shared_ptr<CyadCommand> parseDeleteBucket(const std::string &bucketId);
71
72 private:
73     int m_argc;
74     char * const *m_argv;
75 };
76
77 } /* namespace Cynara */
78
79 #endif /* SRC_CYAD_COMMANDLINEPARSER_CYADCOMMANDLINEPARSER_H_ */