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