mirror of
https://github.com/netdata/netdata.git
synced 2025-04-05 22:15:32 +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
72 lines
No EOL
2 KiB
C
72 lines
No EOL
2 KiB
C
#ifndef CHECKIN_JSON_H
|
|
#define CHECKIN_JSON_H 1
|
|
|
|
|
|
#if ENABLE_JSONC
|
|
# include <json-c/json.h>
|
|
#endif
|
|
|
|
#include "jsmn.h"
|
|
|
|
//https://www.ibm.com/support/knowledgecenter/en/SS9H2Y_7.6.0/com.ibm.dp.doc/json_parserlimits.html
|
|
#define JSON_NAME_LEN 256
|
|
#define JSON_FULLNAME_LEN 1024
|
|
|
|
typedef enum {
|
|
JSON_OBJECT = 0,
|
|
JSON_ARRAY = 1,
|
|
JSON_STRING = 2,
|
|
JSON_NUMBER = 3,
|
|
JSON_BOOLEAN = 4,
|
|
JSON_NULL = 5,
|
|
} JSON_ENTRY_TYPE;
|
|
|
|
typedef struct json_entry {
|
|
JSON_ENTRY_TYPE type;
|
|
char name[JSON_NAME_LEN + 1];
|
|
char fullname[JSON_FULLNAME_LEN + 1];
|
|
union {
|
|
char *string; // type == JSON_STRING
|
|
long double number; // type == JSON_NUMBER
|
|
int boolean; // type == JSON_BOOLEAN
|
|
size_t items; // type == JSON_ARRAY
|
|
} data;
|
|
size_t pos; // the position of this item in its parent
|
|
|
|
char *original_string;
|
|
|
|
void *callback_data;
|
|
int (*callback_function)(struct json_entry *);
|
|
} JSON_ENTRY;
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// public functions
|
|
|
|
#define JSON_OK 0
|
|
#define JSON_CANNOT_DOWNLOAD 1
|
|
#define JSON_CANNOT_PARSE 2
|
|
|
|
int json_parse(char *js, void *callback_data, int (*callback_function)(JSON_ENTRY *));
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// private functions
|
|
|
|
#ifdef ENABLE_JSONC
|
|
json_object *json_tokenise(char *js);
|
|
size_t json_walk(json_object *t, void *callback_data, int (*callback_function)(struct json_entry *));
|
|
#else
|
|
jsmntok_t *json_tokenise(char *js, size_t len, size_t *count);
|
|
size_t json_walk_tree(char *js, jsmntok_t *t, void *callback_data, int (*callback_function)(struct json_entry *));
|
|
#endif
|
|
|
|
size_t json_walk_object(char *js, jsmntok_t *t, size_t nest, size_t start, JSON_ENTRY *e);
|
|
size_t json_walk_array(char *js, jsmntok_t *t, size_t nest, size_t start, JSON_ENTRY *e);
|
|
size_t json_walk_string(char *js, jsmntok_t *t, size_t start, JSON_ENTRY *e);
|
|
size_t json_walk_primitive(char *js, jsmntok_t *t, size_t start, JSON_ENTRY *e);
|
|
|
|
int json_callback_print(JSON_ENTRY *e);
|
|
|
|
|
|
|
|
#endif |