forked from meetecho/janus-gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
events.c
259 lines (241 loc) · 9.31 KB
/
events.c
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
/*! \file events.c
* \author Lorenzo Miniero <lorenzo@meetecho.com>
* \copyright GNU General Public License v3
* \brief Event handler notifications
* \details Event handler plugins can receive events from the Janus core
* and other plugins, in order to handle them somehow. This methods
* provide helpers to notify events to such handlers.
*
* \ingroup core
* \ref core
*/
#include <stdarg.h>
#include "events.h"
#include "utils.h"
static gboolean eventsenabled = FALSE;
static char *server = NULL;
static GHashTable *eventhandlers = NULL;
static GAsyncQueue *events = NULL;
static json_t exit_event;
static GThread *events_thread;
void *janus_events_thread(void *data);
int janus_events_init(gboolean enabled, char *server_name, GHashTable *handlers) {
/* We setup a thread for passing events to the handlers */
GError *error = NULL;
events_thread = g_thread_try_new("janus events thread", janus_events_thread, NULL, &error);
if(error != NULL) {
JANUS_LOG(LOG_ERR, "Got error %d (%s) trying to launch the Events handler thread...\n", error->code, error->message ? error->message : "??");
return -1;
}
if(server_name != NULL)
server = g_strdup(server_name);
events = g_async_queue_new();
eventhandlers = handlers;
eventsenabled = enabled;
return 0;
}
void janus_events_deinit(void) {
eventsenabled = FALSE;
if (events != NULL) {
g_async_queue_push(events, &exit_event);
}
if(events_thread != NULL) {
g_thread_join(events_thread);
events_thread = NULL;
}
if(events != NULL)
g_async_queue_unref(events);
g_free(server);
}
gboolean janus_events_is_enabled(void) {
return eventsenabled;
}
void janus_events_notify_handlers(int type, guint64 session_id, ...) {
/* This method has a variable list of arguments, depending on the event type */
va_list args;
va_start(args, session_id);
if(!eventsenabled || eventhandlers == NULL || g_hash_table_size(eventhandlers) == 0) {
/* Event handlers disabled, or no event handler plugins available: free resources, if needed */
if(type == JANUS_EVENT_TYPE_MEDIA || type == JANUS_EVENT_TYPE_WEBRTC) {
/* These events allocate a json_t object for their data, skip some arguments and unref it */
va_arg(args, guint64);
va_arg(args, char *);
json_t *body = va_arg(args, json_t *);
json_decref(body);
} else if(type == JANUS_EVENT_TYPE_CORE) {
/* Core events also allocate a json_t object for its data, unref it */
json_t *body = va_arg(args, json_t *);
json_decref(body);
} else if(type == JANUS_EVENT_TYPE_SESSION) {
/* Session events may allocate a json_t object for transport-related info, unref it */
va_arg(args, char *);
json_t *transport = va_arg(args, json_t *);
if(transport != NULL)
json_decref(transport);
} else if(type == JANUS_EVENT_TYPE_PLUGIN) {
/* Plugin originated events also allocate a json_t object for the plugin data, skip some arguments and unref it */
va_arg(args, guint64);
va_arg(args, char *);
va_arg(args, char *);
json_t *data = va_arg(args, json_t *);
json_decref(data);
} else if(type == JANUS_EVENT_TYPE_TRANSPORT) {
/* Transport originated events also allocate a json_t object for the transport data, skip some arguments and unref it */
va_arg(args, char *);
va_arg(args, void *);
json_t *data = va_arg(args, json_t *);
json_decref(data);
}
va_end(args);
return;
}
/* Prepare the event to notify as a Jansson json_t object */
json_t *event = json_object();
if(server != NULL)
json_object_set_new(event, "emitter", json_string(server));
json_object_set_new(event, "type", json_integer(type));
json_object_set_new(event, "timestamp", json_integer(janus_get_real_time()));
if(type != JANUS_EVENT_TYPE_CORE) { /* Core events don't have a session ID */
if(session_id == 0 && (type == JANUS_EVENT_TYPE_PLUGIN || type == JANUS_EVENT_TYPE_TRANSPORT)) {
/* ... but plugin/transport events may not have one either */
} else {
json_object_set_new(event, "session_id", json_integer(session_id));
}
}
json_t *body = NULL;
if(type != JANUS_EVENT_TYPE_MEDIA && type != JANUS_EVENT_TYPE_WEBRTC && type != JANUS_EVENT_TYPE_CORE)
body = json_object();
/* Each type may require different arguments */
switch(type) {
case JANUS_EVENT_TYPE_SESSION: {
/* For sessions, there's just a generic event name (what happened) */
char *name = va_arg(args, char *);
json_object_set_new(body, "name", json_string(name));
json_t *transport = va_arg(args, json_t *);
if(transport != NULL)
json_object_set(body, "transport", transport);
break;
}
case JANUS_EVENT_TYPE_HANDLE: {
/* For handles, there's the handle ID, a generic event name (what happened)
* and the plugin package name this handle is (or was) attached to */
guint64 handle_id = va_arg(args, guint64);
json_object_set_new(event, "handle_id", json_integer(handle_id));
char *name = va_arg(args, char *);
json_object_set_new(body, "name", json_string(name));
char *plugin = va_arg(args, char *);
json_object_set_new(body, "plugin", json_string(plugin));
/* Handle-related events may include an opaque ID provided by who's using the plugin:
* in event handlers, it may be useful for inter-handle mappings or other things */
char *opaque_id = va_arg(args, char *);
if(opaque_id != NULL) {
json_object_set_new(event, "opaque_id", json_string(opaque_id));
/* We add it to the body as well for backwards compatbility, as
* that's the only place we had the opaque_id present before */
json_object_set_new(body, "opaque_id", json_string(opaque_id));
}
break;
}
case JANUS_EVENT_TYPE_JSEP: {
/* For JSEP-related events, there's the handle ID, whether the SDP is local or remote, the JSEP type and the SDP itself */
guint64 handle_id = va_arg(args, guint64);
json_object_set_new(event, "handle_id", json_integer(handle_id));
char *opaque_id = va_arg(args, char *);
if(opaque_id != NULL)
json_object_set_new(event, "opaque_id", json_string(opaque_id));
char *owner = va_arg(args, char *);
json_object_set_new(body, "owner", json_string(owner));
json_t *jsep = json_object();
char *sdp_type = va_arg(args, char *);
json_object_set_new(jsep, "type", json_string(sdp_type));
char *sdp = va_arg(args, char *);
json_object_set_new(jsep, "sdp", json_string(sdp));
json_object_set_new(body, "jsep", jsep);
break;
}
case JANUS_EVENT_TYPE_WEBRTC:
case JANUS_EVENT_TYPE_MEDIA: {
/* For WebRTC and media-related events, there's the handle ID and a json_t object with info on what happened */
guint64 handle_id = va_arg(args, guint64);
json_object_set_new(event, "handle_id", json_integer(handle_id));
char *opaque_id = va_arg(args, char *);
if(opaque_id != NULL)
json_object_set_new(event, "opaque_id", json_string(opaque_id));
/* The body is what we get from the event */
body = va_arg(args, json_t *);
break;
}
case JANUS_EVENT_TYPE_PLUGIN: {
/* For plugin-originated events, there's the handle ID, the plugin name, and a generic, plugin specific, json_t object */
guint64 handle_id = va_arg(args, guint64);
if(handle_id > 0) /* Plugins and transports may not specify a session and handle ID for out of context events */
json_object_set_new(event, "handle_id", json_integer(handle_id));
char *opaque_id = va_arg(args, char *);
if(opaque_id != NULL)
json_object_set_new(event, "opaque_id", json_string(opaque_id));
char *name = va_arg(args, char *);
json_object_set_new(body, "plugin", json_string(name));
json_t *data = va_arg(args, json_t *);
json_object_set(body, "data", data);
break;
}
case JANUS_EVENT_TYPE_TRANSPORT: {
char *name = va_arg(args, char *);
json_object_set_new(body, "transport", json_string(name));
char *instance = va_arg(args, void *);
char id[32];
memset(id, 0, sizeof(id));
g_snprintf(id, sizeof(id), "%p", instance);
json_object_set_new(body, "id", json_string(id));
json_t *data = va_arg(args, json_t *);
json_object_set(body, "data", data);
break;
}
case JANUS_EVENT_TYPE_CORE: {
/* For core-related events, there's a json_t object with info on what happened */
body = va_arg(args, json_t *);
break;
}
default:
JANUS_LOG(LOG_WARN, "Unknown event type '%d'\n", type);
json_decref(event);
json_decref(body);
va_end(args);
return;
}
json_object_set_new(event, "event", body);
va_end(args);
/* Enqueue the event */
g_async_queue_push(events, event);
}
void *janus_events_thread(void *data) {
JANUS_LOG(LOG_VERB, "Joining Events handler thread\n");
json_t *event = NULL;
while(eventsenabled) {
/* Any event in queue? */
event = g_async_queue_pop(events);
if(event == NULL)
continue;
if(event == &exit_event)
break;
/* Notify all interested handlers, increasing the event reference to make sure it's not lost because of errors */
int type = json_integer_value(json_object_get(event, "type"));
GHashTableIter iter;
gpointer value;
g_hash_table_iter_init(&iter, eventhandlers);
json_incref(event);
while(g_hash_table_iter_next(&iter, NULL, &value)) {
janus_eventhandler *e = value;
if(e == NULL)
continue;
if(!janus_flags_is_set(&e->events_mask, type))
continue;
e->incoming_event(event);
}
json_decref(event);
/* Unref the final event reference, interested handlers will have their own reference */
json_decref(event);
}
JANUS_LOG(LOG_VERB, "Leaving EchoTest handler thread\n");
return NULL;
}