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>
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"
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
44 * To access an exported #GActionGroup remotely, use
45 * g_dbus_action_group_get() to obtain a #GDBusActionGroup.
49 g_action_group_describe_action (GActionGroup *action_group,
52 const GVariantType *type;
53 GVariantBuilder builder;
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);
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[] =
93 " <interface name='org.gtk.Actions'>"
94 " <method name='List'>"
95 " <arg type='as' name='list' direction='out'/>"
97 " <method name='Describe'>"
98 " <arg type='s' name='action_name' direction='in'/>"
99 " <arg type='(bgav)' name='description' direction='out'/>"
101 " <method name='DescribeAll'>"
102 " <arg type='a{s(bgav)}' name='descriptions' direction='out'/>"
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'/>"
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'/>"
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'/>"
123 static GDBusInterfaceInfo *org_gtk_Actions;
127 GActionGroup *action_group;
128 GDBusConnection *connection;
129 GMainContext *context;
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)
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;
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)
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)
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),
207 exporter->pending_source = NULL;
213 g_action_group_exporter_get_events (GActionGroupExporter *exporter,
216 return (gsize) g_hash_table_lookup (exporter->pending_changes, name);
220 g_action_group_exporter_set_events (GActionGroupExporter *exporter,
224 gboolean have_events;
228 g_hash_table_insert (exporter->pending_changes, g_strdup (name), GINT_TO_POINTER (events));
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)
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;
254 g_action_group_exporter_action_added (GActionGroup *action_group,
255 const gchar *action_name,
258 GActionGroupExporter *exporter = user_data;
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);
275 g_action_group_exporter_action_removed (GActionGroup *action_group,
276 const gchar *action_name,
279 GActionGroupExporter *exporter = user_data;
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
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. */
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);
308 g_action_group_exporter_action_state_changed (GActionGroup *action_group,
309 const gchar *action_name,
313 GActionGroupExporter *exporter = user_data;
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
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);
335 g_action_group_exporter_action_enabled_changed (GActionGroup *action_group,
336 const gchar *action_name,
340 GActionGroupExporter *exporter = user_data;
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);
356 org_gtk_Actions_method_call (GDBusConnection *connection,
358 const gchar *object_path,
359 const gchar *interface_name,
360 const gchar *method_name,
361 GVariant *parameters,
362 GDBusMethodInvocation *invocation,
365 GActionGroupExporter *exporter = user_data;
366 GVariant *result = NULL;
368 if (g_str_equal (method_name, "List"))
372 list = g_action_group_list_actions (exporter->action_group);
373 result = g_variant_new ("(^as)", list);
377 else if (g_str_equal (method_name, "Describe"))
382 g_variant_get (parameters, "(&s)", &name);
384 if (!g_action_group_has_action (exporter->action_group, name))
386 g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS,
387 "The named action ('%s') does not exist.", name);
391 desc = g_action_group_describe_action (exporter->action_group, name);
392 result = g_variant_new ("(@(bgav))", desc);
395 else if (g_str_equal (method_name, "DescribeAll"))
397 GVariantBuilder builder;
401 list = g_action_group_list_actions (exporter->action_group);
402 g_variant_builder_init (&builder, G_VARIANT_TYPE ("a{s(bgav)}"));
403 for (i = 0; list[i]; i++)
405 const gchar *name = list[i];
406 GVariant *description;
408 description = g_action_group_describe_action (exporter->action_group, name);
409 g_variant_builder_add (&builder, "{s@(bgav)}", name, description);
411 result = g_variant_new ("(a{s(bgav)})", &builder);
415 else if (g_str_equal (method_name, "Activate"))
417 GVariant *parameter = NULL;
418 GVariant *platform_data;
422 g_variant_get (parameters, "(&sav@a{sv})", &name, &iter, &platform_data);
423 g_variant_iter_next (iter, "v", ¶meter);
424 g_variant_iter_free (iter);
426 if (G_IS_REMOTE_ACTION_GROUP (exporter->action_group))
427 g_remote_action_group_activate_action_full (G_REMOTE_ACTION_GROUP (exporter->action_group),
428 name, parameter, platform_data);
430 g_action_group_activate_action (exporter->action_group, name, parameter);
433 g_variant_unref (parameter);
435 g_variant_unref (platform_data);
438 else if (g_str_equal (method_name, "SetState"))
440 GVariant *platform_data;
444 g_variant_get (parameters, "(&sv@a{sv})", &name, &state, &platform_data);
446 if (G_IS_REMOTE_ACTION_GROUP (exporter->action_group))
447 g_remote_action_group_change_action_state_full (G_REMOTE_ACTION_GROUP (exporter->action_group),
448 name, state, platform_data);
450 g_action_group_change_action_state (exporter->action_group, name, state);
452 g_variant_unref (platform_data);
453 g_variant_unref (state);
457 g_assert_not_reached ();
459 g_dbus_method_invocation_return_value (invocation, result);
463 g_action_group_exporter_free (gpointer user_data)
465 GActionGroupExporter *exporter = user_data;
467 g_signal_handlers_disconnect_by_func (exporter->action_group,
468 g_action_group_exporter_action_added, exporter);
469 g_signal_handlers_disconnect_by_func (exporter->action_group,
470 g_action_group_exporter_action_enabled_changed, exporter);
471 g_signal_handlers_disconnect_by_func (exporter->action_group,
472 g_action_group_exporter_action_state_changed, exporter);
473 g_signal_handlers_disconnect_by_func (exporter->action_group,
474 g_action_group_exporter_action_removed, exporter);
476 g_hash_table_unref (exporter->pending_changes);
477 if (exporter->pending_source)
478 g_source_destroy (exporter->pending_source);
480 g_main_context_unref (exporter->context);
481 g_object_unref (exporter->connection);
482 g_object_unref (exporter->action_group);
483 g_free (exporter->object_path);
485 g_slice_free (GActionGroupExporter, exporter);
489 * g_dbus_connection_export_action_group:
490 * @connection: a #GDBusConnection
491 * @object_path: a D-Bus object path
492 * @action_group: a #GActionGroup
493 * @error: a pointer to a %NULL #GError, or %NULL
495 * Exports @action_group on @connection at @object_path.
497 * The implemented D-Bus API should be considered private. It is
498 * subject to change in the future.
500 * A given object path can only have one action group exported on it.
501 * If this constraint is violated, the export will fail and 0 will be
502 * returned (with @error set accordingly).
504 * You can unexport the action group using
505 * g_dbus_connection_unexport_action_group() with the return value of
508 * The thread default main context is taken at the time of this call.
509 * All incoming action activations and state change requests are
510 * reported from this context. Any changes on the action group that
511 * cause it to emit signals must also come from this same context.
512 * Since incoming action activations and state change requests are
513 * rather likely to cause changes on the action group, this effectively
514 * limits a given action group to being exported from only one main
517 * Returns: the ID of the export (never zero), or 0 in case of failure
522 g_dbus_connection_export_action_group (GDBusConnection *connection,
523 const gchar *object_path,
524 GActionGroup *action_group,
527 const GDBusInterfaceVTable vtable = {
528 org_gtk_Actions_method_call
530 GActionGroupExporter *exporter;
533 if G_UNLIKELY (org_gtk_Actions == NULL)
535 GError *error = NULL;
538 info = g_dbus_node_info_new_for_xml (org_gtk_Actions_xml, &error);
539 if G_UNLIKELY (info == NULL)
540 g_error ("%s", error->message);
541 org_gtk_Actions = g_dbus_node_info_lookup_interface (info, "org.gtk.Actions");
542 g_assert (org_gtk_Actions != NULL);
543 g_dbus_interface_info_ref (org_gtk_Actions);
544 g_dbus_node_info_unref (info);
547 exporter = g_slice_new (GActionGroupExporter);
548 id = g_dbus_connection_register_object (connection, object_path, org_gtk_Actions, &vtable,
549 exporter, g_action_group_exporter_free, error);
553 g_slice_free (GActionGroupExporter, exporter);
557 exporter->context = g_main_context_ref_thread_default ();
558 exporter->pending_changes = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
559 exporter->pending_source = NULL;
560 exporter->action_group = g_object_ref (action_group);
561 exporter->connection = g_object_ref (connection);
562 exporter->object_path = g_strdup (object_path);
564 g_signal_connect (action_group, "action-added",
565 G_CALLBACK (g_action_group_exporter_action_added), exporter);
566 g_signal_connect (action_group, "action-removed",
567 G_CALLBACK (g_action_group_exporter_action_removed), exporter);
568 g_signal_connect (action_group, "action-state-changed",
569 G_CALLBACK (g_action_group_exporter_action_state_changed), exporter);
570 g_signal_connect (action_group, "action-enabled-changed",
571 G_CALLBACK (g_action_group_exporter_action_enabled_changed), exporter);
577 * g_dbus_connection_unexport_action_group:
578 * @connection: a #GDBusConnection
579 * @export_id: the ID from g_dbus_connection_export_action_group()
581 * Reverses the effect of a previous call to
582 * g_dbus_connection_export_action_group().
584 * It is an error to call this function with an ID that wasn't returned
585 * from g_dbus_connection_export_action_group() or to call it with the
586 * same ID more than once.
591 g_dbus_connection_unexport_action_group (GDBusConnection *connection,
594 g_dbus_connection_unregister_object (connection, export_id);