summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJens Georg <jensg@openismus.org>2012-08-31 16:39:07 +0200
committerJens Georg <jensg@openismus.com>2012-10-05 17:33:28 +0200
commite40d79fc54f080b66e75e987dfb0ff0cbade97c5 (patch)
tree1447042a1f5a60fc7d2e9f292eab723801916ec2 /src
parent948ca2c717c68e3acd666d288809230fca07676e (diff)
downloadrygel-e40d79fc54f080b66e75e987dfb0ff0cbade97c5.tar.gz
server: Introduce DataSource interface
Port the streaming to using DataSources.
Diffstat (limited to 'src')
-rw-r--r--src/librygel-server/filelist.am9
-rw-r--r--src/librygel-server/rygel-data-sink.vala87
-rw-r--r--src/librygel-server/rygel-data-source.vala87
-rw-r--r--src/librygel-server/rygel-gst-data-source.vala238
-rw-r--r--src/librygel-server/rygel-gst-media-engine.vala4
-rw-r--r--src/librygel-server/rygel-gst-sink.vala (renamed from src/librygel-server/rygel-http-gst-sink.vala)60
-rw-r--r--src/librygel-server/rygel-http-identity-handler.vala13
-rw-r--r--src/librygel-server/rygel-http-response.vala215
-rw-r--r--src/librygel-server/rygel-http-seek.vala6
-rw-r--r--src/librygel-server/rygel-http-transcode-handler.vala7
-rw-r--r--src/librygel-server/rygel-media-engine.vala8
-rw-r--r--src/librygel-server/rygel-media-item.vala29
-rw-r--r--src/librygel-server/rygel-transcoder.vala2
-rw-r--r--src/plugins/gst-launch/rygel-gst-launch-audio-item.vala5
-rw-r--r--src/plugins/gst-launch/rygel-gst-launch-video-item.vala6
-rw-r--r--src/plugins/test/rygel-test-audio-item.vala8
-rw-r--r--src/plugins/test/rygel-test-video-item.vala8
17 files changed, 544 insertions, 248 deletions
diff --git a/src/librygel-server/filelist.am b/src/librygel-server/filelist.am
index 46ad6a3e..2912d96a 100644
--- a/src/librygel-server/filelist.am
+++ b/src/librygel-server/filelist.am
@@ -23,7 +23,8 @@ LIBRYGEL_SERVER_VAPI_SOURCE_FILES = \
rygel-visual-item.vala \
rygel-writable-container.vala \
rygel-media-server.vala \
- rygel-media-engine.vala
+ rygel-media-engine.vala \
+ rygel-data-source.vala
LIBRYGEL_SERVER_NONVAPI_SOURCE_FILES = \
rygel-aac-transcoder.vala \
@@ -37,7 +38,7 @@ LIBRYGEL_SERVER_NONVAPI_SOURCE_FILES = \
rygel-http-byte-seek.vala \
rygel-http-get-handler.vala \
rygel-http-get.vala \
- rygel-http-gst-sink.vala \
+ rygel-gst-sink.vala \
rygel-http-identity-handler.vala \
rygel-http-item-uri.vala \
rygel-http-post.vala \
@@ -69,7 +70,9 @@ LIBRYGEL_SERVER_NONVAPI_SOURCE_FILES = \
rygel-xbmc-hacks.vala \
rygel-xbox-hacks.vala \
rygel-gst-media-engine.vala \
- rygel-gst-transcoder.vala
+ rygel-gst-transcoder.vala \
+ rygel-gst-data-source.vala \
+ rygel-data-sink.vala
LIBRYGEL_SERVER_VALAFLAGS_PKG = \
--pkg gstreamer-0.10 \
diff --git a/src/librygel-server/rygel-data-sink.vala b/src/librygel-server/rygel-data-sink.vala
new file mode 100644
index 00000000..9ff7d51a
--- /dev/null
+++ b/src/librygel-server/rygel-data-sink.vala
@@ -0,0 +1,87 @@
+/*
+ * Copyright (C) 2012 Intel Corporation.
+ *
+ * Author: Jens Georg <jensg@openismus.com>
+ *
+ * This file is part of Rygel.
+ *
+ * Rygel is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * Rygel is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+using Soup;
+
+/**
+ * Class that converts the push DataSource into the pull required by libsoup.
+ */
+internal class Rygel.DataSink : Object {
+ private DataSource source;
+ private Server server;
+ private Message message;
+
+ private const uint MAX_BUFFERED_CHUNKS = 32;
+ private const uint MIN_BUFFERED_CHUNKS = 4;
+
+ private int64 chunks_buffered;
+ private int64 bytes_sent;
+ private int64 max_bytes;
+
+ public DataSink (DataSource source,
+ Server server,
+ Message message,
+ HTTPSeek? offsets) {
+ this.source = source;
+ this.server = server;
+ this.message = message;
+
+ this.chunks_buffered = 0;
+ this.bytes_sent = 0;
+ this.max_bytes = int64.MAX;
+ if (offsets != null &&
+ offsets is HTTPByteSeek) {
+ this.max_bytes = offsets.length;
+ }
+
+ this.source.data_available.connect (this.on_data_available);
+ this.message.wrote_chunk.connect (this.on_wrote_chunk);
+ }
+
+ private void on_wrote_chunk (Soup.Message msg) {
+ this.chunks_buffered--;
+ if (this.chunks_buffered < MIN_BUFFERED_CHUNKS) {
+ this.source.thaw ();
+ }
+ }
+
+ private void on_data_available (uint8[] buffer) {
+ var left = this.max_bytes - this.bytes_sent;
+
+ if (left <= 0) {
+ return;
+ }
+
+ var to_send = int64.min (buffer.length, left);
+
+ this.message.response_body.append (Soup.MemoryUse.COPY,
+ buffer[0:to_send]);
+ this.chunks_buffered++;
+ this.bytes_sent += to_send;
+
+ this.server.unpause_message (this.message);
+
+ if (this.chunks_buffered > MAX_BUFFERED_CHUNKS) {
+ this.source.freeze ();
+ }
+ }
+}
diff --git a/src/librygel-server/rygel-data-source.vala b/src/librygel-server/rygel-data-source.vala
new file mode 100644
index 00000000..f45e7fef
--- /dev/null
+++ b/src/librygel-server/rygel-data-source.vala
@@ -0,0 +1,87 @@
+/*
+ * Copyright (C) 2012 Intel Corporation.
+ *
+ * Author: Jens Georg <jensg@openismus.com>
+ *
+ * This file is part of Rygel.
+ *
+ * Rygel is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * Rygel is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+public errordomain Rygel.DataSourceError {
+ GENERAL,
+ SEEK_FAILED
+}
+
+/**
+ * Interface for all data streams from a media engine. The data source is
+ * responsible for providing the streamable byte-stream via its data_available
+ * signal. End-of-stream is signalled through the done signal, while errors
+ * are signalled by using the error signal.
+ *
+ * # The only required URI scheme is file:/""/
+ * # A DataSource should be able to stream any kind of binary data, regardless
+ * of the format
+ */
+public interface Rygel.DataSource : GLib.Object {
+ /**
+ * Start producing the data.
+ *
+ * @param offsets optional limits of the stream for partial streaming
+ * @throws Error if anything goes wrong while starting the stream. Throws
+ * DataSourceError.SEEK_FAILED if a seek method is not supported or the
+ * range is not fulfillable.
+ */
+ public abstract void start (HTTPSeek? offsets) throws Error;
+
+ /**
+ * Temporarily stop data generation.
+ *
+ * May be called multiple times. If the source is already frozen, the
+ * following calles to freeze are ignored. After callging freeze(), so
+ * data_available() signal should be emitted.
+ */
+ public abstract void freeze ();
+
+ /**
+ * Resume data generation from a previous freeze call.
+ *
+ * May be called multiple times, will be ignored if the source is not
+ * frozen.
+ */
+ public abstract void thaw ();
+
+ /**
+ * Stop producing data.
+ * After calling stop(), calling start() should produce data from the
+ * beginning and not resume streaming.
+ */
+ public abstract void stop ();
+
+ /**
+ * Emitted when the source has produced some data.
+ */
+ public signal void data_available (uint8[] data);
+
+ /**
+ * Emitted when the source does not have data anymore.
+ */
+ public signal void done ();
+
+ /**
+ * Emitted when the source encounters a problem during data generation.
+ */
+ public signal void error (Error error);
+}
diff --git a/src/librygel-server/rygel-gst-data-source.vala b/src/librygel-server/rygel-gst-data-source.vala
new file mode 100644
index 00000000..79407efd
--- /dev/null
+++ b/src/librygel-server/rygel-gst-data-source.vala
@@ -0,0 +1,238 @@
+/*
+ * Copyright (C) 2012 Intel Corporation.
+ *
+ * Author: Jens Georg <jensg@openismus.com>
+ *
+ * This file is part of Rygel.
+ *
+ * Rygel is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * Rygel is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+using Gst;
+
+public class Rygel.GstDataSource : Rygel.DataSource, GLib.Object {
+ private dynamic Element src;
+ private Pipeline pipeline;
+ private HTTPSeek seek = null;
+ private GstSink sink;
+ private uint bus_watch_id;
+
+ public GstDataSource (string uri) {
+ this.src = GstUtils.create_source_for_uri (uri);
+ }
+
+ ~GstDataSource () {
+ this.sink.cancellable.cancel ();
+ this.pipeline.set_state (State.NULL);
+ }
+
+ public GstDataSource.from_element (Element element) {
+ this.src = element;
+ }
+
+ public void start (HTTPSeek? offsets) throws Error {
+ this.seek = offsets;
+ this.prepare_pipeline ("RygelGstDataSource", this.src);
+ if (this.seek != null) {
+ this.pipeline.set_state (State.PAUSED);
+ } else {
+ this.pipeline.set_state (State.PLAYING);
+ }
+ }
+
+ public void freeze () {
+ this.sink.freeze ();
+ }
+
+ public void thaw () {
+ this.sink.thaw ();
+ }
+
+ public void stop () {
+ // Unlock eventually frozen sink
+ this.sink.cancellable.cancel ();
+ this.pipeline.set_state (State.NULL);
+ Source.remove (this.bus_watch_id);
+ Idle.add ( () => { this.done (); return false; });
+ }
+
+ private void prepare_pipeline (string name,
+ Element src) throws Error {
+ this.sink = new GstSink (this, this.seek);
+
+ this.pipeline = new Pipeline (name);
+ if (pipeline == null) {
+ throw new DataSourceError.GENERAL
+ (_("Failed to create pipeline"));
+ }
+
+ this.pipeline.add_many (src, sink);
+
+ if (src.numsrcpads == 0) {
+ // Seems source uses dynamic pads, link when pad available
+ src.pad_added.connect (this.src_pad_added);
+ } else {
+ // static pads? easy!
+ if (!src.link (sink)) {
+ throw new GstError.LINK (_("Failed to link %s to %s"),
+ src.name,
+ sink.name);
+ }
+ }
+
+ // Bus handler
+ var bus = this.pipeline.get_bus ();
+ this.bus_watch_id = bus.add_watch (this.bus_handler);
+ }
+
+ private void src_pad_added (Element src, Pad src_pad) {
+ var caps = src_pad.get_caps_reffed ();
+
+ var sink = this.pipeline.get_by_name (GstSink.NAME);
+ Pad sink_pad;
+
+ dynamic Element depay = GstUtils.get_rtp_depayloader (caps);
+ if (depay != null) {
+ this.pipeline.add (depay);
+ if (!depay.link (sink)) {
+ critical (_("Failed to link %s to %s"),
+ depay.name,
+ sink.name);
+ this.done ();
+
+ return;
+ }
+
+ sink_pad = depay.get_compatible_pad (src_pad, caps);
+ } else {
+ sink_pad = sink.get_compatible_pad (src_pad, caps);
+ }
+
+ if (src_pad.link (sink_pad) != PadLinkReturn.OK) {
+ critical (_("Failed to link pad %s to %s"),
+ src_pad.name,
+ sink_pad.name);
+ this.done ();
+
+ return;
+ }
+
+ if (depay != null) {
+ depay.sync_state_with_parent ();
+ }
+ }
+
+ private bool bus_handler (Gst.Bus bus, Gst.Message message) {
+ bool ret = true;
+
+ if (message.type == MessageType.EOS) {
+ ret = false;
+ } else if (message.type == MessageType.STATE_CHANGED) {
+ if (message.src != this.pipeline) {
+ return true;
+ }
+
+ State old_state;
+ State new_state;
+
+ message.parse_state_changed (out old_state,
+ out new_state,
+ null);
+
+ if (old_state == State.NULL && new_state == State.READY) {
+ dynamic Element element = this.pipeline.get_by_name ("muxer");
+ if (element != null) {
+ var name = element.get_factory ().get_name ();
+ // Awesome gross hack, really.
+ if (name == "mp4mux") {
+ element.streamable = true;
+ element.fragment_duration = 1000;
+ }
+ }
+ }
+
+ if (this.seek != null) {
+ if (old_state == State.READY && new_state == State.PAUSED) {
+ if (this.perform_seek ()) {
+ this.pipeline.set_state (State.PLAYING);
+ }
+ }
+ }
+ } else {
+ GLib.Error err;
+ string err_msg;
+
+ if (message.type == MessageType.ERROR) {
+ message.parse_error (out err, out err_msg);
+ critical (_("Error from pipeline %s: %s"),
+ this.pipeline.name,
+ err_msg);
+
+ ret = false;
+ } else if (message.type == MessageType.WARNING) {
+ message.parse_warning (out err, out err_msg);
+ warning (_("Warning from pipeline %s: %s"),
+ this.pipeline.name,
+ err_msg);
+ }
+ }
+
+ if (!ret) {
+ Idle.add_full (Priority.DEFAULT, () => {
+ this.done ();
+
+ return false;
+ });
+ }
+
+ return ret;
+ }
+
+ private bool perform_seek () {
+ var stop_type = Gst.SeekType.NONE;
+ Format format;
+ var flags = SeekFlags.FLUSH;
+
+ if (this.seek is HTTPTimeSeek) {
+ format = Format.TIME;
+ flags |= SeekFlags.KEY_UNIT;
+ } else {
+ format = Format.BYTES;
+ flags |= SeekFlags.ACCURATE;
+ }
+
+ if (this.seek.stop > 0) {
+ stop_type = Gst.SeekType.SET;
+ }
+
+ if (!this.pipeline.seek (1.0,
+ format,
+ flags,
+ Gst.SeekType.SET,
+ this.seek.start,
+ stop_type,
+ this.seek.stop + 1)) {
+ warning (_("Failed to seek to offsets %lld:%lld"),
+ this.seek.start,
+ this.seek.stop);
+
+ this.error (new DataSourceError.SEEK_FAILED (_("Failed to seek")));
+
+ return false;
+ }
+
+ return true;
+ }
+}
diff --git a/src/librygel-server/rygel-gst-media-engine.vala b/src/librygel-server/rygel-gst-media-engine.vala
index 8a7ba700..890de4cf 100644
--- a/src/librygel-server/rygel-gst-media-engine.vala
+++ b/src/librygel-server/rygel-gst-media-engine.vala
@@ -87,4 +87,8 @@ internal class Rygel.GstMediaEngine : Rygel.MediaEngine {
public override unowned GLib.List<Transcoder>? get_transcoders () {
return this.transcoders;
}
+
+ public override DataSource create_data_source (string uri) {
+ return new GstDataSource (uri);
+ }
}
diff --git a/src/librygel-server/rygel-http-gst-sink.vala b/src/librygel-server/rygel-gst-sink.vala
index 67a3271e..eed08d00 100644
--- a/src/librygel-server/rygel-http-gst-sink.vala
+++ b/src/librygel-server/rygel-gst-sink.vala
@@ -1,8 +1,10 @@
/*
* Copyright (C) 2011 Nokia Corporation.
+ * Copyright (C) 2012 Intel Corporation.
*
* Author: Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* <zeeshan.ali@nokia.com>
+ * Jens Georg <jensg@openismus.com>
*
* This file is part of Rygel.
*
@@ -23,7 +25,7 @@
using Gst;
-internal class Rygel.HTTPGstSink : BaseSink {
+internal class Rygel.GstSink : BaseSink {
public const string NAME = "http-gst-sink";
public const string PAD_NAME = "sink";
// High and low threshold for number of buffered chunks
@@ -32,7 +34,6 @@ internal class Rygel.HTTPGstSink : BaseSink {
public Cancellable cancellable;
- private unowned HTTPResponse response;
private int priority;
private int64 chunks_buffered;
@@ -41,6 +42,10 @@ internal class Rygel.HTTPGstSink : BaseSink {
private Mutex buffer_mutex = Mutex ();
private Cond buffer_condition = Cond ();
+ private unowned DataSource source;
+ private HTTPSeek offsets;
+
+ private bool frozen;
static construct {
var caps = new Caps.any ();
@@ -51,32 +56,53 @@ internal class Rygel.HTTPGstSink : BaseSink {
add_pad_template (template);
}
- public HTTPGstSink (HTTPResponse response) {
+ public GstSink (DataSource source, HTTPSeek? offsets) {
this.chunks_buffered = 0;
this.bytes_sent = 0;
this.max_bytes = int64.MAX;
+ this.source = source;
+ this.offsets = offsets;
this.cancellable = new Cancellable ();
- this.priority = response.priority;
- this.response = response;
this.sync = false;
this.name = NAME;
+ this.frozen = false;
- if (response.seek != null) {
- if (response.seek is HTTPByteSeek) {
- this.max_bytes = response.seek.length;
+ if (this.offsets != null) {
+ if (this.offsets is HTTPByteSeek) {
+ this.max_bytes = this.offsets.length;
}
}
this.cancellable.cancelled.connect (this.on_cancelled);
- response.msg.wrote_chunk.connect (this.on_wrote_chunk);
+ }
+
+ public void freeze () {
+ if (this.frozen) {
+ return;
+ }
+
+ this.buffer_mutex.lock ();
+ this.frozen = true;
+ this.buffer_mutex.unlock ();
+ }
+
+ public void thaw () {
+ if (!this.frozen) {
+ return;
+ }
+
+ this.buffer_mutex.lock ();
+ this.frozen = false;
+ this.buffer_condition.broadcast ();
+ this.buffer_mutex.unlock ();
}
public override FlowReturn render (Buffer buffer) {
this.buffer_mutex.lock ();
while (!this.cancellable.is_cancelled () &&
- this.chunks_buffered > MAX_BUFFERED_CHUNKS) {
+ this.frozen) {
// Client is either not reading (Paused) or not fast enough
this.buffer_condition.wait (this.buffer_mutex);
}
@@ -103,28 +129,16 @@ internal class Rygel.HTTPGstSink : BaseSink {
var to_send = int64.min (buffer.size, left);
- this.response.push_data (buffer.data[0:to_send]);
+ this.source.data_available (buffer.data[0:to_send]);
this.chunks_buffered++;
this.bytes_sent += to_send;
return false;
}
- private void on_wrote_chunk (Soup.Message msg) {
- this.buffer_mutex.lock ();
- this.chunks_buffered--;
-
- if (this.chunks_buffered < MIN_BUFFERED_CHUNKS) {
- this.buffer_condition.broadcast ();
- }
- this.buffer_mutex.unlock ();
- }
-
private void on_cancelled () {
this.buffer_mutex.lock ();
this.buffer_condition.broadcast ();
this.buffer_mutex.unlock ();
-
- this.response.msg.wrote_chunk.disconnect (this.on_wrote_chunk);
}
}
diff --git a/src/librygel-server/rygel-http-identity-handler.vala b/src/librygel-server/rygel-http-identity-handler.vala
index 845fe323..186ef409 100644
--- a/src/librygel-server/rygel-http-identity-handler.vala
+++ b/src/librygel-server/rygel-http-identity-handler.vala
@@ -1,8 +1,10 @@
/*
* Copyright (C) 2008, 2009 Nokia Corporation.
+ * Copyright (C) 2012 Intel Corporation.
*
* Author: Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* <zeeshan.ali@nokia.com>
+ * Jens Georg <jensg@openismus.com>
*
* This file is part of Rygel.
*
@@ -74,12 +76,13 @@ internal class Rygel.HTTPIdentityHandler : Rygel.HTTPGetHandler {
}
private HTTPResponse render_body_real (HTTPGet request) throws Error {
- Element src;
+ DataSource src;
+ var engine = MediaEngine.get_default ();
if (request.subtitle != null) {
- src = GstUtils.create_source_for_uri (request.subtitle.uri);
+ src = engine.create_data_source (request.subtitle.uri);
} else if (request.thumbnail != null) {
- src = GstUtils.create_source_for_uri (request.thumbnail.uri);
+ src = engine.create_data_source (request.thumbnail.uri);
} else {
src = request.item.create_stream_source
(request.http_server.context.host_ip);
@@ -89,10 +92,6 @@ internal class Rygel.HTTPIdentityHandler : Rygel.HTTPGetHandler {
throw new HTTPRequestError.NOT_FOUND (_("Not found"));
}
- if (src.is_floating ()) {
- src.ref_sink ();
- }
-
return new HTTPResponse (request, this, src);
}
}
diff --git a/src/librygel-server/rygel-http-response.vala b/src/librygel-server/rygel-http-response.vala
index 2cc5238a..7c209b13 100644
--- a/src/librygel-server/rygel-http-response.vala
+++ b/src/librygel-server/rygel-http-response.vala
@@ -1,8 +1,10 @@
/*
- * Copyright (C) 2008 Nokia Corporation.
+ * Copyright (C) 2008-2012 Nokia Corporation.
+ * Copyright (C) 2012 Intel Corporation.
*
* Author: Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* <zeeshan.ali@nokia.com>
+ * Jens Georg <jensg@openismus.com>
*
* This file is part of Rygel.
*
@@ -57,17 +59,30 @@ internal class Rygel.HTTPResponse : GLib.Object, Rygel.StateMachine {
}
}
- private Pipeline pipeline;
- private uint bus_watch_id;
+ private DataSource src;
+ private DataSink sink;
private bool unref_soup_server;
public HTTPResponse (HTTPGet request,
HTTPGetHandler request_handler,
- Element src) throws Error {
+ DataSource src) throws Error {
this.server = request.server;
this.msg = request.msg;
this.cancellable = request_handler.cancellable;
this.seek = request.seek;
+ this.src = src;
+ this.sink = new DataSink (this.src, this.server, this.msg, this.seek);
+ this.src.done.connect ( () => {
+ this.end (false, KnownStatusCode.NONE);
+ });
+ this.src.error.connect ( (error) => {
+ if (error is DataSourceError.SEEK_FAILED) {
+ this.end (false,
+ KnownStatusCode.REQUESTED_RANGE_NOT_SATISFIABLE);
+ } else {
+ this.end (false, KnownStatusCode.NONE);
+ }
+ });
if (this.cancellable != null) {
this.cancellable.cancelled.connect (this.on_cancelled);
@@ -75,7 +90,6 @@ internal class Rygel.HTTPResponse : GLib.Object, Rygel.StateMachine {
this.msg.response_body.set_accumulate (false);
- this.prepare_pipeline ("RygelHTTPGstResponse", src);
this.server.weak_ref (this.on_server_weak_ref);
this.unref_soup_server = true;
}
@@ -87,30 +101,22 @@ internal class Rygel.HTTPResponse : GLib.Object, Rygel.StateMachine {
}
public async void run () {
- // Only bother attempting to seek if the offset is greater than zero.
- if (this.seek != null) {
- this.pipeline.set_state (State.PAUSED);
- } else {
- this.pipeline.set_state (State.PLAYING);
- }
-
this.run_continue = run.callback;
+ try {
+ this.src.start (this.seek);
+ } catch (Error error) {
+ Idle.add (() => {
+ this.end (false, KnownStatusCode.NONE);
- yield;
- }
-
- public void push_data (uint8[] data) {
- this.msg.response_body.append (Soup.MemoryUse.COPY, data);
+ return false;
+ });
+ }
- this.server.unpause_message (this.msg);
+ yield;
}
public virtual void end (bool aborted, uint status) {
- var sink = this.pipeline.get_by_name (HTTPGstSink.NAME) as HTTPGstSink;
- sink.cancellable.cancel ();
-
- this.pipeline.set_state (State.NULL);
- Source.remove (this.bus_watch_id);
+ this.src.stop ();
var encoding = this.msg.response_headers.get_encoding ();
@@ -138,167 +144,4 @@ internal class Rygel.HTTPResponse : GLib.Object, Rygel.StateMachine {
this.unref_soup_server = false;
this.cancellable.cancel ();
}
-
- private void prepare_pipeline (string name, Element src) throws Error {
- var sink = new HTTPGstSink (this);
-
- this.pipeline = new Pipeline (name);
- assert (this.pipeline != null);
-
- this.pipeline.add_many (src, sink);
-
- if (src.numsrcpads == 0) {
- // Seems source uses dynamic pads, link when pad available
- src.pad_added.connect (this.src_pad_added);
- } else {
- // static pads? easy!
- if (!src.link (sink)) {
- throw new GstError.LINK (_("Failed to link %s to %s"),
- src.name,
- sink.name);
- }
- }
-
- // Bus handler
- var bus = this.pipeline.get_bus ();
- this.bus_watch_id = bus.add_watch (this.bus_handler);
- }
-
- private void src_pad_added (Element src, Pad src_pad) {
- var caps = src_pad.get_caps_reffed ();
-
- var sink = this.pipeline.get_by_name (HTTPGstSink.NAME);
- Pad sink_pad;
-
- dynamic Element depay = GstUtils.get_rtp_depayloader (caps);
- if (depay != null) {
- this.pipeline.add (depay);
- if (!depay.link (sink)) {
- critical (_("Failed to link %s to %s"),
- depay.name,
- sink.name);
-
- this.end (false, KnownStatusCode.NONE);
-
- return;
- }
-
- sink_pad = depay.get_compatible_pad (src_pad, caps);
- } else {
- sink_pad = sink.get_compatible_pad (src_pad, caps);
- }
-
- if (src_pad.link (sink_pad) != PadLinkReturn.OK) {
- critical (_("Failed to link pad %s to %s"),
- src_pad.name,
- sink_pad.name);
- this.end (false, KnownStatusCode.NONE);
-
- return;
- }
-
- if (depay != null) {
- depay.sync_state_with_parent ();
- }
- }
-
- private bool bus_handler (Gst.Bus bus, Gst.Message message) {
- bool ret = true;
-
- if (message.type == MessageType.EOS) {
- ret = false;
- } else if (message.type == MessageType.STATE_CHANGED) {
- if (message.src != this.pipeline) {
- return true;
- }
- State old_state;
- State new_state;
-
- message.parse_state_changed (out old_state,
- out new_state,
- null);
- if (old_state == State.NULL && new_state == State.READY) {
- dynamic Element element = this.pipeline.get_by_name ("muxer");
- if (element != null) {
- var name = element.get_factory ().get_name ();
- // Awesome gross hack, really.
- if (name == "mp4mux") {
- element.streamable = true;
- element.fragment_duration = 1000;
- }
- }
- }
-
- if (this.seek != null) {
- if (old_state == State.READY && new_state == State.PAUSED) {
- if (this.perform_seek ()) {
- this.pipeline.set_state (State.PLAYING);
- }
- }
- }
- } else {
- GLib.Error err;
- string err_msg;
-
- if (message.type == MessageType.ERROR) {
- message.parse_error (out err, out err_msg);
- critical (_("Error from pipeline %s: %s"),
- this.pipeline.name,
- err_msg);
-
- ret = false;
- } else if (message.type == MessageType.WARNING) {
- message.parse_warning (out err, out err_msg);
- warning (_("Warning from pipeline %s: %s"),
- this.pipeline.name,
- err_msg);
- }
- }
-
- // If pipeline state didn't change due to the request being cancelled,
- // end this request. Otherwise it was already ended.
- if (!ret) {
- Idle.add_full (this.priority, () => {
- if (!this.cancellable.is_cancelled ()) {
- this.end (false, KnownStatusCode.NONE);
- }
-
- return false;
- });
- }
-
- return ret;
- }
-
- private bool perform_seek () {
- var stop_type = Gst.SeekType.NONE;
- Format format;
-
- if (this.seek is HTTPTimeSeek) {
- format = Format.TIME;
-
- } else {
- format = Format.BYTES;
- }
-
- if (this.seek.stop > 0) {
- stop_type = Gst.SeekType.SET;
- }
-
- if (!this.pipeline.seek (1.0,
- format,
- SeekFlags.FLUSH | SeekFlags.ACCURATE,
- Gst.SeekType.SET,
- this.seek.start,
- stop_type,
- this.seek.stop + 1)) {
- warning (_("Failed to seek to offset %lld"), this.seek.start);
-
- this.end (false, KnownStatusCode.REQUESTED_RANGE_NOT_SATISFIABLE);
-
- return false;
- }
-
- return true;
- }
}
diff --git a/src/librygel-server/rygel-http-seek.vala b/src/librygel-server/rygel-http-seek.vala
index a8577349..670816b1 100644
--- a/src/librygel-server/rygel-http-seek.vala
+++ b/src/librygel-server/rygel-http-seek.vala
@@ -1,8 +1,10 @@
/*
* Copyright (C) 2008-2009 Nokia Corporation.
+ * Copyright (C) 2012 Intel Corporation.
*
* Author: Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* <zeeshan.ali@nokia.com>
+ * Jens Georg <jensg@openismus.com>
*
* This file is part of Rygel.
*
@@ -21,12 +23,12 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-internal errordomain Rygel.HTTPSeekError {
+public errordomain Rygel.HTTPSeekError {
INVALID_RANGE = Soup.KnownStatusCode.BAD_REQUEST,
OUT_OF_RANGE = Soup.KnownStatusCode.REQUESTED_RANGE_NOT_SATISFIABLE,
}
-internal abstract class Rygel.HTTPSeek : GLib.Object {
+public abstract class Rygel.HTTPSeek : GLib.Object {
public Soup.Message msg { get; private set; }
// These are either number of bytes or microseconds
diff --git a/src/librygel-server/rygel-http-transcode-handler.vala b/src/librygel-server/rygel-http-transcode-handler.vala
index b4746e70..f4bbc533 100644
--- a/src/librygel-server/rygel-http-transcode-handler.vala
+++ b/src/librygel-server/rygel-http-transcode-handler.vala
@@ -1,8 +1,10 @@
/*
* Copyright (C) 2009 Nokia Corporation.
+ * Copyright (C) 2012 Intel Corporation.
*
* Author: Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* <zeeshan.ali@nokia.com>
+ * Jens Georg <jensg@openismus.com>
*
* This file is part of Rygel.
*
@@ -57,13 +59,14 @@ internal class Rygel.HTTPTranscodeHandler : HTTPGetHandler {
throw new HTTPRequestError.NOT_FOUND (_("Not found"));
}
- try {
+/* try {
src = this.transcoder.create_source (item, src);
return new HTTPResponse (request, this, src);
} catch (GLib.Error err) {
throw new HTTPRequestError.NOT_FOUND (err.message);
- }
+ }*/
+ throw new HTTPRequestError.NOT_FOUND ("Transcoding temporarily disabled");
}
protected override DIDLLiteResource add_resource (DIDLLiteItem didl_item,
diff --git a/src/librygel-server/rygel-media-engine.vala b/src/librygel-server/rygel-media-engine.vala
index 04e374fc..5bbe6c2d 100644
--- a/src/librygel-server/rygel-media-engine.vala
+++ b/src/librygel-server/rygel-media-engine.vala
@@ -77,4 +77,12 @@ public abstract class Rygel.MediaEngine : GLib.Object {
* @return A list of #Transcoder<!-- -->s or null if not supported.
*/
public abstract unowned List<Transcoder>? get_transcoders ();
+
+ /**
+ * Get a data source for the URI.
+ *
+ * @param uri to create the data source for.
+ * @return A data source representing the uri
+ */
+ public abstract DataSource create_data_source (string uri);
}
diff --git a/src/librygel-server/rygel-media-item.vala b/src/librygel-server/rygel-media-item.vala
index d43c2ae7..82200d9a 100644
--- a/src/librygel-server/rygel-media-item.vala
+++ b/src/librygel-server/rygel-media-item.vala
@@ -24,7 +24,6 @@
*/
using GUPnP;
-using Gst;
private errordomain Rygel.MediaItemError {
BAD_URI
@@ -103,24 +102,22 @@ public abstract class Rygel.MediaItem : MediaObject {
// Live media items need to provide a nice working implementation of this
// method if they can/do not provide a valid URI
- public virtual Element? create_stream_source (string? host_ip = null) {
- dynamic Element src = null;
-
- if (this.uris.size != 0) {
- string translated_uri = this.uris.get (0);
- if (host_ip != null) {
- try {
- translated_uri = this.address_regex.replace_literal
- (this.uris.get (0), -1, 0, host_ip);
- } catch (Error error) {
- assert_not_reached ();
- }
- }
+ public virtual DataSource? create_stream_source (string? host_ip = null) {
+ if (this.uris.size == 0) {
+ return null;
+ }
- src = GstUtils.create_source_for_uri (translated_uri);
+ string translated_uri = this.uris.get (0);
+ if (host_ip != null) {
+ try {
+ translated_uri = this.address_regex.replace_literal
+ (this.uris.get (0), -1, 0, host_ip);
+ } catch (Error error) {
+ assert_not_reached ();
+ }
}
- return src;
+ return MediaEngine.get_default ().create_data_source (translated_uri);
}
public bool is_live_stream () {
diff --git a/src/librygel-server/rygel-transcoder.vala b/src/librygel-server/rygel-transcoder.vala
index 64d3a143..cc0e2fdf 100644
--- a/src/librygel-server/rygel-transcoder.vala
+++ b/src/librygel-server/rygel-transcoder.vala
@@ -23,8 +23,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-using Gst;
using GUPnP;
+using Gst;
/**
* The base Transcoder class. Each implementation derives from it and must
diff --git a/src/plugins/gst-launch/rygel-gst-launch-audio-item.vala b/src/plugins/gst-launch/rygel-gst-launch-audio-item.vala
index 81e3eaa7..e8472912 100644
--- a/src/plugins/gst-launch/rygel-gst-launch-audio-item.vala
+++ b/src/plugins/gst-launch/rygel-gst-launch-audio-item.vala
@@ -5,6 +5,7 @@
* Author: Thijs Vermeir <thijsvermeir@gmail.com>
* Author: Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* <zeeshan.ali@nokia.com>
+ * Jens Georg <jensg@openismus.com>
*
* This file is part of Rygel.
*
@@ -42,7 +43,7 @@ public class Rygel.GstLaunch.AudioItem : Rygel.AudioItem, Item {
this.launch_line = launch_line;
}
- public override Element? create_stream_source (string? host_ip) {
- return this.create_source ();
+ public override DataSource? create_stream_source (string? host_ip) {
+ return new GstDataSource.from_element (this.create_source ());
}
}
diff --git a/src/plugins/gst-launch/rygel-gst-launch-video-item.vala b/src/plugins/gst-launch/rygel-gst-launch-video-item.vala
index b25900cf..7b7f2a41 100644
--- a/src/plugins/gst-launch/rygel-gst-launch-video-item.vala
+++ b/src/plugins/gst-launch/rygel-gst-launch-video-item.vala
@@ -1,10 +1,12 @@
/*
* Copyright (C) 2009 Thijs Vermeir <thijsvermeir@gmail.com>
* Copyright (C) 2010 Nokia Corporation.
+ * Copyright (C) 2012 Intel Corporation.
*
* Author: Thijs Vermeir <thijsvermeir@gmail.com>
* Author: Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* <zeeshan.ali@nokia.com>
+ * Jens Georg <jensg@openismus.com>
*
* This file is part of Rygel.
*
@@ -42,7 +44,7 @@ public class Rygel.GstLaunch.VideoItem : Rygel.VideoItem, Item {
this.launch_line = launch_line;
}
- public override Element? create_stream_source (string? host_ip) {
- return this.create_source ();
+ public override DataSource? create_stream_source (string? host_ip) {
+ return new GstDataSource.from_element (this.create_source ());
}
}
diff --git a/src/plugins/test/rygel-test-audio-item.vala b/src/plugins/test/rygel-test-audio-item.vala
index 9a27c8a0..021ececf 100644
--- a/src/plugins/test/rygel-test-audio-item.vala
+++ b/src/plugins/test/rygel-test-audio-item.vala
@@ -1,9 +1,11 @@
/*
* Copyright (C) 2008 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>.
* Copyright (C) 2008 Nokia Corporation.
+ * Copyright (C) 2012 Intel Corporation.
*
* Author: Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* <zeeshan.ali@nokia.com>
+ * Jens Georg <jensg@openismus.com>
*
* This file is part of Rygel.
*
@@ -37,9 +39,11 @@ public class Rygel.Test.AudioItem : Rygel.AudioItem {
this.mime_type = TEST_MIMETYPE;
}
- public override Element? create_stream_source (string? host_ip) {
+ public override DataSource? create_stream_source (string? host_ip) {
try {
- return parse_bin_from_description (PIPELINE, true);
+ var element = parse_bin_from_description (PIPELINE, true);
+
+ return new GstDataSource.from_element (element);
} catch (Error err) {
warning ("Required plugin missing (%s)", err.message);
diff --git a/src/plugins/test/rygel-test-video-item.vala b/src/plugins/test/rygel-test-video-item.vala
index 237f9435..991a488c 100644
--- a/src/plugins/test/rygel-test-video-item.vala
+++ b/src/plugins/test/rygel-test-video-item.vala
@@ -1,9 +1,11 @@
/*
* Copyright (C) 2008 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>.
* Copyright (C) 2008 Nokia Corporation.
+ * Copyright (C) 2012 Intel Corporation.
*
* Author: Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* <zeeshan.ali@nokia.com>
+ * Jens Georg <jensg@openismus.com>
*
* This file is part of Rygel.
*
@@ -39,9 +41,11 @@ public class Rygel.Test.VideoItem : Rygel.VideoItem {
this.mime_type = TEST_MIMETYPE;
}
- public override Element? create_stream_source (string? host_ip) {
+ public override DataSource? create_stream_source (string? host_ip) {
try {
- return parse_bin_from_description (PIPELINE, true);
+ var element = parse_bin_from_description (PIPELINE, true);
+
+ return new GstDataSource.from_element (element);
} catch (Error err) {
warning ("Required plugin missing (%s)", err.message);