• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 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 BUNDLE_ACTIVE_REPORT_HANDLER_H
17 #define BUNDLE_ACTIVE_REPORT_HANDLER_H
18 
19 #include "event_handler.h"
20 #include "event_runner.h"
21 
22 #include "ibundle_active_service.h"
23 #include "bundle_active_core.h"
24 
25 namespace OHOS {
26 namespace DeviceUsageStats {
27 class BundleActiveReportHandler : public AppExecFwk::EventHandler {
28 public:
29     explicit BundleActiveReportHandler(const std::shared_ptr<AppExecFwk::EventRunner> &runner);
30     ~BundleActiveReportHandler() = default;
31         /**
32      * Process the event. Developers should override this method.
33      *
34      * @param event The event should be processed.
35      */
36     void ProcessEvent(const AppExecFwk::InnerEvent::Pointer &event) override;
37     void Init(const std::shared_ptr<BundleActiveCore>& bundleActiveCore);
38     static const int32_t MSG_REPORT_EVENT = 0;
39     static const int32_t MSG_FLUSH_TO_DISK = 1;
40     static const int32_t MSG_REMOVE_USER = 2;
41     static const int32_t MSG_BUNDLE_UNINSTALLED = 3;
42     static const int32_t MSG_SWITCH_USER = 4;
43 
44 private:
45     std::shared_ptr<BundleActiveCore> bundleActiveCore_;
46 };
47 }  // namespace DeviceUsageStats
48 }  // namespace OHOS
49 #endif  // BUNDLE_ACTIVE_REPORT_HANDLER_H
50 
51