Add a test for the previous fix
[glib.git] / gio / gactiongroupexporter.c
blobcc33d361a0af5f4f09ab08689af04a15dee883c5
1 /*
2 * Copyright © 2010 Codethink Limited
3 * Copyright © 2011 Canonical Limited
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU Lesser General Public License as published
7 * by the Free Software Foundation; either version 2 of the licence or (at
8 * 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, write to the
17 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 * Boston, MA 02111-1307, USA.
20 * Authors: Ryan Lortie <desrt@desrt.ca>
23 #include "config.h"
25 #include "gactiongroupexporter.h"
27 #include "gdbusmethodinvocation.h"
28 #include "gremoteactiongroup.h"
29 #include "gdbusintrospection.h"
30 #include "gdbusconnection.h"
31 #include "gactiongroup.h"
32 #include "gdbuserror.h"
34 /**
35 * SECTION:gactiongroupexporter
36 * @title: GActionGroup exporter
37 * @short_description: Export GActionGroups on D-Bus
38 * @see_also: #GActionGroup, #GDBusActionGroup
40 * These functions support exporting a #GActionGroup on D-Bus.
41 * The D-Bus interface that is used is a private implementation
42 * detail.
44 * To access an exported #GActionGroup remotely, use
45 * g_dbus_action_group_get() to obtain a #GDBusActionGroup.
48 G_GNUC_INTERNAL GVariant *
49 g_action_group_describe_action (GActionGroup *action_group,
50 const gchar *name)
52 const GVariantType *type;
53 GVariantBuilder builder;
54 gboolean enabled;
55 GVariant *state;
57 g_variant_builder_init (&builder, G_VARIANT_TYPE ("(bgav)"));
59 enabled = g_action_group_get_action_enabled (action_group, name);
60 g_variant_builder_add (&builder, "b", enabled);
62 if ((type = g_action_group_get_action_parameter_type (action_group, name)))
64 gchar *str = g_variant_type_dup_string (type);
65 g_variant_builder_add (&builder, "g", str);
66 g_free (str);
68 else
69 g_variant_builder_add (&builder, "g", "");
71 g_variant_builder_open (&builder, G_VARIANT_TYPE ("av"));
72 if ((state = g_action_group_get_action_state (action_group, name)))
74 g_variant_builder_add (&builder, "v", state);
75 g_variant_unref (state);
77 g_variant_builder_close (&builder);
79 return g_variant_builder_end (&builder);
82 /* Using XML saves us dozens of relocations vs. using the introspection
83 * structure types. We only need to burn cycles and memory if we
84 * actually use the exporter -- not in every single app using GIO.
86 * It's also a lot easier to read. :)
88 * For documentation of this interface, see
89 * http://live.gnome.org/GTK+/GApplication-dbus-apis
91 const char org_gtk_Actions_xml[] =
92 "<node>"
93 " <interface name='org.gtk.Actions'>"
94 " <method name='List'>"
95 " <arg type='as' name='list' direction='out'/>"
96 " </method>"
97 " <method name='Describe'>"
98 " <arg type='s' name='action_name' direction='in'/>"
99 " <arg type='(bgav)' name='description' direction='out'/>"
100 " </method>"
101 " <method name='DescribeAll'>"
102 " <arg type='a{s(bgav)}' name='descriptions' direction='out'/>"
103 " </method>"
104 " <method name='Activate'>"
105 " <arg type='s' name='action_name' direction='in'/>"
106 " <arg type='av' name='parameter' direction='in'/>"
107 " <arg type='a{sv}' name='platform_data' direction='in'/>"
108 " </method>"
109 " <method name='SetState'>"
110 " <arg type='s' name='action_name' direction='in'/>"
111 " <arg type='v' name='value' direction='in'/>"
112 " <arg type='a{sv}' name='platform_data' direction='in'/>"
113 " </method>"
114 " <signal name='Changed'>"
115 " <arg type='as' name='removals'/>"
116 " <arg type='a{sb}' name='enable_changes'/>"
117 " <arg type='a{sv}' name='state_changes'/>"
118 " <arg type='a{s(bgav)}' name='additions'/>"
119 " </signal>"
120 " </interface>"
121 "</node>";
123 static GDBusInterfaceInfo *org_gtk_Actions;
125 typedef struct
127 GActionGroup *action_group;
128 GDBusConnection *connection;
129 GMainContext *context;
130 gchar *object_path;
131 GHashTable *pending_changes;
132 GSource *pending_source;
133 } GActionGroupExporter;
135 #define ACTION_ADDED_EVENT (1u<<0)
136 #define ACTION_REMOVED_EVENT (1u<<1)
137 #define ACTION_STATE_CHANGED_EVENT (1u<<2)
138 #define ACTION_ENABLED_CHANGED_EVENT (1u<<3)
140 static gboolean
141 g_action_group_exporter_dispatch_events (gpointer user_data)
143 GActionGroupExporter *exporter = user_data;
144 GVariantBuilder removes;
145 GVariantBuilder enabled_changes;
146 GVariantBuilder state_changes;
147 GVariantBuilder adds;
148 GHashTableIter iter;
149 gpointer value;
150 gpointer key;
152 g_variant_builder_init (&removes, G_VARIANT_TYPE_STRING_ARRAY);
153 g_variant_builder_init (&enabled_changes, G_VARIANT_TYPE ("a{sb}"));
154 g_variant_builder_init (&state_changes, G_VARIANT_TYPE ("a{sv}"));
155 g_variant_builder_init (&adds, G_VARIANT_TYPE ("a{s(bgav)}"));
157 g_hash_table_iter_init (&iter, exporter->pending_changes);
158 while (g_hash_table_iter_next (&iter, &key, &value))
160 guint events = GPOINTER_TO_INT (value);
161 const gchar *name = key;
163 /* Adds and removes are incompatible with enabled or state
164 * changes, but we must report at least one event.
166 g_assert (((events & (ACTION_ENABLED_CHANGED_EVENT | ACTION_STATE_CHANGED_EVENT)) == 0) !=
167 ((events & (ACTION_REMOVED_EVENT | ACTION_ADDED_EVENT)) == 0));
169 if (events & ACTION_REMOVED_EVENT)
170 g_variant_builder_add (&removes, "s", name);
172 if (events & ACTION_ENABLED_CHANGED_EVENT)
174 gboolean enabled;
176 enabled = g_action_group_get_action_enabled (exporter->action_group, name);
177 g_variant_builder_add (&enabled_changes, "{sb}", name, enabled);
180 if (events & ACTION_STATE_CHANGED_EVENT)
182 GVariant *state;
184 state = g_action_group_get_action_state (exporter->action_group, name);
185 g_variant_builder_add (&state_changes, "{sv}", name, state);
186 g_variant_unref (state);
189 if (events & ACTION_ADDED_EVENT)
191 GVariant *description;
193 description = g_action_group_describe_action (exporter->action_group, name);
194 g_variant_builder_add (&adds, "{s@(bgav)}", name, description);
198 g_hash_table_remove_all (exporter->pending_changes);
200 g_dbus_connection_emit_signal (exporter->connection, NULL, exporter->object_path,
201 "org.gtk.Actions", "Changed",
202 g_variant_new ("(asa{sb}a{sv}a{s(bgav)})",
203 &removes, &enabled_changes,
204 &state_changes, &adds),
205 NULL);
207 exporter->pending_source = NULL;
209 return FALSE;
212 static guint
213 g_action_group_exporter_get_events (GActionGroupExporter *exporter,
214 const gchar *name)
216 return (gsize) g_hash_table_lookup (exporter->pending_changes, name);
219 static void
220 g_action_group_exporter_set_events (GActionGroupExporter *exporter,
221 const gchar *name,
222 guint events)
224 gboolean have_events;
225 gboolean is_queued;
227 if (events != 0)
228 g_hash_table_insert (exporter->pending_changes, g_strdup (name), GINT_TO_POINTER (events));
229 else
230 g_hash_table_remove (exporter->pending_changes, name);
232 have_events = g_hash_table_size (exporter->pending_changes) > 0;
233 is_queued = exporter->pending_source != NULL;
235 if (have_events && !is_queued)
237 GSource *source;
239 source = g_idle_source_new ();
240 exporter->pending_source = source;
241 g_source_set_callback (source, g_action_group_exporter_dispatch_events, exporter, NULL);
242 g_source_attach (source, exporter->context);
243 g_source_unref (source);
246 if (!have_events && is_queued)
248 g_source_destroy (exporter->pending_source);
249 exporter->pending_source = NULL;
253 static void
254 g_action_group_exporter_action_added (GActionGroup *action_group,
255 const gchar *action_name,
256 gpointer user_data)
258 GActionGroupExporter *exporter = user_data;
259 guint event_mask;
261 event_mask = g_action_group_exporter_get_events (exporter, action_name);
263 /* The action is new, so we should not have any pending
264 * enabled-changed or state-changed signals for it.
266 g_assert (~event_mask & (ACTION_STATE_CHANGED_EVENT |
267 ACTION_ENABLED_CHANGED_EVENT));
269 event_mask |= ACTION_ADDED_EVENT;
271 g_action_group_exporter_set_events (exporter, action_name, event_mask);
274 static void
275 g_action_group_exporter_action_removed (GActionGroup *action_group,
276 const gchar *action_name,
277 gpointer user_data)
279 GActionGroupExporter *exporter = user_data;
280 guint event_mask;
282 event_mask = g_action_group_exporter_get_events (exporter, action_name);
284 /* If the add event for this is still queued then just cancel it since
285 * it's gone now.
287 * If the event was freshly added, there should not have been any
288 * enabled or state changed events.
290 if (event_mask & ACTION_ADDED_EVENT)
292 g_assert (~event_mask & ~(ACTION_STATE_CHANGED_EVENT | ACTION_ENABLED_CHANGED_EVENT));
293 event_mask &= ~ACTION_ADDED_EVENT;
296 /* Otherwise, queue a remove event. Drop any state or enabled changes
297 * that were queued before the remove. */
298 else
300 event_mask |= ACTION_REMOVED_EVENT;
301 event_mask &= ~(ACTION_STATE_CHANGED_EVENT | ACTION_ENABLED_CHANGED_EVENT);
304 g_action_group_exporter_set_events (exporter, action_name, event_mask);
307 static void
308 g_action_group_exporter_action_state_changed (GActionGroup *action_group,
309 const gchar *action_name,
310 GVariant *value,
311 gpointer user_data)
313 GActionGroupExporter *exporter = user_data;
314 guint event_mask;
316 event_mask = g_action_group_exporter_get_events (exporter, action_name);
318 /* If it was removed, it must have been added back. Otherwise, why
319 * are we hearing about changes?
321 g_assert (~event_mask & ACTION_REMOVED_EVENT ||
322 event_mask & ACTION_ADDED_EVENT);
324 /* If it is freshly added, don't also bother with the state change
325 * signal since the updated state will be sent as part of the pending
326 * add message.
328 if (~event_mask & ACTION_ADDED_EVENT)
329 event_mask |= ACTION_STATE_CHANGED_EVENT;
331 g_action_group_exporter_set_events (exporter, action_name, event_mask);
334 static void
335 g_action_group_exporter_action_enabled_changed (GActionGroup *action_group,
336 const gchar *action_name,
337 gboolean enabled,
338 gpointer user_data)
340 GActionGroupExporter *exporter = user_data;
341 guint event_mask;
343 event_mask = g_action_group_exporter_get_events (exporter, action_name);
345 /* Reasoning as above. */
346 g_assert (~event_mask & ACTION_REMOVED_EVENT ||
347 event_mask & ACTION_ADDED_EVENT);
349 if (~event_mask & ACTION_ADDED_EVENT)
350 event_mask |= ACTION_ENABLED_CHANGED_EVENT;
352 g_action_group_exporter_set_events (exporter, action_name, event_mask);
355 static void
356 org_gtk_Actions_method_call (GDBusConnection *connection,
357 const gchar *sender,
358 const gchar *object_path,
359 const gchar *interface_name,
360 const gchar *method_name,
361 GVariant *parameters,
362 GDBusMethodInvocation *invocation,
363 gpointer user_data)
365 GActionGroupExporter *exporter = user_data;
366 GVariant *result = NULL;
368 if (g_str_equal (method_name, "List"))
370 gchar **list;
372 list = g_action_group_list_actions (exporter->action_group);
373 result = g_variant_new ("(^as)", list);
374 g_strfreev (list);
377 else if (g_str_equal (method_name, "Describe"))
379 const gchar *name;
380 GVariant *desc;
382 g_variant_get (parameters, "(&s)", &name);
383 desc = g_action_group_describe_action (exporter->action_group, name);
384 result = g_variant_new ("(@(bgav))", desc);
387 else if (g_str_equal (method_name, "DescribeAll"))
389 GVariantBuilder builder;
390 gchar **list;
391 gint i;
393 list = g_action_group_list_actions (exporter->action_group);
394 g_variant_builder_init (&builder, G_VARIANT_TYPE ("a{s(bgav)}"));
395 for (i = 0; list[i]; i++)
397 const gchar *name = list[i];
398 GVariant *description;
400 description = g_action_group_describe_action (exporter->action_group, name);
401 g_variant_builder_add (&builder, "{s@(bgav)}", name, description);
403 result = g_variant_new ("(a{s(bgav)})", &builder);
404 g_strfreev (list);
407 else if (g_str_equal (method_name, "Activate"))
409 GVariant *parameter = NULL;
410 GVariant *platform_data;
411 GVariantIter *iter;
412 const gchar *name;
414 g_variant_get (parameters, "(&sav@a{sv})", &name, &iter, &platform_data);
415 g_variant_iter_next (iter, "v", &parameter);
416 g_variant_iter_free (iter);
418 if (G_IS_REMOTE_ACTION_GROUP (exporter->action_group))
419 g_remote_action_group_activate_action_full (G_REMOTE_ACTION_GROUP (exporter->action_group),
420 name, parameter, platform_data);
421 else
422 g_action_group_activate_action (exporter->action_group, name, parameter);
424 if (parameter)
425 g_variant_unref (parameter);
427 g_variant_unref (platform_data);
430 else if (g_str_equal (method_name, "SetState"))
432 GVariant *platform_data;
433 const gchar *name;
434 GVariant *state;
436 g_variant_get (parameters, "(&sv@a{sv})", &name, &state, &platform_data);
438 if (G_IS_REMOTE_ACTION_GROUP (exporter->action_group))
439 g_remote_action_group_change_action_state_full (G_REMOTE_ACTION_GROUP (exporter->action_group),
440 name, state, platform_data);
441 else
442 g_action_group_change_action_state (exporter->action_group, name, state);
444 g_variant_unref (platform_data);
445 g_variant_unref (state);
448 else
449 g_assert_not_reached ();
451 g_dbus_method_invocation_return_value (invocation, result);
454 static void
455 g_action_group_exporter_free (gpointer user_data)
457 GActionGroupExporter *exporter = user_data;
459 g_signal_handlers_disconnect_by_func (exporter->action_group,
460 g_action_group_exporter_action_added, exporter);
461 g_signal_handlers_disconnect_by_func (exporter->action_group,
462 g_action_group_exporter_action_enabled_changed, exporter);
463 g_signal_handlers_disconnect_by_func (exporter->action_group,
464 g_action_group_exporter_action_state_changed, exporter);
465 g_signal_handlers_disconnect_by_func (exporter->action_group,
466 g_action_group_exporter_action_removed, exporter);
468 g_hash_table_unref (exporter->pending_changes);
469 if (exporter->pending_source)
470 g_source_destroy (exporter->pending_source);
472 g_main_context_unref (exporter->context);
473 g_object_unref (exporter->connection);
474 g_object_unref (exporter->action_group);
475 g_free (exporter->object_path);
477 g_slice_free (GActionGroupExporter, exporter);
481 * g_dbus_connection_export_action_group:
482 * @connection: a #GDBusConnection
483 * @object_path: a D-Bus object path
484 * @action_group: a #GActionGroup
485 * @error: a pointer to a %NULL #GError, or %NULL
487 * Exports @action_group on @connection at @object_path.
489 * The implemented D-Bus API should be considered private. It is
490 * subject to change in the future.
492 * A given object path can only have one action group exported on it.
493 * If this constraint is violated, the export will fail and 0 will be
494 * returned (with @error set accordingly).
496 * You can unexport the action group using
497 * g_dbus_connection_unexport_action_group() with the return value of
498 * this function.
500 * The thread default main context is taken at the time of this call.
501 * All incoming action activations and state change requests are
502 * reported from this context. Any changes on the action group that
503 * cause it to emit signals must also come from this same context.
504 * Since incoming action activations and state change requests are
505 * rather likely to cause changes on the action group, this effectively
506 * limits a given action group to being exported from only one main
507 * context.
509 * Returns: the ID of the export (never zero), or 0 in case of failure
511 * Since: 2.32
513 guint
514 g_dbus_connection_export_action_group (GDBusConnection *connection,
515 const gchar *object_path,
516 GActionGroup *action_group,
517 GError **error)
519 const GDBusInterfaceVTable vtable = {
520 org_gtk_Actions_method_call
522 GActionGroupExporter *exporter;
523 guint id;
525 if G_UNLIKELY (org_gtk_Actions == NULL)
527 GError *error = NULL;
528 GDBusNodeInfo *info;
530 info = g_dbus_node_info_new_for_xml (org_gtk_Actions_xml, &error);
531 if G_UNLIKELY (info == NULL)
532 g_error ("%s", error->message);
533 org_gtk_Actions = g_dbus_node_info_lookup_interface (info, "org.gtk.Actions");
534 g_assert (org_gtk_Actions != NULL);
535 g_dbus_interface_info_ref (org_gtk_Actions);
536 g_dbus_node_info_unref (info);
539 exporter = g_slice_new (GActionGroupExporter);
540 id = g_dbus_connection_register_object (connection, object_path, org_gtk_Actions, &vtable,
541 exporter, g_action_group_exporter_free, error);
543 if (id == 0)
545 g_slice_free (GActionGroupExporter, exporter);
546 return 0;
549 exporter->context = g_main_context_ref_thread_default ();
550 exporter->pending_changes = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
551 exporter->pending_source = NULL;
552 exporter->action_group = g_object_ref (action_group);
553 exporter->connection = g_object_ref (connection);
554 exporter->object_path = g_strdup (object_path);
556 g_signal_connect (action_group, "action-added",
557 G_CALLBACK (g_action_group_exporter_action_added), exporter);
558 g_signal_connect (action_group, "action-removed",
559 G_CALLBACK (g_action_group_exporter_action_removed), exporter);
560 g_signal_connect (action_group, "action-state-changed",
561 G_CALLBACK (g_action_group_exporter_action_state_changed), exporter);
562 g_signal_connect (action_group, "action-enabled-changed",
563 G_CALLBACK (g_action_group_exporter_action_enabled_changed), exporter);
565 return id;
569 * g_dbus_connection_unexport_action_group:
570 * @connection: a #GDBusConnection
571 * @export_id: the ID from g_dbus_connection_export_action_group()
573 * Reverses the effect of a previous call to
574 * g_dbus_connection_export_action_group().
576 * It is an error to call this function with an ID that wasn't returned
577 * from g_dbus_connection_export_action_group() or to call it with the
578 * same ID more than once.
580 * Since: 2.32
582 void
583 g_dbus_connection_unexport_action_group (GDBusConnection *connection,
584 guint export_id)
586 g_dbus_connection_unregister_object (connection, export_id);