Fix compile time issues
[collectd.git] / src / utils_tail_match.h
1 /*
2  * collectd - src/utils_tail_match.h
3  * Copyright (C) 2007-2008  C-Ware, Inc.
4  * Copyright (C) 2008       Florian Forster
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a
7  * copy of this software and associated documentation files (the "Software"),
8  * to deal in the Software without restriction, including without limitation
9  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  * and/or sell copies of the Software, and to permit persons to whom the
11  * Software is furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  *
24  * Authors:
25  *   Luke Heberling <lukeh at c-ware.com>
26  *   Florian Forster <octo at collectd.org>
27  *
28  * Description:
29  *   `tail_match' uses `utils_tail' and `utils_match' to tail a file and try to
30  *   match it using several regular expressions. Matches are then passed to
31  *   user-provided callback functions or default handlers. This should keep all
32  *   of the parsing logic out of the actual plugin, which only operate with
33  *   regular expressions.
34  */
35
36 #include "utils/latency/latency_config.h"
37 #include "utils/match/match.h"
38
39 struct cu_tail_match_s;
40 typedef struct cu_tail_match_s cu_tail_match_t;
41
42 /*
43  * NAME
44  *   tail_match_create
45  *
46  * DESCRIPTION
47  *   Allocates, initializes and returns a new `cu_tail_match_t' object.
48  *
49  * PARAMETERS
50  *   `filename'  The name to read data from.
51  *
52  * RETURN VALUE
53  *   Returns NULL upon failure, non-NULL otherwise.
54  */
55 cu_tail_match_t *tail_match_create(const char *filename);
56
57 /*
58  * NAME
59  *   tail_match_destroy
60  *
61  * DESCRIPTION
62  *   Releases resources used by the `cu_tail_match_t' object.
63  *
64  * PARAMETERS
65  *   The object to destroy.
66  */
67 void tail_match_destroy(cu_tail_match_t *obj);
68
69 /*
70  * NAME
71  *   tail_match_add_match
72  *
73  * DESCRIPTION
74  *   Adds a match, in form of a `cu_match_t' object, to the object.
75  *   After data has been read from the logfile (using utils_tail) the callback
76  *   function `submit_match' is called with the match object and the user
77  *   supplied data.
78  *   Please note that his function is called regardless whether this match
79  *   matched any lines recently or not.
80  *   When `tail_match_destroy' is called the `user_data' pointer is freed using
81  *   the `free_user_data' callback - if it is not NULL.
82  *   When using this interface the `tail_match' module doesn't dispatch any
83  *   values itself - all that has to happen in either the match-callbacks or
84  *   the submit_match callback.
85  *
86  * RETURN VALUE
87  *   Zero upon success, non-zero otherwise.
88  */
89 int tail_match_add_match(cu_tail_match_t *obj, cu_match_t *match,
90                          int (*submit_match)(cu_match_t *match,
91                                              void *user_data),
92                          void *user_data,
93                          void (*free_user_data)(void *user_data));
94
95 /*
96  * NAME
97  *  tail_match_add_match_simple
98  *
99  * DESCRIPTION
100  *  A simplified version of `tail_match_add_match'. The regular expression
101  *  `regex' must match a number, which is then dispatched according to
102  * `ds_type'.
103  *  See the `match_create_simple' function in utils_match.h for a description
104  *  how this flag effects calculation of a new value.
105  *  The values gathered are dispatched by the tail_match module in this case.
106  *  The passed `plugin', `plugin_instance', `type', and `type_instance' are
107  *  directly used when submitting these values.
108  *  With excluderegex it is possible to exlude lines from the match.
109  *  The `latency_cfg' specifies configuration for submitting latency.
110  *
111  * RETURN VALUE
112  *   Zero upon success, non-zero otherwise.
113  */
114 int tail_match_add_match_simple(cu_tail_match_t *obj, const char *regex,
115                                 const char *excluderegex, int ds_type,
116                                 const char *plugin, const char *plugin_instance,
117                                 const char *type, const char *type_instance,
118                                 const latency_config_t latency_cfg);
119
120 /*
121  * NAME
122  *   tail_match_read
123  *
124  * DESCRIPTION
125  *   This function should be called periodically by plugins. It reads new lines
126  *   from the logfile using `utils_tail' and tries to match them using all
127  *   added `utils_match' objects.
128  *   After all lines have been read and processed, the submit_match callback is
129  *   called or, in case of tail_match_add_match_simple, the data is dispatched
130  *   to the daemon directly.
131  *
132  * RETURN VALUE
133  *   Zero on success, nonzero on failure.
134  */
135 int tail_match_read(cu_tail_match_t *obj);