mirror of
https://github.com/netdata/netdata.git
synced 2025-04-06 22:38:55 +00:00

This PR was created to fix #3414, here I am completing the job initiated by Christopher, among the newest features that we are bring we have JSON inside the core - We are bringing to the core the capacity to work with JSON files, this is available either using the JSON-C library case it is present in the system or using JSMN library that was incorporated to our core. The preference is to have JSON-C, because it is a more complete library, but case the user does not have the library installed we are keeping the JSMN for we do not lose the feature. Health LIST - We are bringing more one command to the Health API, now with the LIST it is possible to get in JSON format the alarms active with Netdata. Health reorganized - Previously we had duplicated code in different files, this PR is fixing this (Thanks @cakrit !), the Health is now better organized. Removing memory leak - The first implementation of the json.c was creating SILENCERS without to link it in anywhere. Now it has been linked properly. Script updated - We are bringing some changes to the script that tests the Health. This PR also fixes the race condition created by the previous new position of the SILENCERS creation, I had to move it to daemon/main.c, because after various tests, it was confirmed that the error could happen in different parts of the code, case it was not initialized before the threads starts. Component Name health directory health-cmd Additional Information Fixes #6356 and #3414
75 lines
No EOL
1.7 KiB
C
75 lines
No EOL
1.7 KiB
C
#ifndef __JSMN_H_
|
|
#define __JSMN_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stddef.h>
|
|
/**
|
|
* JSON type identifier. Basic types are:
|
|
* o Object
|
|
* o Array
|
|
* o String
|
|
* o Other primitive: number, boolean (true/false) or null
|
|
*/
|
|
typedef enum {
|
|
JSMN_PRIMITIVE = 0,
|
|
JSMN_OBJECT = 1,
|
|
JSMN_ARRAY = 2,
|
|
JSMN_STRING = 3
|
|
} jsmntype_t;
|
|
|
|
typedef enum {
|
|
/* Not enough tokens were provided */
|
|
JSMN_ERROR_NOMEM = -1,
|
|
/* Invalid character inside JSON string */
|
|
JSMN_ERROR_INVAL = -2,
|
|
/* The string is not a full JSON packet, more bytes expected */
|
|
JSMN_ERROR_PART = -3,
|
|
} jsmnerr_t;
|
|
|
|
/**
|
|
* JSON token description.
|
|
*
|
|
* @param type type (object, array, string etc.)
|
|
* @param start start position in JSON data string
|
|
* @param end end position in JSON data string
|
|
*/
|
|
typedef struct {
|
|
jsmntype_t type;
|
|
int start;
|
|
int end;
|
|
int size;
|
|
#ifdef JSMN_PARENT_LINKS
|
|
int parent;
|
|
#endif
|
|
} jsmntok_t;
|
|
|
|
/**
|
|
* JSON parser. Contains an array of token blocks available. Also stores
|
|
* the string being parsed now and current position in that string
|
|
*/
|
|
typedef struct {
|
|
unsigned int pos; /* offset in the JSON string */
|
|
unsigned int toknext; /* next token to allocate */
|
|
int toksuper; /* superior token node, e.g parent object or array */
|
|
} jsmn_parser;
|
|
|
|
/**
|
|
* Create JSON parser over an array of tokens
|
|
*/
|
|
void jsmn_init(jsmn_parser *parser);
|
|
|
|
/**
|
|
* Run JSON parser. It parses a JSON data string into and array of tokens, each describing
|
|
* a single JSON object.
|
|
*/
|
|
jsmnerr_t jsmn_parse(jsmn_parser *parser, const char *js, size_t len,
|
|
jsmntok_t *tokens, unsigned int num_tokens);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __JSMN_H_ */ |