1 /**
2 * collectd - src/match_empty_counter.c
3 * Copyright (C) 2009 Florian Forster
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Florian Forster <octo at collectd.org>
25 **/
27 #include "collectd.h"
28 #include "common.h"
29 #include "utils_cache.h"
30 #include "filter_chain.h"
32 /*
33 * private data types
34 */
35 struct mec_match_s;
36 typedef struct mec_match_s mec_match_t;
37 struct mec_match_s
38 {
39 int dummy;
40 };
42 /*
43 * internal helper functions
44 */
45 static int mec_create (const oconfig_item_t *ci, void **user_data) /* {{{ */
46 {
47 mec_match_t *m;
49 m = calloc (1, sizeof (*m));
50 if (m == NULL)
51 {
52 ERROR ("mec_create: calloc failed.");
53 return (-ENOMEM);
54 }
56 if (ci->children_num != 0)
57 {
58 ERROR ("empty_counter match: This match does not take any additional "
59 "configuration.");
60 }
62 *user_data = m;
63 return (0);
64 } /* }}} int mec_create */
66 static int mec_destroy (void **user_data) /* {{{ */
67 {
68 if (user_data != NULL)
69 {
70 sfree (*user_data);
71 }
73 return (0);
74 } /* }}} int mec_destroy */
76 static int mec_match (const data_set_t __attribute__((unused)) *ds, /* {{{ */
77 const value_list_t *vl,
78 notification_meta_t __attribute__((unused)) **meta, void **user_data)
79 {
80 int num_counters;
81 int num_empty;
82 size_t i;
84 if ((user_data == NULL) || (*user_data == NULL))
85 return (-1);
88 num_counters = 0;
89 num_empty = 0;
91 for (i = 0; i < ds->ds_num; i++)
92 {
93 if (ds->ds[i].type != DS_TYPE_COUNTER)
94 continue;
96 num_counters++;
97 if (vl->values[i].counter == 0)
98 num_empty++;
99 }
101 if (num_counters == 0)
102 return (FC_MATCH_NO_MATCH);
103 else if (num_counters == num_empty)
104 return (FC_MATCH_MATCHES);
105 else
106 return (FC_MATCH_NO_MATCH);
107 } /* }}} int mec_match */
109 void module_register (void)
110 {
111 match_proc_t mproc;
113 memset (&mproc, 0, sizeof (mproc));
114 mproc.create = mec_create;
115 mproc.destroy = mec_destroy;
116 mproc.match = mec_match;
117 fc_register_match ("empty_counter", mproc);
118 } /* module_register */
120 /* vim: set sw=2 sts=2 tw=78 et fdm=marker : */