rygel r484 - trunk/src/plugins/tracker
- From: zeeshanak svn gnome org
- To: svn-commits-list gnome org
- Subject: rygel r484 - trunk/src/plugins/tracker
- Date: Wed, 28 Jan 2009 12:32:29 +0000 (UTC)
Author: zeeshanak
Date: Wed Jan 28 12:32:29 2009
New Revision: 484
URL: http://svn.gnome.org/viewvc/rygel?rev=484&view=rev
Log:
get_children_from_db returns children objects rather than paths.
Modified:
trunk/src/plugins/tracker/rygel-tracker-container.vala
Modified: trunk/src/plugins/tracker/rygel-tracker-container.vala
==============================================================================
--- trunk/src/plugins/tracker/rygel-tracker-container.vala (original)
+++ trunk/src/plugins/tracker/rygel-tracker-container.vala Wed Jan 28 12:32:29 2009
@@ -24,6 +24,7 @@
using Rygel;
using GUPnP;
using DBus;
+using Gee;
/**
* Represents Tracker category.
@@ -116,39 +117,40 @@
public uint add_children_from_db (DIDLLiteWriter didl_writer,
uint offset,
uint max_count,
- out uint child_count) {
- string[] children;
+ out uint child_count)
+ throws GLib.Error {
+ ArrayList<MediaItem> children;
children = this.get_children_from_db (offset,
max_count,
out child_count);
- if (children == null)
- return 0;
/* Iterate through all items */
- for (uint i = 0; i < children.length; i++)
- this.add_item_from_db (didl_writer, children[i]);
+ for (int i = 0; i < children.size; i++) {
+ children[i].serialize (didl_writer);
+ }
- return children.length;
+ return children.size;
}
- private string[]? get_children_from_db (uint offset,
+ private ArrayList<MediaItem> get_children_from_db (
+ uint offset,
uint max_count,
- out uint child_count) {
- string[] children = null;
-
+ out uint child_count)
+ throws GLib.Error {
+ ArrayList<MediaItem> children = new ArrayList<MediaItem> ();
child_count = this.get_children_count ();
- try {
- children =
+ string[] child_paths =
TrackerContainer.files.GetByServiceType (0,
this.category,
(int) offset,
(int) max_count);
- } catch (GLib.Error error) {
- critical ("error: %s", error.message);
- return null;
+ /* Iterate through all items */
+ for (uint i = 0; i < child_paths.length; i++) {
+ MediaItem item = this.get_item_from_db (child_paths[i]);
+ children.add (item);
}
return children;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]