Simplify functions for calls
[src/app-framework-binder.git] / src / afb-apis.c
1 /*
2  * Copyright (C) 2016, 2017 "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 <string.h>
24 #include <errno.h>
25
26 #include "afb-session.h"
27 #include "verbose.h"
28 #include "afb-apis.h"
29 #include "afb-context.h"
30 #include "afb-hook.h"
31 #include <afb/afb-req-itf.h>
32
33 struct api_desc {
34         struct afb_api api;
35         const char *name;
36 };
37
38 static struct api_desc *apis_array = NULL;
39 static int apis_count = 0;
40
41 /**
42  * Returns the current count of APIs
43  */
44 int afb_apis_count()
45 {
46         return apis_count;
47 }
48
49 /**
50  * Checks wether 'name' is a valid API name.
51  * @return 1 if valid, 0 otherwise
52  */
53 int afb_apis_is_valid_api_name(const char *name)
54 {
55         unsigned char c;
56
57         c = (unsigned char)*name;
58         if (c == 0)
59                 /* empty names aren't valid */
60                 return 0;
61
62         do {
63                 if (c < (unsigned char)'\x80') {
64                         switch(c) {
65                         default:
66                                 if (c > ' ')
67                                         break;
68                         case '"':
69                         case '#':
70                         case '%':
71                         case '&':
72                         case '\'':
73                         case '/':
74                         case '?':
75                         case '`':
76                         case '\\':
77                         case '\x7f':
78                                 return 0;
79                         }
80                 }
81                 c = (unsigned char)*++name;
82         } while(c != 0);
83         return 1;
84 }
85
86 /**
87  * Adds the api of 'name' described by 'api'.
88  * @param name the name of the api to add
89  * @param api the api
90  * @returns 0 in case of success or -1 in case
91  * of error with errno set:
92  *   - EINVAL if name isn't valid
93  *   - EEXIST if name already registered
94  *   - ENOMEM when out of memory
95  */
96 int afb_apis_add(const char *name, struct afb_api api)
97 {
98         struct api_desc *apis;
99         int i;
100
101         /* Checks the api name */
102         if (!afb_apis_is_valid_api_name(name)) {
103                 ERROR("invalid api name forbidden (name is '%s')", name);
104                 errno = EINVAL;
105                 goto error;
106         }
107
108         /* check previously existing plugin */
109         for (i = 0 ; i < apis_count ; i++) {
110                 if (!strcasecmp(apis_array[i].name, name)) {
111                         ERROR("api of name %s already exists", name);
112                         errno = EEXIST;
113                         goto error;
114                 }
115         }
116
117         /* allocates enough memory */
118         apis = realloc(apis_array, ((unsigned)apis_count + 1) * sizeof * apis);
119         if (apis == NULL) {
120                 ERROR("out of memory");
121                 errno = ENOMEM;
122                 goto error;
123         }
124         apis_array = apis;
125
126         /* record the plugin */
127         apis = &apis_array[apis_count];
128         apis->api = api;
129         apis->name = name;
130         apis_count++;
131
132         return 0;
133
134 error:
135         return -1;
136 }
137
138 void afb_apis_call(struct afb_req req, struct afb_context *context, const char *api, const char *verb)
139 {
140         int i;
141         const struct api_desc *a;
142
143         req = afb_hook_req_call(req, context, api, verb);
144         a = apis_array;
145         for (i = 0 ; i < apis_count ; i++, a++) {
146                 if (!strcasecmp(a->name, api)) {
147                         context->api_index = i;
148                         a->api.call(a->api.closure, req, context, verb);
149                         return;
150                 }
151         }
152         afb_req_fail(req, "fail", "api not found");
153 }
154
155 int afb_apis_start_service(const char *api, int share_session, int onneed)
156 {
157         int i;
158
159         for (i = 0 ; i < apis_count ; i++) {
160                 if (!strcasecmp(apis_array[i].name, api))
161                         return apis_array[i].api.service_start(apis_array[i].api.closure, share_session, onneed);
162         }
163         ERROR("can't find service %s", api);
164         return -1;
165 }
166
167 int afb_apis_start_all_services(int share_session)
168 {
169         int i, rc;
170
171         for (i = 0 ; i < apis_count ; i++) {
172                 rc = apis_array[i].api.service_start(apis_array[i].api.closure, share_session, 1);
173                 if (rc < 0)
174                         return rc;
175         }
176         return 0;
177 }
178