• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2021 Huawei Device Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #ifndef OHOS_RESTOOL_CONFIG_PARSER_H
17 #define OHOS_RESTOOL_CONFIG_PARSER_H
18 
19 #include<functional>
20 #include "resource_util.h"
21 
22 namespace OHOS {
23 namespace Global {
24 namespace Restool {
25 class ConfigParser {
26 public:
27     enum class ModuleType {
28         NONE = 0,
29         HAR = 1,
30         ENTRY = 2,
31         FEATURE = 3,
32         SHARED = 4,
33     };
34 
35     ConfigParser();
36     explicit ConfigParser(const std::string &filePath);
37     virtual ~ConfigParser();
38     uint32_t Init();
39     const std::string &GetPackageName() const;
40     const std::string &GetModuleName() const;
41     int32_t GetAbilityIconId() const;
42     int32_t GetAbilityLabelId() const;
43     bool SetAppIcon(std::string &icon, int32_t id);
44     bool SetAppLabel(std::string &label, int32_t id);
45     ModuleType GetModuleType() const;
46     uint32_t ParseRefence();
47     uint32_t Save(const std::string &filePath) const;
SetDependEntry(const bool isDenpend)48     void SetDependEntry(const bool isDenpend)
49     {
50         dependEntry = isDenpend;
51     }
IsDependEntry()52     bool IsDependEntry()
53     {
54         return dependEntry;
55     }
SetUseModule()56     static void SetUseModule()
57     {
58         useModule_ = true;
59     };
GetConfigName()60     static std::string GetConfigName()
61     {
62         return useModule_ ? MODULE_JSON : CONFIG_JSON;
63     };
64 private:
65     bool ParseModule(Json::Value &moduleNode);
66     bool ParseDistro(Json::Value &distroNode);
67     bool ParseAbilities(const Json::Value &abilites);
68     bool ParseAbilitiy(const Json::Value &ability, bool &isMainAbility);
69     bool IsMainAbility(const Json::Value &skills);
70     bool IsHomeAction(const Json::Value &actions);
71     bool dependEntry = false;
72     bool ParseRefImpl(Json::Value &parent, const std::string &key, Json::Value &node);
73     bool ParseJsonArrayRef(Json::Value &parent, const std::string &key, Json::Value &node);
74     bool ParseJsonStringRef(Json::Value &parent, const std::string &key, Json::Value &node);
75     bool GetRefIdFromString(std::string &value, bool &update, const std::string &match) const;
76     bool ParseModuleType(const std::string &type);
77     bool ParseAbilitiesForDepend(Json::Value &moduleNode);
78     std::string filePath_;
79     std::string packageName_;
80     std::string moduleName_;
81     ModuleType moduleType_;
82     Json::Value rootNode_;
83     std::string mainAbility_;
84     int32_t abilityIconId_;
85     int32_t abilityLabelId_;
86     static const std::map<std::string, ModuleType> MODULE_TYPES;
87     static const std::map<std::string, std::string> JSON_STRING_IDS;
88     static const std::map<std::string, std::string> JSON_ARRAY_IDS;
89     static bool useModule_;
90 };
91 }
92 }
93 }
94 #endif