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