Merge branch 'collectd-5.7' into collectd-5.8
[collectd.git] / src / match_empty_counter.c
1 /**
2  * collectd - src/match_empty_counter.c
3  * Copyright (C) 2009-2016  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  **/
26
27 #include "collectd.h"
28
29 #include "common.h"
30 #include "filter_chain.h"
31
32 /*
33  * internal helper functions
34  */
35 static int mec_create(const oconfig_item_t *ci, void **user_data) /* {{{ */
36 {
37   if (ci->children_num != 0) {
38     ERROR("empty_counter match: This match does not take any additional "
39           "configuration.");
40   }
41
42   *user_data = NULL;
43   return 0;
44 } /* }}} int mec_create */
45
46 static int mec_destroy(__attribute__((unused)) void **user_data) /* {{{ */
47 {
48   return 0;
49 } /* }}} int mec_destroy */
50
51 static int mec_match(__attribute__((unused)) const data_set_t *ds, /* {{{ */
52                      const value_list_t *vl,
53                      __attribute__((unused)) notification_meta_t **meta,
54                      __attribute__((unused)) void **user_data) {
55   int num_counters = 0;
56   int num_empty = 0;
57
58   for (size_t i = 0; i < ds->ds_num; i++) {
59     if ((ds->ds[i].type != DS_TYPE_DERIVE) &&
60         (ds->ds[i].type != DS_TYPE_COUNTER))
61       continue;
62
63     num_counters++;
64     if (((ds->ds[i].type == DS_TYPE_DERIVE) && (vl->values[i].derive == 0)) ||
65         ((ds->ds[i].type == DS_TYPE_COUNTER) && (vl->values[i].counter == 0)))
66       num_empty++;
67   }
68
69   if ((num_counters != 0) && (num_counters == num_empty))
70     return FC_MATCH_MATCHES;
71
72   return FC_MATCH_NO_MATCH;
73 } /* }}} int mec_match */
74
75 void module_register(void) {
76   fc_register_match(
77       "empty_counter",
78       (match_proc_t){
79           .create = mec_create, .destroy = mec_destroy, .match = mec_match,
80       });
81 } /* module_register */