aboutsummaryrefslogtreecommitdiffstats
path: root/signal-composer-binding/signal-composer-apidef.h
blob: a652de511588f112750d5003869a0aa0138323db (plain)
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
static const char _afb_description_v2_signals_composer[] =
    "{\"openapi\":\"3.0.0\",\"$schema\":\"http:iot.bzh/download/openapi/schem"
    "a-3.0/default-schema.json\",\"info\":{\"description\":\"\",\"title\":\"s"
    "ignals-composer-service\",\"version\":\"4.0\",\"x-binding-c-generator\":"
    "{\"api\":\"signals-composer\",\"version\":2,\"prefix\":\"\",\"postfix\":"
    "\"\",\"start\":null,\"onevent\":\"onEvent\",\"preinit\":\"loadConf\",\"i"
    "nit\":\"execConf\",\"scope\":\"\",\"private\":false}},\"servers\":[{\"ur"
    "l\":\"ws://{host}:{port}/api/monitor\",\"description\":\"Signals compose"
    "r API connected to low level AGL services\",\"variables\":{\"host\":{\"d"
    "efault\":\"localhost\"},\"port\":{\"default\":\"1234\"}},\"x-afb-events\""
    ":[{\"$ref\":\"#/components/schemas/afb-event\"}]}],\"components\":{\"sch"
    "emas\":{\"afb-reply\":{\"$ref\":\"#/components/schemas/afb-reply-v2\"},\""
    "afb-event\":{\"$ref\":\"#/components/schemas/afb-event-v2\"},\"afb-reply"
    "-v2\":{\"title\":\"Generic response.\",\"type\":\"object\",\"required\":"
    "[\"jtype\",\"request\"],\"properties\":{\"jtype\":{\"type\":\"string\",\""
    "const\":\"afb-reply\"},\"request\":{\"type\":\"object\",\"required\":[\""
    "status\"],\"properties\":{\"status\":{\"type\":\"string\"},\"info\":{\"t"
    "ype\":\"string\"},\"token\":{\"type\":\"string\"},\"uuid\":{\"type\":\"s"
    "tring\"},\"reqid\":{\"type\":\"string\"}}},\"response\":{\"type\":\"obje"
    "ct\"}}},\"afb-event-v2\":{\"type\":\"object\",\"required\":[\"jtype\",\""
    "event\"],\"properties\":{\"jtype\":{\"type\":\"string\",\"const\":\"afb-"
    "event\"},\"event\":{\"type\":\"string\"},\"data\":{\"type\":\"object\"}}"
    "}},\"x-permissions\":{},\"responses\":{\"200\":{\"description\":\"A comp"
    "lex object array response\",\"content\":{\"application/json\":{\"schema\""
    ":{\"$ref\":\"#/components/schemas/afb-reply\"}}}}}},\"paths\":{\"/subscr"
    "ibe\":{\"description\":\"Subscribe to a signal object\",\"parameters\":["
    "{\"in\":\"query\",\"name\":\"event\",\"required\":false,\"schema\":{\"ty"
    "pe\":\"string\"}}],\"responses\":{\"200\":{\"$ref\":\"#/components/respo"
    "nses/200\"}}},\"/unsubscribe\":{\"description\":\"Unsubscribe previously"
    " suscribed signal objects.\",\"parameters\":[{\"in\":\"query\",\"name\":"
    "\"event\",\"required\":false,\"schema\":{\"type\":\"string\"}}],\"respon"
    "ses\":{\"200\":{\"$ref\":\"#/components/responses/200\"}}},\"/get\":{\"d"
    "escription\":\"Get informations about a resource or element\",\"response"
    "s\":{\"200\":{\"$ref\":\"#/components/responses/200\"}}},\"/loadConf\":{"
    "\"description\":\"Load config file in directory passed as argument searc"
    "hing for pattern 'sig' in filename\",\"parameters\":[{\"in\":\"query\",\""
    "name\":\"path\",\"required\":true,\"schema\":{\"type\":\"string\"}}],\"r"
    "esponses\":{\"200\":{\"$ref\":\"#/components/responses/200\"}}}}}"
;

 void subscribe(struct afb_req req);
 void unsubscribe(struct afb_req req);
 void get(struct afb_req req);
 void loadConf(struct afb_req req);

static const struct afb_verb_v2 _afb_verbs_v2_signals_composer[] = {
    {
        .verb = "subscribe",
        .callback = subscribe,
        .auth = NULL,
        .info = "Subscribe to a signal object",
        .session = AFB_SESSION_NONE_V2
    },
    {
        .verb = "unsubscribe",
        .callback = unsubscribe,
        .auth = NULL,
        .info = "Unsubscribe previously suscribed signal objects.",
        .session = AFB_SESSION_NONE_V2
    },
    {
        .verb = "get",
        .callback = get,
        .auth = NULL,
        .info = "Get informations about a resource or element",
        .session = AFB_SESSION_NONE_V2
    },
    {
        .verb = "loadConf",
        .callback = loadConf,
        .auth = NULL,
        .info = "Load config file in directory passed as argument searching for pattern 'sig' in filename",
        .session = AFB_SESSION_NONE_V2
    },
    {
        .verb = NULL,
        .callback = NULL,
        .auth = NULL,
        .info = NULL,
        .session = 0
	}
};

const struct afb_binding_v2 afbBindingV2 = {
    .api = "signals-composer",
    .specification = _afb_description_v2_signals_composer,
    .info = "",
    .verbs = _afb_verbs_v2_signals_composer,
    .preinit = loadConf,
    .init = execConf,
    .onevent = onEvent,
    .noconcurrency = 0
};