-
Notifications
You must be signed in to change notification settings - Fork 0
/
coap.c
236 lines (177 loc) · 7.22 KB
/
coap.c
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
#include <coap.h>
#include <string.h>
#include "periph/gpio.h"
#define MAX_RESPONSE_LEN 500
static uint8_t response[MAX_RESPONSE_LEN] = { 0 };
/* Uma explicação MUITO boa de ler sobre o que acontece aqui:
* http://watr.li/microcoap-and-ff-copper.html */
/* Handlers para os endpoints (endereços, recursos...)
* São chamados por coap_handle_req() localizada em RIOT/pkg/microcoap/microcoap/coap.c */
static int handle_get_well_known_core(coap_rw_buffer_t *scratch,
const coap_packet_t *inpkt,
coap_packet_t *outpkt,
uint8_t id_hi, uint8_t id_lo);
static int handle_get_riot_board(coap_rw_buffer_t *scratch,
const coap_packet_t *inpkt,
coap_packet_t *outpkt,
uint8_t id_hi, uint8_t id_lo);
/* Definições de endpoints (os endereços dos recursos)
* Por default o RIOT só suporta 2 'níveis' de profundidade, mas tu pode
* definir mais mudando MAX_SEGMENTS em RIOT/pkg/microcoap/microcoap/coap.h */
static const coap_endpoint_path_t path_well_known_core =
{ 2, { ".well-known", "core" } };
static const coap_endpoint_path_t path_riot_board =
{ 2, { "riot", "board" } };
static const coap_endpoint_path_t path_led =
{1, { "led" } };
/*
* No arquivo RIOT/pkg/microcoap/microcoap/coap.h
*
* A função coap_handle_req() definida em RIOT/pkg/microcoap/microcoap/coap.c
* espera uma array de endpoints chamada "endpoints" externa.
*
typedef struct
{
coap_method_t method; // GET, PUT, POST, etc...
coap_endpoint_func handler; // Função de callback para a requisição que chegar...
const coap_endpoint_path_t *path; // ...neste recurso.
const char *core_attr; // Atributo CT definido no RFC7252, seção 7.2.1
* Tem alguma coisa aqui também: http://tools.ietf.org/html/rfc6690
* Ele serve como um Content-type HTTP codificado númericamente pra reduzir o tamanho.
* Tem uma lista de definições aqui:
* http://tools.ietf.org/html/draft-ietf-core-coap-18#section-12.3
*
* Tem uma enumeração definida em RIOT/pkg/microcoap/microcoap/coap.h:103 com alguns
* tipos (os dois usados pelos handlers do exemplo (zero e quarenta)).
*
* coap_make_response() simplesmente joga esse valor na resposta. Quem interpreta ele
* e decide o que fazer com o payload deve ser quem inicia a requisição (assim como HTTP).
} coap_endpoint_t; */
const coap_endpoint_t endpoints[] =
{
{ COAP_METHOD_GET, handle_get_well_known_core,
&path_well_known_core, "ct=40" },
{ COAP_METHOD_GET, handle_get_riot_board,
&path_riot_board, "ct=0" },
{ COAP_METHOD_GET, handle_post_led,
&path_led, "ct=0"}, // content-type: texto (COAP_CONTENTTYPE_TEXT_PLAIN)
/* marks the end of the endpoints array: */
{ (coap_method_t)0, NULL, NULL, NULL }
};
static int handle_post_led(coap_rw_buffer_t *scratch,
const coap_packet_t *inpkt, coap_packet_t *outpkt,
uint8_t id_hi, uint8_t id_lo)
{
static uint8_t estado_led = 0;
int mensagem_len[4];
int final_msg_len;
enum{TROCOU=0, NTROCOU, ON, OFF};
const char * mensagens[] = {"Estado do LED trocou para ",
"Estado do LED já era ",
"ligado.",
"desligado."};
mensagem_len[TROCOU] = strlen(mensagens[TROCOU]);
mensagem_len[NTROCOU] = strlen(mensagens[NROCOU]);
mensagem_len[ON] = strlen(mensagens[ON]);
mensagem_len[OFF] = strlen(mensagens[OFF]);
enum{CM_LED_TOGGLE, CM_LED_ON, CM_LED_OFF};
printf("handle_post_led - payload: %s\n", inpkt->payload->p);
/* Não sei se o payload termina com \0 ou \n, então preciso checar */
if(inpkt->payload->len > 2){
/* Se trocou o estado, envia "Estado do LED trocou para <estado>."
* Se não trocou estado, "Estado do LED já era <estado>."
*
* Não ficou muito elegante. */
if( strncmp( inpkt->payload->p, "toggle", 2 )==0 )
{
if(estado_led)
estado_led = 0;
else
estado_led = 1;
memcpy(response, mensagens[TROCOU], mensagem_len[TROCOU]);
memcpy((response+TROCOU), mensagens[ estado_led?ON:OFF ], mensagem_len[ estado_led?ON:OFF ]);
final_msg_len = TROCOU+(estado_led?ON:OFF);
}
else if( strncmp( inpkt->payload->p, "on", 2 ) == 0)
{
if(!estado_led){
memcpy(response, mensagens[TROCOU], mensagem_len[TROCOU]);
memcpy((response+TROCOU), mensagens[ON], mensagem_len[ON]);
final_msg_len = TROCOU+ON;
}else{
memcpy(response, mensagens[NTROCOU], mensagem_len[NTROCOU]);
memcpy((response+NTROCOU), mensagens[ON], mensagem_len[ON]);
final_msg_len = NTROCOU+ON;
}
estado_led = 1;
}
else if( strncmp( inpkt->payload->p, "off", 2 ) == 0)
{
if(estado_led){
memcpy(response, mensagens[TROCOU], mensagem_len[TROCOU]);
memcpy((response+TROCOU), mensagens[OFF], mensagem_len[OFF]);
final_msg_len = TROCOU+OFF;
}else{
memcpy(response, mensagens[NTROCOU], mensagem_len[NTROCOU]);
memcpy((response+NTROCOU), mensagens[OFF], mensagem_len[OFF]);
final_msg_len = NTROCOU+OFF;
}
estado_led = 0;
}
if(estado_led)
LED_ON;
else
LED_OFF;
}
return coap_make_response(scratch, outpkt, (const uint8_t *)response, final_msg_len,
id_hi, id_lo, &inpkt->tok, COAP_RSPCODE_CONTENT,
COAP_CONTENTTYPE_TEXT_PLAIN);
}
static int handle_get_well_known_core(coap_rw_buffer_t *scratch,
const coap_packet_t *inpkt, coap_packet_t *outpkt,
uint8_t id_hi, uint8_t id_lo)
{
char *rsp = (char *)response;
int len = sizeof(response);
const coap_endpoint_t *ep = endpoints;
int i;
len--; // Null-terminated string
while (NULL != ep->handler) {
if (NULL == ep->core_attr) {
ep++;
continue;
}
if (0 < strlen(rsp)) {
strncat(rsp, ",", len);
len--;
}
strncat(rsp, "<", len);
len--;
for (i = 0; i < ep->path->count; i++) {
strncat(rsp, "/", len);
len--;
strncat(rsp, ep->path->elems[i], len);
len -= strlen(ep->path->elems[i]);
}
strncat(rsp, ">;", len);
len -= 2;
strncat(rsp, ep->core_attr, len);
len -= strlen(ep->core_attr);
ep++;
}
return coap_make_response(scratch, outpkt, (const uint8_t *)rsp,
strlen(rsp), id_hi, id_lo, &inpkt->tok,
COAP_RSPCODE_CONTENT,
COAP_CONTENTTYPE_APPLICATION_LINKFORMAT);
}
static int handle_get_riot_board(coap_rw_buffer_t *scratch,
const coap_packet_t *inpkt, coap_packet_t *outpkt,
uint8_t id_hi, uint8_t id_lo)
{
const char *riot_name = RIOT_BOARD;
int len = strlen(RIOT_BOARD);
memcpy(response, riot_name, len);
return coap_make_response(scratch, outpkt, (const uint8_t *)response, len,
id_hi, id_lo, &inpkt->tok, COAP_RSPCODE_CONTENT,
COAP_CONTENTTYPE_TEXT_PLAIN);
}