f46846de1251e2387294de30466094c27283f7ae
[apps/agl-service-homescreen.git] / src / hs-apprecover.h
1 /*
2  * Copyright (c) 2019 TOYOTA MOTOR CORPORATION
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #ifndef HOMESCREEN_APPRECOVER_H
17 #define HOMESCREEN_APPRECOVER_H
18
19 #include <map>
20 #include <set>
21 #include "hs-helper.h"
22 #include "hs-config.h"
23
24 struct app_recover_info {
25     std::string recover_type;
26     bool visibility;
27 };
28
29 class HS_AppRecover {
30 public:
31     HS_AppRecover() = default;
32     ~HS_AppRecover() = default;
33     HS_AppRecover(HS_AppRecover const &) = delete;
34     HS_AppRecover &operator=(HS_AppRecover const &) = delete;
35     HS_AppRecover(HS_AppRecover &&) = delete;
36     HS_AppRecover &operator=(HS_AppRecover &&) = delete;
37
38     void startRecovery(afb_api_t api, recover_map &map);
39     bool registerRecoveredApp(std::string &appid);
40
41 private:
42
43     std::map<std::string, struct app_recover_info> m_recover_apps_list;
44     std::set<std::string> m_recovering_set;
45 };
46
47 #endif // HOMESCREEN_APPRECOVER_H