• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2021-2022 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 BATTERY_STATS_DETECTOR_H
17 #define BATTERY_STATS_DETECTOR_H
18 
19 #include <memory>
20 #include <string>
21 
22 #include "refbase.h"
23 
24 #include "stats_log.h"
25 #include "stats_utils.h"
26 
27 namespace OHOS {
28 namespace PowerMgr {
29 class BatteryStatsDetector {
30 public:
BatteryStatsDetector()31     explicit BatteryStatsDetector()
32     {
33         STATS_HILOGI(COMP_SVC, "BatteryStatsDetector instance is created");
34     }
35     ~BatteryStatsDetector() = default;
36     void HandleStatsChangedEvent(StatsUtils::StatsData data);
37 private:
38     bool IsDurationRelated(StatsUtils::StatsType type);
39     bool IsStateRelated(StatsUtils::StatsType type);
40     void HandleDebugInfo(StatsUtils::StatsData data);
41     void HandleThermalInfo(StatsUtils::StatsData data, int64_t bootTimeMs, std::string& debugInfo);
42     void HandleBatteryInfo(StatsUtils::StatsData data, int64_t bootTimeMs, std::string& debugInfo);
43     void HandleDispalyInfo(StatsUtils::StatsData data, int64_t bootTimeMs, std::string& debugInfo);
44     void HandleWakelockInfo(StatsUtils::StatsData data, int64_t bootTimeMs, std::string& debugInfo);
45     void HandleWorkschedulerInfo(StatsUtils::StatsData data, int64_t bootTimeMs, std::string& debugInfo);
46     void HandlePhoneInfo(StatsUtils::StatsData data, int64_t bootTimeMs, std::string& debugInfo);
47     void HandleFlashlightInfo(StatsUtils::StatsData data, int64_t bootTimeMs, std::string& debugInfo);
48     void HandleDistributedSchedulerInfo(StatsUtils::StatsData data, int64_t bootTimeMs, std::string& debugInfo);
49 };
50 } // namespace PowerMgr
51 } // namespace OHOS
52 #endif // BATTERY_STATS_DETECTOR_H