d422248ef217bee7a2f49fe4b745342e7eb2f9da
[apps/agl-service-homescreen.git] / src / hs-config.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_CONFIG_H
17 #define HOMESCREEN_CONFIG_H
18
19 #include <array>
20 #include <vector>
21 #include <unordered_map>
22 #include "hs-helper.h"
23
24 #define RECOVER_MAX 3
25
26 struct handshake_info {
27     int times;    // sleep times
28     int sleep;    // sleep x ms
29 };
30
31 struct recover_app_info {
32     std::string appid;  // application id like "dashboard"
33     bool visibility;    // the visibility when system starting
34 };
35
36 using recover_map = std::unordered_map<std::string, std::vector<struct recover_app_info>>;
37
38 class HS_Config {
39 public:
40     HS_Config() :  m_hs_conf(nullptr), m_lastmode(nullptr), m_handshake_info({20000, 50}) {}
41     ~HS_Config() {json_object_put(m_hs_conf);json_object_put(m_lastmode);}
42     HS_Config(HS_Config const &) = delete;
43     HS_Config &operator=(HS_Config const &) = delete;
44     HS_Config(HS_Config &&) = delete;
45     HS_Config &operator=(HS_Config &&) = delete;
46
47     int readConfig(void);
48     const struct handshake_info* getHandshakeInfo(void) const {return &m_handshake_info;}
49     recover_map& getRecoverMap(void) {return m_recover_map;}
50     static const std::array<std::string, RECOVER_MAX> keys_recover_type;   // based on hs-conf.json
51
52 private:
53     int parseConfig(void);
54     std::vector<struct recover_app_info> getRecoverAppInfo(struct json_object *obj);
55
56     const std::string hs_conf_json = "hs-conf.json";
57     const std::string lastmode_json = "lastmode.json";
58     const std::string key_handshake = "handshake";
59     const std::string key_times = "times";
60     const std::string key_sleep = "sleep";
61     const std::string key_recover = "recover";
62     const std::string key_appid = "appid";
63     const std::string key_visibility = "visibility";
64
65     struct json_object *m_hs_conf;
66     struct json_object *m_lastmode;
67     recover_map m_recover_map;
68     struct handshake_info m_handshake_info;
69 };
70 #endif // HOMESCREEN_CONFIG_H