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_REGISTER_THERMAL_HDI_CALLBACK, 34 SEND_RETRY_REGISTER_HDI_STATUS_LISTENER, 35 SEND_ACTION_HUB_LISTENER, 36 }; 37 38 ThermalsrvEventHandler(const std::shared_ptr<AppExecFwk::EventRunner> &runner, 39 const wptr<ThermalService> &service); 40 ~ThermalsrvEventHandler() = default; 41 void ProcessEvent(const AppExecFwk::InnerEvent::Pointer &event) override; 42 43 private: 44 wptr<ThermalService> service_; 45 }; 46 } // namespace PowerMgr 47 } // namespace OHOS 48 49 #endif // THERMALSRV_EVENT_HANDLER 50