souphttpsrc: Clean up all pending operations from libsoup before unreffing our context
[platform/upstream/gst-plugins-good.git] / ext / soup / gstsouphttpsrc.c
1 /* GStreamer
2  * Copyright (C) 2007-2008 Wouter Cloetens <wouter@mind.be>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more
13  */
14
15 /**
16  * SECTION:element-souphttpsrc
17  *
18  * This plugin reads data from a remote location specified by a URI.
19  * Supported protocols are 'http', 'https'.
20  *
21  * An HTTP proxy must be specified by its URL.
22  * If the "http_proxy" environment variable is set, its value is used.
23  * If built with libsoup's GNOME integration features, the GNOME proxy
24  * configuration will be used, or failing that, proxy autodetection.
25  * The #GstSoupHTTPSrc:proxy property can be used to override the default.
26  *
27  * In case the #GstSoupHTTPSrc:iradio-mode property is set and the location is
28  * an HTTP resource, souphttpsrc will send special Icecast HTTP headers to the
29  * server to request additional Icecast meta-information.
30  * If the server is not an Icecast server, it will behave as if the
31  * #GstSoupHTTPSrc:iradio-mode property were not set. If it is, souphttpsrc will
32  * output data with a media type of application/x-icy, in which case you will
33  * need to use the #ICYDemux element as follow-up element to extract the Icecast
34  * metadata and to determine the underlying media type.
35  *
36  * <refsect2>
37  * <title>Example launch line</title>
38  * |[
39  * gst-launch-1.0 -v souphttpsrc location=https://some.server.org/index.html
40  *     ! filesink location=/home/joe/server.html
41  * ]| The above pipeline reads a web page from a server using the HTTPS protocol
42  * and writes it to a local file.
43  * |[
44  * gst-launch-1.0 -v souphttpsrc user-agent="FooPlayer 0.99 beta"
45  *     automatic-redirect=false proxy=http://proxy.intranet.local:8080
46  *     location=http://music.foobar.com/demo.mp3 ! mad ! audioconvert
47  *     ! audioresample ! alsasink
48  * ]| The above pipeline will read and decode and play an mp3 file from a
49  * web server using the HTTP protocol. If the server sends redirects,
50  * the request fails instead of following the redirect. The specified
51  * HTTP proxy server is used. The User-Agent HTTP request header
52  * is set to a custom string instead of "GStreamer souphttpsrc."
53  * |[
54  * gst-launch-1.0 -v souphttpsrc location=http://10.11.12.13/mjpeg
55  *     do-timestamp=true ! multipartdemux
56  *     ! image/jpeg,width=640,height=480 ! matroskamux
57  *     ! filesink location=mjpeg.mkv
58  * ]| The above pipeline reads a motion JPEG stream from an IP camera
59  * using the HTTP protocol, encoded as mime/multipart image/jpeg
60  * parts, and writes a Matroska motion JPEG file. The width and
61  * height properties are set in the caps to provide the Matroska
62  * multiplexer with the information to set this in the header.
63  * Timestamps are set on the buffers as they arrive from the camera.
64  * These are used by the mime/multipart demultiplexer to emit timestamps
65  * on the JPEG-encoded video frame buffers. This allows the Matroska
66  * multiplexer to timestamp the frames in the resulting file.
67  * </refsect2>
68  */
69
70 #ifdef HAVE_CONFIG_H
71 #include "config.h"
72 #endif
73
74 #include <string.h>
75 #ifdef HAVE_STDLIB_H
76 #include <stdlib.h>             /* atoi() */
77 #endif
78 #include <gst/gstelement.h>
79 #include <gst/gst-i18n-plugin.h>
80 #include <libsoup/soup.h>
81 #include "gstsouphttpsrc.h"
82 #include "gstsouputils.h"
83
84 /* libsoup before 2.47.0 was stealing our main context from us,
85  * so we can't reliable use it to clean up all pending resources
86  * once we're done... let's just continue leaking on old versions.
87  * https://bugzilla.gnome.org/show_bug.cgi?id=663944
88  */
89 #if defined(SOUP_MINOR_VERSION) && SOUP_MINOR_VERSION >= 47
90 #define LIBSOUP_DOES_NOT_STEAL_OUR_CONTEXT 1
91 #endif
92
93 #include <gst/tag/tag.h>
94
95 GST_DEBUG_CATEGORY_STATIC (souphttpsrc_debug);
96 #define GST_CAT_DEFAULT souphttpsrc_debug
97
98 static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
99     GST_PAD_SRC,
100     GST_PAD_ALWAYS,
101     GST_STATIC_CAPS_ANY);
102
103 enum
104 {
105   PROP_0,
106   PROP_LOCATION,
107   PROP_IS_LIVE,
108   PROP_USER_AGENT,
109   PROP_AUTOMATIC_REDIRECT,
110   PROP_PROXY,
111   PROP_USER_ID,
112   PROP_USER_PW,
113   PROP_PROXY_ID,
114   PROP_PROXY_PW,
115   PROP_COOKIES,
116   PROP_IRADIO_MODE,
117   PROP_TIMEOUT,
118   PROP_EXTRA_HEADERS,
119   PROP_SOUP_LOG_LEVEL,
120   PROP_COMPRESS,
121   PROP_KEEP_ALIVE,
122   PROP_SSL_STRICT,
123   PROP_SSL_CA_FILE,
124   PROP_SSL_USE_SYSTEM_CA_FILE,
125   PROP_RETRIES
126 };
127
128 #define DEFAULT_USER_AGENT           "GStreamer souphttpsrc "
129 #define DEFAULT_IRADIO_MODE          TRUE
130 #define DEFAULT_SOUP_LOG_LEVEL       SOUP_LOGGER_LOG_HEADERS
131 #define DEFAULT_COMPRESS             FALSE
132 #define DEFAULT_KEEP_ALIVE           FALSE
133 #define DEFAULT_SSL_STRICT           TRUE
134 #define DEFAULT_SSL_CA_FILE          NULL
135 #define DEFAULT_SSL_USE_SYSTEM_CA_FILE TRUE
136 #define DEFAULT_TIMEOUT              15
137 #define DEFAULT_RETRIES              3
138
139 static void gst_soup_http_src_uri_handler_init (gpointer g_iface,
140     gpointer iface_data);
141 static void gst_soup_http_src_finalize (GObject * gobject);
142 static void gst_soup_http_src_dispose (GObject * gobject);
143
144 static void gst_soup_http_src_set_property (GObject * object, guint prop_id,
145     const GValue * value, GParamSpec * pspec);
146 static void gst_soup_http_src_get_property (GObject * object, guint prop_id,
147     GValue * value, GParamSpec * pspec);
148
149 static GstStateChangeReturn gst_soup_http_src_change_state (GstElement *
150     element, GstStateChange transition);
151 static GstFlowReturn gst_soup_http_src_create (GstPushSrc * psrc,
152     GstBuffer ** outbuf);
153 static gboolean gst_soup_http_src_start (GstBaseSrc * bsrc);
154 static gboolean gst_soup_http_src_stop (GstBaseSrc * bsrc);
155 static gboolean gst_soup_http_src_get_size (GstBaseSrc * bsrc, guint64 * size);
156 static gboolean gst_soup_http_src_is_seekable (GstBaseSrc * bsrc);
157 static gboolean gst_soup_http_src_do_seek (GstBaseSrc * bsrc,
158     GstSegment * segment);
159 static gboolean gst_soup_http_src_query (GstBaseSrc * bsrc, GstQuery * query);
160 static gboolean gst_soup_http_src_unlock (GstBaseSrc * bsrc);
161 static gboolean gst_soup_http_src_unlock_stop (GstBaseSrc * bsrc);
162 static gboolean gst_soup_http_src_set_location (GstSoupHTTPSrc * src,
163     const gchar * uri, GError ** error);
164 static gboolean gst_soup_http_src_set_proxy (GstSoupHTTPSrc * src,
165     const gchar * uri);
166 static char *gst_soup_http_src_unicodify (const char *str);
167 static gboolean gst_soup_http_src_build_message (GstSoupHTTPSrc * src,
168     const gchar * method);
169 static void gst_soup_http_src_cancel_message (GstSoupHTTPSrc * src);
170 static void gst_soup_http_src_queue_message (GstSoupHTTPSrc * src);
171 static gboolean gst_soup_http_src_add_range_header (GstSoupHTTPSrc * src,
172     guint64 offset, guint64 stop_offset);
173 static void gst_soup_http_src_session_unpause_message (GstSoupHTTPSrc * src);
174 static void gst_soup_http_src_session_pause_message (GstSoupHTTPSrc * src);
175 static gboolean gst_soup_http_src_session_open (GstSoupHTTPSrc * src);
176 static void gst_soup_http_src_session_close (GstSoupHTTPSrc * src);
177 static void gst_soup_http_src_parse_status (SoupMessage * msg,
178     GstSoupHTTPSrc * src);
179 static void gst_soup_http_src_chunk_free (gpointer gstbuf);
180 static SoupBuffer *gst_soup_http_src_chunk_allocator (SoupMessage * msg,
181     gsize max_len, gpointer user_data);
182 static void gst_soup_http_src_got_chunk_cb (SoupMessage * msg,
183     SoupBuffer * chunk, GstSoupHTTPSrc * src);
184 static void gst_soup_http_src_response_cb (SoupSession * session,
185     SoupMessage * msg, GstSoupHTTPSrc * src);
186 static void gst_soup_http_src_got_headers_cb (SoupMessage * msg,
187     GstSoupHTTPSrc * src);
188 static void gst_soup_http_src_got_body_cb (SoupMessage * msg,
189     GstSoupHTTPSrc * src);
190 static void gst_soup_http_src_finished_cb (SoupMessage * msg,
191     GstSoupHTTPSrc * src);
192 static void gst_soup_http_src_authenticate_cb (SoupSession * session,
193     SoupMessage * msg, SoupAuth * auth, gboolean retrying,
194     GstSoupHTTPSrc * src);
195
196 #define gst_soup_http_src_parent_class parent_class
197 G_DEFINE_TYPE_WITH_CODE (GstSoupHTTPSrc, gst_soup_http_src, GST_TYPE_PUSH_SRC,
198     G_IMPLEMENT_INTERFACE (GST_TYPE_URI_HANDLER,
199         gst_soup_http_src_uri_handler_init));
200
201 static void
202 gst_soup_http_src_class_init (GstSoupHTTPSrcClass * klass)
203 {
204   GObjectClass *gobject_class;
205   GstElementClass *gstelement_class;
206   GstBaseSrcClass *gstbasesrc_class;
207   GstPushSrcClass *gstpushsrc_class;
208
209   gobject_class = (GObjectClass *) klass;
210   gstelement_class = (GstElementClass *) klass;
211   gstbasesrc_class = (GstBaseSrcClass *) klass;
212   gstpushsrc_class = (GstPushSrcClass *) klass;
213
214   gobject_class->set_property = gst_soup_http_src_set_property;
215   gobject_class->get_property = gst_soup_http_src_get_property;
216   gobject_class->finalize = gst_soup_http_src_finalize;
217   gobject_class->dispose = gst_soup_http_src_dispose;
218
219   g_object_class_install_property (gobject_class,
220       PROP_LOCATION,
221       g_param_spec_string ("location", "Location",
222           "Location to read from", "",
223           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
224   g_object_class_install_property (gobject_class,
225       PROP_USER_AGENT,
226       g_param_spec_string ("user-agent", "User-Agent",
227           "Value of the User-Agent HTTP request header field",
228           DEFAULT_USER_AGENT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
229   g_object_class_install_property (gobject_class,
230       PROP_AUTOMATIC_REDIRECT,
231       g_param_spec_boolean ("automatic-redirect", "automatic-redirect",
232           "Automatically follow HTTP redirects (HTTP Status Code 3xx)",
233           TRUE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
234   g_object_class_install_property (gobject_class,
235       PROP_PROXY,
236       g_param_spec_string ("proxy", "Proxy",
237           "HTTP proxy server URI", "",
238           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
239   g_object_class_install_property (gobject_class,
240       PROP_USER_ID,
241       g_param_spec_string ("user-id", "user-id",
242           "HTTP location URI user id for authentication", "",
243           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
244   g_object_class_install_property (gobject_class, PROP_USER_PW,
245       g_param_spec_string ("user-pw", "user-pw",
246           "HTTP location URI user password for authentication", "",
247           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
248   g_object_class_install_property (gobject_class, PROP_PROXY_ID,
249       g_param_spec_string ("proxy-id", "proxy-id",
250           "HTTP proxy URI user id for authentication", "",
251           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
252   g_object_class_install_property (gobject_class, PROP_PROXY_PW,
253       g_param_spec_string ("proxy-pw", "proxy-pw",
254           "HTTP proxy URI user password for authentication", "",
255           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
256   g_object_class_install_property (gobject_class, PROP_COOKIES,
257       g_param_spec_boxed ("cookies", "Cookies", "HTTP request cookies",
258           G_TYPE_STRV, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
259   g_object_class_install_property (gobject_class, PROP_IS_LIVE,
260       g_param_spec_boolean ("is-live", "is-live", "Act like a live source",
261           FALSE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
262   g_object_class_install_property (gobject_class, PROP_TIMEOUT,
263       g_param_spec_uint ("timeout", "timeout",
264           "Value in seconds to timeout a blocking I/O (0 = No timeout).", 0,
265           3600, DEFAULT_TIMEOUT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
266   g_object_class_install_property (gobject_class, PROP_EXTRA_HEADERS,
267       g_param_spec_boxed ("extra-headers", "Extra Headers",
268           "Extra headers to append to the HTTP request",
269           GST_TYPE_STRUCTURE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
270   g_object_class_install_property (gobject_class, PROP_IRADIO_MODE,
271       g_param_spec_boolean ("iradio-mode", "iradio-mode",
272           "Enable internet radio mode (ask server to send shoutcast/icecast "
273           "metadata interleaved with the actual stream data)",
274           DEFAULT_IRADIO_MODE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
275
276  /**
277    * GstSoupHTTPSrc::http-log-level:
278    *
279    * If set and > 0, captures and dumps HTTP session data as
280    * log messages if log level >= GST_LEVEL_TRACE
281    *
282    * Since: 1.4
283    */
284   g_object_class_install_property (gobject_class, PROP_SOUP_LOG_LEVEL,
285       g_param_spec_enum ("http-log-level", "HTTP log level",
286           "Set log level for soup's HTTP session log",
287           SOUP_TYPE_LOGGER_LOG_LEVEL, DEFAULT_SOUP_LOG_LEVEL,
288           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
289
290  /**
291    * GstSoupHTTPSrc::compress:
292    *
293    * If set to %TRUE, souphttpsrc will automatically handle gzip
294    * and deflate Content-Encodings. This does not make much difference
295    * and causes more load for normal media files, but makes a real
296    * difference in size for plaintext files.
297    *
298    * Since: 1.4
299    */
300   g_object_class_install_property (gobject_class, PROP_COMPRESS,
301       g_param_spec_boolean ("compress", "Compress",
302           "Allow compressed content encodings",
303           DEFAULT_COMPRESS, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
304
305  /**
306    * GstSoupHTTPSrc::keep-alive:
307    *
308    * If set to %TRUE, souphttpsrc will keep alive connections when being
309    * set to READY state and only will close connections when connecting
310    * to a different server or when going to NULL state..
311    *
312    * Since: 1.4
313    */
314   g_object_class_install_property (gobject_class, PROP_KEEP_ALIVE,
315       g_param_spec_boolean ("keep-alive", "keep-alive",
316           "Use HTTP persistent connections", DEFAULT_KEEP_ALIVE,
317           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
318
319  /**
320    * GstSoupHTTPSrc::ssl-strict:
321    *
322    * If set to %TRUE, souphttpsrc will reject all SSL certificates that
323    * are considered invalid.
324    *
325    * Since: 1.4
326    */
327   g_object_class_install_property (gobject_class, PROP_SSL_STRICT,
328       g_param_spec_boolean ("ssl-strict", "SSL Strict",
329           "Strict SSL certificate checking", DEFAULT_SSL_STRICT,
330           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
331
332  /**
333    * GstSoupHTTPSrc::ssl-ca-file:
334    *
335    * A SSL anchor CA file that should be used for checking certificates
336    * instead of the system CA file.
337    *
338    * Since: 1.4
339    */
340   g_object_class_install_property (gobject_class, PROP_SSL_CA_FILE,
341       g_param_spec_string ("ssl-ca-file", "SSL CA File",
342           "Location of a SSL anchor CA file to use", DEFAULT_SSL_CA_FILE,
343           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
344
345  /**
346    * GstSoupHTTPSrc::ssl-use-system-ca-file:
347    *
348    * If set to %TRUE, souphttpsrc will use the system's CA file for
349    * checking certificates.
350    *
351    * Since: 1.4
352    */
353   g_object_class_install_property (gobject_class, PROP_SSL_USE_SYSTEM_CA_FILE,
354       g_param_spec_boolean ("ssl-use-system-ca-file", "Use System CA File",
355           "Use system CA file", DEFAULT_SSL_USE_SYSTEM_CA_FILE,
356           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
357
358  /**
359    * GstSoupHTTPSrc::retries:
360    *
361    * Maximum number of retries until giving up.
362    *
363    * Since: 1.4
364    */
365   g_object_class_install_property (gobject_class, PROP_RETRIES,
366       g_param_spec_int ("retries", "Retries",
367           "Maximum number of retries until giving up (-1=infinite)", -1,
368           G_MAXINT, DEFAULT_RETRIES,
369           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
370
371   gst_element_class_add_pad_template (gstelement_class,
372       gst_static_pad_template_get (&srctemplate));
373
374   gst_element_class_set_static_metadata (gstelement_class, "HTTP client source",
375       "Source/Network",
376       "Receive data as a client over the network via HTTP using SOUP",
377       "Wouter Cloetens <wouter@mind.be>");
378   gstelement_class->change_state =
379       GST_DEBUG_FUNCPTR (gst_soup_http_src_change_state);
380
381   gstbasesrc_class->start = GST_DEBUG_FUNCPTR (gst_soup_http_src_start);
382   gstbasesrc_class->stop = GST_DEBUG_FUNCPTR (gst_soup_http_src_stop);
383   gstbasesrc_class->unlock = GST_DEBUG_FUNCPTR (gst_soup_http_src_unlock);
384   gstbasesrc_class->unlock_stop =
385       GST_DEBUG_FUNCPTR (gst_soup_http_src_unlock_stop);
386   gstbasesrc_class->get_size = GST_DEBUG_FUNCPTR (gst_soup_http_src_get_size);
387   gstbasesrc_class->is_seekable =
388       GST_DEBUG_FUNCPTR (gst_soup_http_src_is_seekable);
389   gstbasesrc_class->do_seek = GST_DEBUG_FUNCPTR (gst_soup_http_src_do_seek);
390   gstbasesrc_class->query = GST_DEBUG_FUNCPTR (gst_soup_http_src_query);
391
392   gstpushsrc_class->create = GST_DEBUG_FUNCPTR (gst_soup_http_src_create);
393
394   GST_DEBUG_CATEGORY_INIT (souphttpsrc_debug, "souphttpsrc", 0,
395       "SOUP HTTP src");
396 }
397
398 static void
399 gst_soup_http_src_reset (GstSoupHTTPSrc * src)
400 {
401   src->interrupted = FALSE;
402   src->retry = FALSE;
403   src->retry_count = 0;
404   src->have_size = FALSE;
405   src->got_headers = FALSE;
406   src->seekable = FALSE;
407   src->read_position = 0;
408   src->request_position = 0;
409   src->stop_position = -1;
410   src->content_size = 0;
411   src->have_body = FALSE;
412
413   src->ret = GST_FLOW_OK;
414
415   gst_caps_replace (&src->src_caps, NULL);
416   g_free (src->iradio_name);
417   src->iradio_name = NULL;
418   g_free (src->iradio_genre);
419   src->iradio_genre = NULL;
420   g_free (src->iradio_url);
421   src->iradio_url = NULL;
422 }
423
424 static void
425 gst_soup_http_src_init (GstSoupHTTPSrc * src)
426 {
427   const gchar *proxy;
428
429   g_mutex_init (&src->mutex);
430   g_cond_init (&src->request_finished_cond);
431   src->location = NULL;
432   src->redirection_uri = NULL;
433   src->automatic_redirect = TRUE;
434   src->user_agent = g_strdup (DEFAULT_USER_AGENT);
435   src->user_id = NULL;
436   src->user_pw = NULL;
437   src->proxy_id = NULL;
438   src->proxy_pw = NULL;
439   src->cookies = NULL;
440   src->iradio_mode = DEFAULT_IRADIO_MODE;
441   src->loop = NULL;
442   src->context = NULL;
443   src->session = NULL;
444   src->msg = NULL;
445   src->timeout = DEFAULT_TIMEOUT;
446   src->log_level = DEFAULT_SOUP_LOG_LEVEL;
447   src->ssl_strict = DEFAULT_SSL_STRICT;
448   src->ssl_use_system_ca_file = DEFAULT_SSL_USE_SYSTEM_CA_FILE;
449   src->max_retries = DEFAULT_RETRIES;
450   proxy = g_getenv ("http_proxy");
451   if (proxy && !gst_soup_http_src_set_proxy (src, proxy)) {
452     GST_WARNING_OBJECT (src,
453         "The proxy in the http_proxy env var (\"%s\") cannot be parsed.",
454         proxy);
455   }
456
457   gst_base_src_set_automatic_eos (GST_BASE_SRC (src), FALSE);
458
459   gst_soup_http_src_reset (src);
460 }
461
462 static void
463 gst_soup_http_src_dispose (GObject * gobject)
464 {
465   GstSoupHTTPSrc *src = GST_SOUP_HTTP_SRC (gobject);
466
467   GST_DEBUG_OBJECT (src, "dispose");
468
469   gst_soup_http_src_session_close (src);
470
471   G_OBJECT_CLASS (parent_class)->dispose (gobject);
472 }
473
474 static void
475 gst_soup_http_src_finalize (GObject * gobject)
476 {
477   GstSoupHTTPSrc *src = GST_SOUP_HTTP_SRC (gobject);
478
479   GST_DEBUG_OBJECT (src, "finalize");
480
481   g_mutex_clear (&src->mutex);
482   g_cond_clear (&src->request_finished_cond);
483   g_free (src->location);
484   if (src->redirection_uri) {
485     g_free (src->redirection_uri);
486   }
487   g_free (src->user_agent);
488   if (src->proxy != NULL) {
489     soup_uri_free (src->proxy);
490   }
491   g_free (src->user_id);
492   g_free (src->user_pw);
493   g_free (src->proxy_id);
494   g_free (src->proxy_pw);
495   g_strfreev (src->cookies);
496
497   if (src->extra_headers) {
498     gst_structure_free (src->extra_headers);
499     src->extra_headers = NULL;
500   }
501
502   g_free (src->ssl_ca_file);
503
504   G_OBJECT_CLASS (parent_class)->finalize (gobject);
505 }
506
507 static void
508 gst_soup_http_src_set_property (GObject * object, guint prop_id,
509     const GValue * value, GParamSpec * pspec)
510 {
511   GstSoupHTTPSrc *src = GST_SOUP_HTTP_SRC (object);
512
513   switch (prop_id) {
514     case PROP_LOCATION:
515     {
516       const gchar *location;
517
518       location = g_value_get_string (value);
519
520       if (location == NULL) {
521         GST_WARNING ("location property cannot be NULL");
522         goto done;
523       }
524       if (!gst_soup_http_src_set_location (src, location, NULL)) {
525         GST_WARNING ("badly formatted location");
526         goto done;
527       }
528       break;
529     }
530     case PROP_USER_AGENT:
531       if (src->user_agent)
532         g_free (src->user_agent);
533       src->user_agent = g_value_dup_string (value);
534       break;
535     case PROP_IRADIO_MODE:
536       src->iradio_mode = g_value_get_boolean (value);
537       break;
538     case PROP_AUTOMATIC_REDIRECT:
539       src->automatic_redirect = g_value_get_boolean (value);
540       break;
541     case PROP_PROXY:
542     {
543       const gchar *proxy;
544
545       proxy = g_value_get_string (value);
546
547       if (proxy == NULL) {
548         GST_WARNING ("proxy property cannot be NULL");
549         goto done;
550       }
551       if (!gst_soup_http_src_set_proxy (src, proxy)) {
552         GST_WARNING ("badly formatted proxy URI");
553         goto done;
554       }
555       break;
556     }
557     case PROP_COOKIES:
558       g_strfreev (src->cookies);
559       src->cookies = g_strdupv (g_value_get_boxed (value));
560       break;
561     case PROP_IS_LIVE:
562       gst_base_src_set_live (GST_BASE_SRC (src), g_value_get_boolean (value));
563       break;
564     case PROP_USER_ID:
565       if (src->user_id)
566         g_free (src->user_id);
567       src->user_id = g_value_dup_string (value);
568       break;
569     case PROP_USER_PW:
570       if (src->user_pw)
571         g_free (src->user_pw);
572       src->user_pw = g_value_dup_string (value);
573       break;
574     case PROP_PROXY_ID:
575       if (src->proxy_id)
576         g_free (src->proxy_id);
577       src->proxy_id = g_value_dup_string (value);
578       break;
579     case PROP_PROXY_PW:
580       if (src->proxy_pw)
581         g_free (src->proxy_pw);
582       src->proxy_pw = g_value_dup_string (value);
583       break;
584     case PROP_TIMEOUT:
585       src->timeout = g_value_get_uint (value);
586       break;
587     case PROP_EXTRA_HEADERS:{
588       const GstStructure *s = gst_value_get_structure (value);
589
590       if (src->extra_headers)
591         gst_structure_free (src->extra_headers);
592
593       src->extra_headers = s ? gst_structure_copy (s) : NULL;
594       break;
595     }
596     case PROP_SOUP_LOG_LEVEL:
597       src->log_level = g_value_get_enum (value);
598       break;
599     case PROP_COMPRESS:
600       src->compress = g_value_get_boolean (value);
601       break;
602     case PROP_KEEP_ALIVE:
603       src->keep_alive = g_value_get_boolean (value);
604       break;
605     case PROP_SSL_STRICT:
606       src->ssl_strict = g_value_get_boolean (value);
607       break;
608     case PROP_SSL_CA_FILE:
609       if (src->ssl_ca_file)
610         g_free (src->ssl_ca_file);
611       src->ssl_ca_file = g_value_dup_string (value);
612       break;
613     case PROP_SSL_USE_SYSTEM_CA_FILE:
614       src->ssl_use_system_ca_file = g_value_get_boolean (value);
615       break;
616     case PROP_RETRIES:
617       src->max_retries = g_value_get_int (value);
618       break;
619     default:
620       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
621       break;
622   }
623 done:
624   return;
625 }
626
627 static void
628 gst_soup_http_src_get_property (GObject * object, guint prop_id,
629     GValue * value, GParamSpec * pspec)
630 {
631   GstSoupHTTPSrc *src = GST_SOUP_HTTP_SRC (object);
632
633   switch (prop_id) {
634     case PROP_LOCATION:
635       g_value_set_string (value, src->location);
636       break;
637     case PROP_USER_AGENT:
638       g_value_set_string (value, src->user_agent);
639       break;
640     case PROP_AUTOMATIC_REDIRECT:
641       g_value_set_boolean (value, src->automatic_redirect);
642       break;
643     case PROP_PROXY:
644       if (src->proxy == NULL)
645         g_value_set_static_string (value, "");
646       else {
647         char *proxy = soup_uri_to_string (src->proxy, FALSE);
648
649         g_value_set_string (value, proxy);
650         g_free (proxy);
651       }
652       break;
653     case PROP_COOKIES:
654       g_value_set_boxed (value, g_strdupv (src->cookies));
655       break;
656     case PROP_IS_LIVE:
657       g_value_set_boolean (value, gst_base_src_is_live (GST_BASE_SRC (src)));
658       break;
659     case PROP_IRADIO_MODE:
660       g_value_set_boolean (value, src->iradio_mode);
661       break;
662     case PROP_USER_ID:
663       g_value_set_string (value, src->user_id);
664       break;
665     case PROP_USER_PW:
666       g_value_set_string (value, src->user_pw);
667       break;
668     case PROP_PROXY_ID:
669       g_value_set_string (value, src->proxy_id);
670       break;
671     case PROP_PROXY_PW:
672       g_value_set_string (value, src->proxy_pw);
673       break;
674     case PROP_TIMEOUT:
675       g_value_set_uint (value, src->timeout);
676       break;
677     case PROP_EXTRA_HEADERS:
678       gst_value_set_structure (value, src->extra_headers);
679       break;
680     case PROP_SOUP_LOG_LEVEL:
681       g_value_set_enum (value, src->log_level);
682       break;
683     case PROP_COMPRESS:
684       g_value_set_boolean (value, src->compress);
685       break;
686     case PROP_KEEP_ALIVE:
687       g_value_set_boolean (value, src->keep_alive);
688       break;
689     case PROP_SSL_STRICT:
690       g_value_set_boolean (value, src->ssl_strict);
691       break;
692     case PROP_SSL_CA_FILE:
693       g_value_set_string (value, src->ssl_ca_file);
694       break;
695     case PROP_SSL_USE_SYSTEM_CA_FILE:
696       g_value_set_boolean (value, src->ssl_strict);
697       break;
698     case PROP_RETRIES:
699       g_value_set_int (value, src->max_retries);
700       break;
701     default:
702       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
703       break;
704   }
705 }
706
707 static gchar *
708 gst_soup_http_src_unicodify (const gchar * str)
709 {
710   const gchar *env_vars[] = { "GST_ICY_TAG_ENCODING",
711     "GST_TAG_ENCODING", NULL
712   };
713
714   return gst_tag_freeform_string_to_utf8 (str, -1, env_vars);
715 }
716
717 static void
718 gst_soup_http_src_cancel_message (GstSoupHTTPSrc * src)
719 {
720   if (src->msg != NULL) {
721     GST_DEBUG_OBJECT (src, "Cancelling message");
722     src->session_io_status = GST_SOUP_HTTP_SRC_SESSION_IO_STATUS_CANCELLED;
723     soup_session_cancel_message (src->session, src->msg, SOUP_STATUS_CANCELLED);
724   }
725   src->session_io_status = GST_SOUP_HTTP_SRC_SESSION_IO_STATUS_IDLE;
726   src->msg = NULL;
727 }
728
729 static void
730 gst_soup_http_src_queue_message (GstSoupHTTPSrc * src)
731 {
732   soup_session_queue_message (src->session, src->msg,
733       (SoupSessionCallback) gst_soup_http_src_response_cb, src);
734   src->session_io_status = GST_SOUP_HTTP_SRC_SESSION_IO_STATUS_QUEUED;
735 }
736
737 static gboolean
738 gst_soup_http_src_add_range_header (GstSoupHTTPSrc * src, guint64 offset,
739     guint64 stop_offset)
740 {
741   gchar buf[64];
742
743   gint rc;
744
745   soup_message_headers_remove (src->msg->request_headers, "Range");
746   if (offset || stop_offset != -1) {
747     if (stop_offset != -1) {
748       rc = g_snprintf (buf, sizeof (buf), "bytes=%" G_GUINT64_FORMAT "-%"
749           G_GUINT64_FORMAT, offset, stop_offset);
750     } else {
751       rc = g_snprintf (buf, sizeof (buf), "bytes=%" G_GUINT64_FORMAT "-",
752           offset);
753     }
754     if (rc > sizeof (buf) || rc < 0)
755       return FALSE;
756     soup_message_headers_append (src->msg->request_headers, "Range", buf);
757   }
758   src->read_position = offset;
759   return TRUE;
760 }
761
762 static gboolean
763 _append_extra_header (GQuark field_id, const GValue * value, gpointer user_data)
764 {
765   GstSoupHTTPSrc *src = GST_SOUP_HTTP_SRC (user_data);
766   const gchar *field_name = g_quark_to_string (field_id);
767   gchar *field_content = NULL;
768
769   if (G_VALUE_TYPE (value) == G_TYPE_STRING) {
770     field_content = g_value_dup_string (value);
771   } else {
772     GValue dest = { 0, };
773
774     g_value_init (&dest, G_TYPE_STRING);
775     if (g_value_transform (value, &dest)) {
776       field_content = g_value_dup_string (&dest);
777     }
778   }
779
780   if (field_content == NULL) {
781     GST_ERROR_OBJECT (src, "extra-headers field '%s' contains no value "
782         "or can't be converted to a string", field_name);
783     return FALSE;
784   }
785
786   GST_DEBUG_OBJECT (src, "Appending extra header: \"%s: %s\"", field_name,
787       field_content);
788   soup_message_headers_append (src->msg->request_headers, field_name,
789       field_content);
790
791   g_free (field_content);
792
793   return TRUE;
794 }
795
796 static gboolean
797 _append_extra_headers (GQuark field_id, const GValue * value,
798     gpointer user_data)
799 {
800   if (G_VALUE_TYPE (value) == GST_TYPE_ARRAY) {
801     guint n = gst_value_array_get_size (value);
802     guint i;
803
804     for (i = 0; i < n; i++) {
805       const GValue *v = gst_value_array_get_value (value, i);
806
807       if (!_append_extra_header (field_id, v, user_data))
808         return FALSE;
809     }
810   } else if (G_VALUE_TYPE (value) == GST_TYPE_LIST) {
811     guint n = gst_value_list_get_size (value);
812     guint i;
813
814     for (i = 0; i < n; i++) {
815       const GValue *v = gst_value_list_get_value (value, i);
816
817       if (!_append_extra_header (field_id, v, user_data))
818         return FALSE;
819     }
820   } else {
821     return _append_extra_header (field_id, value, user_data);
822   }
823
824   return TRUE;
825 }
826
827
828 static gboolean
829 gst_soup_http_src_add_extra_headers (GstSoupHTTPSrc * src)
830 {
831   if (!src->extra_headers)
832     return TRUE;
833
834   return gst_structure_foreach (src->extra_headers, _append_extra_headers, src);
835 }
836
837
838 static void
839 gst_soup_http_src_session_unpause_message (GstSoupHTTPSrc * src)
840 {
841   soup_session_unpause_message (src->session, src->msg);
842 }
843
844 static void
845 gst_soup_http_src_session_pause_message (GstSoupHTTPSrc * src)
846 {
847   soup_session_pause_message (src->session, src->msg);
848 }
849
850 static gboolean
851 gst_soup_http_src_session_open (GstSoupHTTPSrc * src)
852 {
853   if (src->session) {
854     GST_DEBUG_OBJECT (src, "Session is already open");
855     return TRUE;
856   }
857
858   if (!src->location) {
859     GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ, (_("No URL set.")),
860         ("Missing location property"));
861     return FALSE;
862   }
863
864   if (!src->context)
865     src->context = g_main_context_new ();
866
867   if (!src->loop)
868     src->loop = g_main_loop_new (src->context, TRUE);
869   if (!src->loop) {
870     GST_ELEMENT_ERROR (src, LIBRARY, INIT,
871         (NULL), ("Failed to start GMainLoop"));
872     g_main_context_unref (src->context);
873     return FALSE;
874   }
875
876   if (!src->session) {
877     GST_DEBUG_OBJECT (src, "Creating session");
878     if (src->proxy == NULL) {
879       src->session =
880           soup_session_async_new_with_options (SOUP_SESSION_ASYNC_CONTEXT,
881           src->context, SOUP_SESSION_USER_AGENT, src->user_agent,
882           SOUP_SESSION_TIMEOUT, src->timeout,
883           SOUP_SESSION_SSL_STRICT, src->ssl_strict,
884           SOUP_SESSION_ADD_FEATURE_BY_TYPE, SOUP_TYPE_PROXY_RESOLVER_DEFAULT,
885           NULL);
886     } else {
887       src->session =
888           soup_session_async_new_with_options (SOUP_SESSION_ASYNC_CONTEXT,
889           src->context, SOUP_SESSION_PROXY_URI, src->proxy,
890           SOUP_SESSION_TIMEOUT, src->timeout,
891           SOUP_SESSION_SSL_STRICT, src->ssl_strict,
892           SOUP_SESSION_USER_AGENT, src->user_agent, NULL);
893     }
894
895     if (!src->session) {
896       GST_ELEMENT_ERROR (src, LIBRARY, INIT,
897           (NULL), ("Failed to create async session"));
898       return FALSE;
899     }
900
901     g_signal_connect (src->session, "authenticate",
902         G_CALLBACK (gst_soup_http_src_authenticate_cb), src);
903
904     /* Set up logging */
905     gst_soup_util_log_setup (src->session, src->log_level, GST_ELEMENT (src));
906     if (src->ssl_ca_file)
907       g_object_set (src->session, "ssl-ca-file", src->ssl_ca_file, NULL);
908     else
909       g_object_set (src->session, "ssl-use-system-ca-file",
910           src->ssl_use_system_ca_file, NULL);
911   } else {
912     GST_DEBUG_OBJECT (src, "Re-using session");
913   }
914
915   if (src->compress)
916     soup_session_add_feature_by_type (src->session, SOUP_TYPE_CONTENT_DECODER);
917   else
918     soup_session_remove_feature_by_type (src->session,
919         SOUP_TYPE_CONTENT_DECODER);
920
921   return TRUE;
922 }
923
924 #ifdef LIBSOUP_DOES_NOT_STEAL_OUR_CONTEXT
925 static gboolean
926 dummy_idle_cb (gpointer data)
927 {
928   return FALSE /* Idle source is removed */ ;
929 }
930 #endif
931
932 static void
933 gst_soup_http_src_session_close (GstSoupHTTPSrc * src)
934 {
935   GST_DEBUG_OBJECT (src, "Closing session");
936
937   if (src->loop)
938     g_main_loop_quit (src->loop);
939
940   g_mutex_lock (&src->mutex);
941   if (src->session) {
942     soup_session_abort (src->session);  /* This unrefs the message. */
943     g_object_unref (src->session);
944     src->session = NULL;
945     src->msg = NULL;
946   }
947   if (src->loop) {
948 #ifdef LIBSOUP_DOES_NOT_STEAL_OUR_CONTEXT
949     GSource *idle_source;
950
951     /* Iterating the main context to give GIO cancellables a chance
952      * to initiate cleanups. Wihout this, resources allocated by
953      * libsoup for the connection are not released and socket fd is
954      * leaked. */
955     idle_source = g_idle_source_new ();
956     /* Suppressing "idle souce without callback" warning */
957     g_source_set_callback (idle_source, dummy_idle_cb, NULL, NULL);
958     g_source_set_priority (idle_source, G_PRIORITY_LOW);
959     g_source_attach (idle_source, src->context);
960     /* Acquiring the context. Idle source guarantees that we'll not block. */
961     g_main_context_push_thread_default (src->context);
962     g_main_context_iteration (src->context, TRUE);
963     /* Ensuring that there's no unhandled pending events left. */
964     while (g_main_context_iteration (src->context, FALSE));
965     g_main_context_pop_thread_default (src->context);
966     g_source_unref (idle_source);
967 #endif
968
969     g_main_loop_unref (src->loop);
970     g_main_context_unref (src->context);
971     src->loop = NULL;
972     src->context = NULL;
973   }
974   g_mutex_unlock (&src->mutex);
975 }
976
977 static void
978 gst_soup_http_src_authenticate_cb (SoupSession * session, SoupMessage * msg,
979     SoupAuth * auth, gboolean retrying, GstSoupHTTPSrc * src)
980 {
981   if (!retrying) {
982     /* First time authentication only, if we fail and are called again with retry true fall through */
983     if (msg->status_code == SOUP_STATUS_UNAUTHORIZED) {
984       if (src->user_id && src->user_pw)
985         soup_auth_authenticate (auth, src->user_id, src->user_pw);
986     } else if (msg->status_code == SOUP_STATUS_PROXY_AUTHENTICATION_REQUIRED) {
987       if (src->proxy_id && src->proxy_pw)
988         soup_auth_authenticate (auth, src->proxy_id, src->proxy_pw);
989     }
990   }
991 }
992
993 static void
994 gst_soup_http_src_got_headers_cb (SoupMessage * msg, GstSoupHTTPSrc * src)
995 {
996   const char *value;
997   GstTagList *tag_list;
998   GstBaseSrc *basesrc;
999   guint64 newsize;
1000   GHashTable *params = NULL;
1001
1002   GST_INFO_OBJECT (src, "got headers");
1003
1004   if (msg->status_code == SOUP_STATUS_PROXY_AUTHENTICATION_REQUIRED &&
1005       src->proxy_id && src->proxy_pw)
1006     return;
1007
1008   if (src->automatic_redirect && SOUP_STATUS_IS_REDIRECTION (msg->status_code)) {
1009     src->redirection_uri = g_strdup (soup_message_headers_get_one
1010         (msg->response_headers, "Location"));
1011     src->redirection_permanent =
1012         (msg->status_code == SOUP_STATUS_MOVED_PERMANENTLY);
1013     GST_DEBUG_OBJECT (src, "%u redirect to \"%s\" (permanent %d)",
1014         msg->status_code, src->redirection_uri, src->redirection_permanent);
1015     return;
1016   }
1017
1018   if (msg->status_code == SOUP_STATUS_UNAUTHORIZED)
1019     return;
1020
1021   src->session_io_status = GST_SOUP_HTTP_SRC_SESSION_IO_STATUS_RUNNING;
1022   src->got_headers = TRUE;
1023
1024   /* Parse Content-Length. */
1025   if (soup_message_headers_get_encoding (msg->response_headers) ==
1026       SOUP_ENCODING_CONTENT_LENGTH) {
1027     newsize = src->request_position +
1028         soup_message_headers_get_content_length (msg->response_headers);
1029     if (!src->have_size || (src->content_size != newsize)) {
1030       src->content_size = newsize;
1031       src->have_size = TRUE;
1032       src->seekable = TRUE;
1033       GST_DEBUG_OBJECT (src, "size = %" G_GUINT64_FORMAT, src->content_size);
1034
1035       basesrc = GST_BASE_SRC_CAST (src);
1036       basesrc->segment.duration = src->content_size;
1037       gst_element_post_message (GST_ELEMENT (src),
1038           gst_message_new_duration_changed (GST_OBJECT (src)));
1039     }
1040   }
1041
1042   /* Icecast stuff */
1043   tag_list = gst_tag_list_new_empty ();
1044
1045   if ((value =
1046           soup_message_headers_get_one (msg->response_headers,
1047               "icy-metaint")) != NULL) {
1048     gint icy_metaint = atoi (value);
1049
1050     GST_DEBUG_OBJECT (src, "icy-metaint: %s (parsed: %d)", value, icy_metaint);
1051     if (icy_metaint > 0) {
1052       if (src->src_caps)
1053         gst_caps_unref (src->src_caps);
1054
1055       src->src_caps = gst_caps_new_simple ("application/x-icy",
1056           "metadata-interval", G_TYPE_INT, icy_metaint, NULL);
1057
1058       gst_base_src_set_caps (GST_BASE_SRC (src), src->src_caps);
1059     }
1060   }
1061   if ((value =
1062           soup_message_headers_get_content_type (msg->response_headers,
1063               &params)) != NULL) {
1064     GST_DEBUG_OBJECT (src, "Content-Type: %s", value);
1065     if (g_ascii_strcasecmp (value, "audio/L16") == 0) {
1066       gint channels = 2;
1067       gint rate = 44100;
1068       char *param;
1069
1070       if (src->src_caps)
1071         gst_caps_unref (src->src_caps);
1072
1073       param = g_hash_table_lookup (params, "channels");
1074       if (param != NULL)
1075         channels = atol (param);
1076
1077       param = g_hash_table_lookup (params, "rate");
1078       if (param != NULL)
1079         rate = atol (param);
1080
1081       src->src_caps = gst_caps_new_simple ("audio/x-raw",
1082           "format", G_TYPE_STRING, "S16BE",
1083           "layout", G_TYPE_STRING, "interleaved",
1084           "channels", G_TYPE_INT, channels, "rate", G_TYPE_INT, rate, NULL);
1085
1086       gst_base_src_set_caps (GST_BASE_SRC (src), src->src_caps);
1087     } else {
1088       /* Set the Content-Type field on the caps */
1089       if (src->src_caps) {
1090         src->src_caps = gst_caps_make_writable (src->src_caps);
1091         gst_caps_set_simple (src->src_caps, "content-type", G_TYPE_STRING,
1092             value, NULL);
1093         gst_base_src_set_caps (GST_BASE_SRC (src), src->src_caps);
1094       }
1095     }
1096   }
1097
1098   if (params != NULL)
1099     g_hash_table_destroy (params);
1100
1101   if ((value =
1102           soup_message_headers_get_one (msg->response_headers,
1103               "icy-name")) != NULL) {
1104     g_free (src->iradio_name);
1105     src->iradio_name = gst_soup_http_src_unicodify (value);
1106     if (src->iradio_name) {
1107       gst_tag_list_add (tag_list, GST_TAG_MERGE_REPLACE, GST_TAG_ORGANIZATION,
1108           src->iradio_name, NULL);
1109     }
1110   }
1111   if ((value =
1112           soup_message_headers_get_one (msg->response_headers,
1113               "icy-genre")) != NULL) {
1114     g_free (src->iradio_genre);
1115     src->iradio_genre = gst_soup_http_src_unicodify (value);
1116     if (src->iradio_genre) {
1117       gst_tag_list_add (tag_list, GST_TAG_MERGE_REPLACE, GST_TAG_GENRE,
1118           src->iradio_genre, NULL);
1119     }
1120   }
1121   if ((value = soup_message_headers_get_one (msg->response_headers, "icy-url"))
1122       != NULL) {
1123     g_free (src->iradio_url);
1124     src->iradio_url = gst_soup_http_src_unicodify (value);
1125     if (src->iradio_url) {
1126       gst_tag_list_add (tag_list, GST_TAG_MERGE_REPLACE, GST_TAG_LOCATION,
1127           src->iradio_url, NULL);
1128     }
1129   }
1130   if (!gst_tag_list_is_empty (tag_list)) {
1131     GST_DEBUG_OBJECT (src,
1132         "calling gst_element_found_tags with %" GST_PTR_FORMAT, tag_list);
1133     gst_pad_push_event (GST_BASE_SRC_PAD (src), gst_event_new_tag (tag_list));
1134   } else {
1135     gst_tag_list_unref (tag_list);
1136   }
1137
1138   /* Handle HTTP errors. */
1139   gst_soup_http_src_parse_status (msg, src);
1140
1141   /* Check if Range header was respected. */
1142   if (src->ret == GST_FLOW_CUSTOM_ERROR &&
1143       src->read_position && msg->status_code != SOUP_STATUS_PARTIAL_CONTENT) {
1144     src->seekable = FALSE;
1145     GST_ELEMENT_ERROR (src, RESOURCE, SEEK,
1146         (_("Server does not support seeking.")),
1147         ("Server does not accept Range HTTP header, URL: %s", src->location));
1148     src->ret = GST_FLOW_ERROR;
1149   }
1150
1151   /* If we are going to error out, stop all processing right here, so we
1152    * don't output any data (such as an error html page), and return
1153    * GST_FLOW_ERROR from the create function instead of having
1154    * got_chunk_cb overwrite src->ret with FLOW_OK again. */
1155   if (src->ret == GST_FLOW_ERROR || src->ret == GST_FLOW_EOS) {
1156     gst_soup_http_src_session_pause_message (src);
1157
1158     if (src->loop)
1159       g_main_loop_quit (src->loop);
1160   }
1161   g_cond_signal (&src->request_finished_cond);
1162 }
1163
1164 /* Have body. Signal EOS. */
1165 static void
1166 gst_soup_http_src_got_body_cb (SoupMessage * msg, GstSoupHTTPSrc * src)
1167 {
1168   if (G_UNLIKELY (msg != src->msg)) {
1169     GST_DEBUG_OBJECT (src, "got body, but not for current message");
1170     return;
1171   }
1172   if (G_UNLIKELY (src->session_io_status !=
1173           GST_SOUP_HTTP_SRC_SESSION_IO_STATUS_RUNNING)) {
1174     /* Probably a redirect. */
1175     return;
1176   }
1177   GST_DEBUG_OBJECT (src, "got body");
1178   src->ret = GST_FLOW_EOS;
1179   src->have_body = TRUE;
1180
1181   /* no need to interrupt the message here, we do it on the
1182    * finished_cb anyway if needed. And getting the body might mean
1183    * that the connection was hang up before finished. This happens when
1184    * the pipeline is stalled for too long (long pauses during playback).
1185    * Best to let it continue from here and pause because it reached the
1186    * final bytes based on content_size or received an out of range error */
1187 }
1188
1189 /* Finished. Signal EOS. */
1190 static void
1191 gst_soup_http_src_finished_cb (SoupMessage * msg, GstSoupHTTPSrc * src)
1192 {
1193   if (G_UNLIKELY (msg != src->msg)) {
1194     GST_DEBUG_OBJECT (src, "finished, but not for current message");
1195     return;
1196   }
1197   GST_DEBUG_OBJECT (src, "finished");
1198   src->ret = GST_FLOW_EOS;
1199   if (src->session_io_status == GST_SOUP_HTTP_SRC_SESSION_IO_STATUS_CANCELLED) {
1200     /* gst_soup_http_src_cancel_message() triggered this; probably a seek
1201      * that occurred in the QUEUEING state; i.e. before the connection setup
1202      * was complete. Do nothing */
1203     GST_DEBUG_OBJECT (src, "cancelled");
1204   } else if (src->session_io_status ==
1205       GST_SOUP_HTTP_SRC_SESSION_IO_STATUS_RUNNING && src->read_position > 0 &&
1206       (src->have_size && src->read_position < src->content_size) &&
1207       (src->max_retries == -1 || src->retry_count < src->max_retries)) {
1208     /* The server disconnected while streaming. Reconnect and seeking to the
1209      * last location. */
1210     src->retry = TRUE;
1211     src->retry_count++;
1212     src->ret = GST_FLOW_CUSTOM_ERROR;
1213   } else if (G_UNLIKELY (src->session_io_status !=
1214           GST_SOUP_HTTP_SRC_SESSION_IO_STATUS_RUNNING)) {
1215     if (msg->method == SOUP_METHOD_HEAD) {
1216       GST_DEBUG_OBJECT (src, "Ignoring error %d:%s during HEAD request",
1217           msg->status_code, msg->reason_phrase);
1218     } else {
1219       gst_soup_http_src_parse_status (msg, src);
1220     }
1221   }
1222   if (src->loop)
1223     g_main_loop_quit (src->loop);
1224   g_cond_signal (&src->request_finished_cond);
1225 }
1226
1227 /* Buffer lifecycle management.
1228  *
1229  * gst_soup_http_src_create() runs the GMainLoop for this element, to let
1230  * Soup take control.
1231  * A GstBuffer is allocated in gst_soup_http_src_chunk_allocator() and
1232  * associated with a SoupBuffer.
1233  * Soup reads HTTP data in the GstBuffer's data buffer.
1234  * The gst_soup_http_src_got_chunk_cb() is then called with the SoupBuffer.
1235  * That sets gst_soup_http_src_create()'s return argument to the GstBuffer,
1236  * increments its refcount (to 2), pauses the flow of data from the HTTP
1237  * source to prevent gst_soup_http_src_got_chunk_cb() from being called
1238  * again and breaks out of the GMainLoop.
1239  * Because the SOUP_MESSAGE_OVERWRITE_CHUNKS flag is set, Soup frees the
1240  * SoupBuffer and calls gst_soup_http_src_chunk_free(), which decrements the
1241  * refcount (to 1).
1242  * gst_soup_http_src_create() returns the GstBuffer. It will be freed by a
1243  * downstream element.
1244  * If Soup fails to read HTTP data, it does not call
1245  * gst_soup_http_src_got_chunk_cb(), but still frees the SoupBuffer and
1246  * calls gst_soup_http_src_chunk_free(), which decrements the GstBuffer's
1247  * refcount to 0, freeing it.
1248  */
1249
1250 typedef struct
1251 {
1252   GstBuffer *buffer;
1253   GstMapInfo map;
1254 } SoupGstChunk;
1255
1256 static void
1257 gst_soup_http_src_chunk_free (gpointer user_data)
1258 {
1259   SoupGstChunk *chunk = (SoupGstChunk *) user_data;
1260
1261   gst_buffer_unmap (chunk->buffer, &chunk->map);
1262   gst_buffer_unref (chunk->buffer);
1263   g_slice_free (SoupGstChunk, chunk);
1264 }
1265
1266 static SoupBuffer *
1267 gst_soup_http_src_chunk_allocator (SoupMessage * msg, gsize max_len,
1268     gpointer user_data)
1269 {
1270   GstSoupHTTPSrc *src = (GstSoupHTTPSrc *) user_data;
1271   GstBaseSrc *basesrc = GST_BASE_SRC_CAST (src);
1272   GstBuffer *gstbuf;
1273   SoupBuffer *soupbuf;
1274   gsize length;
1275   GstFlowReturn rc;
1276   SoupGstChunk *chunk;
1277
1278   if (max_len)
1279     length = MIN (basesrc->blocksize, max_len);
1280   else
1281     length = basesrc->blocksize;
1282   GST_DEBUG_OBJECT (src, "alloc %" G_GSIZE_FORMAT " bytes <= %" G_GSIZE_FORMAT,
1283       length, max_len);
1284
1285   rc = GST_BASE_SRC_CLASS (parent_class)->alloc (basesrc, -1, length, &gstbuf);
1286   if (G_UNLIKELY (rc != GST_FLOW_OK)) {
1287     /* Failed to allocate buffer. Stall SoupSession and return error code
1288      * to create(). */
1289     src->ret = rc;
1290     g_main_loop_quit (src->loop);
1291     return NULL;
1292   }
1293
1294   chunk = g_slice_new0 (SoupGstChunk);
1295   chunk->buffer = gstbuf;
1296   gst_buffer_map (gstbuf, &chunk->map, GST_MAP_READWRITE);
1297
1298   soupbuf = soup_buffer_new_with_owner (chunk->map.data, chunk->map.size,
1299       chunk, gst_soup_http_src_chunk_free);
1300
1301   return soupbuf;
1302 }
1303
1304 static void
1305 gst_soup_http_src_got_chunk_cb (SoupMessage * msg, SoupBuffer * chunk,
1306     GstSoupHTTPSrc * src)
1307 {
1308   GstBaseSrc *basesrc;
1309   guint64 new_position;
1310   SoupGstChunk *gchunk;
1311
1312   if (G_UNLIKELY (msg != src->msg)) {
1313     GST_DEBUG_OBJECT (src, "got chunk, but not for current message");
1314     return;
1315   }
1316   if (G_UNLIKELY (!src->outbuf)) {
1317     GST_DEBUG_OBJECT (src, "got chunk but we're not expecting one");
1318     src->ret = GST_FLOW_OK;
1319     gst_soup_http_src_cancel_message (src);
1320     g_main_loop_quit (src->loop);
1321     return;
1322   }
1323
1324   /* We got data, reset the retry counter */
1325   src->retry_count = 0;
1326
1327   src->have_body = FALSE;
1328   if (G_UNLIKELY (src->session_io_status !=
1329           GST_SOUP_HTTP_SRC_SESSION_IO_STATUS_RUNNING)) {
1330     /* Probably a redirect. */
1331     return;
1332   }
1333   basesrc = GST_BASE_SRC_CAST (src);
1334   GST_DEBUG_OBJECT (src, "got chunk of %" G_GSIZE_FORMAT " bytes",
1335       chunk->length);
1336
1337   /* Extract the GstBuffer from the SoupBuffer and set its fields. */
1338   gchunk = (SoupGstChunk *) soup_buffer_get_owner (chunk);
1339   *src->outbuf = gchunk->buffer;
1340
1341   gst_buffer_resize (*src->outbuf, 0, chunk->length);
1342   GST_BUFFER_OFFSET (*src->outbuf) = basesrc->segment.position;
1343
1344   gst_buffer_ref (*src->outbuf);
1345
1346   new_position = src->read_position + chunk->length;
1347   if (G_LIKELY (src->request_position == src->read_position))
1348     src->request_position = new_position;
1349   src->read_position = new_position;
1350
1351   if (src->have_size) {
1352     if (new_position > src->content_size) {
1353       GST_DEBUG_OBJECT (src, "Got position previous estimated content size "
1354           "(%" G_GINT64_FORMAT " > %" G_GINT64_FORMAT ")", new_position,
1355           src->content_size);
1356       src->content_size = new_position;
1357       basesrc->segment.duration = src->content_size;
1358       gst_element_post_message (GST_ELEMENT (src),
1359           gst_message_new_duration_changed (GST_OBJECT (src)));
1360     } else if (new_position == src->content_size) {
1361       GST_DEBUG_OBJECT (src, "We're EOS now");
1362     }
1363   }
1364
1365   src->ret = GST_FLOW_OK;
1366   g_main_loop_quit (src->loop);
1367   gst_soup_http_src_session_pause_message (src);
1368 }
1369
1370 static void
1371 gst_soup_http_src_response_cb (SoupSession * session, SoupMessage * msg,
1372     GstSoupHTTPSrc * src)
1373 {
1374   if (G_UNLIKELY (msg != src->msg)) {
1375     GST_DEBUG_OBJECT (src, "got response %d: %s, but not for current message",
1376         msg->status_code, msg->reason_phrase);
1377     return;
1378   }
1379   if (G_UNLIKELY (src->session_io_status !=
1380           GST_SOUP_HTTP_SRC_SESSION_IO_STATUS_RUNNING)
1381       && SOUP_STATUS_IS_REDIRECTION (msg->status_code)) {
1382     /* Ignore redirections. */
1383     return;
1384   }
1385   GST_DEBUG_OBJECT (src, "got response %d: %s", msg->status_code,
1386       msg->reason_phrase);
1387   if (src->session_io_status == GST_SOUP_HTTP_SRC_SESSION_IO_STATUS_RUNNING &&
1388       src->read_position > 0 && (src->have_size
1389           && src->read_position < src->content_size) &&
1390       (src->max_retries == -1 || src->retry_count < src->max_retries)) {
1391     /* The server disconnected while streaming. Reconnect and seeking to the
1392      * last location. */
1393     src->retry = TRUE;
1394     src->retry_count++;
1395   } else {
1396     gst_soup_http_src_parse_status (msg, src);
1397   }
1398   /* The session's SoupMessage object expires after this callback returns. */
1399   src->msg = NULL;
1400   g_main_loop_quit (src->loop);
1401 }
1402
1403 #define SOUP_HTTP_SRC_ERROR(src,soup_msg,cat,code,error_message)     \
1404   GST_ELEMENT_ERROR ((src), cat, code, ("%s", error_message),        \
1405       ("%s (%d), URL: %s", (soup_msg)->reason_phrase,                \
1406           (soup_msg)->status_code, (src)->location));
1407
1408 static void
1409 gst_soup_http_src_parse_status (SoupMessage * msg, GstSoupHTTPSrc * src)
1410 {
1411   if (msg->method == SOUP_METHOD_HEAD) {
1412     if (!SOUP_STATUS_IS_SUCCESSFUL (msg->status_code))
1413       GST_DEBUG_OBJECT (src, "Ignoring error %d during HEAD request",
1414           msg->status_code);
1415   } else if (SOUP_STATUS_IS_TRANSPORT_ERROR (msg->status_code)) {
1416     switch (msg->status_code) {
1417       case SOUP_STATUS_CANT_RESOLVE:
1418       case SOUP_STATUS_CANT_RESOLVE_PROXY:
1419         SOUP_HTTP_SRC_ERROR (src, msg, RESOURCE, NOT_FOUND,
1420             _("Could not resolve server name."));
1421         src->ret = GST_FLOW_ERROR;
1422         break;
1423       case SOUP_STATUS_CANT_CONNECT:
1424       case SOUP_STATUS_CANT_CONNECT_PROXY:
1425         SOUP_HTTP_SRC_ERROR (src, msg, RESOURCE, OPEN_READ,
1426             _("Could not establish connection to server."));
1427         src->ret = GST_FLOW_ERROR;
1428         break;
1429       case SOUP_STATUS_SSL_FAILED:
1430         SOUP_HTTP_SRC_ERROR (src, msg, RESOURCE, OPEN_READ,
1431             _("Secure connection setup failed."));
1432         src->ret = GST_FLOW_ERROR;
1433         break;
1434       case SOUP_STATUS_IO_ERROR:
1435         if (src->max_retries == -1 || src->retry_count < src->max_retries) {
1436           src->retry = TRUE;
1437           src->retry_count++;
1438           src->ret = GST_FLOW_CUSTOM_ERROR;
1439         } else {
1440           SOUP_HTTP_SRC_ERROR (src, msg, RESOURCE, READ,
1441               _("A network error occured, or the server closed the connection "
1442                   "unexpectedly."));
1443           src->ret = GST_FLOW_ERROR;
1444         }
1445         break;
1446       case SOUP_STATUS_MALFORMED:
1447         SOUP_HTTP_SRC_ERROR (src, msg, RESOURCE, READ,
1448             _("Server sent bad data."));
1449         src->ret = GST_FLOW_ERROR;
1450         break;
1451       case SOUP_STATUS_CANCELLED:
1452         /* No error message when interrupted by program. */
1453         break;
1454     }
1455   } else if (SOUP_STATUS_IS_CLIENT_ERROR (msg->status_code) ||
1456       SOUP_STATUS_IS_REDIRECTION (msg->status_code) ||
1457       SOUP_STATUS_IS_SERVER_ERROR (msg->status_code)) {
1458     /* Report HTTP error. */
1459
1460     /* when content_size is unknown and we have just finished receiving
1461      * a body message, requests that go beyond the content limits will result
1462      * in an error. Here we convert those to EOS */
1463     if (msg->status_code == SOUP_STATUS_REQUESTED_RANGE_NOT_SATISFIABLE &&
1464         src->have_body && !src->have_size) {
1465       GST_DEBUG_OBJECT (src, "Requested range out of limits and received full "
1466           "body, returning EOS");
1467       src->ret = GST_FLOW_EOS;
1468       return;
1469     }
1470
1471     /* FIXME: reason_phrase is not translated and not suitable for user
1472      * error dialog according to libsoup documentation.
1473      */
1474     if (msg->status_code == SOUP_STATUS_NOT_FOUND) {
1475       GST_ELEMENT_ERROR (src, RESOURCE, NOT_FOUND,
1476           ("%s", msg->reason_phrase),
1477           ("%s (%d), URL: %s", msg->reason_phrase, msg->status_code,
1478               src->location));
1479     } else if (msg->status_code == SOUP_STATUS_UNAUTHORIZED ||
1480         msg->status_code == SOUP_STATUS_PAYMENT_REQUIRED ||
1481         msg->status_code == SOUP_STATUS_FORBIDDEN ||
1482         msg->status_code == SOUP_STATUS_PROXY_AUTHENTICATION_REQUIRED) {
1483       GST_ELEMENT_ERROR (src, RESOURCE, NOT_AUTHORIZED,
1484           ("%s", msg->reason_phrase),
1485           ("%s (%d), URL: %s", msg->reason_phrase, msg->status_code,
1486               src->location));
1487     } else {
1488       GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ,
1489           ("%s", msg->reason_phrase),
1490           ("%s (%d), URL: %s", msg->reason_phrase, msg->status_code,
1491               src->location));
1492     }
1493     src->ret = GST_FLOW_ERROR;
1494   }
1495 }
1496
1497 static gboolean
1498 gst_soup_http_src_build_message (GstSoupHTTPSrc * src, const gchar * method)
1499 {
1500   g_return_val_if_fail (src->msg == NULL, FALSE);
1501
1502   src->msg = soup_message_new (method, src->location);
1503   if (!src->msg) {
1504     GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ,
1505         ("Error parsing URL."), ("URL: %s", src->location));
1506     return FALSE;
1507   }
1508   src->session_io_status = GST_SOUP_HTTP_SRC_SESSION_IO_STATUS_IDLE;
1509   if (!src->keep_alive) {
1510     soup_message_headers_append (src->msg->request_headers, "Connection",
1511         "close");
1512   }
1513   if (src->iradio_mode) {
1514     soup_message_headers_append (src->msg->request_headers, "icy-metadata",
1515         "1");
1516   }
1517   if (src->cookies) {
1518     gchar **cookie;
1519
1520     for (cookie = src->cookies; *cookie != NULL; cookie++) {
1521       soup_message_headers_append (src->msg->request_headers, "Cookie",
1522           *cookie);
1523     }
1524   }
1525   src->retry = FALSE;
1526
1527   g_signal_connect (src->msg, "got_headers",
1528       G_CALLBACK (gst_soup_http_src_got_headers_cb), src);
1529   g_signal_connect (src->msg, "got_body",
1530       G_CALLBACK (gst_soup_http_src_got_body_cb), src);
1531   g_signal_connect (src->msg, "finished",
1532       G_CALLBACK (gst_soup_http_src_finished_cb), src);
1533   g_signal_connect (src->msg, "got_chunk",
1534       G_CALLBACK (gst_soup_http_src_got_chunk_cb), src);
1535   soup_message_set_flags (src->msg, SOUP_MESSAGE_OVERWRITE_CHUNKS |
1536       (src->automatic_redirect ? 0 : SOUP_MESSAGE_NO_REDIRECT));
1537   soup_message_set_chunk_allocator (src->msg,
1538       gst_soup_http_src_chunk_allocator, src, NULL);
1539   gst_soup_http_src_add_range_header (src, src->request_position,
1540       src->stop_position);
1541
1542   gst_soup_http_src_add_extra_headers (src);
1543
1544   return TRUE;
1545 }
1546
1547 static GstFlowReturn
1548 gst_soup_http_src_do_request (GstSoupHTTPSrc * src, const gchar * method,
1549     GstBuffer ** outbuf)
1550 {
1551   /* If we're not OK, just go out of here */
1552   if (src->ret != GST_FLOW_OK) {
1553     GST_DEBUG_OBJECT (src, "Previous flow return not OK: %s",
1554         gst_flow_get_name (src->ret));
1555     return src->ret;
1556   }
1557
1558   GST_LOG_OBJECT (src, "Running request for method: %s", method);
1559   if (src->msg && (src->request_position != src->read_position)) {
1560     if (src->session_io_status == GST_SOUP_HTTP_SRC_SESSION_IO_STATUS_IDLE) {
1561       gst_soup_http_src_add_range_header (src, src->request_position,
1562           src->stop_position);
1563     } else {
1564       GST_DEBUG_OBJECT (src, "Seek from position %" G_GUINT64_FORMAT
1565           " to %" G_GUINT64_FORMAT ": requeueing connection request",
1566           src->read_position, src->request_position);
1567       gst_soup_http_src_cancel_message (src);
1568     }
1569   }
1570   if (!src->msg)
1571     if (!gst_soup_http_src_build_message (src, method)) {
1572       return GST_FLOW_ERROR;
1573     }
1574
1575   src->ret = GST_FLOW_CUSTOM_ERROR;
1576   src->outbuf = outbuf;
1577   do {
1578     if (src->interrupted) {
1579       GST_DEBUG_OBJECT (src, "interrupted");
1580       src->ret = GST_FLOW_FLUSHING;
1581       break;
1582     }
1583     if (src->retry) {
1584       GST_DEBUG_OBJECT (src, "Reconnecting");
1585       if (!gst_soup_http_src_build_message (src, method)) {
1586         return GST_FLOW_ERROR;
1587       }
1588       src->retry = FALSE;
1589       continue;
1590     }
1591     if (!src->msg) {
1592       GST_DEBUG_OBJECT (src, "EOS reached");
1593       break;
1594     }
1595
1596     switch (src->session_io_status) {
1597       case GST_SOUP_HTTP_SRC_SESSION_IO_STATUS_IDLE:
1598         GST_DEBUG_OBJECT (src, "Queueing connection request");
1599         gst_soup_http_src_queue_message (src);
1600         break;
1601       case GST_SOUP_HTTP_SRC_SESSION_IO_STATUS_QUEUED:
1602         break;
1603       case GST_SOUP_HTTP_SRC_SESSION_IO_STATUS_RUNNING:
1604         gst_soup_http_src_session_unpause_message (src);
1605         break;
1606       case GST_SOUP_HTTP_SRC_SESSION_IO_STATUS_CANCELLED:
1607         /* Impossible. */
1608         break;
1609     }
1610
1611     if (src->ret == GST_FLOW_CUSTOM_ERROR) {
1612       g_main_context_push_thread_default (src->context);
1613       g_main_loop_run (src->loop);
1614       g_main_context_pop_thread_default (src->context);
1615     }
1616
1617   } while (src->ret == GST_FLOW_CUSTOM_ERROR);
1618
1619   /* Let the request finish if we had a stop position and are there */
1620   if (src->ret == GST_FLOW_OK && src->stop_position != -1
1621       && src->read_position >= src->stop_position) {
1622     src->outbuf = NULL;
1623     gst_soup_http_src_session_unpause_message (src);
1624     g_main_context_push_thread_default (src->context);
1625     g_main_loop_run (src->loop);
1626     g_main_context_pop_thread_default (src->context);
1627
1628     g_cond_signal (&src->request_finished_cond);
1629     /* Return OK unconditionally here, src->ret will
1630      * be most likely be EOS now but we want to
1631      * consume the buffer we got above */
1632     return GST_FLOW_OK;
1633   }
1634
1635   if (src->ret == GST_FLOW_CUSTOM_ERROR)
1636     src->ret = GST_FLOW_EOS;
1637   g_cond_signal (&src->request_finished_cond);
1638
1639   return src->ret;
1640 }
1641
1642 static GstFlowReturn
1643 gst_soup_http_src_create (GstPushSrc * psrc, GstBuffer ** outbuf)
1644 {
1645   GstSoupHTTPSrc *src;
1646   GstFlowReturn ret;
1647
1648   src = GST_SOUP_HTTP_SRC (psrc);
1649
1650   g_mutex_lock (&src->mutex);
1651   *outbuf = NULL;
1652   ret = gst_soup_http_src_do_request (src, SOUP_METHOD_GET, outbuf);
1653   g_mutex_unlock (&src->mutex);
1654   return ret;
1655 }
1656
1657 static gboolean
1658 gst_soup_http_src_start (GstBaseSrc * bsrc)
1659 {
1660   GstSoupHTTPSrc *src = GST_SOUP_HTTP_SRC (bsrc);
1661
1662   GST_DEBUG_OBJECT (src, "start(\"%s\")", src->location);
1663
1664   return gst_soup_http_src_session_open (src);
1665 }
1666
1667 static gboolean
1668 gst_soup_http_src_stop (GstBaseSrc * bsrc)
1669 {
1670   GstSoupHTTPSrc *src;
1671
1672   src = GST_SOUP_HTTP_SRC (bsrc);
1673   GST_DEBUG_OBJECT (src, "stop()");
1674   if (src->keep_alive && !src->msg)
1675     gst_soup_http_src_cancel_message (src);
1676   else
1677     gst_soup_http_src_session_close (src);
1678
1679   gst_soup_http_src_reset (src);
1680   return TRUE;
1681 }
1682
1683 static GstStateChangeReturn
1684 gst_soup_http_src_change_state (GstElement * element, GstStateChange transition)
1685 {
1686   GstStateChangeReturn ret;
1687   GstSoupHTTPSrc *src;
1688
1689   src = GST_SOUP_HTTP_SRC (element);
1690
1691   switch (transition) {
1692     case GST_STATE_CHANGE_READY_TO_NULL:
1693       gst_soup_http_src_session_close (src);
1694       break;
1695     default:
1696       break;
1697   }
1698
1699   ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
1700
1701   return ret;
1702 }
1703
1704 /* Interrupt a blocking request. */
1705 static gboolean
1706 gst_soup_http_src_unlock (GstBaseSrc * bsrc)
1707 {
1708   GstSoupHTTPSrc *src;
1709
1710   src = GST_SOUP_HTTP_SRC (bsrc);
1711   GST_DEBUG_OBJECT (src, "unlock()");
1712
1713   src->interrupted = TRUE;
1714   src->ret = GST_FLOW_FLUSHING;
1715   if (src->loop)
1716     g_main_loop_quit (src->loop);
1717   g_cond_signal (&src->request_finished_cond);
1718   return TRUE;
1719 }
1720
1721 /* Interrupt interrupt. */
1722 static gboolean
1723 gst_soup_http_src_unlock_stop (GstBaseSrc * bsrc)
1724 {
1725   GstSoupHTTPSrc *src;
1726
1727   src = GST_SOUP_HTTP_SRC (bsrc);
1728   GST_DEBUG_OBJECT (src, "unlock_stop()");
1729
1730   src->interrupted = FALSE;
1731   src->ret = GST_FLOW_OK;
1732   return TRUE;
1733 }
1734
1735 static gboolean
1736 gst_soup_http_src_get_size (GstBaseSrc * bsrc, guint64 * size)
1737 {
1738   GstSoupHTTPSrc *src;
1739
1740   src = GST_SOUP_HTTP_SRC (bsrc);
1741
1742   if (src->have_size) {
1743     GST_DEBUG_OBJECT (src, "get_size() = %" G_GUINT64_FORMAT,
1744         src->content_size);
1745     *size = src->content_size;
1746     return TRUE;
1747   }
1748   GST_DEBUG_OBJECT (src, "get_size() = FALSE");
1749   return FALSE;
1750 }
1751
1752 static void
1753 gst_soup_http_src_check_seekable (GstSoupHTTPSrc * src)
1754 {
1755   GstFlowReturn ret = GST_FLOW_OK;
1756
1757   /* Special case to check if the server allows range requests
1758    * before really starting to get data in the buffer creation
1759    * loops.
1760    */
1761   if (!src->got_headers && GST_STATE (src) >= GST_STATE_PAUSED) {
1762     g_mutex_lock (&src->mutex);
1763     while (!src->got_headers && !src->interrupted && ret == GST_FLOW_OK) {
1764       if ((src->msg && src->msg->method != SOUP_METHOD_HEAD) &&
1765           src->session_io_status != GST_SOUP_HTTP_SRC_SESSION_IO_STATUS_IDLE) {
1766         /* wait for the current request to finish */
1767         g_cond_wait (&src->request_finished_cond, &src->mutex);
1768       } else {
1769         if (gst_soup_http_src_session_open (src)) {
1770           ret = gst_soup_http_src_do_request (src, SOUP_METHOD_HEAD, NULL);
1771         }
1772       }
1773     }
1774     if (src->ret == GST_FLOW_EOS) {
1775       /* A HEAD request shouldn't lead to EOS */
1776       src->ret = GST_FLOW_OK;
1777     }
1778     /* resets status to idle */
1779     gst_soup_http_src_cancel_message (src);
1780     g_mutex_unlock (&src->mutex);
1781   }
1782 }
1783
1784 static gboolean
1785 gst_soup_http_src_is_seekable (GstBaseSrc * bsrc)
1786 {
1787   GstSoupHTTPSrc *src = GST_SOUP_HTTP_SRC (bsrc);
1788
1789   gst_soup_http_src_check_seekable (src);
1790
1791   return src->seekable;
1792 }
1793
1794 static gboolean
1795 gst_soup_http_src_do_seek (GstBaseSrc * bsrc, GstSegment * segment)
1796 {
1797   GstSoupHTTPSrc *src = GST_SOUP_HTTP_SRC (bsrc);
1798
1799   GST_DEBUG_OBJECT (src, "do_seek(%" G_GUINT64_FORMAT "-%" G_GUINT64_FORMAT
1800       ")", segment->start, segment->stop);
1801   if (src->read_position == segment->start &&
1802       src->request_position == src->read_position &&
1803       src->stop_position == segment->stop) {
1804     GST_DEBUG_OBJECT (src,
1805         "Seek to current read/end position and no seek pending");
1806     return TRUE;
1807   }
1808
1809   gst_soup_http_src_check_seekable (src);
1810
1811   /* If we have no headers we don't know yet if it is seekable or not.
1812    * Store the start position and error out later if it isn't */
1813   if (src->got_headers && !src->seekable) {
1814     GST_WARNING_OBJECT (src, "Not seekable");
1815     return FALSE;
1816   }
1817
1818   if (segment->rate < 0.0 || segment->format != GST_FORMAT_BYTES) {
1819     GST_WARNING_OBJECT (src, "Invalid seek segment");
1820     return FALSE;
1821   }
1822
1823   if (src->have_size && segment->start >= src->content_size) {
1824     GST_WARNING_OBJECT (src,
1825         "Potentially seeking behind end of file, might EOS immediately");
1826   }
1827
1828   /* Wait for create() to handle the jump in offset. */
1829   src->request_position = segment->start;
1830   src->stop_position = segment->stop;
1831
1832   return TRUE;
1833 }
1834
1835 static gboolean
1836 gst_soup_http_src_query (GstBaseSrc * bsrc, GstQuery * query)
1837 {
1838   GstSoupHTTPSrc *src = GST_SOUP_HTTP_SRC (bsrc);
1839   gboolean ret;
1840   GstSchedulingFlags flags;
1841   gint minsize, maxsize, align;
1842
1843   switch (GST_QUERY_TYPE (query)) {
1844     case GST_QUERY_URI:
1845       gst_query_set_uri (query, src->location);
1846       if (src->redirection_uri != NULL) {
1847         gst_query_set_uri_redirection (query, src->redirection_uri);
1848         gst_query_set_uri_redirection_permanent (query,
1849             src->redirection_permanent);
1850       }
1851       ret = TRUE;
1852       break;
1853     default:
1854       ret = FALSE;
1855       break;
1856   }
1857
1858   if (!ret)
1859     ret = GST_BASE_SRC_CLASS (parent_class)->query (bsrc, query);
1860
1861   switch (GST_QUERY_TYPE (query)) {
1862     case GST_QUERY_SCHEDULING:
1863       gst_query_parse_scheduling (query, &flags, &minsize, &maxsize, &align);
1864       flags |= GST_SCHEDULING_FLAG_BANDWIDTH_LIMITED;
1865       gst_query_set_scheduling (query, flags, minsize, maxsize, align);
1866       break;
1867     default:
1868       break;
1869   }
1870
1871   return ret;
1872 }
1873
1874 static gboolean
1875 gst_soup_http_src_set_location (GstSoupHTTPSrc * src, const gchar * uri,
1876     GError ** error)
1877 {
1878   const char *alt_schemes[] = { "icy://", "icyx://" };
1879   guint i;
1880
1881   if (src->location) {
1882     g_free (src->location);
1883     src->location = NULL;
1884   }
1885
1886   if (uri == NULL)
1887     return FALSE;
1888
1889   for (i = 0; i < G_N_ELEMENTS (alt_schemes); i++) {
1890     if (g_str_has_prefix (uri, alt_schemes[i])) {
1891       src->location =
1892           g_strdup_printf ("http://%s", uri + strlen (alt_schemes[i]));
1893       return TRUE;
1894     }
1895   }
1896
1897   if (src->redirection_uri) {
1898     g_free (src->redirection_uri);
1899     src->redirection_uri = NULL;
1900   }
1901
1902   src->location = g_strdup (uri);
1903
1904   return TRUE;
1905 }
1906
1907 static gboolean
1908 gst_soup_http_src_set_proxy (GstSoupHTTPSrc * src, const gchar * uri)
1909 {
1910   if (src->proxy) {
1911     soup_uri_free (src->proxy);
1912     src->proxy = NULL;
1913   }
1914   if (g_str_has_prefix (uri, "http://")) {
1915     src->proxy = soup_uri_new (uri);
1916   } else {
1917     gchar *new_uri = g_strconcat ("http://", uri, NULL);
1918
1919     src->proxy = soup_uri_new (new_uri);
1920     g_free (new_uri);
1921   }
1922
1923   return TRUE;
1924 }
1925
1926 static guint
1927 gst_soup_http_src_uri_get_type (GType type)
1928 {
1929   return GST_URI_SRC;
1930 }
1931
1932 static const gchar *const *
1933 gst_soup_http_src_uri_get_protocols (GType type)
1934 {
1935   static const gchar *protocols[] = { "http", "https", "icy", "icyx", NULL };
1936
1937   return protocols;
1938 }
1939
1940 static gchar *
1941 gst_soup_http_src_uri_get_uri (GstURIHandler * handler)
1942 {
1943   GstSoupHTTPSrc *src = GST_SOUP_HTTP_SRC (handler);
1944
1945   /* FIXME: make thread-safe */
1946   return g_strdup (src->location);
1947 }
1948
1949 static gboolean
1950 gst_soup_http_src_uri_set_uri (GstURIHandler * handler, const gchar * uri,
1951     GError ** error)
1952 {
1953   GstSoupHTTPSrc *src = GST_SOUP_HTTP_SRC (handler);
1954
1955   return gst_soup_http_src_set_location (src, uri, error);
1956 }
1957
1958 static void
1959 gst_soup_http_src_uri_handler_init (gpointer g_iface, gpointer iface_data)
1960 {
1961   GstURIHandlerInterface *iface = (GstURIHandlerInterface *) g_iface;
1962
1963   iface->get_type = gst_soup_http_src_uri_get_type;
1964   iface->get_protocols = gst_soup_http_src_uri_get_protocols;
1965   iface->get_uri = gst_soup_http_src_uri_get_uri;
1966   iface->set_uri = gst_soup_http_src_uri_set_uri;
1967 }