Select one of the symbols to view example projects that use it.
 
Outline
#include <stdio.h>
#include <string.h>
#include <esp_err.h>
#include <esp_log.h>
#include "esp_compiler.h"
#include "esp_local_ctrl.h"
#include "esp_local_ctrl_priv.h"
#include "esp_local_ctrl.pb-c.h"
TAG
esp_local_ctrl_cmd
cmd_table
err_to_status(esp_err_t)
cmd_get_prop_count_handler(LocalCtrlMessage *, LocalCtrlMessage *, void **)
cmd_get_prop_vals_handler(LocalCtrlMessage *, LocalCtrlMessage *, void **)
cmd_set_prop_vals_handler(LocalCtrlMessage *, LocalCtrlMessage *, void **)
lookup_cmd_handler(int)
esp_local_ctrl_command_cleanup(LocalCtrlMessage *, void **)
esp_local_ctrl_command_dispatcher(LocalCtrlMessage *, LocalCtrlMessage *, void **)
esp_local_ctrl_data_handler(uint32_t, const uint8_t *, ssize_t, uint8_t **, ssize_t *, void *)
Files
ESP-IDF
components
app_trace
app_update
bootloader_support
bt
cmock
console
cxx
driver
efuse
esp_adc
esp_app_format
esp_bootloader_format
esp_coex
esp_common
esp_driver_ana_cmpr
esp_driver_cam
esp_driver_dac
esp_driver_gpio
esp_driver_gptimer
esp_driver_i2c
esp_driver_i2s
esp_driver_jpeg
esp_driver_ledc
esp_driver_mcpwm
esp_driver_parlio
esp_driver_pcnt
esp_driver_rmt
esp_driver_sdio
esp_driver_sdm
esp_driver_sdmmc
esp_driver_sdspi
esp_driver_spi
esp_driver_tsens
esp_driver_uart
esp_driver_usb_serial_jtag
esp_eth
esp_event
esp_gdbstub
esp_hid
esp_http_client
esp_http_server
esp_https_ota
esp_https_server
esp_hw_support
esp_lcd
esp_local_ctrl
include
proto-c
src
esp_mm
esp_netif
esp_partition
esp_phy
esp_pm
esp_psram
esp_ringbuf
esp_rom
esp_security
esp_system
esp_timer
esp_vfs_console
esp_wifi
esp-tls
espcoredump
hal
heap
http_parser
ieee802154
log
mqtt
newlib
nvs_flash
nvs_sec_provider
openthread
perfmon
protobuf-c
protocomm
pthread
rt
sdmmc
soc
spi_flash
spiffs
tcp_transport
ulp
unity
vfs
wear_levelling
wifi_provisioning
wpa_supplicant
xtensa
examples
lwIP
FreeRTOS
cJSON
mbedTLS
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp_local_ctrl/src/esp_local_ctrl_handler.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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2019-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #include <stdio.h> #include <string.h> #include <esp_err.h> #include <esp_log.h> #include "esp_compiler.h" #include "esp_local_ctrl.h" #include "esp_local_ctrl_priv.h" #include "esp_local_ctrl.pb-c.h"8 includes #define SAFE_ALLOCATION(type, var) \ type *var = (type *) malloc(sizeof(type)); \ if (!var) { \ ESP_LOGE(TAG, "Error allocating memory"); \ return ESP_ERR_NO_MEM; \ }{...} ... static const char* TAG = "esp_local_ctrl_handler"; typedef struct esp_local_ctrl_cmd { int cmd_num; esp_err_t (*command_handler)(LocalCtrlMessage *req, LocalCtrlMessage *resp, void **ctx); }{ ... } esp_local_ctrl_cmd_t; static esp_err_t cmd_get_prop_count_handler(LocalCtrlMessage *req, LocalCtrlMessage *resp, void **ctx); static esp_err_t cmd_get_prop_vals_handler(LocalCtrlMessage *req, LocalCtrlMessage *resp, void **ctx); static esp_err_t cmd_set_prop_vals_handler(LocalCtrlMessage *req, LocalCtrlMessage *resp, void **ctx); static esp_local_ctrl_cmd_t cmd_table[] = { { .cmd_num = LOCAL_CTRL_MSG_TYPE__TypeCmdGetPropertyCount, .command_handler = cmd_get_prop_count_handler }{...}, { .cmd_num = LOCAL_CTRL_MSG_TYPE__TypeCmdGetPropertyValues, .command_handler = cmd_get_prop_vals_handler }{...}, { .cmd_num = LOCAL_CTRL_MSG_TYPE__TypeCmdSetPropertyValues, .command_handler = cmd_set_prop_vals_handler }{...} }{...}; static uint16_t err_to_status(esp_err_t err) { uint16_t status; switch (err) { case ESP_OK: status = STATUS__Success; break;... case ESP_ERR_INVALID_ARG: status = STATUS__InvalidArgument; break;... case ESP_ERR_INVALID_STATE: status = STATUS__InvalidProto; break;... default: status = STATUS__InternalError;... }{...} return status; }{ ... } static esp_err_t cmd_get_prop_count_handler(LocalCtrlMessage *req, LocalCtrlMessage *resp, void **ctx) { SAFE_ALLOCATION(RespGetPropertyCount, resp_payload); resp_get_property_count__init(resp_payload); size_t prop_count = 0; resp_payload->status = err_to_status(esp_local_ctrl_get_prop_count(&prop_count)); resp_payload->count = prop_count; resp->payload_case = LOCAL_CTRL_MESSAGE__PAYLOAD_RESP_GET_PROP_COUNT; resp->resp_get_prop_count = resp_payload; ESP_LOGD(TAG, "Got properties count %d", prop_count); return ESP_OK; }{ ... } typedef void (*prop_val_free_fn_t)(void *val); static esp_err_t cmd_get_prop_vals_handler(LocalCtrlMessage *req, LocalCtrlMessage *resp, void **ctx) { SAFE_ALLOCATION(RespGetPropertyValues, resp_payload); resp_get_property_values__init(resp_payload); esp_local_ctrl_prop_val_t *vals = calloc(req->cmd_get_prop_vals->n_indices, sizeof(esp_local_ctrl_prop_val_t)); esp_local_ctrl_prop_t *descs = calloc(req->cmd_get_prop_vals->n_indices, sizeof(esp_local_ctrl_prop_t)); prop_val_free_fn_t *free_fns = calloc(req->cmd_get_prop_vals->n_indices, sizeof(prop_val_free_fn_t)); resp_payload->props = calloc(req->cmd_get_prop_vals->n_indices, sizeof(PropertyInfo *)); if (!vals || !descs || !free_fns || !resp_payload->props) { ESP_LOGE(TAG, "Failed to allocate memory for getting values"); free(vals); free(descs); free(free_fns); free(resp_payload->props); free(resp_payload); return ESP_ERR_NO_MEM; }{...} esp_err_t ret = esp_local_ctrl_get_prop_values(req->cmd_get_prop_vals->n_indices, req->cmd_get_prop_vals->indices, descs, vals); resp_payload->status = err_to_status(ret); if (ret == ESP_OK) { resp_payload->n_props = 0; for (size_t i = 0; i < req->cmd_get_prop_vals->n_indices; i++) { ESP_COMPILER_DIAGNOSTIC_PUSH_IGNORE("-Wanalyzer-malloc-leak") // False-positive detection. TODO GCC-366 resp_payload->props[i] = malloc(sizeof(PropertyInfo)); if (!resp_payload->props[i]) { resp_payload->status = STATUS__InternalError; break; }{...} ESP_COMPILER_DIAGNOSTIC_POP("-Wanalyzer-malloc-leak") resp_payload->n_props++; property_info__init(resp_payload->props[i]); resp_payload->props[i]->name = descs[i].name; resp_payload->props[i]->type = descs[i].type; resp_payload->props[i]->flags = descs[i].flags; resp_payload->props[i]->value.data = vals[i].data; resp_payload->props[i]->value.len = vals[i].size; free_fns[i] = vals[i].free_fn; }{...} }{...} resp->payload_case = LOCAL_CTRL_MESSAGE__PAYLOAD_RESP_GET_PROP_VALS; resp->resp_get_prop_vals = resp_payload; (*ctx) = (void *)free_fns; free(vals); free(descs); /* Unless it's a fatal error, always return ESP_OK, otherwise * the underlying connection will be closed by protocomm *//* ... */ return ESP_OK; }{ ... } static esp_err_t cmd_set_prop_vals_handler(LocalCtrlMessage *req, LocalCtrlMessage *resp, void **ctx) { SAFE_ALLOCATION(RespSetPropertyValues, resp_payload); resp_set_property_values__init(resp_payload); uint32_t *idxs = calloc(req->cmd_set_prop_vals->n_props, sizeof(uint32_t)); esp_local_ctrl_prop_val_t *vals = calloc(req->cmd_set_prop_vals->n_props, sizeof(esp_local_ctrl_prop_val_t)); if (!idxs || !vals) { ESP_LOGE(TAG, "Failed to allocate memory for setting values"); free(idxs); free(vals); free(resp_payload); return ESP_ERR_NO_MEM; }{...} for (size_t i = 0; i < req->cmd_set_prop_vals->n_props; i++) { idxs[i] = req->cmd_set_prop_vals->props[i]->index; vals[i].data = req->cmd_set_prop_vals->props[i]->value.data; vals[i].size = req->cmd_set_prop_vals->props[i]->value.len; }{...} esp_err_t ret = esp_local_ctrl_set_prop_values(req->cmd_set_prop_vals->n_props, idxs, vals); resp_payload->status = err_to_status(ret); resp->payload_case = LOCAL_CTRL_MESSAGE__PAYLOAD_RESP_SET_PROP_VALS; resp->resp_set_prop_vals = resp_payload; free(idxs); free(vals); /* Unless it's a fatal error, always return ESP_OK, otherwise * the underlying connection will be closed by protocomm *//* ... */ return ESP_OK; }{ ... } static int lookup_cmd_handler(int cmd_id) { for (size_t i = 0; i < sizeof(cmd_table)/sizeof(esp_local_ctrl_cmd_t); i++) { if (cmd_table[i].cmd_num == cmd_id) { return i; }{...} }{...} return -1; }{ ... } static void esp_local_ctrl_command_cleanup(LocalCtrlMessage *resp, void **ctx) { if (!resp) { return; }{...} switch (resp->msg) { case LOCAL_CTRL_MSG_TYPE__TypeRespGetPropertyCount: free(resp->resp_get_prop_count); break;... case LOCAL_CTRL_MSG_TYPE__TypeRespGetPropertyValues: { if (resp->resp_get_prop_vals) { prop_val_free_fn_t *free_fns = (prop_val_free_fn_t *)(*ctx); for (size_t i = 0; i < resp->resp_get_prop_vals->n_props; i++) { if (free_fns && free_fns[i]) { free_fns[i](resp->resp_get_prop_vals->props[i]->value.data); }{...} free(resp->resp_get_prop_vals->props[i]); }{...} free(free_fns); free(resp->resp_get_prop_vals->props); free(resp->resp_get_prop_vals); }{...} }{...} break;... case LOCAL_CTRL_MSG_TYPE__TypeRespSetPropertyValues: free(resp->resp_set_prop_vals); break;... default: ESP_LOGE(TAG, "Unsupported response type in cleanup_handler");... }{...} return; }{ ... } static esp_err_t esp_local_ctrl_command_dispatcher(LocalCtrlMessage *req, LocalCtrlMessage *resp, void **ctx) { int cmd_index = lookup_cmd_handler(req->msg); if (cmd_index < 0) { ESP_LOGE(TAG, "Invalid command handler lookup"); return ESP_ERR_INVALID_ARG; }{...} esp_err_t ret = cmd_table[cmd_index].command_handler(req, resp, ctx); if (ret != ESP_OK) { ESP_LOGE(TAG, "Error executing command handler"); return ret; }{...} return ESP_OK; }{ ... } esp_err_t esp_local_ctrl_data_handler(uint32_t session_id, const uint8_t *inbuf, ssize_t inlen, uint8_t **outbuf, ssize_t *outlen, void *priv_data) { void *temp_ctx = NULL; LocalCtrlMessage *req = local_ctrl_message__unpack(NULL, inlen, inbuf); if (!req) { ESP_LOGE(TAG, "Unable to unpack payload data"); return ESP_ERR_INVALID_ARG; }{...} LocalCtrlMessage resp; local_ctrl_message__init(&resp); resp.msg = req->msg + 1; /* Response is request + 1 */ esp_err_t ret = esp_local_ctrl_command_dispatcher(req, &resp, &temp_ctx); if (ret != ESP_OK) { ESP_LOGE(TAG, "command dispatcher failed"); esp_local_ctrl_command_cleanup(&resp, &temp_ctx); local_ctrl_message__free_unpacked(req, NULL); return ESP_FAIL; }{...} local_ctrl_message__free_unpacked(req, NULL); *outlen = local_ctrl_message__get_packed_size(&resp); if (*outlen <= 0) { ESP_LOGE(TAG, "Invalid encoding for response"); esp_local_ctrl_command_cleanup(&resp, &temp_ctx); return ESP_FAIL; }{...} *outbuf = (uint8_t *) malloc(*outlen); if (!*outbuf) { ESP_LOGE(TAG, "System out of memory"); esp_local_ctrl_command_cleanup(&resp, &temp_ctx); return ESP_ERR_NO_MEM; }{...} local_ctrl_message__pack(&resp, *outbuf); esp_local_ctrl_command_cleanup(&resp, &temp_ctx); ESP_LOG_BUFFER_HEX_LEVEL(TAG, *outbuf, *outlen, ESP_LOG_DEBUG); return ESP_OK; }{ ... }
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.