123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916 |
- // SPDX-License-Identifier: GPL-3.0-or-later
- #ifndef NETDATA_WEB_BUFFER_H
- #define NETDATA_WEB_BUFFER_H 1
- #include "../string/utf8.h"
- #include "../libnetdata.h"
- #define WEB_DATA_LENGTH_INCREASE_STEP 1024
- #define BUFFER_JSON_MAX_DEPTH 32 // max is 255
- extern const char hex_digits[16];
- extern const char base64_digits[64];
- extern unsigned char hex_value_from_ascii[256];
- extern unsigned char base64_value_from_ascii[256];
- typedef enum __attribute__ ((__packed__)) {
- BUFFER_JSON_EMPTY = 0,
- BUFFER_JSON_OBJECT,
- BUFFER_JSON_ARRAY,
- } BUFFER_JSON_NODE_TYPE;
- typedef struct web_buffer_json_node {
- BUFFER_JSON_NODE_TYPE type;
- uint32_t count:24;
- } BUFFER_JSON_NODE;
- #define BUFFER_QUOTE_MAX_SIZE 7
- typedef enum __attribute__ ((__packed__)) {
- WB_CONTENT_CACHEABLE = (1 << 0),
- WB_CONTENT_NO_CACHEABLE = (1 << 1),
- } BUFFER_OPTIONS;
- typedef enum __attribute__ ((__packed__)) {
- CT_NONE = 0,
- CT_APPLICATION_JSON,
- CT_TEXT_PLAIN,
- CT_TEXT_HTML,
- CT_APPLICATION_X_JAVASCRIPT,
- CT_TEXT_CSS,
- CT_TEXT_XML,
- CT_APPLICATION_XML,
- CT_TEXT_XSL,
- CT_APPLICATION_OCTET_STREAM,
- CT_APPLICATION_X_FONT_TRUETYPE,
- CT_APPLICATION_X_FONT_OPENTYPE,
- CT_APPLICATION_FONT_WOFF,
- CT_APPLICATION_FONT_WOFF2,
- CT_APPLICATION_VND_MS_FONTOBJ,
- CT_IMAGE_SVG_XML,
- CT_IMAGE_PNG,
- CT_IMAGE_JPG,
- CT_IMAGE_GIF,
- CT_IMAGE_XICON,
- CT_IMAGE_ICNS,
- CT_IMAGE_BMP,
- CT_PROMETHEUS,
- } HTTP_CONTENT_TYPE;
- typedef struct web_buffer {
- size_t size; // allocation size of buffer, in bytes
- size_t len; // current data length in buffer, in bytes
- char *buffer; // the buffer itself
- HTTP_CONTENT_TYPE content_type; // the content type of the data in the buffer
- BUFFER_OPTIONS options; // options related to the content
- time_t date; // the timestamp this content has been generated
- time_t expires; // the timestamp this content expires
- size_t *statistics;
- struct {
- char key_quote[BUFFER_QUOTE_MAX_SIZE + 1];
- char value_quote[BUFFER_QUOTE_MAX_SIZE + 1];
- int8_t depth;
- bool minify;
- BUFFER_JSON_NODE stack[BUFFER_JSON_MAX_DEPTH];
- } json;
- } BUFFER;
- #define buffer_cacheable(wb) do { (wb)->options |= WB_CONTENT_CACHEABLE; if((wb)->options & WB_CONTENT_NO_CACHEABLE) (wb)->options &= ~WB_CONTENT_NO_CACHEABLE; } while(0)
- #define buffer_no_cacheable(wb) do { (wb)->options |= WB_CONTENT_NO_CACHEABLE; if((wb)->options & WB_CONTENT_CACHEABLE) (wb)->options &= ~WB_CONTENT_CACHEABLE; (wb)->expires = 0; } while(0)
- #define buffer_strlen(wb) ((wb)->len)
- const char *buffer_tostring(BUFFER *wb);
- #define BUFFER_OVERFLOW_EOF "EOF"
- #ifdef NETDATA_INTERNAL_CHECKS
- #define buffer_overflow_check(b) _buffer_overflow_check(b)
- #else
- #define buffer_overflow_check(b)
- #endif
- static inline void _buffer_overflow_check(BUFFER *b) {
- assert(b->len <= b->size &&
- "BUFFER: length is above buffer size.");
- assert(!(b->buffer && (b->buffer[b->size] != '\0' || strcmp(&b->buffer[b->size + 1], BUFFER_OVERFLOW_EOF) != 0)) &&
- "BUFFER: detected overflow.");
- }
- static inline void buffer_flush(BUFFER *wb) {
- wb->len = 0;
- wb->json.depth = 0;
- wb->json.stack[0].type = BUFFER_JSON_EMPTY;
- wb->json.stack[0].count = 0;
- if(wb->buffer)
- wb->buffer[0] = '\0';
- }
- void buffer_reset(BUFFER *wb);
- void buffer_date(BUFFER *wb, int year, int month, int day, int hours, int minutes, int seconds);
- void buffer_jsdate(BUFFER *wb, int year, int month, int day, int hours, int minutes, int seconds);
- BUFFER *buffer_create(size_t size, size_t *statistics);
- void buffer_free(BUFFER *b);
- void buffer_increase(BUFFER *b, size_t free_size_required);
- void buffer_snprintf(BUFFER *wb, size_t len, const char *fmt, ...) PRINTFLIKE(3, 4);
- void buffer_vsprintf(BUFFER *wb, const char *fmt, va_list args);
- void buffer_sprintf(BUFFER *wb, const char *fmt, ...) PRINTFLIKE(2,3);
- void buffer_strcat_htmlescape(BUFFER *wb, const char *txt);
- void buffer_char_replace(BUFFER *wb, char from, char to);
- void buffer_print_sn_flags(BUFFER *wb, SN_FLAGS flags, bool send_anomaly_bit);
- static inline void buffer_need_bytes(BUFFER *buffer, size_t needed_free_size) {
- if(unlikely(buffer->len + needed_free_size >= buffer->size))
- buffer_increase(buffer, needed_free_size + 1);
- }
- void buffer_json_initialize(BUFFER *wb, const char *key_quote, const char *value_quote, int depth,
- bool add_anonymous_object, bool minify);
- void buffer_json_finalize(BUFFER *wb);
- static inline void _buffer_json_depth_push(BUFFER *wb, BUFFER_JSON_NODE_TYPE type) {
- #ifdef NETDATA_INTERNAL_CHECKS
- assert(wb->json.depth <= BUFFER_JSON_MAX_DEPTH && "BUFFER JSON: max nesting reached");
- #endif
- wb->json.depth++;
- wb->json.stack[wb->json.depth].count = 0;
- wb->json.stack[wb->json.depth].type = type;
- }
- static inline void _buffer_json_depth_pop(BUFFER *wb) {
- wb->json.depth--;
- }
- static inline void buffer_fast_charcat(BUFFER *wb, const char c) {
- buffer_need_bytes(wb, 2);
- *(&wb->buffer[wb->len]) = c;
- wb->len += 1;
- wb->buffer[wb->len] = '\0';
- buffer_overflow_check(wb);
- }
- static inline void buffer_fast_rawcat(BUFFER *wb, const char *txt, size_t len) {
- if(unlikely(!txt || !*txt || !len)) return;
- buffer_need_bytes(wb, len + 1);
- const char *t = txt;
- const char *e = &txt[len];
- char *d = &wb->buffer[wb->len];
- while(t != e)
- *d++ = *t++;
- wb->len += len;
- wb->buffer[wb->len] = '\0';
- buffer_overflow_check(wb);
- }
- static inline void buffer_fast_strcat(BUFFER *wb, const char *txt, size_t len) {
- if(unlikely(!txt || !*txt || !len)) return;
- buffer_need_bytes(wb, len + 1);
- const char *t = txt;
- const char *e = &txt[len];
- char *d = &wb->buffer[wb->len];
- while(t != e
- #ifdef NETDATA_INTERNAL_CHECKS
- && *t
- #endif
- )
- *d++ = *t++;
- #ifdef NETDATA_INTERNAL_CHECKS
- assert(!(t != e && !*t) && "BUFFER: source string is shorter than the length given.");
- #endif
- wb->len += len;
- wb->buffer[wb->len] = '\0';
- buffer_overflow_check(wb);
- }
- static inline void buffer_strcat(BUFFER *wb, const char *txt) {
- if(unlikely(!txt || !*txt)) return;
- const char *t = txt;
- while(*t) {
- buffer_need_bytes(wb, 100);
- char *s = &wb->buffer[wb->len];
- char *d = s;
- const char *e = &wb->buffer[wb->size];
- while(*t && d < e)
- *d++ = *t++;
- wb->len += d - s;
- }
- buffer_need_bytes(wb, 1);
- wb->buffer[wb->len] = '\0';
- buffer_overflow_check(wb);
- }
- static inline void buffer_strncat(BUFFER *wb, const char *txt, size_t len) {
- if(unlikely(!txt || !*txt)) return;
- const char *t = txt;
- while(*t) {
- buffer_need_bytes(wb, len);
- char *s = &wb->buffer[wb->len];
- char *d = s;
- const char *e = &wb->buffer[wb->len + len];
- while(*t && d < e)
- *d++ = *t++;
- wb->len += d - s;
- }
- buffer_need_bytes(wb, 1);
- wb->buffer[wb->len] = '\0';
- buffer_overflow_check(wb);
- }
- static inline void buffer_json_strcat(BUFFER *wb, const char *txt) {
- if(unlikely(!txt || !*txt)) return;
- const unsigned char *t = (const unsigned char *)txt;
- while(*t) {
- buffer_need_bytes(wb, 110);
- unsigned char *s = (unsigned char *)&wb->buffer[wb->len];
- unsigned char *d = s;
- const unsigned char *e = (unsigned char *)&wb->buffer[wb->size - 10]; // make room for the max escape sequence
- while(*t && d < e) {
- #ifdef BUFFER_JSON_ESCAPE_UTF
- if(unlikely(IS_UTF8_STARTBYTE(*t) && IS_UTF8_BYTE(t[1]))) {
- // UTF-8 multi-byte encoded character
- // find how big this character is (2-4 bytes)
- size_t utf_character_size = 2;
- while(utf_character_size < 4 && t[utf_character_size] && IS_UTF8_BYTE(t[utf_character_size]) && !IS_UTF8_STARTBYTE(t[utf_character_size]))
- utf_character_size++;
- uint32_t code_point = 0;
- for (size_t i = 0; i < utf_character_size; i++) {
- code_point <<= 6;
- code_point |= (t[i] & 0x3F);
- }
- t += utf_character_size;
- // encode as \u escape sequence
- *d++ = '\\';
- *d++ = 'u';
- *d++ = hex_digits[(code_point >> 12) & 0xf];
- *d++ = hex_digits[(code_point >> 8) & 0xf];
- *d++ = hex_digits[(code_point >> 4) & 0xf];
- *d++ = hex_digits[code_point & 0xf];
- }
- else
- #endif
- if(unlikely(*t < ' ')) {
- uint32_t v = *t++;
- *d++ = '\\';
- *d++ = 'u';
- *d++ = hex_digits[(v >> 12) & 0xf];
- *d++ = hex_digits[(v >> 8) & 0xf];
- *d++ = hex_digits[(v >> 4) & 0xf];
- *d++ = hex_digits[v & 0xf];
- }
- else {
- if (unlikely(*t == '\\' || *t == '\"'))
- *d++ = '\\';
- *d++ = *t++;
- }
- }
- wb->len += d - s;
- }
- buffer_need_bytes(wb, 1);
- wb->buffer[wb->len] = '\0';
- buffer_overflow_check(wb);
- }
- static inline void buffer_json_quoted_strcat(BUFFER *wb, const char *txt) {
- if(unlikely(!txt || !*txt)) return;
- if(*txt == '"')
- txt++;
- const char *t = txt;
- while(*t) {
- buffer_need_bytes(wb, 100);
- char *s = &wb->buffer[wb->len];
- char *d = s;
- const char *e = &wb->buffer[wb->size - 1]; // remove 1 to make room for the escape character
- while(*t && d < e) {
- if(unlikely(*t == '"' && !t[1])) {
- t++;
- continue;
- }
- if(unlikely(*t == '\\' || *t == '"'))
- *d++ = '\\';
- *d++ = *t++;
- }
- wb->len += d - s;
- }
- buffer_need_bytes(wb, 1);
- wb->buffer[wb->len] = '\0';
- buffer_overflow_check(wb);
- }
- // This trick seems to give an 80% speed increase in 32bit systems
- // print_number_llu_r() will just print the digits up to the
- // point the remaining value fits in 32 bits, and then calls
- // print_number_lu_r() to print the rest with 32 bit arithmetic.
- static inline char *print_uint32_reversed(char *dst, uint32_t value) {
- char *d = dst;
- do *d++ = (char)('0' + (value % 10)); while((value /= 10));
- return d;
- }
- static inline char *print_uint64_reversed(char *dst, uint64_t value) {
- #ifdef ENV32BIT
- if(value <= (uint64_t)0xffffffff)
- return print_uint32_reversed(dst, value);
- char *d = dst;
- do *d++ = (char)('0' + (value % 10)); while((value /= 10) && value > (uint64_t)0xffffffff);
- if(value) return print_uint32_reversed(d, value);
- return d;
- #else
- char *d = dst;
- do *d++ = (char)('0' + (value % 10)); while((value /= 10));
- return d;
- #endif
- }
- static inline char *print_uint32_hex_reversed(char *dst, uint32_t value) {
- static const char *digits = "0123456789ABCDEF";
- char *d = dst;
- do *d++ = digits[value & 0xf]; while((value >>= 4));
- return d;
- }
- static inline char *print_uint64_hex_reversed(char *dst, uint64_t value) {
- #ifdef ENV32BIT
- if(value <= (uint64_t)0xffffffff)
- return print_uint32_hex_reversed(dst, value);
- char *d = dst;
- do *d++ = hex_digits[value & 0xf]; while((value >>= 4) && value > (uint64_t)0xffffffff);
- if(value) return print_uint32_hex_reversed(d, value);
- return d;
- #else
- char *d = dst;
- do *d++ = hex_digits[value & 0xf]; while((value >>= 4));
- return d;
- #endif
- }
- static inline char *print_uint64_base64_reversed(char *dst, uint64_t value) {
- char *d = dst;
- do *d++ = base64_digits[value & 63]; while ((value >>= 6));
- return d;
- }
- static inline void char_array_reverse(char *from, char *to) {
- // from and to are inclusive
- char *begin = from, *end = to, aux;
- while (end > begin) aux = *end, *end-- = *begin, *begin++ = aux;
- }
- static inline int print_netdata_double(char *dst, NETDATA_DOUBLE value) {
- char *s = dst;
- if(unlikely(value < 0)) {
- *s++ = '-';
- value = fabsndd(value);
- }
- uint64_t fractional_precision = 10000000ULL; // fractional part 7 digits
- int fractional_wanted_digits = 7;
- int exponent = 0;
- if(unlikely(value >= (NETDATA_DOUBLE)(UINT64_MAX / 10))) {
- // the number is too big to print using 64bit numbers
- // so, let's convert it to exponential notation
- exponent = (int)(floorndd(log10ndd(value)));
- value /= powndd(10, exponent);
- // the max precision we can support is 18 digits
- // (UINT64_MAX is 20, but the first is 1)
- fractional_precision = 1000000000000000000ULL; // fractional part 18 digits
- fractional_wanted_digits = 18;
- }
- char *d = s;
- NETDATA_DOUBLE integral_d, fractional_d;
- fractional_d = modfndd(value, &integral_d);
- // get the integral and the fractional parts as 64-bit integers
- uint64_t integral = (uint64_t)integral_d;
- uint64_t fractional = (uint64_t)llrintndd(fractional_d * (NETDATA_DOUBLE)fractional_precision);
- if(unlikely(fractional >= fractional_precision)) {
- integral++;
- fractional -= fractional_precision;
- }
- // convert the integral part to string (reversed)
- d = print_uint64_reversed(d, integral);
- char_array_reverse(s, d - 1); // copy reversed the integral string
- if(likely(fractional != 0)) {
- *d++ = '.'; // add the dot
- // convert the fractional part to string (reversed)
- d = print_uint64_reversed(s = d, fractional);
- while(d - s < fractional_wanted_digits) *d++ = '0'; // prepend zeros to reach precision
- char_array_reverse(s, d - 1); // copy reversed the fractional string
- // remove trailing zeros from the fractional part
- while(*(d - 1) == '0') d--;
- }
- if(unlikely(exponent != 0)) {
- *d++ = 'e';
- *d++ = '+';
- d = print_uint32_reversed(s = d, exponent);
- char_array_reverse(s, d - 1);
- }
- *d = '\0';
- return (int)(d - dst);
- }
- static inline void buffer_print_uint64(BUFFER *wb, uint64_t value) {
- buffer_need_bytes(wb, 50);
- char *s = &wb->buffer[wb->len];
- char *d = print_uint64_reversed(s, value);
- char_array_reverse(s, d - 1);
- *d = '\0';
- wb->len += d - s;
- buffer_overflow_check(wb);
- }
- static inline void buffer_print_int64(BUFFER *wb, int64_t value) {
- buffer_need_bytes(wb, 50);
- if(value < 0) {
- buffer_fast_strcat(wb, "-", 1);
- value = -value;
- }
- buffer_print_uint64(wb, (uint64_t)value);
- buffer_overflow_check(wb);
- }
- static inline void buffer_print_uint64_hex(BUFFER *wb, uint64_t value) {
- buffer_need_bytes(wb, sizeof(uint64_t) * 2 + 2 + 1);
- buffer_fast_strcat(wb, HEX_PREFIX, sizeof(HEX_PREFIX) - 1);
- char *s = &wb->buffer[wb->len];
- char *d = print_uint64_hex_reversed(s, value);
- char_array_reverse(s, d - 1);
- *d = '\0';
- wb->len += d - s;
- buffer_overflow_check(wb);
- }
- static inline void buffer_print_uint64_base64(BUFFER *wb, uint64_t value) {
- buffer_need_bytes(wb, sizeof(uint64_t) * 2 + 2 + 1);
- buffer_fast_strcat(wb, IEEE754_UINT64_B64_PREFIX, sizeof(IEEE754_UINT64_B64_PREFIX) - 1);
- char *s = &wb->buffer[wb->len];
- char *d = print_uint64_base64_reversed(s, value);
- char_array_reverse(s, d - 1);
- *d = '\0';
- wb->len += d - s;
- buffer_overflow_check(wb);
- }
- static inline void buffer_print_int64_hex(BUFFER *wb, int64_t value) {
- buffer_need_bytes(wb, 2);
- if(value < 0) {
- buffer_fast_strcat(wb, "-", 1);
- value = -value;
- }
- buffer_print_uint64_hex(wb, (uint64_t)value);
- buffer_overflow_check(wb);
- }
- static inline void buffer_print_int64_base64(BUFFER *wb, int64_t value) {
- buffer_need_bytes(wb, 2);
- if(value < 0) {
- buffer_fast_strcat(wb, "-", 1);
- value = -value;
- }
- buffer_print_uint64_base64(wb, (uint64_t)value);
- buffer_overflow_check(wb);
- }
- static inline void buffer_print_netdata_double(BUFFER *wb, NETDATA_DOUBLE value) {
- buffer_need_bytes(wb, 512 + 2);
- if(isnan(value) || isinf(value)) {
- buffer_fast_strcat(wb, "null", 4);
- return;
- }
- else
- wb->len += print_netdata_double(&wb->buffer[wb->len], value);
- // terminate it
- buffer_need_bytes(wb, 1);
- wb->buffer[wb->len] = '\0';
- buffer_overflow_check(wb);
- }
- static inline void buffer_print_netdata_double_hex(BUFFER *wb, NETDATA_DOUBLE value) {
- buffer_need_bytes(wb, sizeof(uint64_t) * 2 + 2 + 1 + 1);
- uint64_t *ptr = (uint64_t *) (&value);
- buffer_fast_strcat(wb, IEEE754_DOUBLE_HEX_PREFIX, sizeof(IEEE754_DOUBLE_HEX_PREFIX) - 1);
- char *s = &wb->buffer[wb->len];
- char *d = print_uint64_hex_reversed(s, *ptr);
- char_array_reverse(s, d - 1);
- *d = '\0';
- wb->len += d - s;
- buffer_overflow_check(wb);
- }
- static inline void buffer_print_netdata_double_base64(BUFFER *wb, NETDATA_DOUBLE value) {
- buffer_need_bytes(wb, sizeof(uint64_t) * 2 + 2 + 1 + 1);
- uint64_t *ptr = (uint64_t *) (&value);
- buffer_fast_strcat(wb, IEEE754_DOUBLE_B64_PREFIX, sizeof(IEEE754_DOUBLE_B64_PREFIX) - 1);
- char *s = &wb->buffer[wb->len];
- char *d = print_uint64_base64_reversed(s, *ptr);
- char_array_reverse(s, d - 1);
- *d = '\0';
- wb->len += d - s;
- buffer_overflow_check(wb);
- }
- typedef enum {
- NUMBER_ENCODING_DECIMAL,
- NUMBER_ENCODING_HEX,
- NUMBER_ENCODING_BASE64,
- } NUMBER_ENCODING;
- static inline void buffer_print_int64_encoded(BUFFER *wb, NUMBER_ENCODING encoding, int64_t value) {
- if(encoding == NUMBER_ENCODING_BASE64)
- return buffer_print_int64_base64(wb, value);
- if(encoding == NUMBER_ENCODING_HEX)
- return buffer_print_int64_hex(wb, value);
- return buffer_print_int64(wb, value);
- }
- static inline void buffer_print_uint64_encoded(BUFFER *wb, NUMBER_ENCODING encoding, uint64_t value) {
- if(encoding == NUMBER_ENCODING_BASE64)
- return buffer_print_uint64_base64(wb, value);
- if(encoding == NUMBER_ENCODING_HEX)
- return buffer_print_uint64_hex(wb, value);
- return buffer_print_uint64(wb, value);
- }
- static inline void buffer_print_netdata_double_encoded(BUFFER *wb, NUMBER_ENCODING encoding, NETDATA_DOUBLE value) {
- if(encoding == NUMBER_ENCODING_BASE64)
- return buffer_print_netdata_double_base64(wb, value);
- if(encoding == NUMBER_ENCODING_HEX)
- return buffer_print_netdata_double_hex(wb, value);
- return buffer_print_netdata_double(wb, value);
- }
- static inline void buffer_print_spaces(BUFFER *wb, size_t spaces) {
- buffer_need_bytes(wb, spaces * 4 + 1);
- char *d = &wb->buffer[wb->len];
- for(size_t i = 0; i < spaces; i++) {
- *d++ = ' ';
- *d++ = ' ';
- *d++ = ' ';
- *d++ = ' ';
- }
- *d = '\0';
- wb->len += spaces * 4;
- buffer_overflow_check(wb);
- }
- static inline void buffer_print_json_comma_newline_spacing(BUFFER *wb) {
- if(wb->json.stack[wb->json.depth].count)
- buffer_fast_strcat(wb, ",", 1);
- if(wb->json.minify)
- return;
- buffer_fast_strcat(wb, "\n", 1);
- buffer_print_spaces(wb, wb->json.depth + 1);
- }
- static inline void buffer_print_json_key(BUFFER *wb, const char *key) {
- buffer_strcat(wb, wb->json.key_quote);
- buffer_json_strcat(wb, key);
- buffer_strcat(wb, wb->json.key_quote);
- }
- static inline void buffer_json_add_string_value(BUFFER *wb, const char *value) {
- if(value) {
- buffer_strcat(wb, wb->json.value_quote);
- buffer_json_strcat(wb, value);
- buffer_strcat(wb, wb->json.value_quote);
- }
- else
- buffer_fast_strcat(wb, "null", 4);
- }
- static inline void buffer_json_add_quoted_string_value(BUFFER *wb, const char *value) {
- if(value) {
- buffer_strcat(wb, wb->json.value_quote);
- buffer_json_quoted_strcat(wb, value);
- buffer_strcat(wb, wb->json.value_quote);
- }
- else
- buffer_fast_strcat(wb, "null", 4);
- }
- static inline void buffer_json_member_add_object(BUFFER *wb, const char *key) {
- buffer_print_json_comma_newline_spacing(wb);
- buffer_print_json_key(wb, key);
- buffer_fast_strcat(wb, ":{", 2);
- wb->json.stack[wb->json.depth].count++;
- _buffer_json_depth_push(wb, BUFFER_JSON_OBJECT);
- }
- static inline void buffer_json_object_close(BUFFER *wb) {
- #ifdef NETDATA_INTERNAL_CHECKS
- assert(wb->json.depth >= 0 && "BUFFER JSON: nothing is open to close it");
- assert(wb->json.stack[wb->json.depth].type == BUFFER_JSON_OBJECT && "BUFFER JSON: an object is not open to close it");
- #endif
- if(!wb->json.minify) {
- buffer_fast_strcat(wb, "\n", 1);
- buffer_print_spaces(wb, wb->json.depth);
- }
- buffer_fast_strcat(wb, "}", 1);
- _buffer_json_depth_pop(wb);
- }
- static inline void buffer_json_member_add_string(BUFFER *wb, const char *key, const char *value) {
- buffer_print_json_comma_newline_spacing(wb);
- buffer_print_json_key(wb, key);
- buffer_fast_strcat(wb, ":", 1);
- buffer_json_add_string_value(wb, value);
- wb->json.stack[wb->json.depth].count++;
- }
- static inline void buffer_json_member_add_string_or_omit(BUFFER *wb, const char *key, const char *value) {
- if(value && *value)
- buffer_json_member_add_string(wb, key, value);
- }
- static inline void buffer_json_member_add_string_or_empty(BUFFER *wb, const char *key, const char *value) {
- if(!value)
- value = "";
- buffer_json_member_add_string(wb, key, value);
- }
- static inline void buffer_json_member_add_quoted_string(BUFFER *wb, const char *key, const char *value) {
- buffer_print_json_comma_newline_spacing(wb);
- buffer_print_json_key(wb, key);
- buffer_fast_strcat(wb, ":", 1);
- if(!value || strcmp(value, "null") == 0)
- buffer_fast_strcat(wb, "null", 4);
- else
- buffer_json_add_quoted_string_value(wb, value);
- wb->json.stack[wb->json.depth].count++;
- }
- static inline void buffer_json_member_add_uuid(BUFFER *wb, const char *key, uuid_t *value) {
- buffer_print_json_comma_newline_spacing(wb);
- buffer_print_json_key(wb, key);
- buffer_fast_strcat(wb, ":", 1);
- if(value) {
- char uuid[GUID_LEN + 1];
- uuid_unparse_lower(*value, uuid);
- buffer_json_add_string_value(wb, uuid);
- }
- else
- buffer_json_add_string_value(wb, NULL);
- wb->json.stack[wb->json.depth].count++;
- }
- static inline void buffer_json_member_add_boolean(BUFFER *wb, const char *key, bool value) {
- buffer_print_json_comma_newline_spacing(wb);
- buffer_print_json_key(wb, key);
- buffer_fast_strcat(wb, ":", 1);
- buffer_strcat(wb, value?"true":"false");
- wb->json.stack[wb->json.depth].count++;
- }
- static inline void buffer_json_member_add_array(BUFFER *wb, const char *key) {
- buffer_print_json_comma_newline_spacing(wb);
- buffer_print_json_key(wb, key);
- buffer_fast_strcat(wb, ":[", 2);
- wb->json.stack[wb->json.depth].count++;
- _buffer_json_depth_push(wb, BUFFER_JSON_ARRAY);
- }
- static inline void buffer_json_add_array_item_array(BUFFER *wb) {
- buffer_print_json_comma_newline_spacing(wb);
- buffer_fast_strcat(wb, "[", 1);
- wb->json.stack[wb->json.depth].count++;
- _buffer_json_depth_push(wb, BUFFER_JSON_ARRAY);
- }
- static inline void buffer_json_add_array_item_string(BUFFER *wb, const char *value) {
- if(wb->json.stack[wb->json.depth].count)
- buffer_fast_strcat(wb, ",", 1);
- buffer_json_add_string_value(wb, value);
- wb->json.stack[wb->json.depth].count++;
- }
- static inline void buffer_json_add_array_item_double(BUFFER *wb, NETDATA_DOUBLE value) {
- if(wb->json.stack[wb->json.depth].count)
- buffer_fast_strcat(wb, ",", 1);
- buffer_print_netdata_double(wb, value);
- wb->json.stack[wb->json.depth].count++;
- }
- static inline void buffer_json_add_array_item_int64(BUFFER *wb, int64_t value) {
- if(wb->json.stack[wb->json.depth].count)
- buffer_fast_strcat(wb, ",", 1);
- buffer_print_int64(wb, value);
- wb->json.stack[wb->json.depth].count++;
- }
- static inline void buffer_json_add_array_item_uint64(BUFFER *wb, uint64_t value) {
- if(wb->json.stack[wb->json.depth].count)
- buffer_fast_strcat(wb, ",", 1);
- buffer_print_uint64(wb, value);
- wb->json.stack[wb->json.depth].count++;
- }
- static inline void buffer_json_add_array_item_time_t(BUFFER *wb, time_t value) {
- if(wb->json.stack[wb->json.depth].count)
- buffer_fast_strcat(wb, ",", 1);
- buffer_print_int64(wb, value);
- wb->json.stack[wb->json.depth].count++;
- }
- static inline void buffer_json_add_array_item_time_ms(BUFFER *wb, time_t value) {
- if(wb->json.stack[wb->json.depth].count)
- buffer_fast_strcat(wb, ",", 1);
- buffer_print_int64(wb, value);
- buffer_fast_strcat(wb, "000", 3);
- wb->json.stack[wb->json.depth].count++;
- }
- static inline void buffer_json_add_array_item_time_t2ms(BUFFER *wb, time_t value) {
- if(wb->json.stack[wb->json.depth].count)
- buffer_fast_strcat(wb, ",", 1);
- buffer_print_int64(wb, value);
- buffer_fast_strcat(wb, "000", 3);
- wb->json.stack[wb->json.depth].count++;
- }
- static inline void buffer_json_add_array_item_object(BUFFER *wb) {
- if(wb->json.stack[wb->json.depth].count)
- buffer_fast_strcat(wb, ",", 1);
- buffer_fast_strcat(wb, "{", 1);
- wb->json.stack[wb->json.depth].count++;
- _buffer_json_depth_push(wb, BUFFER_JSON_OBJECT);
- }
- static inline void buffer_json_member_add_time_t(BUFFER *wb, const char *key, time_t value) {
- buffer_print_json_comma_newline_spacing(wb);
- buffer_print_json_key(wb, key);
- buffer_fast_strcat(wb, ":", 1);
- buffer_print_int64(wb, value);
- wb->json.stack[wb->json.depth].count++;
- }
- static inline void buffer_json_member_add_time_t2ms(BUFFER *wb, const char *key, time_t value) {
- buffer_print_json_comma_newline_spacing(wb);
- buffer_print_json_key(wb, key);
- buffer_fast_strcat(wb, ":", 1);
- buffer_print_int64(wb, value);
- buffer_fast_strcat(wb, "000", 3);
- wb->json.stack[wb->json.depth].count++;
- }
- static inline void buffer_json_member_add_uint64(BUFFER *wb, const char *key, uint64_t value) {
- buffer_print_json_comma_newline_spacing(wb);
- buffer_print_json_key(wb, key);
- buffer_fast_strcat(wb, ":", 1);
- buffer_print_uint64(wb, value);
- wb->json.stack[wb->json.depth].count++;
- }
- static inline void buffer_json_member_add_int64(BUFFER *wb, const char *key, int64_t value) {
- buffer_print_json_comma_newline_spacing(wb);
- buffer_print_json_key(wb, key);
- buffer_fast_strcat(wb, ":", 1);
- buffer_print_int64(wb, value);
- wb->json.stack[wb->json.depth].count++;
- }
- static inline void buffer_json_member_add_double(BUFFER *wb, const char *key, NETDATA_DOUBLE value) {
- buffer_print_json_comma_newline_spacing(wb);
- buffer_print_json_key(wb, key);
- buffer_fast_strcat(wb, ":", 1);
- buffer_print_netdata_double(wb, value);
- wb->json.stack[wb->json.depth].count++;
- }
- static inline void buffer_json_array_close(BUFFER *wb) {
- #ifdef NETDATA_INTERNAL_CHECKS
- assert(wb->json.depth >= 0 && "BUFFER JSON: nothing is open to close it");
- assert(wb->json.stack[wb->json.depth].type == BUFFER_JSON_ARRAY && "BUFFER JSON: an array is not open to close it");
- #endif
- buffer_fast_strcat(wb, "]", 1);
- _buffer_json_depth_pop(wb);
- }
- #endif /* NETDATA_WEB_BUFFER_H */
|