6#include "DMX512_engine.h"
7#include "http_server.h"
9#include "http_response.h"
10#include "http_request.h"
11#include "json_parser.h"
12#include "DMX512_rest_api.h"
52 char *id_str = strnstr(req->
uri + endpoint_str_len,
"/", strlen(req->
uri) - endpoint_str_len);
60 uint16_t
id = strtoul(id_str + 1, &garbage, 10);
103 for(uint i=start; i<stop; i++){
104 if(i < fixture_pool->fixture_count){
110 json_fixture_array, json_fixture,
111 i == start ? 1 : 0, i == stop-1 ||
157 fixture_id = atoi(json_data->
params[i].
val);
159 fixture_addr = atoi(json_data->
params[i].
val);
161 fixture_ch = atoi(json_data->
params[i].
val);
201 char *id_str = strnstr(req->
uri + endpoint_str_len,
"/", strlen(req->
uri) - endpoint_str_len);
207 char *garbage = NULL;
209 uint16_t
id = strtoul(id_str + 1, &garbage, 10);
229 json_fixture_preset_array,
275 for(uint i=start; i<stop; i++){
276 if(i < scene_pool->scene_count){
282 json_scenes_array, json_scene,
283 i == start ? 1 : 0, i == stop-1 ||
330 scene_id = atoi(json_data->
params[i].
val);
332 scene_fadein = atoi(json_data->
params[i].
val);
334 scene_fadeout = atoi(json_data->
params[i].
val);
393 case HTTP_GET: _DMX512_rest_api_get_fixtures(req);
break;
394 case HTTP_POST: _DMX512_rest_api_add_fixture(req);
break;
395 default: _DMX512_rest_api_405(req);
break;
400 case HTTP_GET: _DMX512_rest_api_get_scenes(req);
break;
401 case HTTP_POST: _DMX512_rest_api_add_scene(req);
break;
402 default: _DMX512_rest_api_405(req);
break;
407 case HTTP_POST: _DMX512_rest_api_configure(req);
break;
408 default: _DMX512_rest_api_405(req);
break;
412 _DMX512_rest_api_404(req);
#define DMX512_CHANNEL_ADDRESS_MAX
DMX512 max channel address.
DMX512_engine_err_e
DMX512 engine error index constants.
static char *const DMX512_engine_errs_str[]
DMX512 engine error strings constants TODO: this should be put into DMX512 API TODO: largely extend s...
@ DMX512_ENGINE_INSTANCE_INVALID
DMX512_engine_err_e DMX512_engine_scene_get(uint16_t scene_id, DMX512_scene_s **scene)
Wrapper for "DMX512_scene_pool_get" function. Provides context to the specified function using DMX512...
DMX512_engine_err_e DMX512_engine_patch_add(uint16_t fixture_id, uint16_t address, uint16_t ch_count)
Wrapper for "DMX512_fixture_pool_add" function. Provides context to the specified function using DMX5...
DMX512_engine_err_e DMX512_engine_patch_get(uint16_t fixture_id, DMX512_fixture_s **fixture)
Wrapper for "DMX512_fixture_pool_get" function. Provides context to the specified function using DMX5...
DMX512_engine_err_e DMX512_engine_scene_add(uint16_t scene_id, uint16_t fadein_time, uint16_t fadeout_time)
Wrapper for "DMX512_scene_pool_add" function. Provides context to the specified function using DMX512...
DMX512_fixture_pool_s * DMX512_engine_patch_get_all(void)
Returns the current engine fixture patch.
DMX512_scene_pool_s * DMX512_engine_scene_get_all(void)
Returns the current engine scenes.
static char *const http_status_codes_str[]
list of HTTP status codes strings.
void http_response_prepare_dynamic(http_response_s *res, http_status_code_e status_code, http_content_types_e content_type, char *content)
Pre-formats response to HTTP response using provided response header parameters.
void json_parser_free_json_string(json_parser_json_string_s *json_string)
Frees a json string instance.
void json_parser_json_string_put_str_pair(json_parser_json_string_s *json_string, char *key, char *val, uint8_t is_final, uint8_t is_initial)
Puts a JSON key/(string)value pair into a provided json string object;.
void json_parser_json_string_nest(json_parser_json_string_s *json_string, char *key, json_parser_json_string_s *nested_json_string, uint8_t is_initial, uint8_t is_final)
Nests a child JSON string into a parent JSON string.
void json_parser_json_string_put_array_int(json_parser_json_string_s *json_string, uint16_t val, uint8_t is_initial, uint8_t is_final)
Nests a child JSON string into a parent JSON array.
void json_parser_json_string_put_array_object(json_parser_json_string_s *json_string, json_parser_json_string_s *json_object, uint8_t is_initial, uint8_t is_final)
Nests a child JSON string into a parent JSON array.
void json_parser_json_string_put_int_pair(json_parser_json_string_s *json_string, char *key, uint16_t val, uint8_t is_initial, uint8_t is_final)
Puts a JSON key/(integer)value pair into a provided json string object;.
void json_parser_free_json_object(json_parser_json_object_s *json_object)
Frees a parsed json object.
json_parser_json_string_s * json_parser_json_string_new(void)
Creates and initialises a new json string instance.
json_parser_json_object_s * json_parser_parse(char *json_string, uint16_t json_string_len)
Retrieves key/value pairs from a JSON encoded string.
static const char *const DMX512_rest_api_endpoints_str[]
DMX512 API endpoint string.
DMX512_rest_api_endpoint_e
DMX512 API endpoint string indexes.
void DMX512_rest_api_router(http_request_s *req)
Parses the current HTTP request method and URI in order to route requests to a specific api function.
static char *const DMX512_rest_api_args_str[]
DMX512 API parameter strings.
@ DMX512_API_ENDPOINT_CONFIGURE
@ DMX512_API_ENDPOINT_DEFAULT
@ DMX512_API_ENDPOINT_SCENES
@ DMX512_API_ENDPOINT_PATCH
@ DMX512_API_PARAM_FADEOUT_TIME
@ DMX512_API_PARAM_CHANNEL_COUNT
@ DMX512_API_PARAM_FADEIN_TIME
@ DMX512_API_PARAM_ADDRESS
DMX512 fixture pool structure object.
DMX512_fixture_s * fixtures
DMX512_fixture_s * fixture
DMX512 fixture structure object.
DMX512 scene pool structure object.
DMX512 scene structure object.
DMX512_fixture_preset_s * fixture_presets
uint16_t fixture_preset_count
JSON Objects structure object.
json_parser_json_param_s * params
JSON String structure object.