2 * Copyright (C) 2009 Edward Hervey <edward.hervey@collabora.co.uk>
3 * 2009 Nokia Corporation
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
15 * You should have received a copy of the GNU Library General Public
16 * License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
22 * SECTION:gstdiscoverer
23 * @short_description: Utility for discovering information on URIs.
25 * The #GstDiscoverer is a utility object which allows to get as much
26 * information as possible from one or many URIs.
28 * It provides two APIs, allowing usage in blocking or non-blocking mode.
30 * The blocking mode just requires calling gst_discoverer_discover_uri()
31 * with the URI one wishes to discover.
33 * The non-blocking mode requires a running #GMainLoop in the default
34 * #GMainContext, where one connects to the various signals, appends the
35 * URIs to be processed (through gst_discoverer_discover_uri_async()) and then
36 * asks for the discovery to begin (through gst_discoverer_start()).
38 * All the information is returned in a #GstDiscovererInfo structure.
47 #include <gst/video/video.h>
50 #include "pbutils-marshal.h"
51 #include "pbutils-private.h"
53 GST_DEBUG_CATEGORY_STATIC (discoverer_debug);
54 #define GST_CAT_DEFAULT discoverer_debug
56 static GQuark _CAPS_QUARK;
57 static GQuark _TAGS_QUARK;
58 static GQuark _MISSING_PLUGIN_QUARK;
59 static GQuark _STREAM_TOPOLOGY_QUARK;
60 static GQuark _TOPOLOGY_PAD_QUARK;
72 struct _GstDiscovererPrivate
76 /* allowed time to discover each uri in nanoseconds */
79 /* list of pending URI to process (current excluded) */
84 /* TRUE if processing a URI */
87 /* TRUE if discoverer has been started */
91 GstDiscovererInfo *current_info;
92 GError *current_error;
93 GstStructure *current_topology;
95 /* List of private streams */
100 GstElement *uridecodebin;
103 GType decodebin_type;
105 /* Custom main context variables */
110 /* reusable queries */
111 GstQuery *seeking_query;
113 /* Handler ids for various callbacks */
115 gulong pad_remove_id;
116 gulong element_added_id;
120 #define DISCO_LOCK(dc) g_mutex_lock (dc->priv->lock);
121 #define DISCO_UNLOCK(dc) g_mutex_unlock (dc->priv->lock);
126 GST_DEBUG_CATEGORY_INIT (discoverer_debug, "discoverer", 0, "Discoverer");
128 _CAPS_QUARK = g_quark_from_static_string ("caps");
129 _TAGS_QUARK = g_quark_from_static_string ("tags");
130 _MISSING_PLUGIN_QUARK = g_quark_from_static_string ("missing-plugin");
131 _STREAM_TOPOLOGY_QUARK = g_quark_from_static_string ("stream-topology");
132 _TOPOLOGY_PAD_QUARK = g_quark_from_static_string ("pad");
135 G_DEFINE_TYPE_EXTENDED (GstDiscoverer, gst_discoverer, G_TYPE_OBJECT, 0,
146 #define DEFAULT_PROP_TIMEOUT 15 * GST_SECOND
154 static guint gst_discoverer_signals[LAST_SIGNAL] = { 0 };
156 static void gst_discoverer_set_timeout (GstDiscoverer * dc,
157 GstClockTime timeout);
158 static gboolean async_timeout_cb (GstDiscoverer * dc);
160 static void discoverer_bus_cb (GstBus * bus, GstMessage * msg,
162 static void uridecodebin_pad_added_cb (GstElement * uridecodebin, GstPad * pad,
164 static void uridecodebin_pad_removed_cb (GstElement * uridecodebin,
165 GstPad * pad, GstDiscoverer * dc);
167 static void gst_discoverer_dispose (GObject * dc);
168 static void gst_discoverer_set_property (GObject * object, guint prop_id,
169 const GValue * value, GParamSpec * pspec);
170 static void gst_discoverer_get_property (GObject * object, guint prop_id,
171 GValue * value, GParamSpec * pspec);
174 gst_discoverer_class_init (GstDiscovererClass * klass)
176 GObjectClass *gobject_class = (GObjectClass *) klass;
178 gobject_class->dispose = gst_discoverer_dispose;
180 gobject_class->set_property = gst_discoverer_set_property;
181 gobject_class->get_property = gst_discoverer_get_property;
183 g_type_class_add_private (klass, sizeof (GstDiscovererPrivate));
187 * GstDiscoverer:timeout
189 * The duration (in nanoseconds) after which the discovery of an individual
192 * If the discovery of a URI times out, the %GST_DISCOVERER_TIMEOUT will be
193 * set on the result flags.
195 g_object_class_install_property (gobject_class, PROP_TIMEOUT,
196 g_param_spec_uint64 ("timeout", "timeout", "Timeout",
197 GST_SECOND, 3600 * GST_SECOND, DEFAULT_PROP_TIMEOUT,
198 G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
202 * GstDiscoverer::finished:
203 * @discoverer: the #GstDiscoverer
205 * Will be emitted when all pending URIs have been processed.
207 gst_discoverer_signals[SIGNAL_FINISHED] =
208 g_signal_new ("finished", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
209 G_STRUCT_OFFSET (GstDiscovererClass, finished),
210 NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0, G_TYPE_NONE);
213 * GstDiscoverer::starting:
214 * @discoverer: the #GstDiscoverer
216 * Will be emitted when the discover starts analyzing the pending URIs
218 gst_discoverer_signals[SIGNAL_STARTING] =
219 g_signal_new ("starting", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
220 G_STRUCT_OFFSET (GstDiscovererClass, starting),
221 NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0, G_TYPE_NONE);
224 * GstDiscoverer::discovered:
225 * @discoverer: the #GstDiscoverer
226 * @info: the results #GstDiscovererInfo
227 * @error: (type GLib.Error): #GError, which will be non-NULL if an error
228 * occurred during discovery
230 * Will be emitted when all information on a URI could be discovered.
232 gst_discoverer_signals[SIGNAL_DISCOVERED] =
233 g_signal_new ("discovered", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
234 G_STRUCT_OFFSET (GstDiscovererClass, discovered),
235 NULL, NULL, pbutils_marshal_VOID__POINTER_BOXED,
236 G_TYPE_NONE, 2, GST_TYPE_DISCOVERER_INFO, GST_TYPE_G_ERROR);
240 uridecodebin_element_added_cb (GstElement * uridecodebin,
241 GstElement * child, GstDiscoverer * dc)
243 GST_DEBUG ("New element added to uridecodebin : %s",
244 GST_ELEMENT_NAME (child));
246 if (G_OBJECT_TYPE (child) == dc->priv->decodebin_type) {
247 g_object_set (child, "post-stream-topology", TRUE, NULL);
252 gst_discoverer_init (GstDiscoverer * dc)
255 GstFormat format = GST_FORMAT_TIME;
257 dc->priv = G_TYPE_INSTANCE_GET_PRIVATE (dc, GST_TYPE_DISCOVERER,
258 GstDiscovererPrivate);
260 dc->priv->timeout = DEFAULT_PROP_TIMEOUT;
261 dc->priv->async = FALSE;
263 dc->priv->lock = g_mutex_new ();
265 GST_LOG ("Creating pipeline");
266 dc->priv->pipeline = (GstBin *) gst_pipeline_new ("Discoverer");
267 GST_LOG_OBJECT (dc, "Creating uridecodebin");
268 dc->priv->uridecodebin =
269 gst_element_factory_make ("uridecodebin", "discoverer-uri");
270 if (G_UNLIKELY (dc->priv->uridecodebin == NULL)) {
271 GST_ERROR ("Can't create uridecodebin");
274 GST_LOG_OBJECT (dc, "Adding uridecodebin to pipeline");
275 gst_bin_add (dc->priv->pipeline, dc->priv->uridecodebin);
277 dc->priv->pad_added_id =
278 g_signal_connect_object (dc->priv->uridecodebin, "pad-added",
279 G_CALLBACK (uridecodebin_pad_added_cb), dc, 0);
280 dc->priv->pad_remove_id =
281 g_signal_connect_object (dc->priv->uridecodebin, "pad-removed",
282 G_CALLBACK (uridecodebin_pad_removed_cb), dc, 0);
284 GST_LOG_OBJECT (dc, "Getting pipeline bus");
285 dc->priv->bus = gst_pipeline_get_bus ((GstPipeline *) dc->priv->pipeline);
287 dc->priv->bus_cb_id =
288 g_signal_connect_object (dc->priv->bus, "message",
289 G_CALLBACK (discoverer_bus_cb), dc, 0);
291 GST_DEBUG_OBJECT (dc, "Done initializing Discoverer");
293 /* This is ugly. We get the GType of decodebin so we can quickly detect
294 * when a decodebin is added to uridecodebin so we can set the
295 * post-stream-topology setting to TRUE */
296 dc->priv->element_added_id =
297 g_signal_connect_object (dc->priv->uridecodebin, "element-added",
298 G_CALLBACK (uridecodebin_element_added_cb), dc, 0);
299 tmp = gst_element_factory_make ("decodebin", NULL);
300 dc->priv->decodebin_type = G_OBJECT_TYPE (tmp);
301 gst_object_unref (tmp);
304 dc->priv->seeking_query = gst_query_new_seeking (format);
308 discoverer_reset (GstDiscoverer * dc)
310 GST_DEBUG_OBJECT (dc, "Resetting");
312 if (dc->priv->pending_uris) {
313 g_list_foreach (dc->priv->pending_uris, (GFunc) g_free, NULL);
314 g_list_free (dc->priv->pending_uris);
315 dc->priv->pending_uris = NULL;
318 if (dc->priv->pipeline)
319 gst_element_set_state ((GstElement *) dc->priv->pipeline, GST_STATE_NULL);
322 #define DISCONNECT_SIGNAL(o,i) G_STMT_START{ \
323 if ((i) && g_signal_handler_is_connected ((o), (i))) \
324 g_signal_handler_disconnect ((o), (i)); \
329 gst_discoverer_dispose (GObject * obj)
331 GstDiscoverer *dc = (GstDiscoverer *) obj;
333 GST_DEBUG_OBJECT (dc, "Disposing");
335 discoverer_reset (dc);
337 if (G_LIKELY (dc->priv->pipeline)) {
338 /* Workaround for bug #118536 */
339 DISCONNECT_SIGNAL (dc->priv->uridecodebin, dc->priv->pad_added_id);
340 DISCONNECT_SIGNAL (dc->priv->uridecodebin, dc->priv->pad_remove_id);
341 DISCONNECT_SIGNAL (dc->priv->uridecodebin, dc->priv->element_added_id);
342 DISCONNECT_SIGNAL (dc->priv->bus, dc->priv->bus_cb_id);
344 /* pipeline was set to NULL in _reset */
345 gst_object_unref (dc->priv->pipeline);
346 gst_object_unref (dc->priv->bus);
348 dc->priv->pipeline = NULL;
349 dc->priv->uridecodebin = NULL;
350 dc->priv->bus = NULL;
353 gst_discoverer_stop (dc);
355 if (dc->priv->lock) {
356 g_mutex_free (dc->priv->lock);
357 dc->priv->lock = NULL;
360 if (dc->priv->seeking_query) {
361 gst_query_unref (dc->priv->seeking_query);
362 dc->priv->seeking_query = NULL;
365 G_OBJECT_CLASS (gst_discoverer_parent_class)->dispose (obj);
369 gst_discoverer_set_property (GObject * object, guint prop_id,
370 const GValue * value, GParamSpec * pspec)
372 GstDiscoverer *dc = (GstDiscoverer *) object;
376 gst_discoverer_set_timeout (dc, g_value_get_uint64 (value));
379 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
385 gst_discoverer_get_property (GObject * object, guint prop_id,
386 GValue * value, GParamSpec * pspec)
388 GstDiscoverer *dc = (GstDiscoverer *) object;
393 g_value_set_uint64 (value, dc->priv->timeout);
397 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
403 gst_discoverer_set_timeout (GstDiscoverer * dc, GstClockTime timeout)
405 GST_DEBUG_OBJECT (dc, "timeout : %" GST_TIME_FORMAT, GST_TIME_ARGS (timeout));
407 /* FIXME : update current pending timeout if we're running */
409 dc->priv->timeout = timeout;
413 static GstPadProbeReturn
414 _event_probe (GstPad * pad, GstPadProbeInfo * info, PrivateStream * ps)
416 GstEvent *event = GST_PAD_PROBE_INFO_EVENT (info);
418 if (GST_EVENT_TYPE (event) == GST_EVENT_TAG) {
419 GstTagList *tl = NULL, *tmp;
421 gst_event_parse_tag (event, &tl);
422 GST_DEBUG_OBJECT (pad, "tags %" GST_PTR_FORMAT, tl);
424 /* If preroll is complete, drop these tags - the collected information is
425 * possibly already being processed and adding more tags would be racy */
426 if (G_LIKELY (ps->dc->priv->processing)) {
427 GST_DEBUG_OBJECT (pad, "private stream %p old tags %" GST_PTR_FORMAT, ps,
429 tmp = gst_tag_list_merge (ps->tags, tl, GST_TAG_MERGE_APPEND);
431 gst_tag_list_free (ps->tags);
433 GST_DEBUG_OBJECT (pad, "private stream %p new tags %" GST_PTR_FORMAT, ps,
436 GST_DEBUG_OBJECT (pad, "Dropping tags since preroll is done");
437 DISCO_UNLOCK (ps->dc);
440 return GST_PAD_PROBE_OK;
444 is_subtitle_caps (const GstCaps * caps)
446 static GstCaps *subs_caps = NULL;
449 subs_caps = gst_caps_from_string ("text/plain; text/x-pango-markup; "
450 "subpicture/x-pgs; subpicture/x-dvb; application/x-subtitle-unknown; "
451 "application/x-ssa; application/x-ass; subtitle/x-kate; "
452 "application/x-kate; video/x-dvd-subpicture; ");
455 return gst_caps_can_intersect (caps, subs_caps);
459 uridecodebin_pad_added_cb (GstElement * uridecodebin, GstPad * pad,
463 GstPad *sinkpad = NULL;
466 GST_DEBUG_OBJECT (dc, "pad %s:%s", GST_DEBUG_PAD_NAME (pad));
468 ps = g_slice_new0 (PrivateStream);
472 ps->queue = gst_element_factory_make ("queue", NULL);
473 ps->sink = gst_element_factory_make ("fakesink", NULL);
475 if (G_UNLIKELY (ps->queue == NULL || ps->sink == NULL))
478 g_object_set (ps->sink, "silent", TRUE, NULL);
479 g_object_set (ps->queue, "max-size-buffers", 1, "silent", TRUE, NULL);
481 caps = gst_pad_query_caps (pad, NULL);
483 if (is_subtitle_caps (caps)) {
484 /* Subtitle streams are sparse and may not provide any information - don't
485 * wait for data to preroll */
486 g_object_set (ps->sink, "async", FALSE, NULL);
489 gst_caps_unref (caps);
491 gst_bin_add_many (dc->priv->pipeline, ps->queue, ps->sink, NULL);
493 if (!gst_element_link_pads_full (ps->queue, "src", ps->sink, "sink",
494 GST_PAD_LINK_CHECK_NOTHING))
496 if (!gst_element_sync_state_with_parent (ps->sink))
498 if (!gst_element_sync_state_with_parent (ps->queue))
501 sinkpad = gst_element_get_static_pad (ps->queue, "sink");
504 if (gst_pad_link_full (pad, sinkpad,
505 GST_PAD_LINK_CHECK_NOTHING) != GST_PAD_LINK_OK)
507 gst_object_unref (sinkpad);
509 /* Add an event probe */
510 gst_pad_add_probe (pad, GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM,
511 (GstPadProbeCallback) _event_probe, ps, NULL);
514 dc->priv->streams = g_list_append (dc->priv->streams, ps);
517 GST_DEBUG_OBJECT (dc, "Done handling pad");
522 GST_ERROR_OBJECT (dc, "Error while handling pad");
524 gst_object_unref (sinkpad);
526 gst_object_unref (ps->queue);
528 gst_object_unref (ps->sink);
529 g_slice_free (PrivateStream, ps);
534 uridecodebin_pad_removed_cb (GstElement * uridecodebin, GstPad * pad,
541 GST_DEBUG_OBJECT (dc, "pad %s:%s", GST_DEBUG_PAD_NAME (pad));
543 /* Find the PrivateStream */
545 for (tmp = dc->priv->streams; tmp; tmp = tmp->next) {
546 ps = (PrivateStream *) tmp->data;
553 GST_DEBUG ("The removed pad wasn't controlled by us !");
557 dc->priv->streams = g_list_delete_link (dc->priv->streams, tmp);
560 gst_element_set_state (ps->sink, GST_STATE_NULL);
561 gst_element_set_state (ps->queue, GST_STATE_NULL);
562 gst_element_unlink (ps->queue, ps->sink);
564 sinkpad = gst_element_get_static_pad (ps->queue, "sink");
565 gst_pad_unlink (pad, sinkpad);
566 gst_object_unref (sinkpad);
568 /* references removed here */
569 gst_bin_remove_many (dc->priv->pipeline, ps->sink, ps->queue, NULL);
572 gst_tag_list_free (ps->tags);
575 g_slice_free (PrivateStream, ps);
577 GST_DEBUG ("Done handling pad");
580 static GstStructure *
581 collect_stream_information (GstDiscoverer * dc, PrivateStream * ps, guint idx)
587 stname = g_strdup_printf ("stream-%02d", idx);
588 st = gst_structure_new_empty (stname);
592 caps = gst_pad_get_current_caps (ps->pad);
594 GST_WARNING ("Couldn't get negotiated caps from %s:%s",
595 GST_DEBUG_PAD_NAME (ps->pad));
596 caps = gst_pad_query_caps (ps->pad, NULL);
599 GST_DEBUG ("Got caps %" GST_PTR_FORMAT, caps);
600 gst_structure_id_set (st, _CAPS_QUARK, GST_TYPE_CAPS, caps, NULL);
602 gst_caps_unref (caps);
605 gst_structure_id_set (st, _TAGS_QUARK, GST_TYPE_STRUCTURE, ps->tags, NULL);
610 /* Parses a set of caps and tags in st and populates a GstDiscovererStreamInfo
611 * structure (parent, if !NULL, otherwise it allocates one)
613 static GstDiscovererStreamInfo *
614 collect_information (GstDiscoverer * dc, const GstStructure * st,
615 GstDiscovererStreamInfo * parent)
618 GstStructure *caps_st, *tags_st;
623 if (!st || !gst_structure_id_has_field (st, _CAPS_QUARK)) {
624 GST_WARNING ("Couldn't find caps !");
628 return (GstDiscovererStreamInfo *)
629 g_object_new (GST_TYPE_DISCOVERER_STREAM_INFO, NULL);
632 gst_structure_id_get (st, _CAPS_QUARK, GST_TYPE_CAPS, &caps, NULL);
633 caps_st = gst_caps_get_structure (caps, 0);
634 name = gst_structure_get_name (caps_st);
636 if (g_str_has_prefix (name, "audio/")) {
637 GstDiscovererAudioInfo *info;
640 info = (GstDiscovererAudioInfo *) parent;
642 info = (GstDiscovererAudioInfo *)
643 g_object_new (GST_TYPE_DISCOVERER_AUDIO_INFO, NULL);
644 info->parent.caps = caps;
647 if (gst_structure_get_int (caps_st, "rate", &tmp))
648 info->sample_rate = (guint) tmp;
650 if (gst_structure_get_int (caps_st, "channels", &tmp))
651 info->channels = (guint) tmp;
653 if (gst_structure_get_int (caps_st, "depth", &tmp))
654 info->depth = (guint) tmp;
656 if (gst_structure_id_has_field (st, _TAGS_QUARK)) {
657 gst_structure_id_get (st, _TAGS_QUARK,
658 GST_TYPE_STRUCTURE, &tags_st, NULL);
659 if (gst_structure_get_uint (tags_st, GST_TAG_BITRATE, &utmp) ||
660 gst_structure_get_uint (tags_st, GST_TAG_NOMINAL_BITRATE, &utmp))
661 info->bitrate = utmp;
663 if (gst_structure_get_uint (tags_st, GST_TAG_MAXIMUM_BITRATE, &utmp))
664 info->max_bitrate = utmp;
666 /* FIXME: Is it worth it to remove the tags we've parsed? */
667 info->parent.tags = gst_tag_list_merge (info->parent.tags,
668 (GstTagList *) tags_st, GST_TAG_MERGE_REPLACE);
670 gst_structure_free (tags_st);
673 if (!info->language && ((GstDiscovererStreamInfo *) info)->tags) {
675 if (gst_tag_list_get_string (((GstDiscovererStreamInfo *) info)->tags,
676 GST_TAG_LANGUAGE_CODE, &language)) {
677 info->language = language;
681 return (GstDiscovererStreamInfo *) info;
683 } else if (g_str_has_prefix (name, "video/") ||
684 g_str_has_prefix (name, "image/")) {
685 GstDiscovererVideoInfo *info;
689 info = (GstDiscovererVideoInfo *) parent;
691 info = (GstDiscovererVideoInfo *)
692 g_object_new (GST_TYPE_DISCOVERER_VIDEO_INFO, NULL);
693 info->parent.caps = caps;
696 /* FIXME : gst_video_info_from_caps only works with raw caps,
697 * wouldn't we want to get all the info below for non-raw caps ?
699 if (g_str_has_prefix (name, "video/x-raw") &&
700 gst_video_info_from_caps (&vinfo, caps)) {
701 info->width = (guint) vinfo.width;
702 info->height = (guint) vinfo.height;
704 info->depth = (guint) 0;
706 info->par_num = vinfo.par_n;
707 info->par_denom = vinfo.par_d;
709 info->framerate_num = vinfo.fps_n;
710 info->framerate_denom = vinfo.fps_d;
712 info->interlaced = (vinfo.flags & GST_VIDEO_FLAG_INTERLACED) != 0;
715 if (gst_structure_id_has_field (st, _TAGS_QUARK)) {
716 gst_structure_id_get (st, _TAGS_QUARK,
717 GST_TYPE_STRUCTURE, &tags_st, NULL);
718 if (gst_structure_get_uint (tags_st, GST_TAG_BITRATE, &utmp) ||
719 gst_structure_get_uint (tags_st, GST_TAG_NOMINAL_BITRATE, &utmp))
720 info->bitrate = utmp;
722 if (gst_structure_get_uint (tags_st, GST_TAG_MAXIMUM_BITRATE, &utmp))
723 info->max_bitrate = utmp;
725 /* FIXME: Is it worth it to remove the tags we've parsed? */
726 info->parent.tags = gst_tag_list_merge (info->parent.tags,
727 (GstTagList *) tags_st, GST_TAG_MERGE_REPLACE);
728 gst_structure_free (tags_st);
731 return (GstDiscovererStreamInfo *) info;
733 } else if (is_subtitle_caps (caps)) {
734 GstDiscovererSubtitleInfo *info;
737 info = (GstDiscovererSubtitleInfo *) parent;
739 info = (GstDiscovererSubtitleInfo *)
740 g_object_new (GST_TYPE_DISCOVERER_SUBTITLE_INFO, NULL);
741 info->parent.caps = caps;
744 if (gst_structure_id_has_field (st, _TAGS_QUARK)) {
745 const gchar *language;
747 gst_structure_id_get (st, _TAGS_QUARK,
748 GST_TYPE_STRUCTURE, &tags_st, NULL);
750 language = gst_structure_get_string (caps_st, GST_TAG_LANGUAGE_CODE);
752 info->language = g_strdup (language);
754 /* FIXME: Is it worth it to remove the tags we've parsed? */
755 info->parent.tags = gst_tag_list_merge (info->parent.tags,
756 (GstTagList *) tags_st, GST_TAG_MERGE_REPLACE);
757 gst_structure_free (tags_st);
761 if (!info->language && ((GstDiscovererStreamInfo *) info)->tags) {
763 if (gst_tag_list_get_string (((GstDiscovererStreamInfo *) info)->tags,
764 GST_TAG_LANGUAGE_CODE, &language)) {
765 info->language = language;
769 return (GstDiscovererStreamInfo *) info;
772 /* None of the above - populate what information we can */
773 GstDiscovererStreamInfo *info;
778 info = (GstDiscovererStreamInfo *)
779 g_object_new (GST_TYPE_DISCOVERER_STREAM_INFO, NULL);
783 if (gst_structure_id_get (st, _TAGS_QUARK,
784 GST_TYPE_STRUCTURE, &tags_st, NULL)) {
785 info->tags = gst_tag_list_merge (info->tags, (GstTagList *) tags_st,
786 GST_TAG_MERGE_REPLACE);
787 gst_structure_free (tags_st);
795 static GstStructure *
796 find_stream_for_node (GstDiscoverer * dc, const GstStructure * topology)
799 GstPad *target_pad = NULL;
800 GstStructure *st = NULL;
805 if (!gst_structure_id_has_field (topology, _TOPOLOGY_PAD_QUARK)) {
806 GST_DEBUG ("Could not find pad for node %" GST_PTR_FORMAT "\n", topology);
810 gst_structure_id_get (topology, _TOPOLOGY_PAD_QUARK,
811 GST_TYPE_PAD, &pad, NULL);
813 if (!dc->priv->streams)
816 for (i = 0, tmp = dc->priv->streams; tmp; tmp = tmp->next, i++) {
817 ps = (PrivateStream *) tmp->data;
819 target_pad = gst_ghost_pad_get_target (GST_GHOST_PAD (ps->pad));
820 gst_object_unref (target_pad);
822 if (target_pad == pad)
827 st = collect_stream_information (dc, ps, i);
829 gst_object_unref (pad);
835 child_is_raw_stream (GstCaps * parent, GstCaps * child)
837 GstStructure *st1, *st2;
838 const gchar *name1, *name2;
840 st1 = gst_caps_get_structure (parent, 0);
841 name1 = gst_structure_get_name (st1);
842 st2 = gst_caps_get_structure (child, 0);
843 name2 = gst_structure_get_name (st2);
845 if ((g_str_has_prefix (name1, "audio/") &&
846 g_str_has_prefix (name2, "audio/x-raw")) ||
847 ((g_str_has_prefix (name1, "video/") ||
848 g_str_has_prefix (name1, "image/")) &&
849 g_str_has_prefix (name2, "video/x-raw"))) {
850 /* child is the "raw" sub-stream corresponding to parent */
854 if (is_subtitle_caps (parent))
860 /* If a parent is non-NULL, collected stream information will be appended to it
861 * (and where the information exists, it will be overriden)
863 static GstDiscovererStreamInfo *
864 parse_stream_topology (GstDiscoverer * dc, const GstStructure * topology,
865 GstDiscovererStreamInfo * parent)
867 GstDiscovererStreamInfo *res = NULL;
868 GstCaps *caps = NULL;
869 const GValue *nval = NULL;
871 GST_DEBUG ("parsing: %" GST_PTR_FORMAT, topology);
873 nval = gst_structure_get_value (topology, "next");
875 if (nval == NULL || GST_VALUE_HOLDS_STRUCTURE (nval)) {
876 GstStructure *st = find_stream_for_node (dc, topology);
877 gboolean add_to_list = TRUE;
880 res = collect_information (dc, st, parent);
881 gst_structure_free (st);
883 /* Didn't find a stream structure, so let's just use the caps we have */
884 res = collect_information (dc, topology, parent);
888 /* FIXME : aggregate with information from main streams */
889 GST_DEBUG ("Coudn't find 'next' ! might be the last entry");
892 const GstStructure *st;
894 st = gst_value_get_structure (nval);
896 GST_DEBUG ("next is a structure %" GST_PTR_FORMAT, st);
901 if (gst_structure_id_get (st, _CAPS_QUARK, GST_TYPE_CAPS, &caps, NULL)) {
902 if (gst_caps_can_intersect (parent->caps, caps)) {
903 /* We sometimes get an extra sub-stream from the parser. If this is
904 * the case, we just replace the parent caps with this stream's caps
905 * since they might contain more information */
906 gst_caps_unref (parent->caps);
909 parse_stream_topology (dc, st, parent);
912 } else if (child_is_raw_stream (parent->caps, caps)) {
913 /* This is the "raw" stream corresponding to the parent. This
914 * contains more information than the parent, tags etc. */
915 parse_stream_topology (dc, st, parent);
917 gst_caps_unref (caps);
920 GstDiscovererStreamInfo *next = parse_stream_topology (dc, st, NULL);
922 next->previous = res;
928 dc->priv->current_info->stream_list =
929 g_list_append (dc->priv->current_info->stream_list, res);
932 } else if (GST_VALUE_HOLDS_LIST (nval)) {
934 GstDiscovererContainerInfo *cont;
937 if (!gst_structure_id_get (topology, _CAPS_QUARK,
938 GST_TYPE_CAPS, &caps, NULL))
939 GST_WARNING ("Couldn't find caps !");
941 len = gst_value_list_get_size (nval);
942 GST_DEBUG ("next is a list of %d entries", len);
944 cont = (GstDiscovererContainerInfo *)
945 g_object_new (GST_TYPE_DISCOVERER_CONTAINER_INFO, NULL);
946 cont->parent.caps = caps;
947 res = (GstDiscovererStreamInfo *) cont;
949 if (gst_structure_id_has_field (topology, _TAGS_QUARK)) {
952 gst_structure_id_get (topology, _TAGS_QUARK,
953 GST_TYPE_STRUCTURE, &tags, NULL);
955 GST_DEBUG ("Merge tags %" GST_PTR_FORMAT, tags);
958 gst_tag_list_merge (cont->parent.tags, (GstTagList *) tags,
959 GST_TAG_MERGE_APPEND);
960 gst_tag_list_free (tags);
961 if (cont->parent.tags)
962 gst_tag_list_free (cont->parent.tags);
963 cont->parent.tags = tmp;
964 GST_DEBUG ("Container info tags %" GST_PTR_FORMAT, tmp);
967 for (i = 0; i < len; i++) {
968 const GValue *subv = gst_value_list_get_value (nval, i);
969 const GstStructure *subst = gst_value_get_structure (subv);
970 GstDiscovererStreamInfo *substream;
972 GST_DEBUG ("%d %" GST_PTR_FORMAT, i, subst);
974 substream = parse_stream_topology (dc, subst, NULL);
976 substream->previous = res;
978 g_list_append (cont->streams,
979 gst_discoverer_stream_info_ref (substream));
986 /* Called when pipeline is pre-rolled */
988 discoverer_collect (GstDiscoverer * dc)
990 GST_DEBUG ("Collecting information");
992 /* Stop the timeout handler if present */
993 if (dc->priv->timeoutid) {
994 g_source_remove (dc->priv->timeoutid);
995 dc->priv->timeoutid = 0;
998 if (dc->priv->streams) {
999 /* FIXME : Make this querying optional */
1001 GstElement *pipeline = (GstElement *) dc->priv->pipeline;
1004 GST_DEBUG ("Attempting to query duration");
1006 if (gst_element_query_duration (pipeline, GST_FORMAT_TIME, &dur)) {
1007 GST_DEBUG ("Got duration %" GST_TIME_FORMAT, GST_TIME_ARGS (dur));
1008 dc->priv->current_info->duration = (guint64) dur;
1011 if (dc->priv->seeking_query) {
1012 if (gst_element_query (pipeline, dc->priv->seeking_query)) {
1016 gst_query_parse_seeking (dc->priv->seeking_query, &format,
1017 &seekable, NULL, NULL);
1018 if (format == GST_FORMAT_TIME) {
1019 GST_DEBUG ("Got seekable %d", seekable);
1020 dc->priv->current_info->seekable = seekable;
1026 if (dc->priv->current_topology)
1027 dc->priv->current_info->stream_info = parse_stream_topology (dc,
1028 dc->priv->current_topology, NULL);
1031 * Images need some special handling. They do not have a duration, have
1032 * caps named image/<foo> (th exception being MJPEG video which is also
1033 * type image/jpeg), and should consist of precisely one stream (actually
1034 * initially there are 2, the image and raw stream, but we squash these
1035 * while parsing the stream topology). At some point, if we find that these
1036 * conditions are not sufficient, we can count the number of decoders and
1037 * parsers in the chain, and if there's more than one decoder, or any
1038 * parser at all, we should not mark this as an image.
1040 if (dc->priv->current_info->duration == 0 &&
1041 dc->priv->current_info->stream_info != NULL &&
1042 dc->priv->current_info->stream_info->next == NULL) {
1044 gst_caps_get_structure (dc->priv->current_info->stream_info->caps, 0);
1046 if (g_str_has_prefix (gst_structure_get_name (st), "image/"))
1047 ((GstDiscovererVideoInfo *) dc->priv->current_info->
1048 stream_info)->is_image = TRUE;
1052 if (dc->priv->async) {
1053 GST_DEBUG ("Emitting 'discoverered'");
1054 g_signal_emit (dc, gst_discoverer_signals[SIGNAL_DISCOVERED], 0,
1055 dc->priv->current_info, dc->priv->current_error);
1056 /* Clients get a copy of current_info since it is a boxed type */
1057 gst_discoverer_info_unref (dc->priv->current_info);
1062 get_async_cb (gpointer cb_data, GSource * source, GSourceFunc * func,
1065 *func = (GSourceFunc) async_timeout_cb;
1069 /* Wrapper since GSourceCallbackFuncs don't expect a return value from ref() */
1071 _void_g_object_ref (gpointer object)
1073 g_object_ref (G_OBJECT (object));
1077 handle_current_async (GstDiscoverer * dc)
1080 static GSourceCallbackFuncs cb_funcs = {
1086 /* Attach a timeout to the main context */
1087 source = g_timeout_source_new (dc->priv->timeout / GST_MSECOND);
1088 g_source_set_callback_indirect (source, g_object_ref (dc), &cb_funcs);
1089 dc->priv->timeoutid = g_source_attach (source, dc->priv->ctx);
1090 g_source_unref (source);
1094 /* Returns TRUE if processing should stop */
1096 handle_message (GstDiscoverer * dc, GstMessage * msg)
1098 gboolean done = FALSE;
1100 GST_DEBUG_OBJECT (GST_MESSAGE_SRC (msg), "got a %s message",
1101 GST_MESSAGE_TYPE_NAME (msg));
1103 switch (GST_MESSAGE_TYPE (msg)) {
1104 case GST_MESSAGE_ERROR:{
1108 gst_message_parse_error (msg, &gerr, &debug);
1109 GST_WARNING_OBJECT (GST_MESSAGE_SRC (msg),
1110 "Got an error [debug:%s], [message:%s]", debug, gerr->message);
1111 dc->priv->current_error = gerr;
1114 /* We need to stop */
1117 GST_DEBUG ("Setting result to ERROR");
1118 dc->priv->current_info->result = GST_DISCOVERER_ERROR;
1122 case GST_MESSAGE_EOS:
1123 GST_DEBUG ("Got EOS !");
1127 case GST_MESSAGE_ASYNC_DONE:
1128 if (GST_MESSAGE_SRC (msg) == (GstObject *) dc->priv->pipeline) {
1129 GST_DEBUG ("Finished changing state asynchronously");
1135 case GST_MESSAGE_ELEMENT:
1138 const GstStructure *structure;
1140 structure = gst_message_get_structure (msg);
1141 sttype = gst_structure_get_name_id (structure);
1142 GST_DEBUG_OBJECT (GST_MESSAGE_SRC (msg),
1143 "structure %" GST_PTR_FORMAT, structure);
1144 if (sttype == _MISSING_PLUGIN_QUARK) {
1145 GST_DEBUG_OBJECT (GST_MESSAGE_SRC (msg),
1146 "Setting result to MISSING_PLUGINS");
1147 dc->priv->current_info->result = GST_DISCOVERER_MISSING_PLUGINS;
1148 dc->priv->current_info->misc = gst_structure_copy (structure);
1149 } else if (sttype == _STREAM_TOPOLOGY_QUARK) {
1150 dc->priv->current_topology = gst_structure_copy (structure);
1155 case GST_MESSAGE_TAG:
1157 GstTagList *tl, *tmp;
1159 gst_message_parse_tag (msg, &tl);
1160 GST_DEBUG_OBJECT (GST_MESSAGE_SRC (msg), "Got tags %" GST_PTR_FORMAT, tl);
1161 /* Merge with current tags */
1163 gst_tag_list_merge (dc->priv->current_info->tags, tl,
1164 GST_TAG_MERGE_APPEND);
1165 gst_tag_list_free (tl);
1166 if (dc->priv->current_info->tags)
1167 gst_tag_list_free (dc->priv->current_info->tags);
1168 dc->priv->current_info->tags = tmp;
1169 GST_DEBUG_OBJECT (GST_MESSAGE_SRC (msg), "Current info %p, tags %"
1170 GST_PTR_FORMAT, dc->priv->current_info, tmp);
1183 handle_current_sync (GstDiscoverer * dc)
1186 gdouble deadline = ((gdouble) dc->priv->timeout) / GST_SECOND;
1188 gboolean done = FALSE;
1190 timer = g_timer_new ();
1191 g_timer_start (timer);
1194 /* poll bus with timeout */
1195 /* FIXME : make the timeout more fine-tuned */
1196 if ((msg = gst_bus_timed_pop (dc->priv->bus, GST_SECOND / 2))) {
1197 done = handle_message (dc, msg);
1198 gst_message_unref (msg);
1201 } while (!done && (g_timer_elapsed (timer, NULL) < deadline));
1205 GST_DEBUG ("we timed out! Setting result to TIMEOUT");
1206 dc->priv->current_info->result = GST_DISCOVERER_TIMEOUT;
1211 g_timer_stop (timer);
1212 g_timer_destroy (timer);
1216 _setup_locked (GstDiscoverer * dc)
1218 GstStateChangeReturn ret;
1220 GST_DEBUG ("Setting up");
1222 /* Pop URI off the pending URI list */
1223 dc->priv->current_info =
1224 (GstDiscovererInfo *) g_object_new (GST_TYPE_DISCOVERER_INFO, NULL);
1225 dc->priv->current_info->uri = (gchar *) dc->priv->pending_uris->data;
1226 dc->priv->pending_uris =
1227 g_list_delete_link (dc->priv->pending_uris, dc->priv->pending_uris);
1229 /* set uri on uridecodebin */
1230 g_object_set (dc->priv->uridecodebin, "uri", dc->priv->current_info->uri,
1233 GST_DEBUG ("Current is now %s", dc->priv->current_info->uri);
1235 dc->priv->processing = TRUE;
1237 /* set pipeline to PAUSED */
1239 GST_DEBUG ("Setting pipeline to PAUSED");
1241 gst_element_set_state ((GstElement *) dc->priv->pipeline,
1245 GST_DEBUG_OBJECT (dc, "Pipeline going to PAUSED : %s",
1246 gst_element_state_change_return_get_name (ret));
1250 discoverer_cleanup (GstDiscoverer * dc)
1252 GST_DEBUG ("Cleaning up");
1254 gst_bus_set_flushing (dc->priv->bus, TRUE);
1255 gst_element_set_state ((GstElement *) dc->priv->pipeline, GST_STATE_READY);
1256 gst_bus_set_flushing (dc->priv->bus, FALSE);
1259 if (dc->priv->current_error)
1260 g_error_free (dc->priv->current_error);
1261 dc->priv->current_error = NULL;
1262 if (dc->priv->current_topology) {
1263 gst_structure_free (dc->priv->current_topology);
1264 dc->priv->current_topology = NULL;
1267 dc->priv->current_info = NULL;
1269 /* Try popping the next uri */
1270 if (dc->priv->async) {
1271 if (dc->priv->pending_uris != NULL) {
1275 handle_current_async (dc);
1279 g_signal_emit (dc, gst_discoverer_signals[SIGNAL_FINISHED], 0);
1288 discoverer_bus_cb (GstBus * bus, GstMessage * msg, GstDiscoverer * dc)
1290 if (dc->priv->processing) {
1291 if (handle_message (dc, msg)) {
1292 GST_DEBUG ("Stopping asynchronously");
1293 /* Serialise with _event_probe() */
1295 dc->priv->processing = FALSE;
1297 discoverer_collect (dc);
1298 discoverer_cleanup (dc);
1304 async_timeout_cb (GstDiscoverer * dc)
1306 if (!g_source_is_destroyed (g_main_current_source ())) {
1307 dc->priv->timeoutid = 0;
1308 GST_DEBUG ("Setting result to TIMEOUT");
1309 dc->priv->current_info->result = GST_DISCOVERER_TIMEOUT;
1310 dc->priv->processing = FALSE;
1311 discoverer_collect (dc);
1312 discoverer_cleanup (dc);
1317 /* If there is a pending URI, it will pop it from the list of pending
1318 * URIs and start the discovery on it.
1320 * Returns GST_DISCOVERER_OK if the next URI was popped and is processing,
1321 * else a error flag.
1323 static GstDiscovererResult
1324 start_discovering (GstDiscoverer * dc)
1326 GstDiscovererResult res = GST_DISCOVERER_OK;
1328 GST_DEBUG ("Starting");
1331 if (dc->priv->pending_uris == NULL) {
1332 GST_WARNING ("No URI to process");
1333 res = GST_DISCOVERER_URI_INVALID;
1338 if (dc->priv->current_info != NULL) {
1339 GST_WARNING ("Already processing a file");
1340 res = GST_DISCOVERER_BUSY;
1345 g_signal_emit (dc, gst_discoverer_signals[SIGNAL_STARTING], 0);
1351 if (dc->priv->async)
1352 handle_current_async (dc);
1354 handle_current_sync (dc);
1362 * gst_discoverer_start:
1363 * @discoverer: A #GstDiscoverer
1365 * Allow asynchronous discovering of URIs to take place.
1366 * A #GMainLoop must be available for #GstDiscoverer to properly work in
1367 * asynchronous mode.
1372 gst_discoverer_start (GstDiscoverer * discoverer)
1375 GMainContext *ctx = NULL;
1377 GST_DEBUG_OBJECT (discoverer, "Starting...");
1379 if (discoverer->priv->async) {
1380 GST_DEBUG_OBJECT (discoverer, "We were already started");
1384 discoverer->priv->async = TRUE;
1385 discoverer->priv->running = TRUE;
1387 ctx = g_main_context_get_thread_default ();
1389 /* Connect to bus signals */
1391 ctx = g_main_context_default ();
1393 source = gst_bus_create_watch (discoverer->priv->bus);
1394 g_source_set_callback (source, (GSourceFunc) gst_bus_async_signal_func,
1396 discoverer->priv->sourceid = g_source_attach (source, ctx);
1397 g_source_unref (source);
1398 discoverer->priv->ctx = g_main_context_ref (ctx);
1400 start_discovering (discoverer);
1401 GST_DEBUG_OBJECT (discoverer, "Started");
1405 * gst_discoverer_stop:
1406 * @discoverer: A #GstDiscoverer
1408 * Stop the discovery of any pending URIs and clears the list of
1409 * pending URIS (if any).
1414 gst_discoverer_stop (GstDiscoverer * discoverer)
1416 GST_DEBUG_OBJECT (discoverer, "Stopping...");
1418 if (!discoverer->priv->async) {
1419 GST_DEBUG_OBJECT (discoverer,
1420 "We were already stopped, or running synchronously");
1424 DISCO_LOCK (discoverer);
1425 if (discoverer->priv->processing) {
1426 /* We prevent any further processing by setting the bus to
1427 * flushing and setting the pipeline to READY.
1428 * _reset() will take care of the rest of the cleanup */
1429 if (discoverer->priv->bus)
1430 gst_bus_set_flushing (discoverer->priv->bus, TRUE);
1431 if (discoverer->priv->pipeline)
1432 gst_element_set_state ((GstElement *) discoverer->priv->pipeline,
1435 discoverer->priv->running = FALSE;
1436 DISCO_UNLOCK (discoverer);
1438 /* Remove timeout handler */
1439 if (discoverer->priv->timeoutid) {
1440 g_source_remove (discoverer->priv->timeoutid);
1441 discoverer->priv->timeoutid = 0;
1443 /* Remove signal watch */
1444 if (discoverer->priv->sourceid) {
1445 g_source_remove (discoverer->priv->sourceid);
1446 discoverer->priv->sourceid = 0;
1448 /* Unref main context */
1449 if (discoverer->priv->ctx) {
1450 g_main_context_unref (discoverer->priv->ctx);
1451 discoverer->priv->ctx = NULL;
1453 discoverer_reset (discoverer);
1455 discoverer->priv->async = FALSE;
1457 GST_DEBUG_OBJECT (discoverer, "Stopped");
1461 * gst_discoverer_discover_uri_async:
1462 * @discoverer: A #GstDiscoverer
1463 * @uri: the URI to add.
1465 * Appends the given @uri to the list of URIs to discoverer. The actual
1466 * discovery of the @uri will only take place if gst_discoverer_start() has
1469 * A copy of @uri will be made internally, so the caller can safely g_free()
1472 * Returns: %TRUE if the @uri was succesfully appended to the list of pending
1478 gst_discoverer_discover_uri_async (GstDiscoverer * discoverer,
1483 GST_DEBUG_OBJECT (discoverer, "uri : %s", uri);
1485 DISCO_LOCK (discoverer);
1486 can_run = (discoverer->priv->pending_uris == NULL);
1487 discoverer->priv->pending_uris =
1488 g_list_append (discoverer->priv->pending_uris, g_strdup (uri));
1489 DISCO_UNLOCK (discoverer);
1492 start_discovering (discoverer);
1498 /* Synchronous mode */
1500 * gst_discoverer_discover_uri:
1501 * @discoverer: A #GstDiscoverer
1502 * @uri: The URI to run on.
1503 * @err: (out) (allow-none): If an error occurred, this field will be filled in.
1505 * Synchronously discovers the given @uri.
1507 * A copy of @uri will be made internally, so the caller can safely g_free()
1510 * Returns: (transfer full): the result of the scanning. Can be %NULL if an
1516 gst_discoverer_discover_uri (GstDiscoverer * discoverer, const gchar * uri,
1519 GstDiscovererResult res = 0;
1520 GstDiscovererInfo *info;
1522 GST_DEBUG_OBJECT (discoverer, "uri:%s", uri);
1524 DISCO_LOCK (discoverer);
1525 if (G_UNLIKELY (discoverer->priv->current_info)) {
1526 DISCO_UNLOCK (discoverer);
1527 GST_WARNING_OBJECT (discoverer, "Already handling a uri");
1531 discoverer->priv->pending_uris =
1532 g_list_append (discoverer->priv->pending_uris, g_strdup (uri));
1533 DISCO_UNLOCK (discoverer);
1535 res = start_discovering (discoverer);
1536 discoverer_collect (discoverer);
1540 if (discoverer->priv->current_error)
1541 *err = g_error_copy (discoverer->priv->current_error);
1545 if (res != GST_DISCOVERER_OK) {
1546 GST_DEBUG ("Setting result to %d (was %d)", res,
1547 discoverer->priv->current_info->result);
1548 discoverer->priv->current_info->result = res;
1550 info = discoverer->priv->current_info;
1552 discoverer_cleanup (discoverer);
1558 * gst_discoverer_new:
1559 * @timeout: timeout per file, in nanoseconds. Allowed are values between
1560 * one second (#GST_SECOND) and one hour (3600 * #GST_SECOND)
1561 * @err: a pointer to a #GError. can be %NULL
1563 * Creates a new #GstDiscoverer with the provided timeout.
1565 * Returns: (transfer full): The new #GstDiscoverer.
1566 * If an error occurred when creating the discoverer, @err will be set
1567 * accordingly and %NULL will be returned. If @err is set, the caller must
1568 * free it when no longer needed using g_error_free().
1573 gst_discoverer_new (GstClockTime timeout, GError ** err)
1577 res = g_object_new (GST_TYPE_DISCOVERER, "timeout", timeout, NULL);
1578 if (res->priv->uridecodebin == NULL) {
1580 *err = g_error_new (GST_CORE_ERROR, GST_CORE_ERROR_MISSING_PLUGIN,
1581 "Couldn't create 'uridecodebin' element");
1582 gst_object_unref (res);