send showWindow event when app start over
[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     static HS_AppRecover* instance(void);
39     int init(afb_api_t api);
40     void startRecovery(afb_api_t api, recover_map &map);
41     bool registerRecoveredApp(const std::string &appid);
42     void screenUpdated(struct json_object *obj);
43
44 private:
45     void updateLastmode(std::set<std::string> &set);
46     bool isHomescreenApp(const std::string &appid) const;
47
48     const std::string key_ids = "ids";
49     static HS_AppRecover* me;
50     std::map<std::string, struct app_recover_info> m_recover_apps_list;
51     std::set<std::string> m_recovering_set;
52     std::set<std::string> m_lastmode_list;
53 };
54
55 #endif // HOMESCREEN_APPRECOVER_H