-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
380 lines (309 loc) · 11 KB
/
main.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
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
/*
* IceStreamer - A simple live audio streamer
*
* Copyright (C) 2017 George Kiagiadakis <[email protected]>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "icestreamer.h"
GST_DEBUG_CATEGORY (icestreamer_debug);
G_DEFINE_QUARK (icestreamer-error-domain, icstr_error_domain);
static void
ice_streamer_free (IceStreamer * streamer)
{
g_clear_object (&streamer->pipeline);
g_free (streamer);
}
G_DEFINE_AUTOPTR_CLEANUP_FUNC (IceStreamer, ice_streamer_free);
static gboolean
icstr_load (IceStreamer *self, const gchar *conf_file, gboolean show_gui)
{
g_autoptr (GKeyFile) keyfile = NULL;
g_autoptr (GstElement) source = NULL;
g_autoptr (GError) error = NULL;
g_autoptr (GstCaps) caps = NULL;
gchar **groups;
gchar **group;
guint streams_linked = 0;
GST_DEBUG ("Loading IceStreamer using configuration file: %s", conf_file);
keyfile = g_key_file_new ();
if (!g_key_file_load_from_file (keyfile, conf_file, G_KEY_FILE_NONE, &error)) {
GST_ERROR ("Failed to load configuration file '%s': %s", conf_file,
error->message);
return FALSE;
}
source = icstr_construct_source (self, keyfile, &error);
if (!source) {
GST_ERROR ("%s", error->message);
return FALSE;
}
self->pipeline = gst_pipeline_new (NULL);
self->tee = gst_element_factory_make ("tee", NULL);
g_object_set (self->tee, "allow-not-linked", TRUE, NULL);
gst_bin_add_many (GST_BIN (self->pipeline), source, self->tee, NULL);
if (!gst_element_link (source, self->tee)) {
GST_ERROR ("Failed to link source with tee");
return FALSE;
}
#ifndef DISABLE_GUI
if (show_gui) {
GstElement *audioconvert, *level, *fakesink;
audioconvert = gst_element_factory_make ("audioconvert", NULL);
level = gst_element_factory_make ("level", NULL);
g_object_set (G_OBJECT (level),
"post-messages", TRUE,
"interval", 85000000,
NULL);
fakesink = gst_element_factory_make ("fakesink", NULL);
g_object_set (G_OBJECT (fakesink),
"sync", TRUE,
"enable-last-sample", FALSE,
NULL);
gst_bin_add_many (GST_BIN (self->pipeline), audioconvert, level, fakesink, NULL);
if (!gst_element_link (self->tee, audioconvert)) {
GST_ERROR ("Failed to link tee with audioconvert");
return FALSE;
}
caps = gst_caps_from_string ("audio/x-raw,channels=2");
if (!gst_element_link_filtered (audioconvert, level, caps)) {
GST_ERROR ("Failed to link source with level");
return FALSE;
}
if (!gst_element_link (level, fakesink)) {
GST_ERROR ("Failed to link level with fakesink");
return FALSE;
}
}
#endif
/* parse all remaining groups as streams */
groups = g_key_file_get_groups (keyfile, NULL);
for (group = groups; *group; group++) {
GstElement *stream;
/* skip the input group, this is parsed by icstr_construct_source() */
if (g_str_equal (*group, "input"))
continue;
/* skip the metadata group, this is parsed by icstr_setup_metadata_handler() */
if (g_str_equal (*group, "metadata"))
continue;
GST_DEBUG ("Constructing stream '%s'", *group);
stream = icstr_construct_stream (self, keyfile, *group, &error);
if (error) {
GST_WARNING ("Failed to construct stream: %s", error->message);
g_clear_error (&error);
continue;
}
gst_bin_add (GST_BIN (self->pipeline), stream);
gst_element_link_pads (self->tee, "src_%u", stream, "sink");
self->streams = g_list_prepend (self->streams, stream);
streams_linked++;
}
self->streams = g_list_reverse (self->streams);
g_strfreev (groups);
if (streams_linked == 0) {
GST_ERROR ("No streams specified in the configuration file");
return FALSE;
}
icstr_setup_metadata_handler (self, keyfile, &error);
if (error)
GST_WARNING ("%s", error->message);
return TRUE;
}
static gboolean
icstr_reconnect_timeout_callback (gpointer data)
{
IceStreamer *self = data;
GList *curr = NULL;
for (curr = self->disconnected_streams; curr != NULL;
curr = g_list_next (curr)) {
GstElement *stream = curr->data;
GST_INFO ("Reconnecting %s", GST_OBJECT_NAME (stream));
gst_element_set_state (stream, GST_STATE_PLAYING);
gst_element_link_pads (self->tee, "src_%u", stream, "sink");
}
for (curr = self->streams; curr != NULL; curr = g_list_next (curr)) {
GstElement *stream = curr->data;
self->disconnected_streams =
g_list_remove (self->disconnected_streams, curr->data);
}
self->timeout_source = 0;
return G_SOURCE_REMOVE;
}
static gboolean
icstr_exit_handler (gpointer data)
{
IceStreamer *self = data;
g_file_monitor_cancel (self->mtdat_file_monitor);
g_clear_object (&self->mtdat_file_monitor);
g_clear_object (&self->mtdat_file);
g_clear_pointer (&self->tags, gst_tag_list_unref);
#ifndef DISABLE_GUI
icstr_gui_destroy (self);
#endif
g_main_loop_quit (self->loop);
return G_SOURCE_REMOVE;
}
static gboolean
icstr_bus_callback (GstBus *bus, GstMessage *msg, gpointer data)
{
IceStreamer *self = data;
switch (GST_MESSAGE_TYPE (msg)) {
case GST_MESSAGE_WARNING:
{
g_autoptr (GError) error = NULL;
g_autofree gchar *debug = NULL;
gst_message_parse_warning (msg, &error, &debug);
GST_WARNING ("GStreamer warning: %s (%s)", error->message, debug);
break;
}
case GST_MESSAGE_ERROR:
{
g_autoptr (GError) error = NULL;
g_autofree gchar *debug = NULL;
gst_message_parse_error (msg, &error, &debug);
if (g_str_has_prefix (GST_MESSAGE_SRC_NAME (msg), "shout2send")
&& error->domain == GST_RESOURCE_ERROR) {
/*
* Network error - disconnect stream bin from the pipeline and reconnect it later
*/
g_autoptr (GstElement) stream_bin = NULL;
g_autoptr (GstPad) bin_sinkpad = NULL, tee_srcpad = NULL;
GST_WARNING ("Network error for %s: %s (%s)", GST_MESSAGE_SRC_NAME (msg),
error->message, debug);
stream_bin = GST_ELEMENT (gst_object_get_parent (GST_MESSAGE_SRC (msg)));
bin_sinkpad = gst_element_get_static_pad (stream_bin, "sink");
tee_srcpad = gst_pad_get_peer (bin_sinkpad);
gst_pad_unlink (tee_srcpad, bin_sinkpad);
gst_element_release_request_pad (self->tee, tee_srcpad);
gst_element_set_state (stream_bin, GST_STATE_NULL);
self->disconnected_streams =
g_list_prepend (self->disconnected_streams, stream_bin);
if (self->timeout_source == 0) {
GST_INFO ("Starting reconnection timer");
self->timeout_source = g_timeout_add_seconds (RECONNECT_TIMEOUT,
icstr_reconnect_timeout_callback, self);
}
} else {
/*
* Any other error is fatal - report & exit
*/
GST_ERROR ("GStreamer reported a fatal error: %s (%s)", error->message,
debug);
icstr_exit_handler (self);
}
break;
}
#ifndef DISABLE_GUI
case GST_MESSAGE_ELEMENT:
{
GstClockTime running_time;
gdouble rms_l = 0;
gdouble rms_r = 0;
const GValue *array_val = NULL;
const GValue *value = NULL;
GValueArray *rms_arr = NULL;
const GstStructure *s = gst_message_get_structure (msg);
const gchar *name = gst_structure_get_name (s);
if (strcmp (name, "level") != 0)
break;
if (!gst_structure_get_clock_time (s, "running-time", &running_time))
GST_WARNING ("Could not parse running-time");
icstr_gui_update_time_label(self, running_time);
/* the values are packed into GValueArrays with the value per channel */
array_val = gst_structure_get_value (s, "rms");
rms_arr = (GValueArray *) g_value_get_boxed (array_val);
/* we can get the number of channels as the length of any of the value
* arrays */
if (rms_arr->n_values != 2) {
GST_ERROR ("Got wrong number of channels while updating levels on gui, terminating");
icstr_exit_handler (self);
break;
}
rms_l = g_value_get_double(rms_arr->values + 0);
rms_r = g_value_get_double(rms_arr->values + 1);
icstr_gui_update_levels(self, rms_l, rms_r);
break;
}
#endif
default:
break;
}
return G_SOURCE_CONTINUE;
}
static void
icstr_run (IceStreamer *self)
{
g_autoptr (GMainLoop) loop = g_main_loop_new (NULL, FALSE);
g_autoptr (GstBus) bus = NULL;
self->loop = loop;
g_unix_signal_add (SIGINT, icstr_exit_handler, self);
g_unix_signal_add (SIGHUP, icstr_exit_handler, self);
g_unix_signal_add (SIGTERM, icstr_exit_handler, self);
bus = gst_pipeline_get_bus (GST_PIPELINE (self->pipeline));
gst_bus_add_watch (bus, icstr_bus_callback, self);
gst_element_set_state (self->pipeline, GST_STATE_PLAYING);
GST_DEBUG ("Entering main loop");
g_main_loop_run (loop);
GST_DEBUG ("Exiting...");
gst_element_set_state (self->pipeline, GST_STATE_NULL);
self->loop = NULL;
}
gint
main (gint argc, gchar **argv)
{
g_autoptr (GOptionContext) context;
g_autoptr (IceStreamer) self = NULL;
g_autoptr (GError) error = NULL;
gboolean show_gui = FALSE;
gchar *conf_file = "/etc/icestreamer.conf";
const GOptionEntry entries[] = {
{"config", 'c', 0, G_OPTION_ARG_FILENAME, &conf_file,
"Configuration file", "icestreamer.conf"},
#ifndef DISABLE_GUI
{"gui", 'g', 0, G_OPTION_ARG_NONE, &show_gui,
"Show gui", NULL},
#endif
{NULL}
};
GST_DEBUG_CATEGORY_INIT (icestreamer_debug, "icestreamer", 0, "IceStreamer");
gst_debug_set_threshold_from_string ("icestreamer:INFO", FALSE);
/* cmd line option parsing */
context = g_option_context_new (NULL);
g_option_context_set_summary (context, "stream audio to an icecast server");
g_option_context_add_main_entries (context, entries, NULL);
g_option_context_add_group (context, gst_init_get_option_group ());
if (!g_option_context_parse (context, &argc, &argv, &error)) {
g_printerr ("Option parsing failed: %s\n", error->message);
return 1;
}
/* verify provided files exist */
if (!g_file_test (conf_file, G_FILE_TEST_IS_REGULAR)) {
g_printerr ("No configuration file provided\n");
g_printerr ("\n%s", g_option_context_get_help (context, TRUE, NULL));
return 1;
}
g_clear_pointer (&context, g_option_context_free);
/* initialization */
self = g_new0 (IceStreamer, 1);
if (!icstr_load (self, conf_file, show_gui))
return 1;
#ifndef DISABLE_GUI
if (show_gui) {
gtk_init (&argc, &argv);
icstr_init_gui (self);
}
#endif
/* enter main loop */
icstr_run (self);
return 0;
}