27a7d9f31ef50fcd21e0bee16462889e23c62bd1
[collectd.git] / src / freeswitch.c
1 /**
2  * collectd - src/freeswitch.c
3  * Copyright (C) 2005-2007  Florian octo Forster
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; only version 2 of the License is applicable.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17  *
18  * Authors:
19  *   Florian octo Forster <octo at verplant.org>
20  **/
21
22 #include "collectd.h"
23 #include "common.h"
24 #include "plugin.h"
25
26 /*
27 #include "utils_match.h"
28 */
29 #include <esl.h>
30
31 #define FREESWITCH_DEF_HOST "127.0.0.1"
32 #define FREESWITCH_DEF_PORT "8021"
33 #define FREESWITCH_DEF_PASSWORD "ClueCon"
34
35 static const char *config_keys[] = 
36 {
37         "Host",
38         "Port",
39         "Password"
40 };
41 static int config_keys_num = STATIC_ARRAY_SIZE (config_keys);
42
43 typedef struct profilename
44 {
45         char *name;
46         struct profilename *next;
47 } profilename_t;
48
49 // static profilename_t *first_profilename = NULL;
50 static char *freeswitch_host = NULL;
51 static char freeswitch_port[16];
52 static char *freeswitch_password = NULL;
53
54 static void freeswitch_submit (const char *profile, const char *type, gauge_t inbound, gauge_t outbound)
55 {
56         value_t values[2];
57         value_list_t vl = VALUE_LIST_INIT;
58
59         values[0].gauge = inbound;
60         values[1].gauge = outbound;
61
62         vl.values = values;
63         vl.values_len = 2;
64         sstrncpy (vl.host, hostname_g, sizeof (vl.host));
65         sstrncpy (vl.plugin, "freeswitch", sizeof (vl.plugin));
66         sstrncpy (vl.type, type, sizeof (vl.type));
67         sstrncpy (vl.type_instance, profile, sizeof (vl.type_instance));
68
69         plugin_dispatch_values (&vl);
70 } /* void freeswitch_submit */
71
72 static int freeswitch_read (void)
73 {
74         const char *host;
75         const char *port;
76         const char *password;
77
78         /* Set some default configuration variables */
79         host = freeswitch_host;
80         if (host == NULL)
81                 host = FREESWITCH_DEF_HOST;
82
83         port = freeswitch_port;
84         if (port == NULL)
85                 port = FREESWITCH_DEF_PORT;
86
87         password = freeswitch_password;
88         if (password == NULL)
89                 password = FREESWITCH_DEF_PASSWORD;
90
91         esl_handle_t handle = {{0}};
92
93         /* Connect from freeswitch_init for a persistent ESL connection */
94         if (esl_connect(&handle, host, atoi(port), password)) {
95                 DEBUG ("Error connecting to FreeSWITCH ESL interface [%s]\n", handle.err);
96                 return -1;
97         }
98
99         esl_send_recv(&handle, "api show channels\n\n");
100
101         if (handle.last_sr_event && handle.last_sr_event->body) {
102                 // handle.last_sr_event->body now contains the string with all active channels...
103         }
104         
105         /* Disconnect from freeswitch_shutdown for a persistent ESL connection */
106         esl_disconnect(&handle);
107
108         freeswitch_submit ("res-public", "fs_channels", 3, 5);
109
110         return (0);
111 } /* int freeswitch_read */
112
113 static int freeswitch_config (const char *key, const char *value)
114 {
115         if (strcasecmp ("Host", key) == 0)
116         {
117                 if (freeswitch_host != NULL)
118                         free (freeswitch_host);
119                 freeswitch_host = strdup (value);
120         }
121         else if (strcasecmp ("Port", key) == 0)
122         {
123                 int port = (int) (atof (value));
124                 if ((port > 0) && (port <= 65535))
125                         ssnprintf (freeswitch_port, sizeof (freeswitch_port),
126                                         "%i", port);
127                 else
128                         sstrncpy (freeswitch_port, value, sizeof (freeswitch_port));
129         }
130         else if (strcasecmp ("Password", key) == 0)
131         {
132                 if (freeswitch_password != NULL)
133                         free (freeswitch_password);
134                 freeswitch_password = strdup (value);
135         }
136         else
137         {
138                 return (-1);
139         }
140         return (0);
141 } /* int freeswitch_config */
142
143 static int freeswitch_init (void)
144 {
145         return(0);
146 } /* int freeswitch_init */
147
148 static int freeswitch_shutdown (void)
149 {
150         return(0);
151 } /* int freeswitch_shutdown */
152
153 void module_register (void)
154 {
155         plugin_register_config ("freeswitch", freeswitch_config,
156                         config_keys, config_keys_num);
157         plugin_register_init ("freeswitch", freeswitch_init);
158         plugin_register_shutdown ("freeswitch", freeswitch_shutdown);
159         plugin_register_read ("freeswitch", freeswitch_read);
160 } /* void module_register */