Trying to fix the link with wsj1
[staging/windowmanager.git] / AFBClient.h
1 #ifndef AFBCLIENT_H
2 #define AFBCLIENT_H
3
4 #include <systemd/sd-event.h>
5
6 #ifdef AFB
7 extern "C"
8 {
9 #include <json-c/json.h>
10
11 #include "afb-wsj1.h"
12 #include "afb-ws-client.h"
13 }
14 #endif
15
16 class AFBClient
17 {
18     explicit AFBClient();
19     AFBClient(const AFBClient& that) = delete;
20     virtual~AFBClient();
21
22 public:
23     static AFBClient &instance()
24     {
25         static AFBClient obj;
26         return obj;
27     }
28
29     bool init();
30     void requestSurface(const char *label);
31     void activateSurface(const char *label);
32     void deactivateSurface(const char *label);
33     void endDraw(const char *label);
34
35     static void onCall(void *closure, const char *api, const char *verb, struct afb_wsj1_msg *msg);
36     static void onEvent(void *closure, const char *event, struct afb_wsj1_msg *msg);
37     static void onHangup(void *closure, struct afb_wsj1 *wsj1);
38     static void onReply(void *closure, struct afb_wsj1_msg *msg);
39     static void onRequestSurfaceReply(void *closure, struct afb_wsj1_msg *msg);
40
41 private:
42     void call(const char *api, const char *verb, const char *object);
43     void event(const char *event, const char *object);
44
45     struct afb_wsj1 *wsj1;
46     struct afb_wsj1_itf itf;
47
48     sd_event *loop;
49     static const char *wmURI;
50     static const char *wmAPI;
51 };
52
53 #endif // AFBCLIENT_H