1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
#include "AFBClient.h"
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#ifdef AFB
/* the callback interface for wsj1 */
static struct afb_wsj1_itf itf =
{
.on_hangup = AFBClient::onHangup,
.on_call = AFBClient::onCall,
.on_event = AFBClient::onEvent
};
#endif
AFBClient::AFBClient()
{
}
bool AFBClient::init()
{
/* get the default event loop */
int rc = sd_event_default(&loop);
if (rc < 0) {
fprintf(stderr, "Connection to default event loop failed: %s\n", strerror(-rc));
return false;
}
#ifdef AFB
/* connect the websocket wsj1 to the uri given by the first argument */
wsj1 = afb_ws_client_connect_wsj1(loop, wmURI, &itf, NULL);
if (wsj1 == NULL) {
fprintf(stderr, "Connection to %s failed: %m\n", wmURI);
return false;
}
#endif
return true;
}
void AFBClient::requestSurface(const char *label)
{
const char functionParamName[] = "{\"drawing_name\":\"";
char *parameter = (char *)malloc(strlen(functionParamName) + strlen(label) + 3);
strcpy(parameter, functionParamName);
strcat(parameter, label);
strcat(parameter, "\"}");
printf("requestSurface(%s): %s\n", label, parameter);
call(wmAPI, "request_surface", parameter);
}
void AFBClient::activateSurface(const char *label)
{
const char functionParamName[] = "{\"drawing_name\":\"";
char *parameter = (char *)malloc(strlen(functionParamName) + strlen(label) + 3);
strcpy(parameter, functionParamName);
strcat(parameter, label);
strcat(parameter, "\"}");
printf("activateSurface(%s): %s\n", label, parameter);
call(wmAPI, "activate_surface", parameter);
}
void AFBClient::deactivateSurface(const char *label)
{
}
void AFBClient::endDraw(const char *label)
{
}
/* called when wsj1 receives a method invocation */
void AFBClient::onCall(void *closure, afb_wsj1 *wsj1)
{
#ifdef AFB
int rc;
printf("ON-CALL %s/%s:\n%s\n", wmAPI, verb,
json_object_to_json_string_ext(afb_wsj1_msg_object_j(msg),
JSON_C_TO_STRING_PRETTY));
fflush(stdout);
rc = afb_wsj1_reply_error_s(msg, "\"unimplemented\"", NULL);
if (rc < 0)
fprintf(stderr, "replying failed: %m\n");
#endif
}
/* called when wsj1 receives an event */
void AFBClient::onEvent(void *closure, const char *event, afb_wsj1_msg *msg)
{
#ifdef AFB
printf("ON-EVENT %s:\n%s\n", event,
json_object_to_json_string_ext(afb_wsj1_msg_object_j(msg),
JSON_C_TO_STRING_PRETTY));
fflush(stdout);
#endif
}
/* called when wsj1 hangsup */
void AFBClient::onHangup(void *closure, afb_wsj1 *wsj1)
{
printf("ON-HANGUP\n");
fflush(stdout);
exit(0);
}
/* called when wsj1 receives a reply */
void AFBClient::onReply(void *closure, afb_wsj1_msg *msg)
{
#ifdef AFB
printf("ON-REPLY %s: %s\n%s\n", (char*)closure,
afb_wsj1_msg_is_reply_ok(msg) ? "OK" : "ERROR",
json_object_to_json_string_ext(afb_wsj1_msg_object_j(msg),
JSON_C_TO_STRING_PRETTY));
fflush(stdout);
free(closure);
#endif
}
/* makes a call */
void AFBClient::call(const char *api, const char *verb, const char *object)
{
#ifdef AFB
static int num = 0;
char *key;
int rc;
/* allocates an id for the request */
rc = asprintf(&key, "%d:%s/%s", ++num, api, verb);
/* send the request */
rc = afb_wsj1_call_s(wsj1, api, verb, object, AFBClient::onReply, key);
if (rc < 0)
fprintf(stderr, "calling %s/%s(%s) failed: %m\n", api, verb, object);
#endif
}
/* sends an event */
void AFBClient::event(const char *event, const char *object)
{
#ifdef AFB
int rc;
rc = afb_wsj1_send_event_s(wsj1, event, object);
if (rc < 0)
fprintf(stderr, "sending !%s(%s) failed: %m\n", event, object);
#endif
}
void AFBClient::emitSignalOrCall(const char *api, const char *verb, const char *object)
{
if (object == NULL || object[0] == 0)
object = "null";
if (api[0] == '!' && api[1] == 0)
event(verb, object);
else
call(api, verb, object);
}
|