aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-10-29 17:18:51 -0500
committerTed Gould <ted@canonical.com>2009-10-29 17:18:51 -0500
commitfbba41584475d598deab170e12ba81b16f3601aa (patch)
treef8fac00cd3d44877d9607b015acf738b4ce3a8e3
parent82aaaed9788d56fa2739da70621e56f1e21ec0a8 (diff)
downloadlibayatana-indicator-fbba41584475d598deab170e12ba81b16f3601aa.tar.gz
libayatana-indicator-fbba41584475d598deab170e12ba81b16f3601aa.tar.bz2
libayatana-indicator-fbba41584475d598deab170e12ba81b16f3601aa.zip
Adding in the watchers and timeout parameter.
-rw-r--r--libindicator/indicator-service.c38
1 files changed, 35 insertions, 3 deletions
diff --git a/libindicator/indicator-service.c b/libindicator/indicator-service.c
index eef916b..cf02bac 100644
--- a/libindicator/indicator-service.c
+++ b/libindicator/indicator-service.c
@@ -2,11 +2,12 @@
#include "config.h"
#endif
#include <dbus/dbus-glib-bindings.h>
+#include <dbus/dbus-glib-lowlevel.h>
#include "indicator-service.h"
/* DBus Prototypes */
-void _indicator_service_server_watch (void);
+static gboolean _indicator_service_server_watch (IndicatorService * service, DBusGMethodInvocation * method);
#include "indicator-service-server.h"
#include "dbus-shared.h"
@@ -17,6 +18,8 @@ typedef struct _IndicatorServicePrivate IndicatorServicePrivate;
struct _IndicatorServicePrivate {
gchar * name;
DBusGProxy * dbus_proxy;
+ guint timeout;
+ GList * watchers;
};
/* Signals Stuff */
@@ -108,6 +111,8 @@ indicator_service_init (IndicatorService *self)
/* Get the private variables in a decent state */
priv->name = NULL;
priv->dbus_proxy = NULL;
+ priv->timeout = 0;
+ priv->watchers = NULL;
/* Start talkin' dbus */
GError * error = NULL;
@@ -146,6 +151,11 @@ indicator_service_dispose (GObject *object)
priv->dbus_proxy = NULL;
}
+ if (priv->timeout != 0) {
+ g_source_remove(priv->timeout);
+ priv->timeout = 0;
+ }
+
G_OBJECT_CLASS (indicator_service_parent_class)->dispose (object);
return;
}
@@ -155,10 +165,16 @@ indicator_service_finalize (GObject *object)
{
IndicatorServicePrivate * priv = INDICATOR_SERVICE_GET_PRIVATE(object);
- if (priv->name) {
+ if (priv->name != NULL) {
g_free(priv->name);
}
+ if (priv->watchers != NULL) {
+ g_list_foreach(priv->watchers, (GFunc)g_free, NULL);
+ g_list_free(priv->watchers);
+ priv->watchers = NULL;
+ }
+
G_OBJECT_CLASS (indicator_service_parent_class)->finalize (object);
return;
}
@@ -255,7 +271,23 @@ try_and_get_name (IndicatorService * service)
return;
}
-void _indicator_service_server_watch (void) { }
+static gboolean
+_indicator_service_server_watch (IndicatorService * service, DBusGMethodInvocation * method)
+{
+ g_return_val_if_fail(INDICATOR_IS_SERVICE(service), FALSE);
+ IndicatorServicePrivate * priv = INDICATOR_SERVICE_GET_PRIVATE(service);
+
+ priv->watchers = g_list_append(priv->watchers,
+ g_strdup(dbus_g_method_get_sender(method)));
+
+ if (priv->timeout != 0) {
+ g_source_remove(priv->timeout);
+ priv->timeout = 0;
+ }
+
+ dbus_g_method_return(method, 1);
+ return TRUE;
+}
/* API */