• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2023 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 #include <fstream>
17 #include <unistd.h>
18 
19 #include "config_policy_utils.h"
20 #include "power_log.h"
21 #include "setting_helper.h"
22 #include "wakeup_source_parser.h"
23 #include "json/reader.h"
24 #include "json/value.h"
25 
26 namespace OHOS {
27 namespace PowerMgr {
28 
29 namespace {
30 static const std::string POWER_WAKEUP_CONFIG_FILE = "etc/power_config/power_wakeup.json";
31 static const std::string VENDOR_POWER_WAKEUP_CONFIG_FILE = "/vendor/etc/power_config/power_wakeup.json";
32 static const std::string SYSTEM_POWER_WAKEUP_CONFIG_FILE = "/system/etc/power_config/power_wakeup.json";
33 static const uint32_t SINGLE_CLICK = static_cast<uint32_t>(WakeUpAction::CLICK_SINGLE);
34 static const uint32_t DOUBLE_CLICK = static_cast<uint32_t>(WakeUpAction::CLICK_DOUBLE);
35 } // namespace
36 bool g_isFirstSettingUpdated = true;
37 
ParseSources()38 std::shared_ptr<WakeupSources> WakeupSourceParser::ParseSources()
39 {
40     bool isWakeupSourcesSettingValid = SettingHelper::IsWakeupSourcesSettingValid();
41     POWER_HILOGI(FEATURE_WAKEUP, "ParseSources setting=%{public}d", isWakeupSourcesSettingValid);
42     std::string configJsonStr;
43     if (isWakeupSourcesSettingValid) {
44         std::string sourcesSettingStr = SettingHelper::GetSettingWakeupSources();
45         configJsonStr = sourcesSettingStr;
46 #ifdef POWER_MANAGER_ENABLE_WATCH_UPDATE_ADAPT
47         // this branch means use config file for update scene in watch
48         if (sourcesSettingStr.find(WakeupSources::TP_TOUCH_KEY) == std::string::npos) {
49             configJsonStr = GetWakeupSourcesByConfig();
50             POWER_HILOGW(FEATURE_WAKEUP, "update scene need use (config file)");
51         }
52 #endif
53     } else {
54         configJsonStr = GetWakeupSourcesByConfig();
55     }
56     g_isFirstSettingUpdated = true;
57     std::shared_ptr<WakeupSources> parseSources = ParseSources(configJsonStr);
58     if (parseSources->GetParseErrorFlag()) {
59         POWER_HILOGI(FEATURE_WAKEUP, "call GetWakeupSourcesByConfig again");
60         configJsonStr = GetWakeupSourcesByConfig();
61         parseSources = ParseSources(configJsonStr);
62     }
63     if (parseSources != nullptr) {
64         SettingHelper::SetSettingWakeupSources(configJsonStr);
65     }
66     g_isFirstSettingUpdated = false;
67     return parseSources;
68 }
69 
GetWakeupSourcesByConfig()70 const std::string WakeupSourceParser::GetWakeupSourcesByConfig()
71 {
72     std::string targetPath;
73     bool ret = GetTargetPath(targetPath);
74     if (ret == false) {
75         return "";
76     }
77 
78     POWER_HILOGI(FEATURE_WAKEUP, "use targetPath=%{public}s", targetPath.c_str());
79     std::ifstream inputStream(targetPath.c_str(), std::ios::in | std::ios::binary);
80     return std::string(std::istreambuf_iterator<char> {inputStream}, std::istreambuf_iterator<char> {});
81 }
82 
GetTargetPath(std::string & targetPath)83 bool WakeupSourceParser::GetTargetPath(std::string& targetPath)
84 {
85     targetPath.clear();
86     char buf[MAX_PATH_LEN];
87     char* path = GetOneCfgFile(POWER_WAKEUP_CONFIG_FILE.c_str(), buf, MAX_PATH_LEN);
88     if (path != nullptr && *path != '\0') {
89         POWER_HILOGI(FEATURE_WAKEUP, "use policy path=%{public}s", path);
90         targetPath = path;
91         return true;
92     }
93 
94     if (access(VENDOR_POWER_WAKEUP_CONFIG_FILE.c_str(), F_OK | R_OK) == -1) {
95         POWER_HILOGE(FEATURE_WAKEUP, "vendor wakeup config is not exist or permission denied");
96         if (access(SYSTEM_POWER_WAKEUP_CONFIG_FILE.c_str(), F_OK | R_OK) == -1) {
97             POWER_HILOGE(FEATURE_WAKEUP, "system wakeup config is not exist or permission denied");
98             return false;
99         } else {
100             targetPath = SYSTEM_POWER_WAKEUP_CONFIG_FILE;
101         }
102     } else {
103         targetPath = VENDOR_POWER_WAKEUP_CONFIG_FILE;
104     }
105 
106     return true;
107 }
108 
ParseSources(const std::string & jsonStr)109 std::shared_ptr<WakeupSources> WakeupSourceParser::ParseSources(const std::string& jsonStr)
110 {
111     std::shared_ptr<WakeupSources> parseSources = std::make_shared<WakeupSources>();
112     Json::Reader reader;
113     Json::Value root;
114     std::string errors;
115     if (!reader.parse(jsonStr.data(), jsonStr.data() + jsonStr.size(), root)) {
116         POWER_HILOGE(FEATURE_WAKEUP, "json parse error");
117         parseSources->SetParseErrorFlag(true);
118         return parseSources;
119     }
120 
121     if (root.isNull() || !root.isObject()) {
122         POWER_HILOGE(FEATURE_WAKEUP, "json root invalid[%{public}s]", jsonStr.c_str());
123         parseSources->SetParseErrorFlag(true);
124         return parseSources;
125     }
126 
127     Json::Value::Members members = root.getMemberNames();
128     for (auto iter = members.begin(); iter != members.end(); iter++) {
129         std::string key = *iter;
130         Json::Value valueObj = root[key];
131 
132         bool ret = ParseSourcesProc(parseSources, valueObj, key);
133         if (ret == false) {
134             POWER_HILOGI(FEATURE_WAKEUP, "lost map config key");
135             continue;
136         }
137     }
138 
139     return parseSources;
140 }
141 
ParseSourcesProc(std::shared_ptr<WakeupSources> & parseSources,Json::Value & valueObj,std::string & key)142 bool WakeupSourceParser::ParseSourcesProc(
143     std::shared_ptr<WakeupSources>& parseSources, Json::Value& valueObj, std::string& key)
144 {
145     bool enable = true;
146     uint32_t click = DOUBLE_CLICK;
147     WakeupDeviceType wakeupDeviceType = WakeupDeviceType::WAKEUP_DEVICE_UNKNOWN;
148     if (!valueObj.isNull() && valueObj.isObject()) {
149         Json::Value enableValue = valueObj[WakeupSource::ENABLE_KEY];
150         Json::Value clickValue = valueObj[WakeupSource::KEYS_KEY];
151         if (!clickValue.isNull() && clickValue.isUInt()) {
152             click = (clickValue.asUInt() == SINGLE_CLICK || clickValue.asUInt() == DOUBLE_CLICK) ? clickValue.asUInt() :
153                                                                                                    DOUBLE_CLICK;
154         }
155         if (enableValue.isBool()) {
156             enable = enableValue.asBool();
157         }
158     }
159 
160     wakeupDeviceType = WakeupSources::mapWakeupDeviceType(key, click);
161     POWER_HILOGI(FEATURE_WAKEUP, "key=%{public}s, type=%{public}u, click=%{public}u, enable=%{public}d",
162         key.c_str(), wakeupDeviceType, click, enable);
163 
164     if (wakeupDeviceType == WakeupDeviceType::WAKEUP_DEVICE_UNKNOWN) {
165         return false;
166     }
167 
168     if (!enable && g_isFirstSettingUpdated) {
169         if (wakeupDeviceType == WakeupDeviceType::WAKEUP_DEVICE_DOUBLE_CLICK
170             && (!SettingHelper::IsWakeupDoubleSettingValid())) {
171             SettingHelper::SetSettingWakeupDouble(enable);
172             POWER_HILOGI(FEATURE_WAKEUP, "the setting wakeupDoubleClick enable=%{public}d", enable);
173         }
174 
175         if (wakeupDeviceType == WakeupDeviceType::WAKEUP_DEVICE_PICKUP
176             && (!SettingHelper::IsWakeupPickupSettingValid())) {
177             SettingHelper::SetSettingWakeupPickup(enable);
178             POWER_HILOGI(FEATURE_WAKEUP, "the setting pickup enable=%{public}d", enable);
179         }
180     }
181 
182     if (enable == true) {
183         WakeupSource wakeupSource = WakeupSource(wakeupDeviceType, enable, click);
184         parseSources->PutSource(wakeupSource);
185     }
186 
187     SetSettingsToDatabase(wakeupDeviceType, enable);
188     return true;
189 }
190 
SetSettingsToDatabase(WakeupDeviceType type,bool enable)191 void WakeupSourceParser::SetSettingsToDatabase(WakeupDeviceType type, bool enable)
192 {
193     if (type == WakeupDeviceType::WAKEUP_DEVICE_LID) {
194         if (!SettingHelper::IsWakeupLidSettingValid()) {
195             SettingHelper::SetSettingWakeupLid(enable);
196             POWER_HILOGI(FEATURE_WAKEUP, "the setting lidwakeup enable=%{public}d", enable);
197         }
198     }
199 }
200 } // namespace PowerMgr
201 } // namespace OHOS