aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-10-19 20:27:31 -0400
committerTed Gould <ted@gould.cx>2010-10-19 20:27:31 -0400
commited10f8df800d986575f90708d9569be0f3d0584b (patch)
treec65d474a6238b0720ce87f9bdb58b163e7b67d80
parent5bfdd2ae015a7af283f7d76c8c1facc76b69795a (diff)
parentccea5af6d5cce8bcb3a6f14fa8a4325708e0e71c (diff)
downloadlibayatana-appindicator-ed10f8df800d986575f90708d9569be0f3d0584b.tar.gz
libayatana-appindicator-ed10f8df800d986575f90708d9569be0f3d0584b.tar.bz2
libayatana-appindicator-ed10f8df800d986575f90708d9569be0f3d0584b.zip
* Upstream Merge
* A race fix on the dbus name
-rw-r--r--debian/changelog7
-rw-r--r--src/app-indicator.c23
2 files changed, 30 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
index 77dfe86..af36774 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+indicator-application (0.2.9-0ubuntu2~ppa2~race1) UNRELEASED; urgency=low
+
+ * Upstream Merge
+ * A race fix on the dbus name
+
+ -- Ted Gould <ted@ubuntu.com> Tue, 19 Oct 2010 20:27:00 -0400
+
indicator-application (0.2.9-0ubuntu2~ppa1) maverick; urgency=low
* Upstream Merge
diff --git a/src/app-indicator.c b/src/app-indicator.c
index 6511589..5a9e531 100644
--- a/src/app-indicator.c
+++ b/src/app-indicator.c
@@ -32,6 +32,8 @@ License version 3 and version 2.1 along with this program. If not, see
#endif
#include <dbus/dbus-glib.h>
+#include <dbus/dbus-glib-bindings.h>
+
#include <libdbusmenu-glib/server.h>
#include <libdbusmenu-gtk/client.h>
@@ -1052,6 +1054,22 @@ dbus_owner_change (DBusGProxy * proxy, const gchar * name, const gchar * prev, c
return;
}
+/* Checking to see if someone already has the name we're looking for */
+static void
+check_owner_cb (DBusGProxy *proxy, gboolean exists, GError *error, gpointer userdata)
+{
+ if (error != NULL) {
+ g_warning("Unable to check for '" NOTIFICATION_WATCHER_DBUS_ADDR "' on DBus. No worries, but concerning.");
+ return;
+ }
+
+ if (exists) {
+ dbus_owner_change(proxy, NOTIFICATION_WATCHER_DBUS_ADDR, NULL, "Non NULL", userdata);
+ }
+
+ return;
+}
+
/* This is an idle function to create the proxy. This is mostly
because start_fallback_timer can get called in the distruction
of a proxy and thus the proxy manager gets confused when creating
@@ -1074,6 +1092,11 @@ setup_name_owner_proxy (gpointer data)
G_TYPE_INVALID);
dbus_g_proxy_connect_signal(priv->dbus_proxy, "NameOwnerChanged",
G_CALLBACK(dbus_owner_change), data, NULL);
+
+ /* Check to see if anyone has the name we're looking for
+ just incase we missed it changing. */
+
+ org_freedesktop_DBus_name_has_owner_async(priv->dbus_proxy, NOTIFICATION_WATCHER_DBUS_ADDR, check_owner_cb, data);
}
return FALSE;