2 * this file is part of evince, a gnome document viewer
4 * Copyright (C) 2009 Carlos Garcia Campos <carlosgc@gnome.org>
5 * Copyright © 2010 Christian Persch
7 * Evince is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * Evince is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
25 #include <glib/gstdio.h>
28 #include <sys/types.h>
34 #define EV_DBUS_DAEMON_NAME "org.gnome.evince.Daemon"
35 #define EV_DBUS_DAEMON_INTERFACE_NAME "org.gnome.evince.Daemon"
36 #define EV_DBUS_DAEMON_OBJECT_PATH "/org/gnome/evince/Daemon"
38 #define DAEMON_TIMEOUT (30) /* seconds */
40 #define LOG g_printerr
42 static GList *ev_daemon_docs = NULL;
43 static guint kill_timer_id;
52 ev_doc_free (EvDoc *doc)
57 g_free (doc->dbus_name);
60 g_bus_unwatch_name (doc->watch_id);
66 ev_daemon_find_doc (const gchar *uri)
70 for (l = ev_daemon_docs; l != NULL; l = l->next) {
71 EvDoc *doc = (EvDoc *)l->data;
73 if (strcmp (doc->uri, uri) == 0)
81 ev_daemon_stop_killtimer (void)
83 if (kill_timer_id != 0)
84 g_source_remove (kill_timer_id);
89 ev_daemon_shutdown (gpointer user_data)
91 GMainLoop *loop = (GMainLoop *) user_data;
93 LOG ("Timeout; exiting daemon.\n");
95 if (g_main_loop_is_running (loop))
96 g_main_loop_quit (loop);
102 ev_daemon_maybe_start_killtimer (gpointer data)
104 ev_daemon_stop_killtimer ();
105 if (ev_daemon_docs != NULL)
108 kill_timer_id = g_timeout_add_seconds (DAEMON_TIMEOUT,
109 (GSourceFunc) ev_daemon_shutdown,
114 convert_metadata (const gchar *metadata)
119 GFileAttributeInfoList *namespaces;
120 gboolean supported = FALSE;
121 GError *error = NULL;
124 /* If metadata is not supported for a local file
125 * is likely because and old gvfs version is running.
127 file = g_file_new_for_path (metadata);
128 namespaces = g_file_query_writable_namespaces (file, NULL, NULL);
132 for (i = 0; i < namespaces->n_infos; i++) {
133 if (strcmp (namespaces->infos[i].name, "metadata") == 0) {
138 g_file_attribute_info_list_unref (namespaces);
141 g_warning ("GVFS metadata not supported. "
142 "Evince will run without metadata support.\n");
143 g_object_unref (file);
146 g_object_unref (file);
148 argv[0] = g_build_filename (LIBEXECDIR, "evince-convert-metadata", NULL);
149 argv[1] = (char *) metadata;
152 retval = g_spawn_sync (NULL /* wd */, argv, NULL /* env */,
153 0, NULL, NULL, NULL, NULL,
154 &exit_status, &error);
158 g_printerr ("Error migrating metadata: %s\n", error->message);
159 g_error_free (error);
162 return retval && WIFEXITED (exit_status) && WEXITSTATUS (exit_status) == 0;
166 ev_migrate_metadata (void)
171 const gchar *userdir;
173 userdir = g_getenv ("GNOME22_USER_DIR");
175 dot_dir = g_build_filename (userdir, "evince", NULL);
177 dot_dir = g_build_filename (g_get_home_dir (),
183 updated = g_build_filename (dot_dir, "migrated-to-gvfs", NULL);
184 if (g_file_test (updated, G_FILE_TEST_EXISTS)) {
185 /* Already migrated */
191 metadata = g_build_filename (dot_dir, "ev-metadata.xml", NULL);
192 if (g_file_test (metadata, G_FILE_TEST_EXISTS)) {
193 if (convert_metadata (metadata)) {
196 fd = g_creat (updated, 0600);
209 name_appeared_cb (GDBusConnection *connection,
211 const gchar *name_owner,
214 LOG ("Watch name'%s' appeared with owner '%s'\n", name, name_owner);
218 name_vanished_cb (GDBusConnection *connection,
224 LOG ("Watch name'%s' disappeared\n", name);
226 for (l = ev_daemon_docs; l != NULL; l = l->next) {
227 EvDoc *doc = (EvDoc *) l->data;
229 if (strcmp (doc->dbus_name, name) != 0)
232 LOG ("Watch found URI '%s' for name; removing\n", doc->uri);
234 ev_daemon_docs = g_list_delete_link (ev_daemon_docs, l);
237 ev_daemon_maybe_start_killtimer (user_data);
243 method_call_cb (GDBusConnection *connection,
245 const gchar *object_path,
246 const gchar *interface_name,
247 const gchar *method_name,
248 GVariant *parameters,
249 GDBusMethodInvocation *invocation,
252 if (g_strcmp0 (interface_name, EV_DBUS_DAEMON_INTERFACE_NAME) != 0)
255 if (g_strcmp0 (method_name, "RegisterDocument") == 0) {
259 g_variant_get (parameters, "(&s)", &uri);
261 doc = ev_daemon_find_doc (uri);
263 LOG ("RegisterDocument found owner '%s' for URI '%s'\n", doc->dbus_name, uri);
264 g_dbus_method_invocation_return_value (invocation,
265 g_variant_new ("(s)", doc->dbus_name));
269 ev_daemon_stop_killtimer ();
271 doc = g_new (EvDoc, 1);
272 doc->dbus_name = g_strdup (sender);
273 doc->uri = g_strdup (uri);
275 doc->watch_id = g_bus_watch_name_on_connection (connection,
277 G_BUS_NAME_WATCHER_FLAGS_NONE,
282 LOG ("RegisterDocument registered owner '%s' for URI '%s'\n", doc->dbus_name, uri);
283 ev_daemon_docs = g_list_prepend (ev_daemon_docs, doc);
285 g_dbus_method_invocation_return_value (invocation, g_variant_new ("(s)", ""));
286 } else if (g_strcmp0 (method_name, "UnregisterDocument") == 0) {
290 g_variant_get (parameters, "(&s)", &uri);
292 LOG ("UnregisterDocument URI '%s'\n", uri);
294 doc = ev_daemon_find_doc (uri);
296 LOG ("UnregisterDocument URI was not registered!\n");
297 g_dbus_method_invocation_return_error_literal (invocation,
299 G_DBUS_ERROR_INVALID_ARGS,
300 "URI not registered");
304 if (strcmp (doc->dbus_name, sender) != 0) {
305 LOG ("UnregisterDocument called by non-owner (owner '%s' sender '%s')\n",
306 doc->dbus_name, sender);
308 g_dbus_method_invocation_return_error_literal (invocation,
310 G_DBUS_ERROR_BAD_ADDRESS,
311 "Only owner can call this method");
315 ev_daemon_docs = g_list_remove (ev_daemon_docs, doc);
317 ev_daemon_maybe_start_killtimer (user_data);
319 g_dbus_method_invocation_return_value (invocation, g_variant_new ("()"));
323 static const char introspection_xml[] =
325 "<interface name='org.gnome.evince.Daemon'>"
326 "<method name='RegisterDocument'>"
327 "<arg type='s' name='uri' direction='in'/>"
328 "<arg type='s' name='owner' direction='out'/>"
330 "<method name='UnregisterDocument'>"
331 "<arg type='s' name='uri' direction='in'/>"
336 static const GDBusInterfaceVTable interface_vtable = {
342 static GDBusNodeInfo *introspection_data;
345 bus_acquired_cb (GDBusConnection *connection,
349 GMainLoop *loop = (GMainLoop *) user_data;
350 guint registration_id;
351 GError *error = NULL;
353 if (!introspection_data)
354 introspection_data = g_dbus_node_info_new_for_xml (introspection_xml, NULL);
356 registration_id = g_dbus_connection_register_object (connection,
357 EV_DBUS_DAEMON_OBJECT_PATH,
358 introspection_data->interfaces[0],
360 g_main_loop_ref (loop),
361 (GDestroyNotify) g_main_loop_unref,
363 if (registration_id == 0) {
364 g_printerr ("Failed to register object: %s\n", error->message);
365 g_error_free (error);
367 if (g_main_loop_is_running (loop))
368 g_main_loop_quit (loop);
373 name_acquired_cb (GDBusConnection *connection,
377 ev_migrate_metadata ();
379 ev_daemon_maybe_start_killtimer (user_data);
383 name_lost_cb (GDBusConnection *connection,
387 GMainLoop *loop = (GMainLoop *) user_data;
389 /* Failed to acquire the name; exit daemon */
390 if (g_main_loop_is_running (loop))
391 g_main_loop_quit (loop);
395 main (gint argc, gchar **argv)
400 g_set_prgname ("evince-daemon");
404 loop = g_main_loop_new (NULL, FALSE);
406 owner_id = g_bus_own_name (G_BUS_TYPE_SESSION,
408 G_BUS_NAME_OWNER_FLAGS_NONE,
412 g_main_loop_ref (loop),
413 (GDestroyNotify) g_main_loop_unref);
415 g_main_loop_run (loop);
417 g_bus_unown_name (owner_id);
419 g_main_loop_unref (loop);
420 if (introspection_data)
421 g_dbus_node_info_unref (introspection_data);
422 g_list_foreach (ev_daemon_docs, (GFunc)ev_doc_free, NULL);
423 g_list_free (ev_daemon_docs);