[rygel/wip/didl-s: 11/14] wip: DataSource for playlist XML data
- From: Jens Georg <jensgeorg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [rygel/wip/didl-s: 11/14] wip: DataSource for playlist XML data
- Date: Wed, 14 Nov 2012 11:34:49 +0000 (UTC)
commit 4abe2a442eeaa0c277dd3e77ef03bb647a7d43fa
Author: Jens Georg <jensg openismus com>
Date: Thu Nov 1 15:33:21 2012 +0100
wip: DataSource for playlist XML data
.../rygel-http-playlist-handler.vala | 79 +++++++++++++++++++-
1 files changed, 78 insertions(+), 1 deletions(-)
---
diff --git a/src/librygel-server/rygel-http-playlist-handler.vala b/src/librygel-server/rygel-http-playlist-handler.vala
index 915d143..8ee31a1 100644
--- a/src/librygel-server/rygel-http-playlist-handler.vala
+++ b/src/librygel-server/rygel-http-playlist-handler.vala
@@ -21,6 +21,74 @@
*/
using GUPnP;
+internal class Rygel.PlaylistDatasource : Rygel.DataSource, Object {
+ private MediaContainer container;
+ private uint8[] data;
+ private HTTPServer server;
+ private ClientHacks hacks;
+
+ public PlaylistDatasource (MediaContainer container,
+ HTTPServer server,
+ ClientHacks? hacks) {
+ this.container = container;
+ this.server = server;
+ this.hacks = hacks;
+ this.generate_data.begin ();
+ }
+
+ public signal void data_ready ();
+
+ public void start (HTTPSeek? offsets) throws Error {
+ if (this.data == null) {
+ this.data_ready.connect ( () => {
+ try {
+ this.start (offsets);
+ } catch (Error error) { }
+ });
+
+ return;
+ }
+
+ Idle.add ( () => {
+ this.data_available (this.data);
+ this.done ();
+ return false;
+ });
+ }
+
+ public void freeze () { }
+
+ public void thaw () { }
+
+ public void stop () { }
+
+ public async void generate_data () {
+ try {
+ var sort_criteria = this.container.sort_criteria;
+ var count = this.container.child_count;
+
+ var children = yield this.container.get_children (0,
+ count,
+ sort_criteria,
+ null);
+
+ if (children != null) {
+ debug ("Found %d children", children.size);
+ var serializer = new Serializer (SerializerType.DIDL_S);
+ children.serialize (serializer, this.server, this.hacks);
+
+ var xml = serializer.get_string ();
+
+ this.data = xml.data;
+ this.data_ready ();
+ }
+ } catch (Error error) {
+ warning ("COuld not generate playlist: %s", error.message);
+ this.error (error);
+ }
+ }
+}
+
internal class Rygel.HTTPPlaylistHandler : Rygel.HTTPGetHandler {
public HTTPPlaylistHandler (Cancellable? cancellable) {
this.cancellable = cancellable;
@@ -28,7 +96,16 @@ internal class Rygel.HTTPPlaylistHandler : Rygel.HTTPGetHandler {
public override HTTPResponse render_body (HTTPGet request)
throws HTTPRequestError {
- throw new HTTPRequestError.NOT_FOUND ("Not implemented yet");
+ try {
+ var source = new PlaylistDatasource
+ (request.object as MediaContainer,
+ request.http_server,
+ request.hack);
+
+ return new HTTPResponse (request,this, source);
+ } catch (Error error) {
+ throw new HTTPRequestError.NOT_FOUND (error.message);
+ }
}
protected override DIDLLiteResource add_resource (DIDLLiteItem didl_item,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]