[tracker/wip/extract-graphs] examples/libtracker-extract: Fix mockup example's API usage
- From: Philip Van Hoof <pvanhoof src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [tracker/wip/extract-graphs] examples/libtracker-extract: Fix mockup example's API usage
- Date: Mon, 5 Sep 2011 15:54:34 +0000 (UTC)
commit 9f15857d5077ffe6aac110bc11264e38329a06d8
Author: Philip Van Hoof <philip codeminded be>
Date: Mon Sep 5 17:33:36 2011 +0200
examples/libtracker-extract: Fix mockup example's API usage
.../libtracker-extract/tracker-extract-mockup.c | 13 ++++++-------
1 files changed, 6 insertions(+), 7 deletions(-)
---
diff --git a/examples/libtracker-extract/tracker-extract-mockup.c b/examples/libtracker-extract/tracker-extract-mockup.c
index 50ec69d..f476861 100644
--- a/examples/libtracker-extract/tracker-extract-mockup.c
+++ b/examples/libtracker-extract/tracker-extract-mockup.c
@@ -27,11 +27,7 @@
#include <libtracker-sparql/tracker-sparql.h>
G_MODULE_EXPORT gboolean
-tracker_extract_get_metadata (const gchar *uri,
- const gchar *mimetype,
- TrackerSparqlBuilder *preupdate,
- TrackerSparqlBuilder *metadata,
- GString *where)
+tracker_extract_get_metadata (TrackerExtractInfo *info_)
{
/* NOTE: This function has to exist, tracker-extract checks
* the symbole table for this function and if it doesn't
@@ -73,10 +69,13 @@ tracker_extract_get_metadata (const gchar *uri,
gint track_number;
gint track_count;
guint32 duration;
+ TrackerSparqlBuilder *metadata, *preupdate;
- filename = g_filename_from_uri (uri, NULL, NULL);
+ metadata = tracker_extract_info_get_metadata_builder (info_);
+ preupdate = tracker_extract_info_get_preupdate_builder (info_);
- file = g_file_new_for_path (filename);
+ file = tracker_extract_info_get_file (info_);
+ filename = g_file_get_path (file);
info = g_file_query_info (file,
G_FILE_ATTRIBUTE_STANDARD_SIZE,
G_FILE_QUERY_INFO_NONE,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]