amqp plugin: Use "service_name_to_port_number" to parse the "Port" config option.
[collectd.git] / src / amqp.c
1 /*
2 **
3 ** collectd-amqp
4 ** Copyright (c) <2009> <sebastien.pahl@dotcloud.com>
5 **
6 ** Permission is hereby granted, free of charge, to any person
7 ** obtaining a copy of this software and associated documentation
8 ** files (the "Software"), to deal in the Software without
9 ** restriction, including without limitation the rights to use,
10 ** copy, modify, merge, publish, distribute, sublicense, and/or sell
11 ** copies of the Software, and to permit persons to whom the
12 ** Software is furnished to do so, subject to the following
13 ** conditions:
14 **
15 ** The above copyright notice and this permission notice shall be
16 ** included in all copies or substantial portions of the Software.
17 **
18 ** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 ** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
20 ** OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 ** NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
22 ** HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
23 ** WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
24 ** FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
25 ** OTHER DEALINGS IN THE SOFTWARE.
26 **
27 */
28
29 #include <stdint.h>
30 #include <stdlib.h>
31 #include <unistd.h>
32 #include <strings.h>
33
34 #include <collectd.h>
35 #include <common.h>
36 #include <plugin.h>
37 #include <utils_format_json.h>
38
39 #include <amqp.h>
40 #include <amqp_framing.h>
41
42 #define PLUGIN_NAME "amqp"
43
44 static int  port;
45 static char *host       = NULL;
46 static char *vhost      = NULL;
47 static char *user       = NULL;
48 static char *password   = NULL;
49 static char *exchange   = NULL;
50 static char *routingkey = NULL;
51
52 static const char *config_keys[] =
53 {
54     "Host",
55     "Port",
56     "VHost",
57     "User",
58     "Password",
59     "Exchange",
60     "RoutingKey"
61 };
62
63 static int config_keys_num = STATIC_ARRAY_SIZE(config_keys);
64
65 static void config_free(char *var)
66 {
67     if (var != NULL)
68         free(var);
69 }
70
71 static int config_set(char **var, const char *value)
72 {
73     config_free(*var);
74     if ((*var = strdup(value)) == NULL)
75         return (1);
76     return (0);
77 }
78
79 static int config(const char *key, const char *value)
80 {
81     if (strcasecmp(key, "host") == 0)
82         return (config_set(&host, value));
83     else if(strcasecmp(key, "port") == 0)
84     {
85         int tmp;
86
87         tmp = service_name_to_port_number (value);
88         if (tmp <= 0)
89         {
90             ERROR ("AMQP plugin: Cannot parse `%s' as a "
91                     "service name (port number).", value);
92             return (1);
93         }
94
95         port = tmp;
96         return (0);
97     }
98     else if (strcasecmp(key, "vhost") == 0)
99         return (config_set(&vhost, value));
100     else if (strcasecmp(key, "user") == 0)
101         return (config_set(&user, value));
102     else if (strcasecmp(key, "password") == 0)
103         return (config_set(&password, value));
104     else if (strcasecmp(key, "exchange") == 0)
105         return (config_set(&exchange, value));
106     else if (strcasecmp(key, "routingkey") == 0)
107         return (config_set(&routingkey, value));
108     return (-1);
109 }
110
111 static int amqp_write(const data_set_t *ds, const value_list_t *vl, user_data_t *user_data)
112 {
113     int error;
114     int sockfd;
115     size_t bfree;
116     size_t bfill;
117     char buffer[4096];
118     amqp_rpc_reply_t reply;
119     amqp_connection_state_t conn;
120     amqp_basic_properties_t props;
121
122     conn = amqp_new_connection();
123     if ((sockfd = amqp_open_socket(host, port)) < 0)
124     {
125         amqp_destroy_connection(conn);
126         return (1);
127     }
128     amqp_set_sockfd(conn, sockfd);
129     reply = amqp_login(conn, vhost,
130             /* channel max = */      0,
131             /* frame max = */   131072,
132             /* heartbeat = */        0,
133             /* authentication: */ AMQP_SASL_METHOD_PLAIN, user, password);
134     if (reply.reply_type != AMQP_RESPONSE_NORMAL)
135     {
136         amqp_destroy_connection(conn);
137         close(sockfd);
138         return (1);
139     }
140     amqp_channel_open(conn, 1);
141     if (reply.reply_type != AMQP_RESPONSE_NORMAL)
142     {
143         amqp_connection_close(conn, AMQP_REPLY_SUCCESS);
144         amqp_destroy_connection(conn);
145         close(sockfd);
146         return (1);
147     }
148     error = 0;
149     memset(buffer, 0, sizeof(buffer));
150     bfree = sizeof(buffer);
151     bfill = 0;
152     format_json_initialize(buffer, &bfill, &bfree);
153     format_json_value_list(buffer, &bfill, &bfree, ds, vl);
154     format_json_finalize(buffer, &bfill, &bfree);
155     props._flags = AMQP_BASIC_CONTENT_TYPE_FLAG | AMQP_BASIC_DELIVERY_MODE_FLAG;
156     props.content_type = amqp_cstring_bytes("application/json");
157     props.delivery_mode = 2; /* persistent delivery mode */
158     error = amqp_basic_publish(conn,
159                 /* channel = */ 1,
160                 amqp_cstring_bytes(exchange),
161                 amqp_cstring_bytes(routingkey),
162                 /* mandatory = */ 0,
163                 /* immediate = */ 0,
164                 &props,
165                 amqp_cstring_bytes(buffer));
166     reply = amqp_channel_close(conn, 1, AMQP_REPLY_SUCCESS);
167     if (reply.reply_type != AMQP_RESPONSE_NORMAL)
168         error = 1;
169     reply = amqp_connection_close(conn, AMQP_REPLY_SUCCESS);
170     if (reply.reply_type != AMQP_RESPONSE_NORMAL)
171         error = 1;
172     amqp_destroy_connection(conn);
173     if (close(sockfd) < 0)
174         error = 1;
175     return (error);
176 }
177
178 static int shutdown(void)
179 {
180     config_free(host);
181     config_free(vhost);
182     config_free(user);
183     config_free(password);
184     config_free(exchange);
185     config_free(routingkey);
186     return (0);
187 }
188
189 void module_register(void)
190 {
191     plugin_register_config(PLUGIN_NAME, config, config_keys, config_keys_num);
192     plugin_register_write(PLUGIN_NAME, amqp_write, NULL);
193     plugin_register_shutdown(PLUGIN_NAME, shutdown);
194 }
195
196 /* vim: set sw=4 sts=4 et : */