afb-client-demo/afb-ws: remove dependency on afb-common.*
[src/app-framework-binder.git] / src / afb-client-demo.c
1 /*
2  * Copyright (C) 2015, 2016 "IoT.bzh"
3  * Author "Fulup Ar Foll"
4  * Author José Bollo <jose.bollo@iot.bzh>
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *   http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 #define _GNU_SOURCE
20
21 #include <stdlib.h>
22 #include <stdio.h>
23 #include <stdint.h>
24 #include <string.h>
25 #include <unistd.h>
26 #include <fcntl.h>
27 #include <sys/stat.h>
28 #include <sys/types.h>
29 #include <errno.h>
30
31 #include <systemd/sd-event.h>
32
33 #include "afb-wsj1.h"
34 #include "afb-ws-client.h"
35
36 /* declaration of functions */
37 static void on_hangup(void *closure, struct afb_wsj1 *wsj1);
38 static void on_call(void *closure, const char *api, const char *verb, struct afb_wsj1_msg *msg);
39 static void on_event(void *closure, const char *event, struct afb_wsj1_msg *msg);
40 static int io_event_callback(sd_event_source *src, int fd, uint32_t revents, void *closure);
41 static void emit(const char *api, const char *verb, const char *object);
42
43 /* the callback interface for wsj1 */
44 static struct afb_wsj1_itf itf = {
45         .on_hangup = on_hangup,
46         .on_call = on_call,
47         .on_event = on_event
48 };
49
50 /* global variables */
51 static struct afb_wsj1 *wsj1;
52 static int exonrep;
53 static int callcount;
54 static sd_event_source *evsrc;
55
56 /* print usage of the program */
57 static void usage(int status, char *arg0)
58 {
59         char *name = strrchr(arg0, '/');
60         name = name ? name + 1 : arg0;
61         fprintf(status ? stderr : stdout, "usage: %s uri [api verb [data]]\n", name);
62         exit(status);
63 }
64
65 /* entry function */
66 int main(int ac, char **av, char **env)
67 {
68         /* check the argument count */
69         if (ac != 2 && ac != 4 && ac != 5)
70                 usage(1, av[0]);
71
72         /* emit error and exit if requested */
73         if (!strcmp(av[1], "-h") || !strcmp(av[1], "--help"))
74                 usage(0, av[0]);
75
76         /* connect the websocket wsj1 to the uri given by the first argument */
77         wsj1 = afb_ws_client_connect_wsj1(av[1], &itf, NULL);
78         if (wsj1 == NULL) {
79                 fprintf(stderr, "connection to %s failed: %m\n", av[1]);
80                 return 1;
81         }
82
83         /* test the behaviour */
84         if (ac == 2) {
85                 /* get requests from stdin */
86                 fcntl(0, F_SETFL, O_NONBLOCK);
87                 sd_event_add_io(afb_ws_client_get_event_loop(), &evsrc, 0, EPOLLIN, io_event_callback, NULL);
88         } else {
89                 /* the request is defined by the arguments */
90                 exonrep = 1;
91                 emit(av[2], av[3], av[4]);
92         }
93
94         /* loop until end */
95         for(;;)
96                 sd_event_run(afb_ws_client_get_event_loop(), 30000000);
97         return 0;
98 }
99
100 /* called when wsj1 hangsup */
101 static void on_hangup(void *closure, struct afb_wsj1 *wsj1)
102 {
103         printf("ON-HANGUP\n");
104         exit(0);
105 }
106
107 /* called when wsj1 receives a method invocation */
108 static void on_call(void *closure, const char *api, const char *verb, struct afb_wsj1_msg *msg)
109 {
110         int rc;
111         printf("ON-CALL %s/%s(%s)\n", api, verb, afb_wsj1_msg_object_s(msg));
112         rc = afb_wsj1_reply_error_s(msg, "\"unimplemented\"", NULL);
113         if (rc < 0)
114                 fprintf(stderr, "replying failed: %m\n");
115 }
116
117 /* called when wsj1 receives an event */
118 static void on_event(void *closure, const char *event, struct afb_wsj1_msg *msg)
119 {
120         printf("ON-EVENT %s(%s)\n", event, afb_wsj1_msg_object_s(msg));
121 }
122
123 /* called when wsj1 receives a reply */
124 static void on_reply(void *closure, struct afb_wsj1_msg *msg)
125 {
126         printf("ON-REPLY %s: %s\n", (char*)closure, afb_wsj1_msg_object_s(msg));
127         free(closure);
128         callcount--;
129         if (exonrep && !callcount)
130                 //afb_wsj1_hangup(afb_wsj1_msg_wsj1(msg));
131                 exit(0);
132 }
133
134 /* makes a call */
135 static void call(const char *api, const char *verb, const char *object)
136 {
137         static int num = 0;
138         char *key;
139         int rc;
140
141         /* allocates an id for the request */
142         rc = asprintf(&key, "%d:%s/%s", ++num, api, verb);
143
144         /* send the request */
145         callcount++;
146         rc = afb_wsj1_call_s(wsj1, api, verb, object, on_reply, key);
147         if (rc < 0) {
148                 fprintf(stderr, "calling %s/%s(%s) failed: %m\n", api, verb, object);
149                 callcount--;
150         }
151 }
152
153 /* sends an event */
154 static void event(const char *event, const char *object)
155 {
156         int rc;
157
158         rc = afb_wsj1_send_event_s(wsj1, event, object);
159         if (rc < 0)
160                 fprintf(stderr, "sending !%s(%s) failed: %m\n", event, object);
161 }
162
163 /* emits either a call (when api!='!') or an event */
164 static void emit(const char *api, const char *verb, const char *object)
165 {
166         if (object == NULL || object[0] == 0)
167                 object = "null";
168         if (api[0] == '!' && api[1] == 0)
169                 event(verb, object);
170         else
171                 call(api, verb, object);
172 }
173
174 /* called when something happens on stdin */
175 static int io_event_callback(sd_event_source *src, int fd, uint32_t revents, void *closure)
176 {
177         static size_t count = 0;
178         static char line[16384];
179         static char sep[] = " \t";
180         static char sepnl[] = " \t\n";
181
182         ssize_t rc;
183         size_t pos;
184
185         /* read the buffer */
186         do { rc = read(0, line + count, sizeof line - count); } while (rc < 0 && errno == EINTR);
187         if (rc < 0) {
188                 fprintf(stderr, "read error: %m\n");
189                 exit(1);
190         }
191         if (rc == 0) {
192                 if (!callcount)
193                         exit(0);
194                 exonrep = 1;
195                 sd_event_source_unref(evsrc);
196         }
197         count += (size_t)rc;
198
199         /* normalise the buffer content */
200         /* TODO: handle backspace \x7f ? */
201
202         /* process the lines */
203         pos = 0;
204         for(;;) {
205                 size_t i, api[2], verb[2], rest[2];
206                 i = pos;
207                 while(i < count && strchr(sep, line[i])) i++;
208                 api[0] = i; while(i < count && !strchr(sepnl, line[i])) i++; api[1] = i;
209                 while(i < count && strchr(sep, line[i])) i++;
210                 verb[0] = i; while(i < count && !strchr(sepnl, line[i])) i++; verb[1] = i;
211                 while(i < count && strchr(sep, line[i])) i++;
212                 rest[0] = i; while(i < count && line[i] != '\n') i++; rest[1] = i;
213                 if (i == count) break;
214                 line[i++] = 0;
215                 if (api[0] == api[1] || verb[0] == verb[1])
216                         fprintf(stderr, "bad line: %s\n", line+pos);
217                 else {
218                         line[api[1]] = line[verb[1]] = 0;
219                         emit(line + api[0], line + verb[0], line + rest[0]);
220                 }
221                 pos = i;
222         }
223         count -= pos;
224         if (count == sizeof line) {
225                 fprintf(stderr, "overflow\n");
226                 exit(1);
227         }
228         if (count)
229                 memmove(line, line + pos, count);
230         return 1;
231 }
232