amqp plugin: Improve handling of the "routing key".
[collectd.git] / src / amqp.c
1 /**
2  * collectd - src/amqp.c
3  * Copyright (C) 2009  Sebastien Pahl
4  * Copyright (C) 2010  Florian Forster
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a
7  * copy of this software and associated documentation files (the "Software"),
8  * to deal in the Software without restriction, including without limitation
9  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  * and/or sell copies of the Software, and to permit persons to whom the
11  * Software is furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  *
24  * Authors:
25  *   Sebastien Pahl <sebastien.pahl at dotcloud.com>
26  *   Florian Forster <octo at verplant.org>
27  **/
28
29 #include <stdint.h>
30 #include <stdlib.h>
31 #include <unistd.h>
32 #include <strings.h>
33 #include <pthread.h>
34
35 #include "collectd.h"
36 #include "common.h"
37 #include "plugin.h"
38 #include "utils_cmd_putval.h"
39 #include "utils_format_json.h"
40
41 #include <amqp.h>
42 #include <amqp_framing.h>
43
44 /* Defines for the delivery mode. I have no idea why they're not defined by the
45  * library.. */
46 #define CAMQP_DM_VOLATILE   1
47 #define CAMQP_DM_PERSISTENT 2
48
49 #define CAMQP_FORMAT_COMMAND 1
50 #define CAMQP_FORMAT_JSON    2
51
52 #define CAMQP_CHANNEL 1
53
54 /*
55  * Data types
56  */
57 struct camqp_config_s
58 {
59     _Bool   publish;
60     char   *name;
61     int     format;
62
63     char   *host;
64     int     port;
65     char   *vhost;
66     char   *user;
67     char   *password;
68
69     char   *exchange;
70     char   *routing_key;
71
72     /* publish only */
73     uint8_t delivery_mode;
74     _Bool   store_rates;
75
76     /* subscribe only */
77     char   *exchange_type;
78     char   *queue;
79
80     amqp_connection_state_t connection;
81     pthread_mutex_t lock;
82 };
83 typedef struct camqp_config_s camqp_config_t;
84
85 /*
86  * Global variables
87  */
88 static const char *def_host       = "localhost";
89 static const char *def_vhost      = "/";
90 static const char *def_user       = "guest";
91 static const char *def_password   = "guest";
92 static const char *def_exchange   = "amq.fanout";
93
94 static pthread_t *subscriber_threads     = NULL;
95 static size_t     subscriber_threads_num = 0;
96 static _Bool      subscriber_threads_running = 1;
97
98 #define CONF(c,f) (((c)->f != NULL) ? (c)->f : def_##f)
99
100 /*
101  * Functions
102  */
103 static void camqp_close_connection (camqp_config_t *conf) /* {{{ */
104 {
105     int sockfd;
106
107     if ((conf == NULL) || (conf->connection == NULL))
108         return;
109
110     sockfd = amqp_get_sockfd (conf->connection);
111     amqp_channel_close (conf->connection, CAMQP_CHANNEL, AMQP_REPLY_SUCCESS);
112     amqp_connection_close (conf->connection, AMQP_REPLY_SUCCESS);
113     amqp_destroy_connection (conf->connection);
114     close (sockfd);
115     conf->connection = NULL;
116 } /* }}} void camqp_close_connection */
117
118 static void camqp_config_free (void *ptr) /* {{{ */
119 {
120     camqp_config_t *conf = ptr;
121
122     if (conf == NULL)
123         return;
124
125     camqp_close_connection (conf);
126
127     sfree (conf->name);
128     sfree (conf->host);
129     sfree (conf->vhost);
130     sfree (conf->user);
131     sfree (conf->password);
132     sfree (conf->exchange);
133     sfree (conf->exchange_type);
134     sfree (conf->queue);
135     sfree (conf->routing_key);
136
137     sfree (conf);
138 } /* }}} void camqp_config_free */
139
140 static char *camqp_bytes_cstring (amqp_bytes_t *in) /* {{{ */
141 {
142     char *ret;
143
144     if ((in == NULL) || (in->bytes == NULL))
145         return (NULL);
146
147     ret = malloc (in->len + 1);
148     if (ret == NULL)
149         return (NULL);
150
151     memcpy (ret, in->bytes, in->len);
152     ret[in->len] = 0;
153
154     return (ret);
155 } /* }}} char *camqp_bytes_cstring */
156
157 static _Bool camqp_is_error (camqp_config_t *conf) /* {{{ */
158 {
159     amqp_rpc_reply_t r;
160
161     r = amqp_get_rpc_reply (conf->connection);
162     if (r.reply_type == AMQP_RESPONSE_NORMAL)
163         return (0);
164
165     return (1);
166 } /* }}} _Bool camqp_is_error */
167
168 static char *camqp_strerror (camqp_config_t *conf, /* {{{ */
169         char *buffer, size_t buffer_size)
170 {
171     amqp_rpc_reply_t r;
172
173     r = amqp_get_rpc_reply (conf->connection);
174     switch (r.reply_type)
175     {
176         case AMQP_RESPONSE_NORMAL:
177             sstrncpy (buffer, "Success", sizeof (buffer));
178             break;
179
180         case AMQP_RESPONSE_NONE:
181             sstrncpy (buffer, "Missing RPC reply type", sizeof (buffer));
182             break;
183
184         case AMQP_RESPONSE_LIBRARY_EXCEPTION:
185             if (r.library_errno)
186                 return (sstrerror (r.library_errno, buffer, buffer_size));
187             else
188                 sstrncpy (buffer, "End of stream", sizeof (buffer));
189             break;
190
191         case AMQP_RESPONSE_SERVER_EXCEPTION:
192             if (r.reply.id == AMQP_CONNECTION_CLOSE_METHOD)
193             {
194                 amqp_connection_close_t *m = r.reply.decoded;
195                 char *tmp = camqp_bytes_cstring (&m->reply_text);
196                 ssnprintf (buffer, buffer_size, "Server connection error %d: %s",
197                         m->reply_code, tmp);
198                 sfree (tmp);
199             }
200             else if (r.reply.id == AMQP_CHANNEL_CLOSE_METHOD)
201             {
202                 amqp_channel_close_t *m = r.reply.decoded;
203                 char *tmp = camqp_bytes_cstring (&m->reply_text);
204                 ssnprintf (buffer, buffer_size, "Server channel error %d: %s",
205                         m->reply_code, tmp);
206                 sfree (tmp);
207             }
208             else
209             {
210                 ssnprintf (buffer, buffer_size, "Server error method %#"PRIx32,
211                         r.reply.id);
212             }
213             break;
214
215         default:
216             ssnprintf (buffer, buffer_size, "Unknown reply type %i",
217                     (int) r.reply_type);
218     }
219
220     return (buffer);
221 } /* }}} char *camqp_strerror */
222
223 static int camqp_setup_queue (camqp_config_t *conf) /* {{{ */
224 {
225     amqp_queue_declare_ok_t *qd_ret;
226     amqp_basic_consume_ok_t *cm_ret;
227
228     qd_ret = amqp_queue_declare (conf->connection,
229             /* channel     = */ CAMQP_CHANNEL,
230             /* queue       = */ (conf->queue != NULL)
231             ? amqp_cstring_bytes (conf->queue)
232             : AMQP_EMPTY_BYTES,
233             /* passive     = */ 0,
234             /* durable     = */ 0,
235             /* exclusive   = */ 0,
236             /* auto_delete = */ 1,
237             /* arguments   = */ AMQP_EMPTY_TABLE);
238     if (qd_ret == NULL)
239     {
240         ERROR ("amqp plugin: amqp_queue_declare failed.");
241         camqp_close_connection (conf);
242         return (-1);
243     }
244
245     if (conf->queue == NULL)
246     {
247         conf->queue = camqp_bytes_cstring (&qd_ret->queue);
248         if (conf->queue == NULL)
249         {
250             ERROR ("amqp plugin: camqp_bytes_cstring failed.");
251             camqp_close_connection (conf);
252             return (-1);
253         }
254
255         INFO ("amqp plugin: Created queue \"%s\".", conf->queue);
256     }
257     DEBUG ("amqp plugin: Successfully created queue \"%s\".", conf->queue);
258
259     /* bind to an exchange */
260     if (conf->exchange != NULL)
261     {
262         amqp_queue_bind_ok_t *qb_ret;
263
264         /* create the exchange */
265         if (conf->exchange_type != NULL)
266         {
267             amqp_exchange_declare_ok_t *ed_ret;
268
269             ed_ret = amqp_exchange_declare (conf->connection,
270                     /* channel     = */ CAMQP_CHANNEL,
271                     /* exchange    = */ amqp_cstring_bytes (conf->exchange),
272                     /* type        = */ amqp_cstring_bytes (conf->exchange_type),
273                     /* passive     = */ 0,
274                     /* durable     = */ 0,
275                     /* auto_delete = */ 1,
276                     /* arguments   = */ AMQP_EMPTY_TABLE);
277             if ((ed_ret == NULL) && camqp_is_error (conf))
278             {
279                 char errbuf[1024];
280                 ERROR ("amqp plugin: amqp_exchange_declare failed: %s",
281                         camqp_strerror (conf, errbuf, sizeof (errbuf)));
282                 camqp_close_connection (conf);
283                 return (-1);
284             }
285         }
286
287         assert (conf->queue != NULL);
288         qb_ret = amqp_queue_bind (conf->connection,
289                 /* channel     = */ CAMQP_CHANNEL,
290                 /* queue       = */ amqp_cstring_bytes (conf->queue),
291                 /* exchange    = */ amqp_cstring_bytes (conf->exchange),
292                 /* routing_key = */ (conf->routing_key != NULL)
293                 ? amqp_cstring_bytes (conf->routing_key)
294                 : AMQP_EMPTY_BYTES,
295                 /* arguments   = */ AMQP_EMPTY_TABLE);
296         if ((qb_ret == NULL) && camqp_is_error (conf))
297         {
298             char errbuf[1024];
299             ERROR ("amqp plugin: amqp_queue_bind failed: %s",
300                     camqp_strerror (conf, errbuf, sizeof (errbuf)));
301             camqp_close_connection (conf);
302             return (-1);
303         }
304
305         DEBUG ("amqp plugin: Successfully bound queue \"%s\" to exchange \"%s\".",
306                 conf->queue, conf->exchange);
307     } /* if (conf->exchange != NULL) */
308
309     cm_ret = amqp_basic_consume (conf->connection,
310             /* channel      = */ CAMQP_CHANNEL,
311             /* queue        = */ amqp_cstring_bytes (conf->queue),
312             /* consumer_tag = */ AMQP_EMPTY_BYTES,
313             /* no_local     = */ 0,
314             /* no_ack       = */ 1,
315             /* exclusive    = */ 0);
316     if ((cm_ret == NULL) && camqp_is_error (conf))
317     {
318         char errbuf[1024];
319         ERROR ("amqp plugin: amqp_basic_consume failed: %s",
320                     camqp_strerror (conf, errbuf, sizeof (errbuf)));
321         camqp_close_connection (conf);
322         return (-1);
323     }
324
325     return (0);
326 } /* }}} int camqp_setup_queue */
327
328 static int camqp_connect (camqp_config_t *conf) /* {{{ */
329 {
330     amqp_rpc_reply_t reply;
331     int sockfd;
332     int status;
333
334     if (conf->connection != NULL)
335         return (0);
336
337     conf->connection = amqp_new_connection ();
338     if (conf->connection == NULL)
339     {
340         ERROR ("amqp plugin: amqp_new_connection failed.");
341         return (ENOMEM);
342     }
343
344     sockfd = amqp_open_socket (CONF(conf, host), conf->port);
345     if (sockfd < 0)
346     {
347         char errbuf[1024];
348         status = (-1) * sockfd;
349         ERROR ("amqp plugin: amqp_open_socket failed: %s",
350                 sstrerror (status, errbuf, sizeof (errbuf)));
351         amqp_destroy_connection (conf->connection);
352         conf->connection = NULL;
353         return (status);
354     }
355     amqp_set_sockfd (conf->connection, sockfd);
356
357     reply = amqp_login (conf->connection, CONF(conf, vhost),
358             /* channel max = */      0,
359             /* frame max   = */ 131072,
360             /* heartbeat   = */      0,
361             /* authentication = */ AMQP_SASL_METHOD_PLAIN,
362             CONF(conf, user), CONF(conf, password));
363     if (reply.reply_type != AMQP_RESPONSE_NORMAL)
364     {
365         ERROR ("amqp plugin: amqp_login (vhost = %s, user = %s) failed.",
366                 CONF(conf, vhost), CONF(conf, user));
367         amqp_destroy_connection (conf->connection);
368         close (sockfd);
369         conf->connection = NULL;
370         return (1);
371     }
372
373     amqp_channel_open (conf->connection, /* channel = */ 1);
374     /* FIXME: Is checking "reply.reply_type" really correct here? How does
375      * it get set? --octo */
376     if (reply.reply_type != AMQP_RESPONSE_NORMAL)
377     {
378         ERROR ("amqp plugin: amqp_channel_open failed.");
379         amqp_connection_close (conf->connection, AMQP_REPLY_SUCCESS);
380         amqp_destroy_connection (conf->connection);
381         close(sockfd);
382         conf->connection = NULL;
383         return (1);
384     }
385
386     INFO ("amqp plugin: Successfully opened connection to vhost \"%s\" "
387             "on %s:%i.", CONF(conf, vhost), CONF(conf, host), conf->port);
388
389     if (!conf->publish)
390         return (camqp_setup_queue (conf));
391     return (0);
392 } /* }}} int camqp_connect */
393
394 static int shutdown (void) /* {{{ */
395 {
396     size_t i;
397
398     DEBUG ("amqp plugin: Shutting down %zu subscriber threads.",
399             subscriber_threads_num);
400
401     subscriber_threads_running = 0;
402     for (i = 0; i < subscriber_threads_num; i++)
403     {
404         /* FIXME: Sending a signal is not very elegant here. Maybe find out how
405          * to use a timeout in the thread and check for the variable in regular
406          * intervals. */
407         pthread_kill (subscriber_threads[i], SIGTERM);
408         pthread_join (subscriber_threads[i], /* retval = */ NULL);
409     }
410
411     subscriber_threads_num = 0;
412     sfree (subscriber_threads);
413
414     DEBUG ("amqp plugin: All subscriber threads exited.");
415
416     return (0);
417 } /* }}} int shutdown */
418
419 /*
420  * Subscribing code
421  */
422 static int camqp_read_body (camqp_config_t *conf, /* {{{ */
423         size_t body_size)
424 {
425     char body[body_size + 1];
426     char *body_ptr;
427     size_t received;
428     amqp_frame_t frame;
429     int status;
430
431     memset (body, 0, sizeof (body));
432     body_ptr = &body[0];
433     received = 0;
434
435     while (received < body_size)
436     {
437         status = amqp_simple_wait_frame (conf->connection, &frame);
438         if (status < 0)
439         {
440             char errbuf[1024];
441             status = (-1) * status;
442             ERROR ("amqp plugin: amqp_simple_wait_frame failed: %s",
443                     sstrerror (status, errbuf, sizeof (errbuf)));
444             camqp_close_connection (conf);
445             return (status);
446         }
447
448         if (frame.frame_type != AMQP_FRAME_BODY)
449         {
450             NOTICE ("amqp plugin: Unexpected frame type: %#"PRIx8,
451                     frame.frame_type);
452             return (-1);
453         }
454
455         if ((body_size - received) < frame.payload.body_fragment.len)
456         {
457             WARNING ("amqp plugin: Body is larger than indicated by header.");
458             return (-1);
459         }
460
461         memcpy (body_ptr, frame.payload.body_fragment.bytes,
462                 frame.payload.body_fragment.len);
463         body_ptr += frame.payload.body_fragment.len;
464         received += frame.payload.body_fragment.len;
465     } /* while (received < body_size) */
466
467     if (conf->format == CAMQP_FORMAT_COMMAND)
468     {
469         status = handle_putval (stderr, body);
470         if (status != 0)
471             ERROR ("amqp plugin: handle_putval failed with status %i.",
472                     status);
473         return (status);
474     }
475     else if (conf->format == CAMQP_FORMAT_JSON)
476     {
477         ERROR ("amqp plugin: camqp_read_body: Parsing JSON data has not "
478                 "been implemented yet. FIXME!");
479         return (0);
480     }
481     else
482     {
483         ERROR ("amqp plugin: camqp_read_body: Unknown format option (%i).",
484                 conf->format);
485         return (EINVAL);
486     }
487
488     /* not reached */
489     return (0);
490 } /* }}} int camqp_read_body */
491
492 static int camqp_read_header (camqp_config_t *conf) /* {{{ */
493 {
494     int status;
495     amqp_frame_t frame;
496
497     status = amqp_simple_wait_frame (conf->connection, &frame);
498     if (status < 0)
499     {
500         char errbuf[1024];
501         status = (-1) * status;
502         ERROR ("amqp plugin: amqp_simple_wait_frame failed: %s",
503                     sstrerror (status, errbuf, sizeof (errbuf)));
504         camqp_close_connection (conf);
505         return (status);
506     }
507
508     if (frame.frame_type != AMQP_FRAME_HEADER)
509     {
510         NOTICE ("amqp plugin: Unexpected frame type: %#"PRIx8,
511                 frame.frame_type);
512         return (-1);
513     }
514
515     return (camqp_read_body (conf, frame.payload.properties.body_size));
516 } /* }}} int camqp_read_header */
517
518 static void *camqp_subscribe_thread (void *user_data) /* {{{ */
519 {
520     camqp_config_t *conf = user_data;
521     int status;
522
523     while (subscriber_threads_running)
524     {
525         amqp_frame_t frame;
526
527         status = camqp_connect (conf);
528         if (status != 0)
529         {
530             ERROR ("amqp plugin: camqp_connect failed. "
531                     "Will sleep for %i seconds.", interval_g);
532             sleep (interval_g);
533             continue;
534         }
535
536         status = amqp_simple_wait_frame (conf->connection, &frame);
537         if (status < 0)
538         {
539             ERROR ("amqp plugin: amqp_simple_wait_frame failed. "
540                     "Will sleep for %i seconds.", interval_g);
541             camqp_close_connection (conf);
542             sleep (interval_g);
543             continue;
544         }
545
546         if (frame.frame_type != AMQP_FRAME_METHOD)
547         {
548             DEBUG ("amqp plugin: Unexpected frame type: %#"PRIx8,
549                     frame.frame_type);
550             continue;
551         }
552
553         if (frame.payload.method.id != AMQP_BASIC_DELIVER_METHOD)
554         {
555             DEBUG ("amqp plugin: Unexpected method id: %#"PRIx32,
556                     frame.payload.method.id);
557             continue;
558         }
559
560         status = camqp_read_header (conf);
561
562         amqp_maybe_release_buffers (conf->connection);
563     } /* while (subscriber_threads_running) */
564
565     camqp_config_free (conf);
566     pthread_exit (NULL);
567 } /* }}} void *camqp_subscribe_thread */
568
569 static int camqp_subscribe_init (camqp_config_t *conf) /* {{{ */
570 {
571     int status;
572     pthread_t *tmp;
573
574     tmp = realloc (subscriber_threads,
575             sizeof (*subscriber_threads) * (subscriber_threads_num + 1));
576     if (tmp == NULL)
577     {
578         ERROR ("amqp plugin: realloc failed.");
579         camqp_config_free (conf);
580         return (ENOMEM);
581     }
582     subscriber_threads = tmp;
583     tmp = subscriber_threads + subscriber_threads_num;
584     memset (tmp, 0, sizeof (*tmp));
585
586     status = pthread_create (tmp, /* attr = */ NULL,
587             camqp_subscribe_thread, conf);
588     if (status != 0)
589     {
590         char errbuf[1024];
591         ERROR ("amqp plugin: pthread_create failed: %s",
592                 sstrerror (status, errbuf, sizeof (errbuf)));
593         camqp_config_free (conf);
594         return (status);
595     }
596
597     subscriber_threads_num++;
598
599     return (0);
600 } /* }}} int camqp_subscribe_init */
601
602 /*
603  * Publishing code
604  */
605 static int camqp_write_locked (camqp_config_t *conf, /* {{{ */
606         const char *buffer, const char *routing_key)
607 {
608     amqp_basic_properties_t props;
609     int status;
610
611     status = camqp_connect (conf);
612     if (status != 0)
613         return (status);
614
615     memset (&props, 0, sizeof (props));
616     props._flags = AMQP_BASIC_CONTENT_TYPE_FLAG
617         | AMQP_BASIC_DELIVERY_MODE_FLAG
618         | AMQP_BASIC_APP_ID_FLAG;
619     props.content_type = amqp_cstring_bytes("application/json");
620     props.delivery_mode = conf->delivery_mode;
621     props.app_id = amqp_cstring_bytes("collectd");
622
623     status = amqp_basic_publish(conf->connection,
624                 /* channel = */ 1,
625                 amqp_cstring_bytes(CONF(conf, exchange)),
626                 amqp_cstring_bytes (routing_key),
627                 /* mandatory = */ 0,
628                 /* immediate = */ 0,
629                 &props,
630                 amqp_cstring_bytes(buffer));
631     if (status != 0)
632     {
633         ERROR ("amqp plugin: amqp_basic_publish failed with status %i.",
634                 status);
635         camqp_close_connection (conf);
636     }
637
638     return (status);
639 } /* }}} int camqp_write_locked */
640
641 static int camqp_write (const data_set_t *ds, const value_list_t *vl, /* {{{ */
642         user_data_t *user_data)
643 {
644     camqp_config_t *conf = user_data->data;
645     char routing_key[6 * DATA_MAX_NAME_LEN];
646     char buffer[4096];
647     int status;
648
649     if ((ds == NULL) || (vl == NULL) || (conf == NULL))
650         return (EINVAL);
651
652     memset (buffer, 0, sizeof (buffer));
653
654     if (conf->routing_key != NULL)
655     {
656         sstrncpy (routing_key, conf->routing_key, sizeof (routing_key));
657     }
658     else
659     {
660         size_t i;
661         ssnprintf (routing_key, sizeof (routing_key), "collectd/%s/%s/%s/%s/%s",
662                 vl->host,
663                 vl->plugin, vl->plugin_instance,
664                 vl->type, vl->type_instance);
665
666         /* Switch slashes (the only character forbidden by collectd) and dots
667          * (the separation character used by AMQP). */
668         for (i = 0; routing_key[i] != 0; i++)
669         {
670             if (routing_key[i] == '.')
671                 routing_key[i] = '/';
672             else if (routing_key[i] == '/')
673                 routing_key[i] = '.';
674         }
675     }
676
677     if (conf->format == CAMQP_FORMAT_COMMAND)
678     {
679         status = create_putval (buffer, sizeof (buffer), ds, vl);
680         if (status != 0)
681         {
682             ERROR ("amqp plugin: create_putval failed with status %i.",
683                     status);
684             return (status);
685         }
686     }
687     else if (conf->format == CAMQP_FORMAT_JSON)
688     {
689         size_t bfree = sizeof (buffer);
690         size_t bfill = 0;
691
692         format_json_initialize (buffer, &bfill, &bfree);
693         format_json_value_list (buffer, &bfill, &bfree, ds, vl, conf->store_rates);
694         format_json_finalize (buffer, &bfill, &bfree);
695     }
696     else
697     {
698         ERROR ("amqp plugin: Invalid format (%i).", conf->format);
699         return (-1);
700     }
701
702     pthread_mutex_lock (&conf->lock);
703     status = camqp_write_locked (conf, buffer, routing_key);
704     pthread_mutex_unlock (&conf->lock);
705
706     return (status);
707 } /* }}} int camqp_write */
708
709 /*
710  * Config handling
711  */
712 static int camqp_config_set_format (oconfig_item_t *ci, /* {{{ */
713         camqp_config_t *conf)
714 {
715     char *string;
716     int status;
717
718     string = NULL;
719     status = cf_util_get_string (ci, &string);
720     if (status != 0)
721         return (status);
722
723     assert (string != NULL);
724     if (strcasecmp ("Command", string) == 0)
725         conf->format = CAMQP_FORMAT_COMMAND;
726     else if (strcasecmp ("JSON", string) == 0)
727         conf->format = CAMQP_FORMAT_JSON;
728     else
729     {
730         WARNING ("amqp plugin: Invalid format string: %s",
731                 string);
732     }
733
734     free (string);
735
736     return (0);
737 } /* }}} int config_set_string */
738
739 static int camqp_config_connection (oconfig_item_t *ci, /* {{{ */
740         _Bool publish)
741 {
742     camqp_config_t *conf;
743     int status;
744     int i;
745
746     conf = malloc (sizeof (*conf));
747     if (conf == NULL)
748     {
749         ERROR ("amqp plugin: malloc failed.");
750         return (ENOMEM);
751     }
752
753     /* Initialize "conf" {{{ */
754     memset (conf, 0, sizeof (*conf));
755     conf->publish = publish;
756     conf->name = NULL;
757     conf->format = CAMQP_FORMAT_COMMAND;
758     conf->host = NULL;
759     conf->port = 5672;
760     conf->vhost = NULL;
761     conf->user = NULL;
762     conf->password = NULL;
763     conf->exchange = NULL;
764     conf->routing_key = NULL;
765     /* publish only */
766     conf->delivery_mode = CAMQP_DM_VOLATILE;
767     conf->store_rates = 0;
768     /* subscribe only */
769     conf->exchange_type = NULL;
770     conf->queue = NULL;
771     /* general */
772     conf->connection = NULL;
773     pthread_mutex_init (&conf->lock, /* attr = */ NULL);
774     /* }}} */
775
776     status = cf_util_get_string (ci, &conf->name);
777     if (status != 0)
778     {
779         sfree (conf);
780         return (status);
781     }
782
783     for (i = 0; i < ci->children_num; i++)
784     {
785         oconfig_item_t *child = ci->children + i;
786
787         if (strcasecmp ("Format", child->key) == 0)
788             status = camqp_config_set_format (child, conf);
789         else if (strcasecmp ("Host", child->key) == 0)
790             status = cf_util_get_string (child, &conf->host);
791         else if (strcasecmp ("Port", child->key) == 0)
792         {
793             status = cf_util_get_port_number (child);
794             if (status > 0)
795             {
796                 conf->port = status;
797                 status = 0;
798             }
799         }
800         else if (strcasecmp ("VHost", child->key) == 0)
801             status = cf_util_get_string (child, &conf->vhost);
802         else if (strcasecmp ("User", child->key) == 0)
803             status = cf_util_get_string (child, &conf->user);
804         else if (strcasecmp ("Password", child->key) == 0)
805             status = cf_util_get_string (child, &conf->password);
806         else if (strcasecmp ("Exchange", child->key) == 0)
807             status = cf_util_get_string (child, &conf->exchange);
808         else if ((strcasecmp ("ExchangeType", child->key) == 0) && !publish)
809             status = cf_util_get_string (child, &conf->exchange_type);
810         else if ((strcasecmp ("Queue", child->key) == 0) && !publish)
811             status = cf_util_get_string (child, &conf->queue);
812         else if (strcasecmp ("RoutingKey", child->key) == 0)
813             status = cf_util_get_string (child, &conf->routing_key);
814         else if ((strcasecmp ("Persistent", child->key) == 0) && publish)
815         {
816             _Bool tmp = 0;
817             status = cf_util_get_boolean (child, &tmp);
818             if (tmp)
819                 conf->delivery_mode = CAMQP_DM_PERSISTENT;
820             else
821                 conf->delivery_mode = CAMQP_DM_VOLATILE;
822         }
823         else if ((strcasecmp ("StoreRates", child->key) == 0) && publish)
824             status = cf_util_get_boolean (child, &conf->store_rates);
825         else
826             WARNING ("amqp plugin: Ignoring unknown "
827                     "configuration option \"%s\".", child->key);
828
829         if (status != 0)
830             break;
831     } /* for (i = 0; i < ci->children_num; i++) */
832
833     if ((status == 0) && !publish && (conf->exchange == NULL))
834     {
835         if (conf->routing_key != NULL)
836             WARNING ("amqp plugin: The option \"RoutingKey\" was given "
837                     "without the \"Exchange\" option. It will be ignored.");
838
839         if (conf->exchange_type != NULL)
840             WARNING ("amqp plugin: The option \"ExchangeType\" was given "
841                     "without the \"Exchange\" option. It will be ignored.");
842     }
843
844     if (status != 0)
845     {
846         camqp_config_free (conf);
847         return (status);
848     }
849
850     if (conf->exchange != NULL)
851     {
852         DEBUG ("amqp plugin: camqp_config_connection: exchange = %s;",
853                 conf->exchange);
854     }
855
856     if (publish)
857     {
858         char cbname[128];
859         user_data_t ud = { conf, camqp_config_free };
860
861         ssnprintf (cbname, sizeof (cbname), "amqp/%s", conf->name);
862
863         status = plugin_register_write (cbname, camqp_write, &ud);
864         if (status != 0)
865         {
866             camqp_config_free (conf);
867             return (status);
868         }
869     }
870     else
871     {
872         status = camqp_subscribe_init (conf);
873         if (status != 0)
874         {
875             camqp_config_free (conf);
876             return (status);
877         }
878     }
879
880     return (0);
881 } /* }}} int camqp_config_connection */
882
883 static int camqp_config (oconfig_item_t *ci) /* {{{ */
884 {
885     int i;
886
887     for (i = 0; i < ci->children_num; i++)
888     {
889         oconfig_item_t *child = ci->children + i;
890
891         if (strcasecmp ("Publish", child->key) == 0)
892             camqp_config_connection (child, /* publish = */ 1);
893         else if (strcasecmp ("Subscribe", child->key) == 0)
894             camqp_config_connection (child, /* publish = */ 0);
895         else
896             WARNING ("amqp plugin: Ignoring unknown config option \"%s\".",
897                     child->key);
898     } /* for (ci->children_num) */
899
900     return (0);
901 } /* }}} int camqp_config */
902
903 void module_register (void)
904 {
905     plugin_register_complex_config ("amqp", camqp_config);
906     plugin_register_shutdown ("amqp", shutdown);
907 } /* void module_register */
908
909 /* vim: set sw=4 sts=4 et fdm=marker : */