write_redis: remove unused variable from wr_write()
[collectd.git] / src / write_redis.c
1 /**
2  * collectd - src/write_redis.c
3  * Copyright (C) 2010  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 <ff at octo.it>
25  **/
26
27 #include "collectd.h"
28 #include "plugin.h"
29 #include "common.h"
30 #include "configfile.h"
31
32 #include <pthread.h>
33 #include <credis.h>
34
35 struct wr_node_s
36 {
37   char name[DATA_MAX_NAME_LEN];
38
39   char *host;
40   int port;
41   int timeout;
42
43   REDIS conn;
44   pthread_mutex_t lock;
45 };
46 typedef struct wr_node_s wr_node_t;
47
48 /*
49  * Functions
50  */
51 static int wr_write (const data_set_t *ds, /* {{{ */
52     const value_list_t *vl,
53     user_data_t *ud)
54 {
55   wr_node_t *node = ud->data;
56   char ident[512];
57   char key[512];
58   char value[512];
59   size_t value_size;
60   char *value_ptr;
61   int status;
62
63   status = FORMAT_VL (ident, sizeof (ident), vl);
64   if (status != 0)
65     return (status);
66   ssnprintf (key, sizeof (key), "collectd/%s", ident);
67
68   memset (value, 0, sizeof (value));
69   value_size = sizeof (value);
70   value_ptr = &value[0];
71
72   status = format_values (value_ptr, value_size, ds, vl, /* store rates = */ 0);
73   pthread_mutex_lock (&node->lock);
74   if (status != 0)
75     return (status);
76
77   if (node->conn == NULL)
78   {
79     node->conn = credis_connect (node->host, node->port, node->timeout);
80     if (node->conn == NULL)
81     {
82       ERROR ("write_redis plugin: Connecting to host \"%s\" (port %i) failed.",
83           (node->host != NULL) ? node->host : "localhost",
84           (node->port != 0) ? node->port : 6379);
85       pthread_mutex_unlock (&node->lock);
86       return (-1);
87     }
88   }
89
90   /* "credis_zadd" doesn't handle a NULL pointer gracefully, so I'd rather
91    * have a meaningful assertion message than a normal segmentation fault. */
92   assert (node->conn != NULL);
93   status = credis_zadd (node->conn, key, (double) vl->time, value);
94
95   credis_sadd (node->conn, "collectd/values", ident);
96
97   pthread_mutex_unlock (&node->lock);
98
99   return (0);
100 } /* }}} int wr_write */
101
102 static void wr_config_free (void *ptr) /* {{{ */
103 {
104   wr_node_t *node = ptr;
105
106   if (node == NULL)
107     return;
108
109   if (node->conn != NULL)
110   {
111     credis_close (node->conn);
112     node->conn = NULL;
113   }
114
115   sfree (node->host);
116   sfree (node);
117 } /* }}} void wr_config_free */
118
119 static int wr_config_node (oconfig_item_t *ci) /* {{{ */
120 {
121   wr_node_t *node;
122   int status;
123   int i;
124
125   node = malloc (sizeof (*node));
126   if (node == NULL)
127     return (ENOMEM);
128   memset (node, 0, sizeof (*node));
129   node->host = NULL;
130   node->port = 0;
131   node->timeout = 1000;
132   node->conn = NULL;
133   pthread_mutex_init (&node->lock, /* attr = */ NULL);
134
135   status = cf_util_get_string_buffer (ci, node->name, sizeof (node->name));
136   if (status != 0)
137   {
138     sfree (node);
139     return (status);
140   }
141
142   for (i = 0; i < ci->children_num; i++)
143   {
144     oconfig_item_t *child = ci->children + i;
145
146     if (strcasecmp ("Host", child->key) == 0)
147       status = cf_util_get_string (child, &node->host);
148     else if (strcasecmp ("Port", child->key) == 0)
149     {
150       status = cf_util_get_port_number (child);
151       if (status > 0)
152       {
153         node->port = status;
154         status = 0;
155       }
156     }
157     else if (strcasecmp ("Timeout", child->key) == 0)
158       status = cf_util_get_int (child, &node->timeout);
159     else
160       WARNING ("write_redis plugin: Ignoring unknown config option \"%s\".",
161           child->key);
162
163     if (status != 0)
164       break;
165   } /* for (i = 0; i < ci->children_num; i++) */
166
167   if (status == 0)
168   {
169     char cb_name[DATA_MAX_NAME_LEN];
170     user_data_t ud;
171
172     ssnprintf (cb_name, sizeof (cb_name), "write_redis/%s", node->name);
173
174     ud.data = node;
175     ud.free_func = wr_config_free;
176
177     status = plugin_register_write (cb_name, wr_write, &ud);
178   }
179
180   if (status != 0)
181     wr_config_free (node);
182
183   return (status);
184 } /* }}} int wr_config_node */
185
186 static int wr_config (oconfig_item_t *ci) /* {{{ */
187 {
188   int i;
189
190   for (i = 0; i < ci->children_num; i++)
191   {
192     oconfig_item_t *child = ci->children + i;
193
194     if (strcasecmp ("Node", child->key) == 0)
195       wr_config_node (child);
196     else
197       WARNING ("write_redis plugin: Ignoring unknown "
198           "configuration option \"%s\" at top level.", child->key);
199   }
200
201   return (0);
202 } /* }}} int wr_config */
203
204 void module_register (void)
205 {
206   plugin_register_complex_config ("write_redis", wr_config);
207 }
208
209 /* vim: set sw=2 sts=2 tw=78 et fdm=marker : */