2 * collectd - src/utils_ignorelist.h
3 * Copyright (C) 2006 Lubos Stanek <lubek at users.sourceforge.net>
5 * This program is free software; you can redistribute it and/
6 * or modify it under the terms of the GNU General Public Li-
7 * cence as published by the Free Software Foundation; either
8 * version 2 of the Licence, or any later version.
10 * This program is distributed in the hope that it will be use-
11 * ful, but WITHOUT ANY WARRANTY; without even the implied war-
12 * ranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 * See the GNU General Public Licence for more details.
15 * You should have received a copy of the GNU General Public
16 * Licence along with this program; if not, write to the Free
17 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
21 * Lubos Stanek <lubek at users.sourceforge.net>
24 * ignorelist handles plugin's list of configured collectable
25 * entries with global ignore action
28 #ifndef UTILS_IGNORELIST_H
29 #define UTILS_IGNORELIST_H 1
37 /* public prototypes */
40 typedef struct ignorelist_s ignorelist_t;
43 * create the ignorelist_t with known ignore state
44 * return pointer to ignorelist_t
46 ignorelist_t *ignorelist_create (int invert);
49 * free memory used by ignorelist_t
51 void ignorelist_free (ignorelist_t *il);
54 * set ignore state of the ignorelist_t
56 void ignorelist_set_invert (ignorelist_t *il, int invert);
59 * append entry to ignorelist_t
60 * returns zero on success, non-zero upon failure.
62 int ignorelist_add (ignorelist_t *il, const char *entry);
65 * check list for entry
66 * return 1 for ignored entry
68 int ignorelist_match (ignorelist_t *il, const char *entry);
70 #endif /* UTILS_IGNORELIST_H */