cueOS  2.4
cueOS - Universal Show Control OS for ARM
http_response.c
1/***============================================================================================================================
2 * Depedencies inclusion
3 * Necessary dependencies should be declared here. Header file should contain as little dependecies declarations as possible
4 *=============================================================================================================================*/
5
6#include "pbuf.h"
7#include "cmsis_os.h"
8#include "http_response.h"
9#include <string.h>
10
11
12/***============================================================================================================================
13 * Private functions definitions
14 * These functions are only accessible from within the file's scope
15 *=============================================================================================================================*/
16
25static void _http_response_dynamic_cat(http_response_s *res, char *data){
26 uint16_t data_len = strlen(data);
27 res->data_ptr = pvPortRealloc(res->data_ptr, res->data_len + data_len);
28 memmove(res->data_ptr+res->data_len, data, data_len);
29 res->data_len+=data_len;
30}
31
32
33/***============================================================================================================================
34 * Public functions definitions
35 * These functions can be accessed outside of the file's scope
36 *=============================================================================================================================*/
37
44
45 http_response_s *res = pvPortMalloc(sizeof(http_response_s));
46
47 res->data_ptr = NULL;
48 res->is_static = 1;
49 res->data_ptr_index = 0;
50 res->data_len = 0;
51
52 return res;
53
54}
55
62
63 if(!res->is_static){
64 vPortFree(res->data_ptr);
65 }
66
67 res->data_ptr = NULL;
68 res->data_ptr_index = 0;
69 res->data_len = 0;
70
71 vPortFree(res);
72
73}
74
85 return res->data_len - res->data_ptr_index;
86}
87
103
104 char content_length_str[HTTP_RESPONSE_CONTENT_LENGTH_MAX_LENGTH];
105
107
108 itoa(strlen(content), content_length_str, 10);
109
110 _http_response_dynamic_cat(res, http_header_field_str[HTTP_HEADER_FIELD_STATUS_CODE]);
111 _http_response_dynamic_cat(res, http_status_codes_str[status_code]);
112 _http_response_dynamic_cat(res, STR_COMMON_CRLF);
113 _http_response_dynamic_cat(res, http_header_field_str[HTTP_HEADER_FIELD_CONTENT_TYPE]);
114 _http_response_dynamic_cat(res, http_content_types_str[content_type]);
115 _http_response_dynamic_cat(res, STR_COMMON_CRLF);
116 _http_response_dynamic_cat(res, http_header_field_str[HTTP_HEADER_FIELD_CONTENT_LENGTH]);
117 _http_response_dynamic_cat(res, content_length_str);
118 _http_response_dynamic_cat(res, STR_COMMON_CRLF STR_COMMON_CRLF);
119 _http_response_dynamic_cat(res, content);
120
121}
http_status_code_e
Enumeration of HTTP status codes string indexes.
Definition: http_defs.h:21
#define STR_COMMON_CRLF
Definition: http_defs.h:12
static char *const http_status_codes_str[]
list of HTTP status codes strings.
Definition: http_defs.h:83
static char *const http_content_types_str[]
list of HTTP content-types header values strings.
Definition: http_defs.h:115
static char *const http_header_field_str[]
list of HTTP header fields strings.
Definition: http_defs.h:103
http_content_types_e
Enumeration of HTTP content-types header values string indexes.
Definition: http_defs.h:53
@ HTTP_HEADER_FIELD_CONTENT_LENGTH
Definition: http_defs.h:44
@ HTTP_HEADER_FIELD_STATUS_CODE
Definition: http_defs.h:42
@ HTTP_HEADER_FIELD_CONTENT_TYPE
Definition: http_defs.h:43
uint32_t http_response_get_bytes_left(http_response_s *res)
Returns the amount of bytes left to be processed.
Definition: http_response.c:84
http_response_s * http_response_new(void)
Creates a new HTTP response instance.
Definition: http_response.c:43
#define HTTP_RESPONSE_CONTENT_LENGTH_MAX_LENGTH
Definition: http_response.h:17
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 http_response_free(http_response_s *res)
Safely frees an HTTP response instance.
Definition: http_response.c:61
@ HTTP_RESPONSE_IS_DYNAMIC
Definition: http_response.h:27
HTTP response structure object.
Definition: http_response.h:35
uint32_t data_len
Definition: http_response.h:38
uint32_t data_ptr_index
Definition: http_response.h:37