1 /*
2  * Copyright (c) 2024 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 MODULE_UPDATE_PRODUCER_H
17 #define MODULE_UPDATE_PRODUCER_H
18 
19 #include <csignal>
20 #include <unordered_set>
21 #include "module_update_queue.h"
22 
23 namespace OHOS {
24 namespace SysInstaller {
25 class ModuleUpdateProducer {
26 public:
27     ModuleUpdateProducer(
28         ModuleUpdateQueue &queue, std::unordered_map<int32_t, std::string> &saIdHmpMap,
29         std::unordered_set<std::string> &hmpSet, volatile sig_atomic_t &exit);
30     void Run();
31 
32 private:
33     void AddAbnormalSa();
34     void AddAbnormalApp();
35     ModuleUpdateQueue &queue_;
36     std::unordered_map<int32_t, std::string> &saIdHmpMap_;
37     std::unordered_set<std::string> &hmpNameSet_;
38     volatile sig_atomic_t &exit_;
39 };
40 } // SysInstaller
41 } // namespace OHOS
42 #endif // MODULE_UPDATE_PRODUCER_H