]> arthur.barton.de Git - netdata.git/blob - src/eval.h
Merge remote-tracking branch 'upstream/master' into health
[netdata.git] / src / eval.h
1 #ifndef NETDATA_EVAL_H
2 #define NETDATA_EVAL_H
3
4 #define EVAL_MAX_VARIABLE_NAME_LENGTH 300
5
6 typedef struct eval_variable {
7     char *name;
8     uint32_t hash;
9     struct rrdvar *rrdvar;
10     struct eval_variable *next;
11 } EVAL_VARIABLE;
12
13 typedef struct eval_expression {
14     const char *source;
15     const char *parsed_as;
16
17     calculated_number *this;
18     calculated_number result;
19
20     int error;
21     BUFFER *error_msg;
22
23     // hidden EVAL_NODE *
24     void *nodes;
25
26     // custom data to be used for looking up variables
27     struct rrdcalc *rrdcalc;
28 } EVAL_EXPRESSION;
29
30 #define EVAL_VALUE_INVALID 0
31 #define EVAL_VALUE_NUMBER 1
32 #define EVAL_VALUE_VARIABLE 2
33 #define EVAL_VALUE_EXPRESSION 3
34
35 #define EVAL_ERROR_OK 0
36
37 // parsing errors
38 #define EVAL_ERROR_MISSING_CLOSE_SUBEXPRESSION 1
39 #define EVAL_ERROR_UNKNOWN_OPERAND 2
40 #define EVAL_ERROR_MISSING_OPERAND 3
41 #define EVAL_ERROR_MISSING_OPERATOR 4
42 #define EVAL_ERROR_REMAINING_GARBAGE 5
43
44 // evaluation errors
45 #define EVAL_ERROR_INVALID_VALUE 11
46 #define EVAL_ERROR_INVALID_NUMBER_OF_OPERANDS 12
47 #define EVAL_ERROR_VALUE_IS_NAN 13
48 #define EVAL_ERROR_VALUE_IS_INFINITE 14
49 #define EVAL_ERROR_UNKNOWN_VARIABLE 15
50
51 // parse the given string as an expression and return:
52 //   a pointer to an expression if it parsed OK
53 //   NULL in which case the pointer to error has the error code
54 extern EVAL_EXPRESSION *expression_parse(const char *string, const char **failed_at, int *error);
55
56 // free all resources allocated for an expression
57 extern void expression_free(EVAL_EXPRESSION *op);
58
59 // convert an error code to a message
60 extern const char *expression_strerror(int error);
61
62 // evaluate an expression and return
63 // 1 = OK, the result is in: expression->result
64 // 2 = FAILED, the error message is in: buffer_tostring(expression->error_msg)
65 extern int expression_evaluate(EVAL_EXPRESSION *expression);
66
67 #endif //NETDATA_EVAL_H