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 THERMALSRV_EVENT_HANDLER 17 #define THERMALSRV_EVENT_HANDLER 18 19 #include <set> 20 #include <event_handler.h> 21 #include "delayed_sp_singleton.h" 22 #include "ithermal_action.h" 23 24 namespace OHOS { 25 namespace PowerMgr { 26 class ThermalService; 27 class ThermalsrvEventHandler : public AppExecFwk::EventHandler { 28 public: 29 enum { 30 SEND_THERMAL_LEVEL_MSG, 31 SEND_EXECUTION_ACTION_MSG, 32 SEND_POPUP_MSG, 33 SEND_GET_THERMAL_HDF_SERVICE_MSG, 34 }; 35 36 ThermalsrvEventHandler(const std::shared_ptr<AppExecFwk::EventRunner> &runner, 37 const wptr<ThermalService> &service); 38 ~ThermalsrvEventHandler() = default; 39 void ProcessEvent(const AppExecFwk::InnerEvent::Pointer &event) override; 40 41 private: 42 wptr<ThermalService> service_; 43 }; 44 } // namespace PowerMgr 45 } // namespace OHOS 46 47 #endif // THERMALSRV_EVENT_HANDLER