-
Notifications
You must be signed in to change notification settings - Fork 6
/
mod_event_redis.cpp
307 lines (252 loc) · 12.5 KB
/
mod_event_redis.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
/*
* FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application
* Copyright (C) 2005-2014, Anthony Minessale II <[email protected]>
*
* Version: MPL 1.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application
*
* The Initial Developer of the Original Code is
* Anthony Minessale II <[email protected]>
* Portions created by the Initial Developer are Copyright (C)
* the Initial Developer. All Rights Reserved.
*
* Based on mod_skel by
* Anthony Minessale II <[email protected]>
*
* Contributor(s):
*
* Kinshuk Bairagi <[email protected]>
*
* mod_event_redis.cpp -- Sends FreeSWITCH events to an Redis Queue
*
*/
#include <iostream>
#include <string>
#include <thread>
#include <switch.h>
#include <sstream>
#include <algorithm>
#include <iterator>
#include <cpp_redis/cpp_redis>
#include "mod_event_redis.hpp"
namespace mod_event_redis {
template<class T>
std::string toString(const T &value) {
std::ostringstream os;
os << value;
return os.str();
}
std::vector<std::string> split(const std::string& s, char delimiter)
{
std::vector<std::string> tokens;
std::string token;
std::istringstream tokenStream(s);
while (std::getline(tokenStream, token, delimiter)) {
tokens.push_back(token);
}
return tokens;
}
static switch_xml_config_item_t instructions[] = {
SWITCH_CONFIG_ITEM("hostname", SWITCH_CONFIG_STRING, CONFIG_RELOADABLE, &globals.hostname,
"localhost", NULL, "hostname", "Redis Master hostname"),
SWITCH_CONFIG_ITEM("port", SWITCH_CONFIG_INT, CONFIG_RELOADABLE, &globals.port,
6379, NULL, "hosts", "Redis Port"),
SWITCH_CONFIG_ITEM("master", SWITCH_CONFIG_STRING, CONFIG_RELOADABLE, &globals.master,
NULL, NULL, "master", "Redis Sentinal Master Name"),
SWITCH_CONFIG_ITEM("password", SWITCH_CONFIG_STRING, CONFIG_RELOADABLE, &globals.password,
"", NULL, "", "Redis Password"),
SWITCH_CONFIG_ITEM("sentinals", SWITCH_CONFIG_STRING, CONFIG_RELOADABLE, &globals.sentinals,
"localhost:xxxx", NULL, "hostname", "Redis Sentinals"),
SWITCH_CONFIG_ITEM("topic-prefix", SWITCH_CONFIG_STRING, CONFIG_RELOADABLE, &globals.topic_prefix,
"fs", NULL, "topic-prefix", "Topic Prefix"),
SWITCH_CONFIG_ITEM_END()
};
static switch_status_t load_config(switch_bool_t reload)
{
memset(&globals, 0, sizeof(globals));
if (switch_xml_config_parse_module_settings("event_redis.conf", reload, instructions) != SWITCH_STATUS_SUCCESS) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Could not open event_redis.conf\n");
return SWITCH_STATUS_FALSE;
} else {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "event_redis.conf loaded [hostname: %s, port : %d, topic_prefix: %s] \n", globals.hostname, globals.port , globals.topic_prefix);
}
return SWITCH_STATUS_SUCCESS;
}
class cpp_redis_fs_logger : public cpp_redis::logger_iface {
public:
void debug(const std::string& msg, const std::string& file, std::size_t line) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "[%s:%zu] %s", file.c_str(), line, msg.c_str());
};
void info(const std::string& msg, const std::string& file, std::size_t line) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "[%s:%zu] %s", file.c_str(), line, msg.c_str());
};
void warn(const std::string& msg, const std::string& file, std::size_t line){
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "[%s:%zu] %s", file.c_str(), line, msg.c_str());
};
void error(const std::string& msg, const std::string& file, std::size_t line) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "[%s:%zu] %s", file.c_str(), line, msg.c_str() );
};
};
class RedisEventPublisher {
public:
RedisEventPublisher(){
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "RedisEventPublisher Initialising... \n");
load_config(SWITCH_FALSE);
cpp_redis::active_logger = std::unique_ptr<cpp_redis_fs_logger>(new cpp_redis_fs_logger);
topic_str = std::string(globals.topic_prefix) + "_" + std::string(switch_core_get_switchname());
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "RedisEventPublisher Topic : %s", topic_str.c_str());
try {
auto connect_callback = [this](const std::string& host, std::size_t port, cpp_redis::client::connect_state status) {
if (status == cpp_redis::client::connect_state::ok) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "client connection ok to %s:%zu \n", host.c_str(), port);
_initialized = 1;
} else if (status == cpp_redis::client::connect_state::dropped) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "client disconnected from %s:%zu \n", host.c_str(), port);
_initialized = 0;
}
};
//Todo sentinal
if(globals.master == NULL){
redisClient.connect(globals.hostname, globals.port, connect_callback , 0, -1, 5000);
} else {
cpp_redis::network::set_default_nb_workers(2);
std::vector<std::string> sentinals = split(std::string(globals.sentinals), ',');
for(std::string const& value: sentinals) {
redisClient.add_sentinel(value, globals.port);
}
redisClient.connect(globals.master,connect_callback , 0, -1, 5000);
}
if (globals.password != NULL){
//! authentication if server-server requires it
redisClient.auth(globals.password, [](const cpp_redis::reply& reply) {
if (reply.is_error()) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Redis Connection Authentication failed - Pass(%s) - Error: %s \n", globals.password, reply.as_string().c_str());
} else {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Redis Connection Successful authentication \n");
}
});
}
_initialized = 1;
} catch (...) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Redis Connection Initial Connect Failed \n");
}
}
void PublishEvent(switch_event_t *event) {
char *event_json = (char*)malloc(sizeof(char));
switch_event_serialize_json(event, &event_json);
std::string event_json_str(event_json);
if(_initialized){
send(event_json_str);
} else {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "PublishEvent without active RedisConnection \n");
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "%s\n", event_json );
}
//delete uuid;
delete event_json;
}
void Shutdown(){
//flush within 1000ms
redisClient.sync_commit(std::chrono::milliseconds(1000));
}
~RedisEventPublisher(){
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "RedisEventPublisher Destroyed \n");
}
private:
int send(const std::string data){
std::vector<std::string> lpushData = {data};
size_t len = data.size();
redisClient.lpush(topic_str, lpushData , [len](cpp_redis::reply& reply) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG,"Published messaged (%zu bytes), redis queue size (%" PRId64 ") messages. \n", len ,reply.as_integer());
// if (reply.is_string())
// do_something_with_string(reply.as_string())
});
redisClient.commit();
return 0;
}
std::string topic_str;
bool _initialized = 0;
cpp_redis::client redisClient;
};
class RedisEventModule {
public:
RedisEventModule(switch_loadable_module_interface_t **module_interface, switch_memory_pool_t *pool): _publisher() {
// Subscribe to all switch events of any subclass
// Store a pointer to ourself in the user data
if (switch_event_bind_removable(modname, SWITCH_EVENT_ALL, SWITCH_EVENT_SUBCLASS_ANY, event_handler,
static_cast<void*>(&_publisher), &_node)
!= SWITCH_STATUS_SUCCESS) {
throw std::runtime_error("Couldn't bind to switch events.");
}
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Subscribed to events\n");
// Create our module interface registration
*module_interface = switch_loadable_module_create_module_interface(pool, modname);
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Module loaded completed\n");
};
void Shutdown() {
// Send term message
_publisher.Shutdown();
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Shutdown requested, flushing publisher\n");
}
~RedisEventModule() {
// Unsubscribe from the switch events
switch_event_unbind(&_node);
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Module shut down\n");
}
private:
// Dispatches events to the publisher
static void event_handler(switch_event_t *event) {
try {
RedisEventPublisher *publisher = static_cast<RedisEventPublisher*>(event->bind_user_data);
publisher->PublishEvent(event);
} catch (std::exception ex) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Error publishing event via Redis: %s\n",
ex.what());
} catch (...) { // Exceptions must not propogate to C caller
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Unknown error publishing event via Redis\n");
}
}
switch_event_node_t *_node;
RedisEventPublisher _publisher;
};
//*****************************//
// GLOBALS //
//*****************************//
std::unique_ptr<RedisEventModule> module;
//*****************************//
// Module interface funtions //
//*****************************//
SWITCH_MODULE_LOAD_FUNCTION(mod_event_redis_load) {
try {
module.reset(new RedisEventModule(module_interface, pool));
return SWITCH_STATUS_SUCCESS;
} catch(...) { // Exceptions must not propogate to C caller
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error loading Redis Event module\n");
return SWITCH_STATUS_GENERR;
}
}
SWITCH_MODULE_SHUTDOWN_FUNCTION(mod_event_redis_shutdown) {
try {
// Tell the module to shutdown
module->Shutdown();
// Free the module object
module.reset();
} catch(std::exception &ex) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error shutting down Redis Event module: %s\n",
ex.what());
} catch(...) { // Exceptions must not propogate to C caller
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Unknown error shutting down Redis Event module\n");
}
return SWITCH_STATUS_SUCCESS;
}
}