1 /* GDBus - GLib D-Bus Library
3 * Copyright (C) 2008-2010 Red Hat, Inc.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 * Author: David Zeuthen <davidz@redhat.com>
25 #include "gdbusutils.h"
26 #include "gdbusnameowning.h"
27 #include "gdbuserror.h"
28 #include "gdbusprivate.h"
29 #include "gdbusconnection.h"
34 * SECTION:gdbusnameowning
35 * @title: Owning Bus Names
36 * @short_description: Simple API for owning bus names
39 * Convenience API for owning bus names.
41 * A simple example for owning a name can be found in
42 * [gdbus-example-own-name.c](https://git.gnome.org/browse/glib/tree/gio/tests/gdbus-example-own-name.c)
45 G_LOCK_DEFINE_STATIC (lock);
47 /* ---------------------------------------------------------------------------------------------------- */
51 PREVIOUS_CALL_NONE = 0,
52 PREVIOUS_CALL_ACQUIRED,
58 volatile gint ref_count;
60 GBusNameOwnerFlags flags;
62 GBusAcquiredCallback bus_acquired_handler;
63 GBusNameAcquiredCallback name_acquired_handler;
64 GBusNameLostCallback name_lost_handler;
66 GDestroyNotify user_data_free_func;
67 GMainContext *main_context;
69 PreviousCall previous_call;
71 GDBusConnection *connection;
72 gulong disconnected_signal_handler_id;
73 guint name_acquired_subscription_id;
74 guint name_lost_subscription_id;
76 volatile gboolean cancelled; /* must hold lock when reading or modifying */
78 gboolean needs_release;
81 static guint next_global_id = 1;
82 static GHashTable *map_id_to_client = NULL;
86 client_ref (Client *client)
88 g_atomic_int_inc (&client->ref_count);
93 client_unref (Client *client)
95 if (g_atomic_int_dec_and_test (&client->ref_count))
97 if (client->connection != NULL)
99 if (client->disconnected_signal_handler_id > 0)
100 g_signal_handler_disconnect (client->connection, client->disconnected_signal_handler_id);
101 if (client->name_acquired_subscription_id > 0)
102 g_dbus_connection_signal_unsubscribe (client->connection, client->name_acquired_subscription_id);
103 if (client->name_lost_subscription_id > 0)
104 g_dbus_connection_signal_unsubscribe (client->connection, client->name_lost_subscription_id);
105 g_object_unref (client->connection);
107 g_main_context_unref (client->main_context);
108 g_free (client->name);
109 if (client->user_data_free_func != NULL)
110 client->user_data_free_func (client->user_data);
115 /* ---------------------------------------------------------------------------------------------------- */
120 CALL_TYPE_NAME_ACQUIRED,
128 /* keep this separate because client->connection may
129 * be set to NULL after scheduling the call
131 GDBusConnection *connection;
133 /* set to TRUE to call acquired */
138 call_handler_data_free (CallHandlerData *data)
140 if (data->connection != NULL)
141 g_object_unref (data->connection);
142 client_unref (data->client);
147 actually_do_call (Client *client, GDBusConnection *connection, CallType call_type)
151 case CALL_TYPE_NAME_ACQUIRED:
152 if (client->name_acquired_handler != NULL)
154 client->name_acquired_handler (connection,
160 case CALL_TYPE_NAME_LOST:
161 if (client->name_lost_handler != NULL)
163 client->name_lost_handler (connection,
170 g_assert_not_reached ();
176 call_in_idle_cb (gpointer _data)
178 CallHandlerData *data = _data;
179 actually_do_call (data->client, data->connection, data->call_type);
184 schedule_call_in_idle (Client *client, CallType call_type)
186 CallHandlerData *data;
187 GSource *idle_source;
189 data = g_new0 (CallHandlerData, 1);
190 data->client = client_ref (client);
191 data->connection = client->connection != NULL ? g_object_ref (client->connection) : NULL;
192 data->call_type = call_type;
194 idle_source = g_idle_source_new ();
195 g_source_set_priority (idle_source, G_PRIORITY_HIGH);
196 g_source_set_callback (idle_source,
199 (GDestroyNotify) call_handler_data_free);
200 g_source_set_name (idle_source, "[gio] call_in_idle_cb");
201 g_source_attach (idle_source, client->main_context);
202 g_source_unref (idle_source);
206 do_call (Client *client, CallType call_type)
208 GMainContext *current_context;
210 /* only schedule in idle if we're not in the right thread */
211 current_context = g_main_context_ref_thread_default ();
212 if (current_context != client->main_context)
213 schedule_call_in_idle (client, call_type);
215 actually_do_call (client, client->connection, call_type);
216 g_main_context_unref (current_context);
220 call_acquired_handler (Client *client)
223 if (client->previous_call != PREVIOUS_CALL_ACQUIRED)
225 client->previous_call = PREVIOUS_CALL_ACQUIRED;
226 if (!client->cancelled)
229 do_call (client, CALL_TYPE_NAME_ACQUIRED);
239 call_lost_handler (Client *client)
242 if (client->previous_call != PREVIOUS_CALL_LOST)
244 client->previous_call = PREVIOUS_CALL_LOST;
245 if (!client->cancelled)
248 do_call (client, CALL_TYPE_NAME_LOST);
257 /* ---------------------------------------------------------------------------------------------------- */
260 on_name_lost_or_acquired (GDBusConnection *connection,
261 const gchar *sender_name,
262 const gchar *object_path,
263 const gchar *interface_name,
264 const gchar *signal_name,
265 GVariant *parameters,
268 Client *client = user_data;
271 if (g_strcmp0 (object_path, "/org/freedesktop/DBus") != 0 ||
272 g_strcmp0 (interface_name, "org.freedesktop.DBus") != 0 ||
273 g_strcmp0 (sender_name, "org.freedesktop.DBus") != 0)
276 if (g_strcmp0 (signal_name, "NameLost") == 0)
278 g_variant_get (parameters, "(&s)", &name);
279 if (g_strcmp0 (name, client->name) == 0)
281 call_lost_handler (client);
284 else if (g_strcmp0 (signal_name, "NameAcquired") == 0)
286 g_variant_get (parameters, "(&s)", &name);
287 if (g_strcmp0 (name, client->name) == 0)
289 call_acquired_handler (client);
296 /* ---------------------------------------------------------------------------------------------------- */
299 process_request_name_reply (Client *client,
300 guint32 request_name_reply)
306 switch (request_name_reply)
308 case 1: /* DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER */
309 /* We got the name - now listen for NameLost and NameAcquired */
310 call_acquired_handler (client);
312 client->needs_release = TRUE;
315 case 2: /* DBUS_REQUEST_NAME_REPLY_IN_QUEUE */
316 /* Waiting in line - listen for NameLost and NameAcquired */
317 call_lost_handler (client);
319 client->needs_release = TRUE;
323 /* assume we couldn't get the name - explicit fallthrough */
324 case 3: /* DBUS_REQUEST_NAME_REPLY_EXISTS */
325 case 4: /* DBUS_REQUEST_NAME_REPLY_ALREADY_OWNER */
326 /* Some other part of the process is already owning the name */
327 call_lost_handler (client);
334 GDBusConnection *connection = NULL;
336 /* if cancelled, there is no point in subscribing to signals - if not, make sure
337 * we use a known good Connection object since it may be set to NULL at any point
338 * after being cancelled
341 if (!client->cancelled)
342 connection = g_object_ref (client->connection);
345 /* start listening to NameLost and NameAcquired messages */
346 if (connection != NULL)
348 client->name_lost_subscription_id =
349 g_dbus_connection_signal_subscribe (connection,
350 "org.freedesktop.DBus",
351 "org.freedesktop.DBus",
353 "/org/freedesktop/DBus",
355 G_DBUS_SIGNAL_FLAGS_NONE,
356 on_name_lost_or_acquired,
359 client->name_acquired_subscription_id =
360 g_dbus_connection_signal_subscribe (connection,
361 "org.freedesktop.DBus",
362 "org.freedesktop.DBus",
364 "/org/freedesktop/DBus",
366 G_DBUS_SIGNAL_FLAGS_NONE,
367 on_name_lost_or_acquired,
370 g_object_unref (connection);
375 /* ---------------------------------------------------------------------------------------------------- */
378 on_connection_disconnected (GDBusConnection *connection,
379 gboolean remote_peer_vanished,
383 Client *client = user_data;
385 if (client->disconnected_signal_handler_id > 0)
386 g_signal_handler_disconnect (client->connection, client->disconnected_signal_handler_id);
387 if (client->name_acquired_subscription_id > 0)
388 g_dbus_connection_signal_unsubscribe (client->connection, client->name_acquired_subscription_id);
389 if (client->name_lost_subscription_id > 0)
390 g_dbus_connection_signal_unsubscribe (client->connection, client->name_lost_subscription_id);
391 g_object_unref (client->connection);
392 client->disconnected_signal_handler_id = 0;
393 client->name_acquired_subscription_id = 0;
394 client->name_lost_subscription_id = 0;
395 client->connection = NULL;
397 call_lost_handler (client);
400 /* ---------------------------------------------------------------------------------------------------- */
403 has_connection (Client *client)
405 GError *error = NULL;
406 guint32 request_name_reply;
408 request_name_reply = 0;
410 /* listen for disconnection */
411 client->disconnected_signal_handler_id = g_signal_connect (client->connection,
413 G_CALLBACK (on_connection_disconnected),
415 /* attempt to acquire the name */
416 request_name_reply = g_dbus_request_name (client->connection, client->name, client->flags, &error);
417 g_assert_no_error (error);
419 process_request_name_reply (client, request_name_reply);
424 connection_get_cb (GObject *source_object,
428 Client *client = user_data;
430 /* must not do anything if already cancelled */
432 if (client->cancelled)
439 client->connection = g_bus_get_finish (res, NULL);
440 if (client->connection == NULL)
442 call_lost_handler (client);
446 /* No need to schedule this in idle as we're already in the thread
447 * that the user called g_bus_own_name() from. This is because
448 * g_bus_get() guarantees that.
450 * Also, we need to ensure that the handler is invoked *before*
451 * we call RequestName(). Otherwise there is a race.
453 if (client->bus_acquired_handler != NULL)
455 client->bus_acquired_handler (client->connection,
460 has_connection (client);
463 client_unref (client);
466 /* ---------------------------------------------------------------------------------------------------- */
469 * g_bus_own_name_on_connection:
470 * @connection: a #GDBusConnection
471 * @name: the well-known name to own
472 * @flags: a set of flags from the #GBusNameOwnerFlags enumeration
473 * @name_acquired_handler: (allow-none): handler to invoke when @name is acquired or %NULL
474 * @name_lost_handler: (allow-none): handler to invoke when @name is lost or %NULL
475 * @user_data: user data to pass to handlers
476 * @user_data_free_func: (allow-none): function for freeing @user_data or %NULL
478 * Like g_bus_own_name() but takes a #GDBusConnection instead of a
481 * Returns: an identifier (never 0) that an be used with
482 * g_bus_unown_name() to stop owning the name
487 g_bus_own_name_on_connection (GDBusConnection *connection,
489 GBusNameOwnerFlags flags,
490 GBusNameAcquiredCallback name_acquired_handler,
491 GBusNameLostCallback name_lost_handler,
493 GDestroyNotify user_data_free_func)
497 g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), 0);
498 g_return_val_if_fail (g_dbus_is_name (name) && !g_dbus_is_unique_name (name), 0);
502 client = g_new0 (Client, 1);
503 client->ref_count = 1;
504 client->id = next_global_id++; /* TODO: uh oh, handle overflow */
505 client->name = g_strdup (name);
506 client->flags = flags;
507 client->name_acquired_handler = name_acquired_handler;
508 client->name_lost_handler = name_lost_handler;
509 client->user_data = user_data;
510 client->user_data_free_func = user_data_free_func;
511 client->main_context = g_main_context_ref_thread_default ();
513 client->connection = g_object_ref (connection);
515 if (map_id_to_client == NULL)
517 map_id_to_client = g_hash_table_new (g_direct_hash, g_direct_equal);
519 g_hash_table_insert (map_id_to_client,
520 GUINT_TO_POINTER (client->id),
525 has_connection (client);
532 * @bus_type: the type of bus to own a name on
533 * @name: the well-known name to own
534 * @flags: a set of flags from the #GBusNameOwnerFlags enumeration
535 * @bus_acquired_handler: (allow-none): handler to invoke when connected to the bus of type @bus_type or %NULL
536 * @name_acquired_handler: (allow-none): handler to invoke when @name is acquired or %NULL
537 * @name_lost_handler: (allow-none): handler to invoke when @name is lost or %NULL
538 * @user_data: user data to pass to handlers
539 * @user_data_free_func: (allow-none): function for freeing @user_data or %NULL
541 * Starts acquiring @name on the bus specified by @bus_type and calls
542 * @name_acquired_handler and @name_lost_handler when the name is
543 * acquired respectively lost. Callbacks will be invoked in the
544 * [thread-default main context][g-main-context-push-thread-default]
545 * of the thread you are calling this function from.
547 * You are guaranteed that one of the @name_acquired_handler and @name_lost_handler
548 * callbacks will be invoked after calling this function - there are three
551 * - @name_lost_handler with a %NULL connection (if a connection to the bus
554 * - @bus_acquired_handler then @name_lost_handler (if the name can't be
557 * - @bus_acquired_handler then @name_acquired_handler (if the name was
560 * When you are done owning the name, just call g_bus_unown_name()
561 * with the owner id this function returns.
563 * If the name is acquired or lost (for example another application
564 * could acquire the name if you allow replacement or the application
565 * currently owning the name exits), the handlers are also invoked.
566 * If the #GDBusConnection that is used for attempting to own the name
567 * closes, then @name_lost_handler is invoked since it is no longer
568 * possible for other processes to access the process.
570 * You cannot use g_bus_own_name() several times for the same name (unless
571 * interleaved with calls to g_bus_unown_name()) - only the first call
574 * Another guarantee is that invocations of @name_acquired_handler
575 * and @name_lost_handler are guaranteed to alternate; that
576 * is, if @name_acquired_handler is invoked then you are
577 * guaranteed that the next time one of the handlers is invoked, it
578 * will be @name_lost_handler. The reverse is also true.
580 * If you plan on exporting objects (using e.g.
581 * g_dbus_connection_register_object()), note that it is generally too late
582 * to export the objects in @name_acquired_handler. Instead, you can do this
583 * in @bus_acquired_handler since you are guaranteed that this will run
584 * before @name is requested from the bus.
586 * This behavior makes it very simple to write applications that wants
587 * to [own names][gdbus-owning-names] and export objects.
588 * Simply register objects to be exported in @bus_acquired_handler and
589 * unregister the objects (if any) in @name_lost_handler.
591 * Returns: an identifier (never 0) that an be used with
592 * g_bus_unown_name() to stop owning the name.
597 g_bus_own_name (GBusType bus_type,
599 GBusNameOwnerFlags flags,
600 GBusAcquiredCallback bus_acquired_handler,
601 GBusNameAcquiredCallback name_acquired_handler,
602 GBusNameLostCallback name_lost_handler,
604 GDestroyNotify user_data_free_func)
608 g_return_val_if_fail (g_dbus_is_name (name) && !g_dbus_is_unique_name (name), 0);
612 client = g_new0 (Client, 1);
613 client->ref_count = 1;
614 client->id = next_global_id++; /* TODO: uh oh, handle overflow */
615 client->name = g_strdup (name);
616 client->flags = flags;
617 client->bus_acquired_handler = bus_acquired_handler;
618 client->name_acquired_handler = name_acquired_handler;
619 client->name_lost_handler = name_lost_handler;
620 client->user_data = user_data;
621 client->user_data_free_func = user_data_free_func;
622 client->main_context = g_main_context_ref_thread_default ();
624 if (map_id_to_client == NULL)
626 map_id_to_client = g_hash_table_new (g_direct_hash, g_direct_equal);
628 g_hash_table_insert (map_id_to_client,
629 GUINT_TO_POINTER (client->id),
635 client_ref (client));
643 GClosure *bus_acquired_closure;
644 GClosure *name_acquired_closure;
645 GClosure *name_lost_closure;
649 own_name_data_new (GClosure *bus_acquired_closure,
650 GClosure *name_acquired_closure,
651 GClosure *name_lost_closure)
655 data = g_new0 (OwnNameData, 1);
657 if (bus_acquired_closure != NULL)
659 data->bus_acquired_closure = g_closure_ref (bus_acquired_closure);
660 g_closure_sink (bus_acquired_closure);
661 if (G_CLOSURE_NEEDS_MARSHAL (bus_acquired_closure))
662 g_closure_set_marshal (bus_acquired_closure, g_cclosure_marshal_generic);
665 if (name_acquired_closure != NULL)
667 data->name_acquired_closure = g_closure_ref (name_acquired_closure);
668 g_closure_sink (name_acquired_closure);
669 if (G_CLOSURE_NEEDS_MARSHAL (name_acquired_closure))
670 g_closure_set_marshal (name_acquired_closure, g_cclosure_marshal_generic);
673 if (name_lost_closure != NULL)
675 data->name_lost_closure = g_closure_ref (name_lost_closure);
676 g_closure_sink (name_lost_closure);
677 if (G_CLOSURE_NEEDS_MARSHAL (name_lost_closure))
678 g_closure_set_marshal (name_lost_closure, g_cclosure_marshal_generic);
685 own_with_closures_on_bus_acquired (GDBusConnection *connection,
689 OwnNameData *data = user_data;
690 GValue params[2] = { G_VALUE_INIT, G_VALUE_INIT };
692 g_value_init (¶ms[0], G_TYPE_DBUS_CONNECTION);
693 g_value_set_object (¶ms[0], connection);
695 g_value_init (¶ms[1], G_TYPE_STRING);
696 g_value_set_string (¶ms[1], name);
698 g_closure_invoke (data->bus_acquired_closure, NULL, 2, params, NULL);
700 g_value_unset (params + 0);
701 g_value_unset (params + 1);
705 own_with_closures_on_name_acquired (GDBusConnection *connection,
709 OwnNameData *data = user_data;
710 GValue params[2] = { G_VALUE_INIT, G_VALUE_INIT };
712 g_value_init (¶ms[0], G_TYPE_DBUS_CONNECTION);
713 g_value_set_object (¶ms[0], connection);
715 g_value_init (¶ms[1], G_TYPE_STRING);
716 g_value_set_string (¶ms[1], name);
718 g_closure_invoke (data->name_acquired_closure, NULL, 2, params, NULL);
720 g_value_unset (params + 0);
721 g_value_unset (params + 1);
725 own_with_closures_on_name_lost (GDBusConnection *connection,
729 OwnNameData *data = user_data;
730 GValue params[2] = { G_VALUE_INIT, G_VALUE_INIT };
732 g_value_init (¶ms[0], G_TYPE_DBUS_CONNECTION);
733 g_value_set_object (¶ms[0], connection);
735 g_value_init (¶ms[1], G_TYPE_STRING);
736 g_value_set_string (¶ms[1], name);
738 g_closure_invoke (data->name_lost_closure, NULL, 2, params, NULL);
740 g_value_unset (params + 0);
741 g_value_unset (params + 1);
745 bus_own_name_free_func (gpointer user_data)
747 OwnNameData *data = user_data;
749 if (data->bus_acquired_closure != NULL)
750 g_closure_unref (data->bus_acquired_closure);
752 if (data->name_acquired_closure != NULL)
753 g_closure_unref (data->name_acquired_closure);
755 if (data->name_lost_closure != NULL)
756 g_closure_unref (data->name_lost_closure);
762 * g_bus_own_name_with_closures:
763 * @bus_type: the type of bus to own a name on
764 * @name: the well-known name to own
765 * @flags: a set of flags from the #GBusNameOwnerFlags enumeration
766 * @bus_acquired_closure: (allow-none): #GClosure to invoke when connected to
767 * the bus of type @bus_type or %NULL
768 * @name_acquired_closure: (allow-none): #GClosure to invoke when @name is
770 * @name_lost_closure: (allow-none): #GClosure to invoke when @name is lost or
773 * Version of g_bus_own_name() using closures instead of callbacks for
774 * easier binding in other languages.
776 * Returns: an identifier (never 0) that an be used with
777 * g_bus_unown_name() to stop owning the name.
779 * Rename to: g_bus_own_name
784 g_bus_own_name_with_closures (GBusType bus_type,
786 GBusNameOwnerFlags flags,
787 GClosure *bus_acquired_closure,
788 GClosure *name_acquired_closure,
789 GClosure *name_lost_closure)
791 return g_bus_own_name (bus_type,
794 bus_acquired_closure != NULL ? own_with_closures_on_bus_acquired : NULL,
795 name_acquired_closure != NULL ? own_with_closures_on_name_acquired : NULL,
796 name_lost_closure != NULL ? own_with_closures_on_name_lost : NULL,
797 own_name_data_new (bus_acquired_closure,
798 name_acquired_closure,
800 bus_own_name_free_func);
804 * g_bus_own_name_on_connection_with_closures:
805 * @connection: a #GDBusConnection
806 * @name: the well-known name to own
807 * @flags: a set of flags from the #GBusNameOwnerFlags enumeration
808 * @name_acquired_closure: (allow-none): #GClosure to invoke when @name is
810 * @name_lost_closure: (allow-none): #GClosure to invoke when @name is lost
813 * Version of g_bus_own_name_on_connection() using closures instead of
814 * callbacks for easier binding in other languages.
816 * Returns: an identifier (never 0) that an be used with
817 * g_bus_unown_name() to stop owning the name.
819 * Rename to: g_bus_own_name_on_connection
824 g_bus_own_name_on_connection_with_closures (GDBusConnection *connection,
826 GBusNameOwnerFlags flags,
827 GClosure *name_acquired_closure,
828 GClosure *name_lost_closure)
830 return g_bus_own_name_on_connection (connection,
833 name_acquired_closure != NULL ? own_with_closures_on_name_acquired : NULL,
834 name_lost_closure != NULL ? own_with_closures_on_name_lost : NULL,
835 own_name_data_new (NULL,
836 name_acquired_closure,
838 bus_own_name_free_func);
843 * @owner_id: an identifier obtained from g_bus_own_name()
845 * Stops owning a name.
850 g_bus_unown_name (guint owner_id)
854 g_return_if_fail (owner_id > 0);
859 if (owner_id == 0 || map_id_to_client == NULL ||
860 (client = g_hash_table_lookup (map_id_to_client, GUINT_TO_POINTER (owner_id))) == NULL)
862 g_warning ("Invalid id %d passed to g_bus_unown_name()", owner_id);
866 client->cancelled = TRUE;
867 g_warn_if_fail (g_hash_table_remove (map_id_to_client, GUINT_TO_POINTER (owner_id)));
872 /* do callback without holding lock */
875 /* Release the name if needed */
876 if (client->needs_release &&
877 client->connection != NULL &&
878 !g_dbus_connection_is_closed (client->connection))
880 guint32 release_name_reply;
885 /* TODO: it kinda sucks having to do a sync call to release the name - but if
886 * we don't, then a subsequent grab of the name will make the bus daemon return
887 * IN_QUEUE which will trigger name_lost().
889 * I believe this is a bug in the bus daemon.
892 release_name_reply = g_dbus_release_name (client->connection, client->name, &error);
893 if (release_name_reply == G_BUS_RELEASE_NAME_FLAGS_ERROR)
895 g_warning ("Error releasing name %s: %s", client->name, error->message);
896 g_error_free (error);
899 if (release_name_reply != G_BUS_RELEASE_NAME_FLAGS_RELEASED)
900 g_warning ("Unexpected reply %d when releasing name %s", release_name_reply, client->name);
903 if (client->disconnected_signal_handler_id > 0)
904 g_signal_handler_disconnect (client->connection, client->disconnected_signal_handler_id);
905 if (client->name_acquired_subscription_id > 0)
906 g_dbus_connection_signal_unsubscribe (client->connection, client->name_acquired_subscription_id);
907 if (client->name_lost_subscription_id > 0)
908 g_dbus_connection_signal_unsubscribe (client->connection, client->name_lost_subscription_id);
909 client->disconnected_signal_handler_id = 0;
910 client->name_acquired_subscription_id = 0;
911 client->name_lost_subscription_id = 0;
912 if (client->connection != NULL)
914 g_object_unref (client->connection);
915 client->connection = NULL;
918 client_unref (client);