1b2eb8ff4a8a1fab9583e4d5b6459b3f9806e0a1
[apps/agl-service-homescreen.git] / src / hs-client.h
1 /*
2  * Copyright (c) 2018 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
17 #ifndef HOMESCREEN_CLIENT_H
18 #define HOMESCREEN_CLIENT_H
19
20 #include <string>
21 #include <unordered_map>
22 #include "hs-helper.h"
23
24
25 class HS_Client {
26 public:
27     HS_Client(afb_req_t request, const char* id) : HS_Client(request, std::string(id)){}
28     HS_Client(afb_req_t request, std::string id);
29     HS_Client(HS_Client&) = delete;
30     HS_Client &operator=(HS_Client&) = delete;
31     ~HS_Client();
32
33     int tap_shortcut(const char* appname);
34     int on_screen_message (afb_req_t request, const char* message);
35     int on_screen_reply (afb_req_t request, const char* message);
36     int subscribe(afb_req_t request, const char* event);
37     int unsubscribe(afb_req_t request, const char* event);
38
39 private:
40     bool checkEvent(const char* event);
41
42 private:
43     std::string my_id;
44     afb_event_t my_event;
45     std::unordered_map<std::string, int> event_list;
46
47 };
48
49 #endif // HOMESCREEN_CLIENT_H