[tracker/wip/carlosg/domain-ontologies: 21/21] tracker-extract: If there is a domain, set watch on it
- From: Carlos Garnacho <carlosg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [tracker/wip/carlosg/domain-ontologies: 21/21] tracker-extract: If there is a domain, set watch on it
- Date: Wed, 21 Jun 2017 19:50:25 +0000 (UTC)
commit 96572df869a588b8d4f7c4ecc32f46bf8db92608
Author: Carlos Garnacho <carlosg gnome org>
Date: Wed Jun 21 21:45:26 2017 +0200
tracker-extract: If there is a domain, set watch on it
And exit as soon as the name vanishes. It may safely continue
its operations on the next startup.
src/tracker-extract/tracker-main.c | 16 ++++++++++++++++
1 files changed, 16 insertions(+), 0 deletions(-)
---
diff --git a/src/tracker-extract/tracker-main.c b/src/tracker-extract/tracker-main.c
index 2bcfad4..3fd801b 100644
--- a/src/tracker-extract/tracker-main.c
+++ b/src/tracker-extract/tracker-main.c
@@ -300,6 +300,15 @@ run_standalone (TrackerConfig *config)
return EXIT_SUCCESS;
}
+static void
+on_domain_vanished (GDBusConnection *connection,
+ const gchar *name,
+ gpointer user_data)
+{
+ GMainLoop *loop = user_data;
+ g_main_loop_quit (loop);
+}
+
int
main (int argc, char *argv[])
{
@@ -441,6 +450,13 @@ main (int argc, char *argv[])
/* Main loop */
main_loop = g_main_loop_new (NULL, FALSE);
+ if (domain_ontology && domain_ontology_name) {
+ g_bus_watch_name_on_connection (connection, domain_ontology_name,
+ G_BUS_NAME_WATCHER_FLAGS_NONE,
+ NULL, on_domain_vanished,
+ main_loop, NULL);
+ }
+
initialize_signal_handler ();
g_main_loop_run (main_loop);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]