add handshake loop
[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     std::string after;
28 };
29
30 class HS_AppRecover {
31 public:
32     HS_AppRecover() = default;
33     ~HS_AppRecover() = default;
34     HS_AppRecover(HS_AppRecover const &) = delete;
35     HS_AppRecover &operator=(HS_AppRecover const &) = delete;
36     HS_AppRecover(HS_AppRecover &&) = delete;
37     HS_AppRecover &operator=(HS_AppRecover &&) = delete;
38
39     static HS_AppRecover* instance(void);
40     int init(afb_api_t api);
41     void setRecoverMap(recover_map &map) {recover_app_map.swap(map);}
42     void startRecovery(afb_api_t api);
43     bool registerRecoveredApp(afb_api_t api, const std::string &appid);
44     void screenUpdated(struct json_object *obj);
45
46 private:
47     void startApplication(afb_api_t api, const std::string &appid);
48     void updateLastmode(std::set<std::string> &set);
49     bool isHomescreenApp(const std::string &appid) const;
50
51     const std::string key_ids = "ids";
52     static HS_AppRecover* me;
53     std::map<std::string, struct app_recover_info> m_recover_apps_list;
54     std::set<std::string> m_recovering_set;
55     std::map<std::string, std::set<std::string>> m_wait_recover_set;
56     std::set<std::string> m_lastmode_list;
57     recover_map recover_app_map;
58 };
59
60 #endif // HOMESCREEN_APPRECOVER_H