rygel r54 - in trunk: . src
- From: zeeshanak svn gnome org
- To: svn-commits-list gnome org
- Subject: rygel r54 - in trunk: . src
- Date: Tue, 28 Oct 2008 20:59:14 +0000 (UTC)
Author: zeeshanak
Date: Tue Oct 28 20:59:14 2008
New Revision: 54
URL: http://svn.gnome.org/viewvc/rygel?rev=54&view=rev
Log:
Use the nice and clean DBus API that Vala provides us.
Modified:
trunk/ChangeLog
trunk/src/gupnp-media-tracker.vala
Modified: trunk/src/gupnp-media-tracker.vala
==============================================================================
--- trunk/src/gupnp-media-tracker.vala (original)
+++ trunk/src/gupnp-media-tracker.vala Tue Oct 28 20:59:14 2008
@@ -266,25 +266,20 @@
}
private uint get_container_children_count (Tracker.Container container) {
- /*string[][] array = null;
- GLib.Error error;
+ /*string[][] stats;
- if (!this.tracker.call ("GetStats",
- out error,
- Type.INVALID,
- typeof (string[][]), out array,
- Type.INVALID)) {
+ try {
+ stats = this.tracker.GetStats ();
+ } catch (GLib.Error error) {
critical ("error getting file list: %s", error.message);
return 0;
}
uint count = 0;
- for (uint i = 0; i < array.length; i++) {
- string[] stats = array[i];
-
- if (stats[0] == container.tracker_category)
- count = stats[1].to_int ();
+ for (uint i = 0; i < stats.length; i++) {
+ if (stats[i][0] == container.tracker_category)
+ count = stats[i][1].to_int ();
}
return count;*/
@@ -333,20 +328,19 @@
uint max_count,
out uint child_count) {
string[] children = null;
- GLib.Error error;
child_count = get_container_children_count (container);
- if (!this.files.call ("GetByServiceType",
- out error,
- typeof (int), 0,
- typeof (string), container.tracker_category,
- typeof (int), offset,
- typeof (int), max_count,
- Type.INVALID,
- typeof (string[]), out children,
- Type.INVALID))
- critical ("error getting file list: %s", error.message);
+ try {
+ children = this.files.GetByServiceType (0,
+ container.tracker_category,
+ (int) offset,
+ (int) max_count);
+ } catch (GLib.Error error) {
+ critical ("error: %s", error.message);
+
+ return null;
+ }
return children;
}
@@ -366,22 +360,16 @@
}
string[] values = null;
- GLib.Error error;
/* TODO: make this async */
- if (!this.metadata.call ("Get ",
- out error,
- typeof (string), parent.tracker_category,
- typeof (string), path,
- typeof (string[]), keys,
- Type.INVALID,
- typeof (string[]), out values,
- Type.INVALID)) {
- critical ("failed to get metadata for %s: %s\n",
- path,
- error.message);
+ try {
+ values = this.metadata.Get (parent.tracker_category, path, keys);
+ } catch (GLib.Error error) {
+ critical ("failed to get metadata for %s: %s\n",
+ path,
+ error.message);
- return false;
+ return false;
}
int width = -1;
@@ -469,30 +457,28 @@
}
private Tracker.Container? get_item_parent (string uri) {
- Tracker.Container container = null;
- char *category = null;
- GLib.Error error;
-
- if (!this.files.call ("GetServiceType",
- out error,
- typeof (string), uri,
- Type.INVALID,
- typeof (string), out category,
- Type.INVALID)) {
- critical ("failed to find service type for %s: %s",
- uri,
- error.message);
- } else {
- foreach (Tracker.Container tmp in this.containers) {
- if (tmp.tracker_category == category) {
- container = tmp;
-
- break;
- }
- }
- }
+ Tracker.Container container = null;
+ string category;
+
+ try {
+ category = this.files.GetServiceType (uri);
+ } catch (GLib.Error error) {
+ critical ("failed to find service type for %s: %s",
+ uri,
+ error.message);
- return container;
+ return null;
}
+
+ foreach (Tracker.Container tmp in this.containers) {
+ if (tmp.tracker_category == category) {
+ container = tmp;
+
+ break;
+ }
+ }
+
+ return container;
+ }
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]