]> arthur.barton.de Git - netdata.git/blob - src/eval.h
Merge pull request #838 from ktsaou/master
[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     time_t *after;
19     time_t *before;
20
21     calculated_number result;
22
23     int error;
24     BUFFER *error_msg;
25
26     // hidden EVAL_NODE *
27     void *nodes;
28
29     // custom data to be used for looking up variables
30     struct rrdcalc *rrdcalc;
31 } EVAL_EXPRESSION;
32
33 #define EVAL_VALUE_INVALID    0
34 #define EVAL_VALUE_NUMBER     1
35 #define EVAL_VALUE_VARIABLE   2
36 #define EVAL_VALUE_EXPRESSION 3
37
38 // parsing and evaluation
39 #define EVAL_ERROR_OK                             0
40
41 // parsing errors
42 #define EVAL_ERROR_MISSING_CLOSE_SUBEXPRESSION    1
43 #define EVAL_ERROR_UNKNOWN_OPERAND                2
44 #define EVAL_ERROR_MISSING_OPERAND                3
45 #define EVAL_ERROR_MISSING_OPERATOR               4
46 #define EVAL_ERROR_REMAINING_GARBAGE              5
47 #define EVAL_ERROR_IF_THEN_ELSE_MISSING_ELSE      6
48
49 // evaluation errors
50 #define EVAL_ERROR_INVALID_VALUE                101
51 #define EVAL_ERROR_INVALID_NUMBER_OF_OPERANDS   102
52 #define EVAL_ERROR_VALUE_IS_NAN                 103
53 #define EVAL_ERROR_VALUE_IS_INFINITE            104
54 #define EVAL_ERROR_UNKNOWN_VARIABLE             105
55
56 // parse the given string as an expression and return:
57 //   a pointer to an expression if it parsed OK
58 //   NULL in which case the pointer to error has the error code
59 extern EVAL_EXPRESSION *expression_parse(const char *string, const char **failed_at, int *error);
60
61 // free all resources allocated for an expression
62 extern void expression_free(EVAL_EXPRESSION *op);
63
64 // convert an error code to a message
65 extern const char *expression_strerror(int error);
66
67 // evaluate an expression and return
68 // 1 = OK, the result is in: expression->result
69 // 2 = FAILED, the error message is in: buffer_tostring(expression->error_msg)
70 extern int expression_evaluate(EVAL_EXPRESSION *expression);
71
72 #endif //NETDATA_EVAL_H