d32178a43800aff05c6236569f21acf11d88090a
[collectd.git] / src / utils_match.h
1 /**
2  * collectd - src/utils_match.h
3  * Copyright (C) 2008  Florian octo Forster
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; either version 2 of the License, or (at your
8  * option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  *
19  * Authors:
20  *   Florian octo Forster <octo at verplant.org>
21  **/
22
23 #ifndef UTILS_MATCH_H
24 #define UTILS_MATCH_H 1
25
26 #include "plugin.h"
27
28 /*
29  * Defines
30  */
31 #define UTILS_MATCH_DS_TYPE_GAUGE    0x10
32 #define UTILS_MATCH_DS_TYPE_COUNTER  0x20
33 #define UTILS_MATCH_DS_TYPE_DERIVE   0x40
34 #define UTILS_MATCH_DS_TYPE_ABSOLUTE 0x80
35
36 #define UTILS_MATCH_CF_GAUGE_AVERAGE 0x01
37 #define UTILS_MATCH_CF_GAUGE_MIN     0x02
38 #define UTILS_MATCH_CF_GAUGE_MAX     0x04
39 #define UTILS_MATCH_CF_GAUGE_LAST    0x08
40 #define UTILS_MATCH_CF_GAUGE_INC     0x09
41 #define UTILS_MATCH_CF_GAUGE_ADD     0x10
42
43 #define UTILS_MATCH_CF_COUNTER_SET   0x01
44 #define UTILS_MATCH_CF_COUNTER_ADD   0x02
45 #define UTILS_MATCH_CF_COUNTER_INC   0x04
46
47 #define UTILS_MATCH_CF_DERIVE_SET   0x01
48 #define UTILS_MATCH_CF_DERIVE_ADD   0x02
49 #define UTILS_MATCH_CF_DERIVE_INC   0x04
50
51 #define UTILS_MATCH_CF_ABSOLUTE_SET   0x01
52 #define UTILS_MATCH_CF_ABSOLUTE_ADD   0x02
53 #define UTILS_MATCH_CF_ABSOLUTE_INC   0x04
54
55 /*
56  * Data types
57  */
58 struct cu_match_s;
59 typedef struct cu_match_s cu_match_t;
60
61 struct cu_match_value_s
62 {
63   int ds_type;
64   value_t value;
65   unsigned int values_num;
66 };
67 typedef struct cu_match_value_s cu_match_value_t;
68
69 /*
70  * Prototypes
71  */
72 /*
73  * NAME
74  *  match_create_callback
75  *
76  * DESCRIPTION
77  *  Creates a new `cu_match_t' object which will use the regular expression
78  *  `regex' to match lines, see the `match_apply' method below. If the line
79  *  matches, the callback passed in `callback' will be called along with the
80  *  pointer `user_pointer'.
81  *  The string that's passed to the callback depends on the regular expression:
82  *  If the regular expression includes a sub-match, i. e. something like
83  *    "value=([0-9][0-9]*)"
84  *  then only the submatch (the part in the parenthesis) will be passed to the
85  *  callback. If there is no submatch, then the entire string is passed to the
86  *  callback.
87  *  The optional `excluderegex' allows to exclude the line from the match, if
88  *  the excluderegex matches.
89  */
90 cu_match_t *match_create_callback (const char *regex, const char *excluderegex,
91                 int (*callback) (const char *str,
92                   char * const *matches, size_t matches_num, void *user_data),
93                 void *user_data);
94
95 /*
96  * NAME
97  *  match_create_simple
98  *
99  * DESCRIPTION
100  *  Creates a new `cu_match_t' with a default callback. The user data for that
101  *  default callback will be a `cu_match_value_t' structure, with
102  *  `ds_type' copied to the structure. The default callback will handle the
103  *  string as containing a number (see strtoll(3) and strtod(3)) and store that
104  *  number in the `value' member. How that is done depends on `ds_type':
105  *
106  *  UTILS_MATCH_DS_TYPE_GAUGE
107  *    The function will search for a floating point number in the string and
108  *    store it in value.gauge.
109  *  UTILS_MATCH_DS_TYPE_COUNTER_SET
110  *    The function will search for an integer in the string and store it in
111  *    value.counter.
112  *  UTILS_MATCH_DS_TYPE_COUNTER_ADD
113  *    The function will search for an integer in the string and add it to the
114  *    value in value.counter.
115  *  UTILS_MATCH_DS_TYPE_COUNTER_INC
116  *    The function will not search for anything in the string and increase
117  *    value.counter by one.
118  */
119 cu_match_t *match_create_simple (const char *regex,
120                                  const char *excluderegex, int ds_type);
121
122 /*
123  * NAME
124  *  match_destroy
125  *
126  * DESCRIPTION
127  *  Destroys the object and frees all internal resources.
128  */
129 void match_destroy (cu_match_t *obj);
130
131 /*
132  * NAME
133  *  match_apply
134  *
135  * DESCRIPTION
136  *  Tries to match the string `str' with the regular expression of `obj'. If
137  *  the string matches, calls the callback in `obj' with the (sub-)match.
138  *
139  *  The user_data pointer passed to `match_create_callback' is NOT freed
140  *  automatically. The `cu_match_value_t' structure allocated by
141  *  `match_create_callback' is freed automatically.
142  */
143 int match_apply (cu_match_t *obj, const char *str);
144
145 /*
146  * NAME
147  *  match_get_user_data
148  *
149  * DESCRIPTION
150  *  Returns the pointer passed to `match_create_callback' or a pointer to the
151  *  `cu_match_value_t' structure allocated by `match_create_simple'.
152  */
153 void *match_get_user_data (cu_match_t *obj);
154
155 #endif /* UTILS_MATCH_H */
156
157 /* vim: set sw=2 sts=2 ts=8 : */