2 * Copyright © 2010 Codethink Limited
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License as published
6 * by the Free Software Foundation; either version 2 of the licence or (at
7 * your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General
15 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
17 * Authors: Ryan Lortie <desrt@desrt.ca>
23 #include "gapplication.h"
25 #include "gapplicationcommandline.h"
26 #include "gsimpleactiongroup.h"
27 #include "gremoteactiongroup.h"
28 #include "gapplicationimpl.h"
29 #include "gactiongroup.h"
30 #include "gactionmap.h"
31 #include "gmenumodel.h"
32 #include "gsettings.h"
33 #include "gnotification-private.h"
34 #include "gnotificationbackend.h"
35 #include "gdbusutils.h"
37 #include "gioenumtypes.h"
46 * SECTION:gapplication
47 * @title: GApplication
48 * @short_description: Core application class
51 * A #GApplication is the foundation of an application. It wraps some
52 * low-level platform-specific services and is intended to act as the
53 * foundation for higher-level application classes such as
54 * #GtkApplication or #MxApplication. In general, you should not use
55 * this class outside of a higher level framework.
57 * GApplication provides convenient life cycle management by maintaining
58 * a "use count" for the primary application instance. The use count can
59 * be changed using g_application_hold() and g_application_release(). If
60 * it drops to zero, the application exits. Higher-level classes such as
61 * #GtkApplication employ the use count to ensure that the application
62 * stays alive as long as it has any opened windows.
64 * Another feature that GApplication (optionally) provides is process
65 * uniqueness. Applications can make use of this functionality by
66 * providing a unique application ID. If given, only one application
67 * with this ID can be running at a time per session. The session
68 * concept is platform-dependent, but corresponds roughly to a graphical
69 * desktop login. When your application is launched again, its
70 * arguments are passed through platform communication to the already
71 * running program. The already running instance of the program is
72 * called the "primary instance"; for non-unique applications this is
73 * the always the current instance. On Linux, the D-Bus session bus
74 * is used for communication.
76 * The use of #GApplication differs from some other commonly-used
77 * uniqueness libraries (such as libunique) in important ways. The
78 * application is not expected to manually register itself and check
79 * if it is the primary instance. Instead, the main() function of a
80 * #GApplication should do very little more than instantiating the
81 * application instance, possibly connecting signal handlers, then
82 * calling g_application_run(). All checks for uniqueness are done
83 * internally. If the application is the primary instance then the
84 * startup signal is emitted and the mainloop runs. If the application
85 * is not the primary instance then a signal is sent to the primary
86 * instance and g_application_run() promptly returns. See the code
89 * If used, the expected form of an application identifier is very close
91 * [DBus bus name](http://dbus.freedesktop.org/doc/dbus-specification.html#message-protocol-names-interface).
92 * Examples include: "com.example.MyApp", "org.example.internal-apps.Calculator".
93 * For details on valid application identifiers, see g_application_id_is_valid().
95 * On Linux, the application identifier is claimed as a well-known bus name
96 * on the user's session bus. This means that the uniqueness of your
97 * application is scoped to the current session. It also means that your
98 * application may provide additional services (through registration of other
99 * object paths) at that bus name. The registration of these object paths
100 * should be done with the shared GDBus session bus. Note that due to the
101 * internal architecture of GDBus, method calls can be dispatched at any time
102 * (even if a main loop is not running). For this reason, you must ensure that
103 * any object paths that you wish to register are registered before #GApplication
104 * attempts to acquire the bus name of your application (which happens in
105 * g_application_register()). Unfortunately, this means that you cannot use
106 * g_application_get_is_remote() to decide if you want to register object paths.
108 * GApplication also implements the #GActionGroup and #GActionMap
109 * interfaces and lets you easily export actions by adding them with
110 * g_action_map_add_action(). When invoking an action by calling
111 * g_action_group_activate_action() on the application, it is always
112 * invoked in the primary instance. The actions are also exported on
113 * the session bus, and GIO provides the #GDBusActionGroup wrapper to
114 * conveniently access them remotely. GIO provides a #GDBusMenuModel wrapper
115 * for remote access to exported #GMenuModels.
117 * There is a number of different entry points into a GApplication:
119 * - via 'Activate' (i.e. just starting the application)
121 * - via 'Open' (i.e. opening some files)
123 * - by handling a command-line
125 * - via activating an action
127 * The #GApplication::startup signal lets you handle the application
128 * initialization for all of these in a single place.
130 * Regardless of which of these entry points is used to start the
131 * application, GApplication passes some "platform data from the
132 * launching instance to the primary instance, in the form of a
133 * #GVariant dictionary mapping strings to variants. To use platform
134 * data, override the @before_emit or @after_emit virtual functions
135 * in your #GApplication subclass. When dealing with
136 * #GApplicationCommandLine objects, the platform data is
137 * directly available via g_application_command_line_get_cwd(),
138 * g_application_command_line_get_environ() and
139 * g_application_command_line_get_platform_data().
141 * As the name indicates, the platform data may vary depending on the
142 * operating system, but it always includes the current directory (key
143 * "cwd"), and optionally the environment (ie the set of environment
144 * variables and their values) of the calling process (key "environ").
145 * The environment is only added to the platform data if the
146 * %G_APPLICATION_SEND_ENVIRONMENT flag is set. #GApplication subclasses
147 * can add their own platform data by overriding the @add_platform_data
148 * virtual function. For instance, #GtkApplication adds startup notification
151 * To parse commandline arguments you may handle the
152 * #GApplication::command-line signal or override the local_command_line()
153 * vfunc, to parse them in either the primary instance or the local instance,
156 * <example id="gapplication-example-open"><title>Opening files with a GApplication</title>
158 * <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" href="../../../../gio/tests/gapplication-example-open.c">
159 * <xi:fallback>FIXME: MISSING XINCLUDE CONTENT</xi:fallback>
164 * <example id="gapplication-example-actions"><title>A GApplication with actions</title>
166 * <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" href="../../../../gio/tests/gapplication-example-actions.c">
167 * <xi:fallback>FIXME: MISSING XINCLUDE CONTENT</xi:fallback>
172 * <example id="gapplication-example-dbushooks"><title>Using extra D-Bus hooks with a GApplication</title>
174 * <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" href="../../../../gio/tests/gapplication-example-dbushooks.c">
175 * <xi:fallback>FIXME: MISSING XINCLUDE CONTENT</xi:fallback>
183 * @startup: invoked on the primary instance immediately after registration
184 * @shutdown: invoked only on the registered primary instance immediately
185 * after the main loop terminates
186 * @activate: invoked on the primary instance when an activation occurs
187 * @open: invoked on the primary instance when there are files to open
188 * @command_line: invoked on the primary instance when a command-line is
189 * not handled locally
190 * @local_command_line: invoked (locally) when the process has been invoked
191 * via commandline execution (as opposed to, say, D-Bus activation - which
192 * is not currently supported by GApplication). The virtual function has
193 * the chance to inspect (and possibly replace) the list of command line
194 * arguments. See g_application_run() for more information.
195 * @before_emit: invoked on the primary instance before 'activate', 'open',
196 * 'command-line' or any action invocation, gets the 'platform data' from
197 * the calling instance
198 * @after_emit: invoked on the primary instance after 'activate', 'open',
199 * 'command-line' or any action invocation, gets the 'platform data' from
200 * the calling instance
201 * @add_platform_data: invoked (locally) to add 'platform data' to be sent to
202 * the primary instance when activating, opening or invoking actions
203 * @quit_mainloop: Used to be invoked on the primary instance when the use
204 * count of the application drops to zero (and after any inactivity
205 * timeout, if requested). Not used anymore since 2.32
206 * @run_mainloop: Used to be invoked on the primary instance from
207 * g_application_run() if the use-count is non-zero. Since 2.32,
208 * GApplication is iterating the main context directly and is not
209 * using @run_mainloop anymore
210 * @dbus_register: invoked locally during registration, if the application is
211 * using its D-Bus backend. You can use this to export extra objects on the
212 * bus, that need to exist before the application tries to own the bus name.
213 * The function is passed the #GDBusConnection to to session bus, and the
214 * object path that #GApplication will use to export is D-Bus API.
215 * If this function returns %TRUE, registration will proceed; otherwise
216 * registration will abort. Since: 2.34
217 * @dbus_unregister: invoked locally during unregistration, if the application
218 * is using its D-Bus backend. Use this to undo anything done by the
219 * @dbus_register vfunc. Since: 2.34
221 * Virtual function table for #GApplication.
226 struct _GApplicationPrivate
228 GApplicationFlags flags;
231 GActionGroup *actions;
232 GMenuModel *app_menu;
235 guint inactivity_timeout_id;
236 guint inactivity_timeout;
240 guint is_registered : 1;
242 guint did_startup : 1;
243 guint did_shutdown : 1;
244 guint must_quit_now : 1;
246 GRemoteActionGroup *remote_actions;
247 GApplicationImpl *impl;
249 GNotificationBackend *notifications;
251 /* GOptionContext support */
252 GOptionGroup *main_options;
253 GSList *option_groups;
254 GHashTable *packed_options;
255 gboolean options_parsed;
265 PROP_INACTIVITY_TIMEOUT,
277 SIGNAL_HANDLE_LOCAL_OPTIONS,
281 static guint g_application_signals[NR_SIGNALS];
283 static void g_application_action_group_iface_init (GActionGroupInterface *);
284 static void g_application_action_map_iface_init (GActionMapInterface *);
285 G_DEFINE_TYPE_WITH_CODE (GApplication, g_application, G_TYPE_OBJECT,
286 G_ADD_PRIVATE (GApplication)
287 G_IMPLEMENT_INTERFACE (G_TYPE_ACTION_GROUP, g_application_action_group_iface_init)
288 G_IMPLEMENT_INTERFACE (G_TYPE_ACTION_MAP, g_application_action_map_iface_init))
290 /* GApplicationExportedActions {{{1 */
292 /* We create a subclass of GSimpleActionGroup that implements
293 * GRemoteActionGroup and deals with the platform data using
294 * GApplication's before/after_emit vfuncs. This is the action group we
297 * We could implement GRemoteActionGroup on GApplication directly, but
298 * this would be potentially extremely confusing to have exposed as part
299 * of the public API of GApplication. We certainly don't want anyone in
300 * the same process to be calling these APIs...
302 typedef GSimpleActionGroupClass GApplicationExportedActionsClass;
305 GSimpleActionGroup parent_instance;
306 GApplication *application;
307 } GApplicationExportedActions;
309 static GType g_application_exported_actions_get_type (void);
310 static void g_application_exported_actions_iface_init (GRemoteActionGroupInterface *iface);
311 G_DEFINE_TYPE_WITH_CODE (GApplicationExportedActions, g_application_exported_actions, G_TYPE_SIMPLE_ACTION_GROUP,
312 G_IMPLEMENT_INTERFACE (G_TYPE_REMOTE_ACTION_GROUP, g_application_exported_actions_iface_init))
315 g_application_exported_actions_activate_action_full (GRemoteActionGroup *remote,
316 const gchar *action_name,
318 GVariant *platform_data)
320 GApplicationExportedActions *exported = (GApplicationExportedActions *) remote;
322 G_APPLICATION_GET_CLASS (exported->application)
323 ->before_emit (exported->application, platform_data);
325 g_action_group_activate_action (G_ACTION_GROUP (exported), action_name, parameter);
327 G_APPLICATION_GET_CLASS (exported->application)
328 ->after_emit (exported->application, platform_data);
332 g_application_exported_actions_change_action_state_full (GRemoteActionGroup *remote,
333 const gchar *action_name,
335 GVariant *platform_data)
337 GApplicationExportedActions *exported = (GApplicationExportedActions *) remote;
339 G_APPLICATION_GET_CLASS (exported->application)
340 ->before_emit (exported->application, platform_data);
342 g_action_group_change_action_state (G_ACTION_GROUP (exported), action_name, value);
344 G_APPLICATION_GET_CLASS (exported->application)
345 ->after_emit (exported->application, platform_data);
349 g_application_exported_actions_init (GApplicationExportedActions *actions)
354 g_application_exported_actions_iface_init (GRemoteActionGroupInterface *iface)
356 iface->activate_action_full = g_application_exported_actions_activate_action_full;
357 iface->change_action_state_full = g_application_exported_actions_change_action_state_full;
361 g_application_exported_actions_class_init (GApplicationExportedActionsClass *class)
365 static GActionGroup *
366 g_application_exported_actions_new (GApplication *application)
368 GApplicationExportedActions *actions;
370 actions = g_object_new (g_application_exported_actions_get_type (), NULL);
371 actions->application = application;
373 return G_ACTION_GROUP (actions);
376 /* Command line option handling {{{1 */
379 free_option_entry (gpointer data)
381 GOptionEntry *entry = data;
385 case G_OPTION_ARG_STRING:
386 case G_OPTION_ARG_FILENAME:
387 g_free (*(gchar **) entry->arg_data);
390 case G_OPTION_ARG_STRING_ARRAY:
391 case G_OPTION_ARG_FILENAME_ARRAY:
392 g_strfreev (*(gchar ***) entry->arg_data);
396 /* most things require no free... */
400 /* ...except for the space that we allocated for it ourselves */
401 g_free (entry->arg_data);
403 g_slice_free (GOptionEntry, entry);
407 g_application_pack_option_entries (GApplication *application,
413 g_hash_table_iter_init (&iter, application->priv->packed_options);
414 while (g_hash_table_iter_next (&iter, NULL, &item))
416 GOptionEntry *entry = item;
417 GVariant *value = NULL;
421 case G_OPTION_ARG_NONE:
422 if (*(gboolean *) entry->arg_data != 2)
423 value = g_variant_new_boolean (*(gboolean *) entry->arg_data);
426 case G_OPTION_ARG_STRING:
427 if (*(gchar **) entry->arg_data)
428 value = g_variant_new_string (*(gchar **) entry->arg_data);
431 case G_OPTION_ARG_INT:
432 if (*(gint32 *) entry->arg_data)
433 value = g_variant_new_int32 (*(gint32 *) entry->arg_data);
436 case G_OPTION_ARG_FILENAME:
437 if (*(gchar **) entry->arg_data)
438 value = g_variant_new_bytestring (*(gchar **) entry->arg_data);
441 case G_OPTION_ARG_STRING_ARRAY:
442 if (*(gchar ***) entry->arg_data)
443 value = g_variant_new_strv (*(const gchar ***) entry->arg_data, -1);
446 case G_OPTION_ARG_FILENAME_ARRAY:
447 if (*(gchar ***) entry->arg_data)
448 value = g_variant_new_bytestring_array (*(const gchar ***) entry->arg_data, -1);
451 case G_OPTION_ARG_DOUBLE:
452 if (*(gdouble *) entry->arg_data)
453 value = g_variant_new_double (*(gdouble *) entry->arg_data);
456 case G_OPTION_ARG_INT64:
457 if (*(gint64 *) entry->arg_data)
458 value = g_variant_new_int64 (*(gint64 *) entry->arg_data);
462 g_assert_not_reached ();
466 g_variant_dict_insert_value (dict, entry->long_name, value);
470 static GVariantDict *
471 g_application_parse_command_line (GApplication *application,
475 gboolean become_service = FALSE;
476 GVariantDict *dict = NULL;
477 GOptionContext *context;
479 /* Due to the memory management of GOptionGroup we can only parse
480 * options once. That's because once you add a group to the
481 * GOptionContext there is no way to get it back again. This is fine:
482 * local_command_line() should never get invoked more than once
483 * anyway. Add a sanity check just to be sure.
485 g_return_val_if_fail (!application->priv->options_parsed, NULL);
487 context = g_option_context_new (NULL);
489 /* Add the main option group, if it exists */
490 if (application->priv->main_options)
492 /* This consumes the main_options */
493 g_option_context_set_main_group (context, application->priv->main_options);
494 application->priv->main_options = NULL;
497 /* Add any other option groups if they exist. Adding them to the
498 * context will consume them, so we free the list as we go...
500 while (application->priv->option_groups)
502 g_option_context_add_group (context, application->priv->option_groups->data);
503 application->priv->option_groups = g_slist_delete_link (application->priv->option_groups,
504 application->priv->option_groups);
507 /* If the application has not registered local options and it has
508 * G_APPLICATION_HANDLES_COMMAND_LINE then we have to assume that
509 * their primary instance commandline handler may want to deal with
510 * the arguments. We must therefore ignore them.
512 if (application->priv->main_options == NULL && (application->priv->flags & G_APPLICATION_HANDLES_COMMAND_LINE))
513 g_option_context_set_ignore_unknown_options (context, TRUE);
515 /* In the case that we are not explicitly marked as a service or a
516 * launcher then we want to add the "--gapplication-service" option to
517 * allow the process to be made into a service.
519 if ((application->priv->flags & (G_APPLICATION_IS_SERVICE | G_APPLICATION_IS_LAUNCHER)) == 0)
521 GOptionGroup *option_group;
522 GOptionEntry entries[] = {
523 { "gapplication-service", '\0', 0, G_OPTION_ARG_NONE, &become_service,
524 N_("Enter GApplication service mode (use from D-Bus service files)") },
528 option_group = g_option_group_new ("gapplication",
529 _("GApplication options"), _("Show GApplication options"),
531 g_option_group_set_translation_domain (option_group, GETTEXT_PACKAGE);
532 g_option_group_add_entries (option_group, entries);
534 g_option_context_add_group (context, option_group);
537 /* Now we parse... */
538 if (!g_option_context_parse_strv (context, arguments, error))
541 /* Check for --gapplication-service */
543 application->priv->flags |= G_APPLICATION_IS_SERVICE;
545 dict = g_variant_dict_new (NULL);
546 if (application->priv->packed_options)
548 g_application_pack_option_entries (application, dict);
549 g_hash_table_unref (application->priv->packed_options);
550 application->priv->packed_options = NULL;
554 /* Make sure we don't run again */
555 application->priv->options_parsed = TRUE;
557 g_option_context_free (context);
563 add_packed_option (GApplication *application,
568 case G_OPTION_ARG_NONE:
569 entry->arg_data = g_new (gboolean, 1);
570 *(gboolean *) entry->arg_data = 2;
573 case G_OPTION_ARG_INT:
574 entry->arg_data = g_new0 (gint, 1);
577 case G_OPTION_ARG_STRING:
578 case G_OPTION_ARG_FILENAME:
579 case G_OPTION_ARG_STRING_ARRAY:
580 case G_OPTION_ARG_FILENAME_ARRAY:
581 entry->arg_data = g_new0 (gpointer, 1);
584 case G_OPTION_ARG_INT64:
585 entry->arg_data = g_new0 (gint64, 1);
588 case G_OPTION_ARG_DOUBLE:
589 entry->arg_data = g_new0 (gdouble, 1);
593 g_return_if_reached ();
596 if (!application->priv->packed_options)
597 application->priv->packed_options = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, free_option_entry);
599 g_hash_table_insert (application->priv->packed_options,
600 g_strdup (entry->long_name),
601 g_slice_dup (GOptionEntry, entry));
605 * g_application_add_main_option_entries:
606 * @application: a #GApplication
607 * @entries: a %NULL-terminated list of #GOptionEntrys
609 * Adds main option entries to be handled by @application.
611 * This function is comparable to g_option_context_add_main_entries().
613 * After the commandline arguments are parsed, the
614 * #GApplication::handle-local-options signal will be emitted. At this
615 * point, the application can inspect the values pointed to by @arg_data
616 * in the given #GOptionEntrys.
618 * Unlike #GOptionContext, #GApplication supports giving a %NULL
619 * @arg_data for a non-callback #GOptionEntry. This results in the
620 * argument in question being packed into a #GVariantDict which is also
621 * passed to #GApplication::handle-local-options, where it can be
622 * inspected and modified. If %G_APPLICATION_HANDLES_COMMAND_LINE is
623 * set, then the resulting dictionary is sent to the primary instance,
624 * where g_application_command_line_get_options_dict() will return it.
625 * This "packing" is done according to the type of the argument --
626 * booleans for normal flags, strings for strings, bytestrings for
627 * filenames, etc. The packing only occurs if the flag is given (ie: we
628 * do not pack a "false" #GVariant in the case that a flag is missing).
630 * In general, it is recommended that all commandline arguments are
631 * parsed locally. The options dictionary should then be used to
632 * transmit the result of the parsing to the primary instance, where
633 * g_variant_dict_lookup() can be used. For local options, it is
634 * possible to either use @arg_data in the usual way, or to consult (and
635 * potentially remove) the option from the options dictionary.
637 * This function is new in GLib 2.40. Before then, the only real choice
638 * was to send all of the commandline arguments (options and all) to the
639 * primary instance for handling. #GApplication ignored them completely
640 * on the local side. Calling this function "opts in" to the new
641 * behaviour, and in particular, means that unrecognised options will be
642 * treated as errors. Unrecognised options have never been ignored when
643 * %G_APPLICATION_HANDLES_COMMAND_LINE is unset.
645 * If #GApplication::handle-local-options needs to see the list of
646 * filenames, then the use of %G_OPTION_REMAINING is recommended. If
647 * @arg_data is %NULL then %G_OPTION_REMAINING can be used as a key into
648 * the options dictionary. If you do use %G_OPTION_REMAINING then you
649 * need to handle these arguments for yourself because once they are
650 * consumed, they will no longer be visible to the default handling
651 * (which treats them as filenames to be opened).
656 g_application_add_main_option_entries (GApplication *application,
657 const GOptionEntry *entries)
661 g_return_if_fail (G_IS_APPLICATION (application));
662 g_return_if_fail (entries != NULL);
664 if (!application->priv->main_options)
665 application->priv->main_options = g_option_group_new (NULL, NULL, NULL, NULL, NULL);
667 for (i = 0; entries[i].long_name; i++)
669 GOptionEntry my_entries[2] = { entries[i], { NULL } };
671 if (!my_entries[0].arg_data)
672 add_packed_option (application, &my_entries[0]);
674 g_option_group_add_entries (application->priv->main_options, my_entries);
679 * g_application_add_option_group:
680 * @application: the #GApplication
681 * @group: a #GOptionGroup
683 * Adds a #GOptionGroup to the commandline handling of @application.
685 * This function is comparable to g_option_context_add_group().
687 * Unlike g_application_add_main_option_entries(), this function does
688 * not deal with %NULL @arg_data and never transmits options to the
691 * The reason for that is because, by the time the options arrive at the
692 * primary instance, it is typically too late to do anything with them.
693 * Taking the GTK option group as an example: GTK will already have been
694 * initialised by the time the #GApplication::command-line handler runs.
695 * In the case that this is not the first-running instance of the
696 * application, the existing instance may already have been running for
699 * This means that the options from #GOptionGroup are only really usable
700 * in the case that the instance of the application being run is the
701 * first instance. Passing options like <literal>--display=</literal>
702 * or <literal>--gdk-debug=</literal> on future runs will have no effect
703 * on the existing primary instance.
705 * Calling this function will cause the options in the supplied option
706 * group to be parsed, but it does not cause you to be "opted in" to the
707 * new functionality whereby unrecognised options are rejected even if
708 * %G_APPLICATION_HANDLES_COMMAND_LINE was given.
713 g_application_add_option_group (GApplication *application,
716 g_return_if_fail (G_IS_APPLICATION (application));
717 g_return_if_fail (group != NULL);
719 application->priv->option_groups = g_slist_prepend (application->priv->option_groups, group);
722 /* vfunc defaults {{{1 */
724 g_application_real_before_emit (GApplication *application,
725 GVariant *platform_data)
730 g_application_real_after_emit (GApplication *application,
731 GVariant *platform_data)
736 g_application_real_startup (GApplication *application)
738 application->priv->did_startup = TRUE;
742 g_application_real_shutdown (GApplication *application)
744 application->priv->did_shutdown = TRUE;
748 g_application_real_activate (GApplication *application)
750 if (!g_signal_has_handler_pending (application,
751 g_application_signals[SIGNAL_ACTIVATE],
753 G_APPLICATION_GET_CLASS (application)->activate == g_application_real_activate)
755 static gboolean warned;
760 g_warning ("Your application does not implement "
761 "g_application_activate() and has no handlers connected "
762 "to the 'activate' signal. It should do one of these.");
768 g_application_real_open (GApplication *application,
773 if (!g_signal_has_handler_pending (application,
774 g_application_signals[SIGNAL_OPEN],
776 G_APPLICATION_GET_CLASS (application)->open == g_application_real_open)
778 static gboolean warned;
783 g_warning ("Your application claims to support opening files "
784 "but does not implement g_application_open() and has no "
785 "handlers connected to the 'open' signal.");
791 g_application_real_command_line (GApplication *application,
792 GApplicationCommandLine *cmdline)
794 if (!g_signal_has_handler_pending (application,
795 g_application_signals[SIGNAL_COMMAND_LINE],
797 G_APPLICATION_GET_CLASS (application)->command_line == g_application_real_command_line)
799 static gboolean warned;
804 g_warning ("Your application claims to support custom command line "
805 "handling but does not implement g_application_command_line() "
806 "and has no handlers connected to the 'command-line' signal.");
815 g_application_real_handle_local_options (GApplication *application,
816 GVariantDict *options)
822 get_platform_data (GApplication *application,
825 GVariantBuilder *builder;
828 builder = g_variant_builder_new (G_VARIANT_TYPE ("a{sv}"));
831 gchar *cwd = g_get_current_dir ();
832 g_variant_builder_add (builder, "{sv}", "cwd",
833 g_variant_new_bytestring (cwd));
837 if (application->priv->flags & G_APPLICATION_SEND_ENVIRONMENT)
842 envp = g_get_environ ();
843 array = g_variant_new_bytestring_array ((const gchar **) envp, -1);
846 g_variant_builder_add (builder, "{sv}", "environ", array);
850 g_variant_builder_add (builder, "{sv}", "options", options);
852 G_APPLICATION_GET_CLASS (application)->
853 add_platform_data (application, builder);
855 result = g_variant_builder_end (builder);
856 g_variant_builder_unref (builder);
862 g_application_call_command_line (GApplication *application,
863 const gchar * const *arguments,
867 if (application->priv->is_remote)
869 GVariant *platform_data;
871 platform_data = get_platform_data (application, options);
872 *exit_status = g_application_impl_command_line (application->priv->impl, arguments, platform_data);
876 GApplicationCommandLine *cmdline;
879 v = g_variant_new_bytestring_array ((const gchar **) arguments, -1);
880 cmdline = g_object_new (G_TYPE_APPLICATION_COMMAND_LINE,
884 g_signal_emit (application, g_application_signals[SIGNAL_COMMAND_LINE], 0, cmdline, exit_status);
885 g_object_unref (cmdline);
890 g_application_real_local_command_line (GApplication *application,
894 GError *error = NULL;
895 GVariantDict *options;
898 options = g_application_parse_command_line (application, arguments, &error);
901 g_printerr ("%s\n", error->message);
906 g_signal_emit (application, g_application_signals[SIGNAL_HANDLE_LOCAL_OPTIONS], 0, options, exit_status);
908 if (*exit_status >= 0)
910 g_variant_dict_unref (options);
914 if (!g_application_register (application, NULL, &error))
916 g_printerr ("Failed to register: %s\n", error->message);
917 g_variant_dict_unref (options);
918 g_error_free (error);
923 n_args = g_strv_length (*arguments);
925 if (application->priv->flags & G_APPLICATION_IS_SERVICE)
927 if ((*exit_status = n_args > 1))
929 g_printerr ("GApplication service mode takes no arguments.\n");
930 application->priv->flags &= ~G_APPLICATION_IS_SERVICE;
936 else if (application->priv->flags & G_APPLICATION_HANDLES_COMMAND_LINE)
938 g_application_call_command_line (application,
939 (const gchar **) *arguments,
940 g_variant_dict_end (options),
947 g_application_activate (application);
953 if (~application->priv->flags & G_APPLICATION_HANDLES_OPEN)
955 g_critical ("This application can not open files.");
964 n_files = n_args - 1;
965 files = g_new (GFile *, n_files);
967 for (i = 0; i < n_files; i++)
968 files[i] = g_file_new_for_commandline_arg ((*arguments)[i + 1]);
970 g_application_open (application, files, n_files, "");
972 for (i = 0; i < n_files; i++)
973 g_object_unref (files[i]);
981 g_variant_dict_unref (options);
987 g_application_real_add_platform_data (GApplication *application,
988 GVariantBuilder *builder)
993 g_application_real_dbus_register (GApplication *application,
994 GDBusConnection *connection,
995 const gchar *object_path,
1002 g_application_real_dbus_unregister (GApplication *application,
1003 GDBusConnection *connection,
1004 const gchar *object_path)
1008 /* GObject implementation stuff {{{1 */
1010 g_application_set_property (GObject *object,
1012 const GValue *value,
1015 GApplication *application = G_APPLICATION (object);
1019 case PROP_APPLICATION_ID:
1020 g_application_set_application_id (application,
1021 g_value_get_string (value));
1025 g_application_set_flags (application, g_value_get_flags (value));
1028 case PROP_INACTIVITY_TIMEOUT:
1029 g_application_set_inactivity_timeout (application,
1030 g_value_get_uint (value));
1033 case PROP_ACTION_GROUP:
1034 g_clear_object (&application->priv->actions);
1035 application->priv->actions = g_value_dup_object (value);
1039 g_assert_not_reached ();
1044 * g_application_set_action_group:
1045 * @application: a #GApplication
1046 * @action_group: (allow-none): a #GActionGroup, or %NULL
1048 * This used to be how actions were associated with a #GApplication.
1049 * Now there is #GActionMap for that.
1053 * Deprecated:2.32:Use the #GActionMap interface instead. Never ever
1054 * mix use of this API with use of #GActionMap on the same @application
1055 * or things will go very badly wrong. This function is known to
1056 * introduce buggy behaviour (ie: signals not emitted on changes to the
1057 * action group), so you should really use #GActionMap instead.
1060 g_application_set_action_group (GApplication *application,
1061 GActionGroup *action_group)
1063 g_return_if_fail (G_IS_APPLICATION (application));
1064 g_return_if_fail (!application->priv->is_registered);
1066 if (application->priv->actions != NULL)
1067 g_object_unref (application->priv->actions);
1069 application->priv->actions = action_group;
1071 if (application->priv->actions != NULL)
1072 g_object_ref (application->priv->actions);
1076 g_application_get_property (GObject *object,
1081 GApplication *application = G_APPLICATION (object);
1085 case PROP_APPLICATION_ID:
1086 g_value_set_string (value,
1087 g_application_get_application_id (application));
1091 g_value_set_flags (value,
1092 g_application_get_flags (application));
1095 case PROP_IS_REGISTERED:
1096 g_value_set_boolean (value,
1097 g_application_get_is_registered (application));
1100 case PROP_IS_REMOTE:
1101 g_value_set_boolean (value,
1102 g_application_get_is_remote (application));
1105 case PROP_INACTIVITY_TIMEOUT:
1106 g_value_set_uint (value,
1107 g_application_get_inactivity_timeout (application));
1111 g_assert_not_reached ();
1116 g_application_constructed (GObject *object)
1118 GApplication *application = G_APPLICATION (object);
1120 if (g_application_get_default () == NULL)
1121 g_application_set_default (application);
1125 g_application_finalize (GObject *object)
1127 GApplication *application = G_APPLICATION (object);
1129 g_slist_free_full (application->priv->option_groups, (GDestroyNotify) g_option_group_free);
1130 if (application->priv->main_options)
1131 g_option_group_free (application->priv->main_options);
1132 if (application->priv->packed_options)
1133 g_hash_table_unref (application->priv->packed_options);
1135 if (application->priv->impl)
1136 g_application_impl_destroy (application->priv->impl);
1137 g_free (application->priv->id);
1139 if (g_application_get_default () == application)
1140 g_application_set_default (NULL);
1142 if (application->priv->actions)
1143 g_object_unref (application->priv->actions);
1145 if (application->priv->notifications)
1146 g_object_unref (application->priv->notifications);
1148 G_OBJECT_CLASS (g_application_parent_class)
1149 ->finalize (object);
1153 g_application_init (GApplication *application)
1155 application->priv = g_application_get_instance_private (application);
1157 application->priv->actions = g_application_exported_actions_new (application);
1159 /* application->priv->actions is the one and only ref on the group, so when
1160 * we dispose, the action group will die, disconnecting all signals.
1162 g_signal_connect_swapped (application->priv->actions, "action-added",
1163 G_CALLBACK (g_action_group_action_added), application);
1164 g_signal_connect_swapped (application->priv->actions, "action-enabled-changed",
1165 G_CALLBACK (g_action_group_action_enabled_changed), application);
1166 g_signal_connect_swapped (application->priv->actions, "action-state-changed",
1167 G_CALLBACK (g_action_group_action_state_changed), application);
1168 g_signal_connect_swapped (application->priv->actions, "action-removed",
1169 G_CALLBACK (g_action_group_action_removed), application);
1173 g_application_handle_local_options_accumulator (GSignalInvocationHint *ihint,
1174 GValue *return_accu,
1175 const GValue *handler_return,
1180 value = g_value_get_int (handler_return);
1181 g_value_set_int (return_accu, value);
1187 g_application_class_init (GApplicationClass *class)
1189 GObjectClass *object_class = G_OBJECT_CLASS (class);
1191 object_class->constructed = g_application_constructed;
1192 object_class->finalize = g_application_finalize;
1193 object_class->get_property = g_application_get_property;
1194 object_class->set_property = g_application_set_property;
1196 class->before_emit = g_application_real_before_emit;
1197 class->after_emit = g_application_real_after_emit;
1198 class->startup = g_application_real_startup;
1199 class->shutdown = g_application_real_shutdown;
1200 class->activate = g_application_real_activate;
1201 class->open = g_application_real_open;
1202 class->command_line = g_application_real_command_line;
1203 class->local_command_line = g_application_real_local_command_line;
1204 class->handle_local_options = g_application_real_handle_local_options;
1205 class->add_platform_data = g_application_real_add_platform_data;
1206 class->dbus_register = g_application_real_dbus_register;
1207 class->dbus_unregister = g_application_real_dbus_unregister;
1209 g_object_class_install_property (object_class, PROP_APPLICATION_ID,
1210 g_param_spec_string ("application-id",
1211 P_("Application identifier"),
1212 P_("The unique identifier for the application"),
1213 NULL, G_PARAM_READWRITE | G_PARAM_CONSTRUCT |
1214 G_PARAM_STATIC_STRINGS));
1216 g_object_class_install_property (object_class, PROP_FLAGS,
1217 g_param_spec_flags ("flags",
1218 P_("Application flags"),
1219 P_("Flags specifying the behaviour of the application"),
1220 G_TYPE_APPLICATION_FLAGS, G_APPLICATION_FLAGS_NONE,
1221 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
1223 g_object_class_install_property (object_class, PROP_IS_REGISTERED,
1224 g_param_spec_boolean ("is-registered",
1225 P_("Is registered"),
1226 P_("If g_application_register() has been called"),
1227 FALSE, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
1229 g_object_class_install_property (object_class, PROP_IS_REMOTE,
1230 g_param_spec_boolean ("is-remote",
1232 P_("If this application instance is remote"),
1233 FALSE, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
1235 g_object_class_install_property (object_class, PROP_INACTIVITY_TIMEOUT,
1236 g_param_spec_uint ("inactivity-timeout",
1237 P_("Inactivity timeout"),
1238 P_("Time (ms) to stay alive after becoming idle"),
1240 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
1242 g_object_class_install_property (object_class, PROP_ACTION_GROUP,
1243 g_param_spec_object ("action-group",
1245 P_("The group of actions that the application exports"),
1246 G_TYPE_ACTION_GROUP,
1247 G_PARAM_DEPRECATED | G_PARAM_WRITABLE | G_PARAM_STATIC_STRINGS));
1250 * GApplication::startup:
1251 * @application: the application
1253 * The ::startup signal is emitted on the primary instance immediately
1254 * after registration. See g_application_register().
1256 g_application_signals[SIGNAL_STARTUP] =
1257 g_signal_new ("startup", G_TYPE_APPLICATION, G_SIGNAL_RUN_FIRST,
1258 G_STRUCT_OFFSET (GApplicationClass, startup),
1259 NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
1262 * GApplication::shutdown:
1263 * @application: the application
1265 * The ::shutdown signal is emitted only on the registered primary instance
1266 * immediately after the main loop terminates.
1268 g_application_signals[SIGNAL_SHUTDOWN] =
1269 g_signal_new ("shutdown", G_TYPE_APPLICATION, G_SIGNAL_RUN_LAST,
1270 G_STRUCT_OFFSET (GApplicationClass, shutdown),
1271 NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
1274 * GApplication::activate:
1275 * @application: the application
1277 * The ::activate signal is emitted on the primary instance when an
1278 * activation occurs. See g_application_activate().
1280 g_application_signals[SIGNAL_ACTIVATE] =
1281 g_signal_new ("activate", G_TYPE_APPLICATION, G_SIGNAL_RUN_LAST,
1282 G_STRUCT_OFFSET (GApplicationClass, activate),
1283 NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
1287 * GApplication::open:
1288 * @application: the application
1289 * @files: (array length=n_files) (element-type GFile): an array of #GFiles
1290 * @n_files: the length of @files
1291 * @hint: a hint provided by the calling instance
1293 * The ::open signal is emitted on the primary instance when there are
1294 * files to open. See g_application_open() for more information.
1296 g_application_signals[SIGNAL_OPEN] =
1297 g_signal_new ("open", G_TYPE_APPLICATION, G_SIGNAL_RUN_LAST,
1298 G_STRUCT_OFFSET (GApplicationClass, open),
1300 G_TYPE_NONE, 3, G_TYPE_POINTER, G_TYPE_INT, G_TYPE_STRING);
1303 * GApplication::command-line:
1304 * @application: the application
1305 * @command_line: a #GApplicationCommandLine representing the
1306 * passed commandline
1308 * The ::command-line signal is emitted on the primary instance when
1309 * a commandline is not handled locally. See g_application_run() and
1310 * the #GApplicationCommandLine documentation for more information.
1312 * Returns: An integer that is set as the exit status for the calling
1313 * process. See g_application_command_line_set_exit_status().
1315 g_application_signals[SIGNAL_COMMAND_LINE] =
1316 g_signal_new ("command-line", G_TYPE_APPLICATION, G_SIGNAL_RUN_LAST,
1317 G_STRUCT_OFFSET (GApplicationClass, command_line),
1318 g_signal_accumulator_first_wins, NULL,
1320 G_TYPE_INT, 1, G_TYPE_APPLICATION_COMMAND_LINE);
1323 * GApplication::handle-local-options:
1324 * @application: the application
1325 * @options: the options dictionary
1327 * The ::handle-local-options signal is emitted on the local instance
1328 * after the parsing of the commandline options has occurred.
1330 * You can add options to be recognised during commandline option
1331 * parsing using g_application_add_main_option_entries() and
1332 * g_application_add_option_group().
1334 * Signal handlers can inspect @options (along with values pointed to
1335 * from the @arg_data of an installed #GOptionEntrys) in order to
1336 * decide to perform certain actions, including direct local handling
1337 * (which may be useful for options like --version).
1339 * If the options have been "handled" then a non-negative value should
1340 * be returned. In this case, the return value is the exit status: 0
1341 * for success and a positive value for failure. -1 means to continue
1342 * normal processing.
1344 * In the event that the application is marked
1345 * %G_APPLICATION_HANDLES_COMMAND_LINE the "normal processing" will
1346 * send the @option dictionary to the primary instance where it can be
1347 * read with g_application_command_line_get_options(). The signal
1348 * handler can modify the dictionary before returning, and the
1349 * modified dictionary will be sent.
1351 * In the event that %G_APPLICATION_HANDLES_COMMAND_LINE is not set,
1352 * "normal processing" will treat the remaining uncollected command
1353 * line arguments as filenames or URIs. If there are no arguments,
1354 * the application is activated by g_application_activate(). One or
1355 * more arguments results in a call to g_application_open().
1357 * If you want to handle the local commandline arguments for yourself
1358 * by converting them to calls to g_application_open() or
1359 * g_action_group_activate_action() then you must be sure to register
1360 * the application first. You should probably not call
1361 * g_application_activate() for yourself, however: just return -1 and
1362 * allow the default handler to do it for you. This will ensure that
1363 * the <literal>--gapplication-service</literal> switch works properly
1364 * (ie: no activation in that case).
1366 * Note that this signal is emitted from the default implementation of
1367 * local_command_line(). If you override that function and don't
1368 * chain up then this signal will never be emitted.
1370 * You can override local_command_line() if you need more powerful
1371 * capabilities than what is provided here, but this should not
1372 * normally be required.
1376 g_application_signals[SIGNAL_HANDLE_LOCAL_OPTIONS] =
1377 g_signal_new ("handle-local-options", G_TYPE_APPLICATION, G_SIGNAL_RUN_LAST,
1378 G_STRUCT_OFFSET (GApplicationClass, handle_local_options),
1379 g_application_handle_local_options_accumulator, NULL, NULL,
1380 G_TYPE_INT, 1, G_TYPE_VARIANT_DICT);
1384 /* Application ID validity {{{1 */
1387 * g_application_id_is_valid:
1388 * @application_id: a potential application identifier
1390 * Checks if @application_id is a valid application identifier.
1392 * A valid ID is required for calls to g_application_new() and
1393 * g_application_set_application_id().
1395 * For convenience, the restrictions on application identifiers are
1398 * - Application identifiers must contain only the ASCII characters
1399 * "[A-Z][a-z][0-9]_-." and must not begin with a digit.
1401 * - Application identifiers must contain at least one '.' (period)
1402 * character (and thus at least three elements).
1404 * - Application identifiers must not begin or end with a '.' (period)
1407 * - Application identifiers must not contain consecutive '.' (period)
1410 * - Application identifiers must not exceed 255 characters.
1412 * Returns: %TRUE if @application_id is valid
1415 g_application_id_is_valid (const gchar *application_id)
1421 len = strlen (application_id);
1426 if (!g_ascii_isalpha (application_id[0]))
1429 if (application_id[len-1] == '.')
1435 for (; *application_id; application_id++)
1437 if (g_ascii_isalnum (*application_id) ||
1438 (*application_id == '-') ||
1439 (*application_id == '_'))
1443 else if (allow_dot && *application_id == '.')
1458 /* Public Constructor {{{1 */
1460 * g_application_new:
1461 * @application_id: (allow-none): the application id
1462 * @flags: the application flags
1464 * Creates a new #GApplication instance.
1466 * If non-%NULL, the application id must be valid. See
1467 * g_application_id_is_valid().
1469 * If no application ID is given then some features of #GApplication
1470 * (most notably application uniqueness) will be disabled.
1472 * Returns: a new #GApplication instance
1475 g_application_new (const gchar *application_id,
1476 GApplicationFlags flags)
1478 g_return_val_if_fail (application_id == NULL || g_application_id_is_valid (application_id), NULL);
1480 return g_object_new (G_TYPE_APPLICATION,
1481 "application-id", application_id,
1486 /* Simple get/set: application id, flags, inactivity timeout {{{1 */
1488 * g_application_get_application_id:
1489 * @application: a #GApplication
1491 * Gets the unique identifier for @application.
1493 * Returns: the identifier for @application, owned by @application
1498 g_application_get_application_id (GApplication *application)
1500 g_return_val_if_fail (G_IS_APPLICATION (application), NULL);
1502 return application->priv->id;
1506 * g_application_set_application_id:
1507 * @application: a #GApplication
1508 * @application_id: (allow-none): the identifier for @application
1510 * Sets the unique identifier for @application.
1512 * The application id can only be modified if @application has not yet
1515 * If non-%NULL, the application id must be valid. See
1516 * g_application_id_is_valid().
1521 g_application_set_application_id (GApplication *application,
1522 const gchar *application_id)
1524 g_return_if_fail (G_IS_APPLICATION (application));
1526 if (g_strcmp0 (application->priv->id, application_id) != 0)
1528 g_return_if_fail (application_id == NULL || g_application_id_is_valid (application_id));
1529 g_return_if_fail (!application->priv->is_registered);
1531 g_free (application->priv->id);
1532 application->priv->id = g_strdup (application_id);
1534 g_object_notify (G_OBJECT (application), "application-id");
1539 * g_application_get_flags:
1540 * @application: a #GApplication
1542 * Gets the flags for @application.
1544 * See #GApplicationFlags.
1546 * Returns: the flags for @application
1551 g_application_get_flags (GApplication *application)
1553 g_return_val_if_fail (G_IS_APPLICATION (application), 0);
1555 return application->priv->flags;
1559 * g_application_set_flags:
1560 * @application: a #GApplication
1561 * @flags: the flags for @application
1563 * Sets the flags for @application.
1565 * The flags can only be modified if @application has not yet been
1568 * See #GApplicationFlags.
1573 g_application_set_flags (GApplication *application,
1574 GApplicationFlags flags)
1576 g_return_if_fail (G_IS_APPLICATION (application));
1578 if (application->priv->flags != flags)
1580 g_return_if_fail (!application->priv->is_registered);
1582 application->priv->flags = flags;
1584 g_object_notify (G_OBJECT (application), "flags");
1589 * g_application_get_inactivity_timeout:
1590 * @application: a #GApplication
1592 * Gets the current inactivity timeout for the application.
1594 * This is the amount of time (in milliseconds) after the last call to
1595 * g_application_release() before the application stops running.
1597 * Returns: the timeout, in milliseconds
1602 g_application_get_inactivity_timeout (GApplication *application)
1604 g_return_val_if_fail (G_IS_APPLICATION (application), 0);
1606 return application->priv->inactivity_timeout;
1610 * g_application_set_inactivity_timeout:
1611 * @application: a #GApplication
1612 * @inactivity_timeout: the timeout, in milliseconds
1614 * Sets the current inactivity timeout for the application.
1616 * This is the amount of time (in milliseconds) after the last call to
1617 * g_application_release() before the application stops running.
1619 * This call has no side effects of its own. The value set here is only
1620 * used for next time g_application_release() drops the use count to
1621 * zero. Any timeouts currently in progress are not impacted.
1626 g_application_set_inactivity_timeout (GApplication *application,
1627 guint inactivity_timeout)
1629 g_return_if_fail (G_IS_APPLICATION (application));
1631 if (application->priv->inactivity_timeout != inactivity_timeout)
1633 application->priv->inactivity_timeout = inactivity_timeout;
1635 g_object_notify (G_OBJECT (application), "inactivity-timeout");
1638 /* Read-only property getters (is registered, is remote, dbus stuff) {{{1 */
1640 * g_application_get_is_registered:
1641 * @application: a #GApplication
1643 * Checks if @application is registered.
1645 * An application is registered if g_application_register() has been
1646 * successfully called.
1648 * Returns: %TRUE if @application is registered
1653 g_application_get_is_registered (GApplication *application)
1655 g_return_val_if_fail (G_IS_APPLICATION (application), FALSE);
1657 return application->priv->is_registered;
1661 * g_application_get_is_remote:
1662 * @application: a #GApplication
1664 * Checks if @application is remote.
1666 * If @application is remote then it means that another instance of
1667 * application already exists (the 'primary' instance). Calls to
1668 * perform actions on @application will result in the actions being
1669 * performed by the primary instance.
1671 * The value of this property cannot be accessed before
1672 * g_application_register() has been called. See
1673 * g_application_get_is_registered().
1675 * Returns: %TRUE if @application is remote
1680 g_application_get_is_remote (GApplication *application)
1682 g_return_val_if_fail (G_IS_APPLICATION (application), FALSE);
1683 g_return_val_if_fail (application->priv->is_registered, FALSE);
1685 return application->priv->is_remote;
1689 * g_application_get_dbus_connection:
1690 * @application: a #GApplication
1692 * Gets the #GDBusConnection being used by the application, or %NULL.
1694 * If #GApplication is using its D-Bus backend then this function will
1695 * return the #GDBusConnection being used for uniqueness and
1696 * communication with the desktop environment and other instances of the
1699 * If #GApplication is not using D-Bus then this function will return
1700 * %NULL. This includes the situation where the D-Bus backend would
1701 * normally be in use but we were unable to connect to the bus.
1703 * This function must not be called before the application has been
1704 * registered. See g_application_get_is_registered().
1706 * Returns: (transfer none): a #GDBusConnection, or %NULL
1711 g_application_get_dbus_connection (GApplication *application)
1713 g_return_val_if_fail (G_IS_APPLICATION (application), FALSE);
1714 g_return_val_if_fail (application->priv->is_registered, FALSE);
1716 return g_application_impl_get_dbus_connection (application->priv->impl);
1720 * g_application_get_dbus_object_path:
1721 * @application: a #GApplication
1723 * Gets the D-Bus object path being used by the application, or %NULL.
1725 * If #GApplication is using its D-Bus backend then this function will
1726 * return the D-Bus object path that #GApplication is using. If the
1727 * application is the primary instance then there is an object published
1728 * at this path. If the application is not the primary instance then
1729 * the result of this function is undefined.
1731 * If #GApplication is not using D-Bus then this function will return
1732 * %NULL. This includes the situation where the D-Bus backend would
1733 * normally be in use but we were unable to connect to the bus.
1735 * This function must not be called before the application has been
1736 * registered. See g_application_get_is_registered().
1738 * Returns: the object path, or %NULL
1743 g_application_get_dbus_object_path (GApplication *application)
1745 g_return_val_if_fail (G_IS_APPLICATION (application), FALSE);
1746 g_return_val_if_fail (application->priv->is_registered, FALSE);
1748 return g_application_impl_get_dbus_object_path (application->priv->impl);
1753 * g_application_register:
1754 * @application: a #GApplication
1755 * @cancellable: (allow-none): a #GCancellable, or %NULL
1756 * @error: a pointer to a NULL #GError, or %NULL
1758 * Attempts registration of the application.
1760 * This is the point at which the application discovers if it is the
1761 * primary instance or merely acting as a remote for an already-existing
1762 * primary instance. This is implemented by attempting to acquire the
1763 * application identifier as a unique bus name on the session bus using
1766 * If there is no application ID or if %G_APPLICATION_NON_UNIQUE was
1767 * given, then this process will always become the primary instance.
1769 * Due to the internal architecture of GDBus, method calls can be
1770 * dispatched at any time (even if a main loop is not running). For
1771 * this reason, you must ensure that any object paths that you wish to
1772 * register are registered before calling this function.
1774 * If the application has already been registered then %TRUE is
1775 * returned with no work performed.
1777 * The #GApplication::startup signal is emitted if registration succeeds
1778 * and @application is the primary instance (including the non-unique
1781 * In the event of an error (such as @cancellable being cancelled, or a
1782 * failure to connect to the session bus), %FALSE is returned and @error
1783 * is set appropriately.
1785 * Note: the return value of this function is not an indicator that this
1786 * instance is or is not the primary instance of the application. See
1787 * g_application_get_is_remote() for that.
1789 * Returns: %TRUE if registration succeeded
1794 g_application_register (GApplication *application,
1795 GCancellable *cancellable,
1798 g_return_val_if_fail (G_IS_APPLICATION (application), FALSE);
1800 if (!application->priv->is_registered)
1802 if (application->priv->id == NULL)
1803 application->priv->flags |= G_APPLICATION_NON_UNIQUE;
1805 application->priv->impl =
1806 g_application_impl_register (application, application->priv->id,
1807 application->priv->flags,
1808 application->priv->actions,
1809 &application->priv->remote_actions,
1810 cancellable, error);
1812 if (application->priv->impl == NULL)
1815 application->priv->is_remote = application->priv->remote_actions != NULL;
1816 application->priv->is_registered = TRUE;
1818 g_object_notify (G_OBJECT (application), "is-registered");
1820 if (!application->priv->is_remote)
1822 g_signal_emit (application, g_application_signals[SIGNAL_STARTUP], 0);
1824 if (!application->priv->did_startup)
1825 g_critical ("GApplication subclass '%s' failed to chain up on"
1826 " ::startup (from start of override function)",
1827 G_OBJECT_TYPE_NAME (application));
1834 /* Hold/release {{{1 */
1836 * g_application_hold:
1837 * @application: a #GApplication
1839 * Increases the use count of @application.
1841 * Use this function to indicate that the application has a reason to
1842 * continue to run. For example, g_application_hold() is called by GTK+
1843 * when a toplevel window is on the screen.
1845 * To cancel the hold, call g_application_release().
1848 g_application_hold (GApplication *application)
1850 g_return_if_fail (G_IS_APPLICATION (application));
1852 if (application->priv->inactivity_timeout_id)
1854 g_source_remove (application->priv->inactivity_timeout_id);
1855 application->priv->inactivity_timeout_id = 0;
1858 application->priv->use_count++;
1862 inactivity_timeout_expired (gpointer data)
1864 GApplication *application = G_APPLICATION (data);
1866 application->priv->inactivity_timeout_id = 0;
1868 return G_SOURCE_REMOVE;
1873 * g_application_release:
1874 * @application: a #GApplication
1876 * Decrease the use count of @application.
1878 * When the use count reaches zero, the application will stop running.
1880 * Never call this function except to cancel the effect of a previous
1881 * call to g_application_hold().
1884 g_application_release (GApplication *application)
1886 g_return_if_fail (G_IS_APPLICATION (application));
1888 application->priv->use_count--;
1890 if (application->priv->use_count == 0 && application->priv->inactivity_timeout)
1891 application->priv->inactivity_timeout_id = g_timeout_add (application->priv->inactivity_timeout,
1892 inactivity_timeout_expired, application);
1895 /* Activate, Open {{{1 */
1897 * g_application_activate:
1898 * @application: a #GApplication
1900 * Activates the application.
1902 * In essence, this results in the #GApplication::activate signal being
1903 * emitted in the primary instance.
1905 * The application must be registered before calling this function.
1910 g_application_activate (GApplication *application)
1912 g_return_if_fail (G_IS_APPLICATION (application));
1913 g_return_if_fail (application->priv->is_registered);
1915 if (application->priv->is_remote)
1916 g_application_impl_activate (application->priv->impl,
1917 get_platform_data (application, NULL));
1920 g_signal_emit (application, g_application_signals[SIGNAL_ACTIVATE], 0);
1924 * g_application_open:
1925 * @application: a #GApplication
1926 * @files: (array length=n_files): an array of #GFiles to open
1927 * @n_files: the length of the @files array
1928 * @hint: a hint (or ""), but never %NULL
1930 * Opens the given files.
1932 * In essence, this results in the #GApplication::open signal being emitted
1933 * in the primary instance.
1935 * @n_files must be greater than zero.
1937 * @hint is simply passed through to the ::open signal. It is
1938 * intended to be used by applications that have multiple modes for
1939 * opening files (eg: "view" vs "edit", etc). Unless you have a need
1940 * for this functionality, you should use "".
1942 * The application must be registered before calling this function
1943 * and it must have the %G_APPLICATION_HANDLES_OPEN flag set.
1948 g_application_open (GApplication *application,
1953 g_return_if_fail (G_IS_APPLICATION (application));
1954 g_return_if_fail (application->priv->flags &
1955 G_APPLICATION_HANDLES_OPEN);
1956 g_return_if_fail (application->priv->is_registered);
1958 if (application->priv->is_remote)
1959 g_application_impl_open (application->priv->impl,
1960 files, n_files, hint,
1961 get_platform_data (application, NULL));
1964 g_signal_emit (application, g_application_signals[SIGNAL_OPEN],
1965 0, files, n_files, hint);
1970 * g_application_run:
1971 * @application: a #GApplication
1972 * @argc: the argc from main() (or 0 if @argv is %NULL)
1973 * @argv: (array length=argc) (allow-none): the argv from main(), or %NULL
1975 * Runs the application.
1977 * This function is intended to be run from main() and its return value
1978 * is intended to be returned by main(). Although you are expected to pass
1979 * the @argc, @argv parameters from main() to this function, it is possible
1980 * to pass %NULL if @argv is not available or commandline handling is not
1981 * required. Note that on Windows, @argc and @argv are ignored, and
1982 * g_win32_get_command_line() is called internally (for proper support
1983 * of Unicode commandline arguments).
1985 * #GApplication will attempt to parse the commandline arguments. You
1986 * can add commandline flags to the list of recognised options by way of
1987 * g_application_add_main_option_entries(). After this, the
1988 * #GApplication::handle-local-options signal is emitted, from which the
1989 * application can inspect the values of its #GOptionEntrys.
1991 * #GApplication::handle-local-options is a good place to handle options
1992 * such as <literal>--version</literal>, where an immediate reply from
1993 * the local process is desired (instead of communicating with an
1994 * already-running instance). A #GApplication::handle-local-options
1995 * handler can stop further processing by returning a non-negative
1996 * value, which then becomes the exit status of the process.
1998 * What happens next depends on the flags: if
1999 * %G_APPLICATION_HANDLES_COMMAND_LINE was specified then the remaining
2000 * commandline arguments are sent to the primary instance, where a
2001 * #GApplication::command-line signal is emitted. Otherwise, the
2002 * remaining commandline arguments are assumed to be a list of files.
2003 * If there are no files listed, the application is activated via the
2004 * #GApplication::activate signal. If there are one or more files, and
2005 * %G_APPLICATION_HANDLES_OPEN was specified then the files are opened
2006 * via the #GApplication::open signal.
2008 * If you are interested in doing more complicated local handling of the
2009 * commandline then you should implement your own #GApplication subclass
2010 * and override local_command_line(). In this case, you most likely want
2011 * to return %TRUE from your local_command_line() implementation to
2012 * suppress the default handling. See
2013 * [gapplication-example-cmdline2.c][gapplication-example-cmdline2]
2016 * If, after the above is done, the use count of the application is zero
2017 * then the exit status is returned immediately. If the use count is
2018 * non-zero then the default main context is iterated until the use count
2019 * falls to zero, at which point 0 is returned.
2021 * If the %G_APPLICATION_IS_SERVICE flag is set, then the service will
2022 * run for as much as 10 seconds with a use count of zero while waiting
2023 * for the message that caused the activation to arrive. After that,
2024 * if the use count falls to zero the application will exit immediately,
2025 * except in the case that g_application_set_inactivity_timeout() is in
2028 * This function sets the prgname (g_set_prgname()), if not already set,
2029 * to the basename of argv[0]. Since 2.38, if %G_APPLICATION_IS_SERVICE
2030 * is specified, the prgname is set to the application ID. The main
2031 * impact of this is is that the wmclass of windows created by Gtk+ will
2032 * be set accordingly, which helps the window manager determine which
2033 * application is showing the window.
2035 * Since 2.40, applications that are not explicitly flagged as services
2036 * or launchers (ie: neither %G_APPLICATION_IS_SERVICE or
2037 * %G_APPLICATION_IS_LAUNCHER are given as flags) will check (from the
2038 * default handler for local_command_line) if "--gapplication-service"
2039 * was given in the command line. If this flag is present then normal
2040 * commandline processing is interrupted and the
2041 * %G_APPLICATION_IS_SERVICE flag is set. This provides a "compromise"
2042 * solution whereby running an application directly from the commandline
2043 * will invoke it in the normal way (which can be useful for debugging)
2044 * while still allowing applications to be D-Bus activated in service
2045 * mode. The D-Bus service file should invoke the executable with
2046 * "--gapplication-service" as the sole commandline argument. This
2047 * approach is suitable for use by most graphical applications but
2048 * should not be used from applications like editors that need precise
2049 * control over when processes invoked via the commandline will exit and
2050 * what their exit status will be.
2052 * Returns: the exit status
2057 g_application_run (GApplication *application,
2064 g_return_val_if_fail (G_IS_APPLICATION (application), 1);
2065 g_return_val_if_fail (argc == 0 || argv != NULL, 1);
2066 g_return_val_if_fail (!application->priv->must_quit_now, 1);
2069 arguments = g_win32_get_command_line ();
2074 arguments = g_new (gchar *, argc + 1);
2075 for (i = 0; i < argc; i++)
2076 arguments[i] = g_strdup (argv[i]);
2077 arguments[i] = NULL;
2081 if (g_get_prgname () == NULL)
2083 if (application->priv->flags & G_APPLICATION_IS_SERVICE)
2085 g_set_prgname (application->priv->id);
2091 prgname = g_path_get_basename (argv[0]);
2092 g_set_prgname (prgname);
2097 if (!G_APPLICATION_GET_CLASS (application)
2098 ->local_command_line (application, &arguments, &status))
2100 GError *error = NULL;
2102 if (!g_application_register (application, NULL, &error))
2104 g_printerr ("Failed to register: %s\n", error->message);
2105 g_error_free (error);
2109 g_application_call_command_line (application, (const gchar **) arguments, NULL, &status);
2112 g_strfreev (arguments);
2114 if (application->priv->flags & G_APPLICATION_IS_SERVICE &&
2115 application->priv->is_registered &&
2116 !application->priv->use_count &&
2117 !application->priv->inactivity_timeout_id)
2119 application->priv->inactivity_timeout_id =
2120 g_timeout_add (10000, inactivity_timeout_expired, application);
2123 while (application->priv->use_count || application->priv->inactivity_timeout_id)
2125 if (application->priv->must_quit_now)
2128 g_main_context_iteration (NULL, TRUE);
2132 if (application->priv->is_registered && !application->priv->is_remote)
2134 g_signal_emit (application, g_application_signals[SIGNAL_SHUTDOWN], 0);
2136 if (!application->priv->did_shutdown)
2137 g_critical ("GApplication subclass '%s' failed to chain up on"
2138 " ::shutdown (from end of override function)",
2139 G_OBJECT_TYPE_NAME (application));
2142 if (application->priv->impl)
2143 g_application_impl_flush (application->priv->impl);
2151 g_application_list_actions (GActionGroup *action_group)
2153 GApplication *application = G_APPLICATION (action_group);
2155 g_return_val_if_fail (application->priv->is_registered, NULL);
2157 if (application->priv->remote_actions != NULL)
2158 return g_action_group_list_actions (G_ACTION_GROUP (application->priv->remote_actions));
2160 else if (application->priv->actions != NULL)
2161 return g_action_group_list_actions (application->priv->actions);
2164 /* empty string array */
2165 return g_new0 (gchar *, 1);
2169 g_application_query_action (GActionGroup *group,
2170 const gchar *action_name,
2172 const GVariantType **parameter_type,
2173 const GVariantType **state_type,
2174 GVariant **state_hint,
2177 GApplication *application = G_APPLICATION (group);
2179 g_return_val_if_fail (application->priv->is_registered, FALSE);
2181 if (application->priv->remote_actions != NULL)
2182 return g_action_group_query_action (G_ACTION_GROUP (application->priv->remote_actions),
2190 if (application->priv->actions != NULL)
2191 return g_action_group_query_action (application->priv->actions,
2203 g_application_change_action_state (GActionGroup *action_group,
2204 const gchar *action_name,
2207 GApplication *application = G_APPLICATION (action_group);
2209 g_return_if_fail (application->priv->is_remote ||
2210 application->priv->actions != NULL);
2211 g_return_if_fail (application->priv->is_registered);
2213 if (application->priv->remote_actions)
2214 g_remote_action_group_change_action_state_full (application->priv->remote_actions,
2215 action_name, value, get_platform_data (application, NULL));
2218 g_action_group_change_action_state (application->priv->actions, action_name, value);
2222 g_application_activate_action (GActionGroup *action_group,
2223 const gchar *action_name,
2224 GVariant *parameter)
2226 GApplication *application = G_APPLICATION (action_group);
2228 g_return_if_fail (application->priv->is_remote ||
2229 application->priv->actions != NULL);
2230 g_return_if_fail (application->priv->is_registered);
2232 if (application->priv->remote_actions)
2233 g_remote_action_group_activate_action_full (application->priv->remote_actions,
2234 action_name, parameter, get_platform_data (application, NULL));
2237 g_action_group_activate_action (application->priv->actions, action_name, parameter);
2241 g_application_lookup_action (GActionMap *action_map,
2242 const gchar *action_name)
2244 GApplication *application = G_APPLICATION (action_map);
2246 g_return_val_if_fail (G_IS_ACTION_MAP (application->priv->actions), NULL);
2248 return g_action_map_lookup_action (G_ACTION_MAP (application->priv->actions), action_name);
2252 g_application_add_action (GActionMap *action_map,
2255 GApplication *application = G_APPLICATION (action_map);
2257 g_return_if_fail (G_IS_ACTION_MAP (application->priv->actions));
2259 g_action_map_add_action (G_ACTION_MAP (application->priv->actions), action);
2263 g_application_remove_action (GActionMap *action_map,
2264 const gchar *action_name)
2266 GApplication *application = G_APPLICATION (action_map);
2268 g_return_if_fail (G_IS_ACTION_MAP (application->priv->actions));
2270 g_action_map_remove_action (G_ACTION_MAP (application->priv->actions), action_name);
2274 g_application_action_group_iface_init (GActionGroupInterface *iface)
2276 iface->list_actions = g_application_list_actions;
2277 iface->query_action = g_application_query_action;
2278 iface->change_action_state = g_application_change_action_state;
2279 iface->activate_action = g_application_activate_action;
2283 g_application_action_map_iface_init (GActionMapInterface *iface)
2285 iface->lookup_action = g_application_lookup_action;
2286 iface->add_action = g_application_add_action;
2287 iface->remove_action = g_application_remove_action;
2290 /* Default Application {{{1 */
2292 static GApplication *default_app;
2295 * g_application_get_default:
2297 * Returns the default #GApplication instance for this process.
2299 * Normally there is only one #GApplication per process and it becomes
2300 * the default when it is created. You can exercise more control over
2301 * this by using g_application_set_default().
2303 * If there is no default application then %NULL is returned.
2305 * Returns: (transfer none): the default application for this process, or %NULL
2310 g_application_get_default (void)
2316 * g_application_set_default:
2317 * @application: (allow-none): the application to set as default, or %NULL
2319 * Sets or unsets the default application for the process, as returned
2320 * by g_application_get_default().
2322 * This function does not take its own reference on @application. If
2323 * @application is destroyed then the default application will revert
2329 g_application_set_default (GApplication *application)
2331 default_app = application;
2335 * g_application_quit:
2336 * @application: a #GApplication
2338 * Immediately quits the application.
2340 * Upon return to the mainloop, g_application_run() will return,
2341 * calling only the 'shutdown' function before doing so.
2343 * The hold count is ignored.
2345 * The result of calling g_application_run() again after it returns is
2351 g_application_quit (GApplication *application)
2353 g_return_if_fail (G_IS_APPLICATION (application));
2355 application->priv->must_quit_now = TRUE;
2359 * g_application_mark_busy:
2360 * @application: a #GApplication
2362 * Increases the busy count of @application.
2364 * Use this function to indicate that the application is busy, for instance
2365 * while a long running operation is pending.
2367 * The busy state will be exposed to other processes, so a session shell will
2368 * use that information to indicate the state to the user (e.g. with a
2371 * To cancel the busy indication, use g_application_unmark_busy().
2376 g_application_mark_busy (GApplication *application)
2380 g_return_if_fail (G_IS_APPLICATION (application));
2382 was_busy = (application->priv->busy_count > 0);
2383 application->priv->busy_count++;
2386 g_application_impl_set_busy_state (application->priv->impl, TRUE);
2390 * g_application_unmark_busy:
2391 * @application: a #GApplication
2393 * Decreases the busy count of @application.
2395 * When the busy count reaches zero, the new state will be propagated
2396 * to other processes.
2398 * This function must only be called to cancel the effect of a previous
2399 * call to g_application_mark_busy().
2404 g_application_unmark_busy (GApplication *application)
2406 g_return_if_fail (G_IS_APPLICATION (application));
2407 g_return_if_fail (application->priv->busy_count > 0);
2409 application->priv->busy_count--;
2411 if (application->priv->busy_count == 0)
2412 g_application_impl_set_busy_state (application->priv->impl, FALSE);
2415 /* Notifications {{{1 */
2418 * g_application_send_notification:
2419 * @application: a #GApplication
2420 * @id: (allow-none): id of the notification, or %NULL
2421 * @notification: the #GNotification to send
2423 * Sends a notification on behalf of @application to the desktop shell.
2424 * There is no guarantee that the notification is displayed immediately,
2427 * Notifications may persist after the application exits. It will be
2428 * D-Bus-activated when the notification or one of its actions is
2431 * Modifying @notification after this call has no effect. However, the
2432 * object can be reused for a later call to this function.
2434 * @id may be any string that uniquely identifies the event for the
2435 * application. It does not need to be in any special format. For
2436 * example, "new-message" might be appropriate for a notification about
2439 * If a previous notification was sent with the same @id, it will be
2440 * replaced with @notification and shown again as if it was a new
2441 * notification. This works even for notifications sent from a previous
2442 * execution of the application, as long as @id is the same string.
2444 * @id may be %NULL, but it is impossible to replace or withdraw
2445 * notifications without an id.
2447 * If @notification is no longer relevant, it can be withdrawn with
2448 * g_application_withdraw_notification().
2453 g_application_send_notification (GApplication *application,
2455 GNotification *notification)
2457 gchar *generated_id = NULL;
2459 g_return_if_fail (G_IS_APPLICATION (application));
2460 g_return_if_fail (G_IS_NOTIFICATION (notification));
2461 g_return_if_fail (g_application_get_is_registered (application));
2462 g_return_if_fail (!g_application_get_is_remote (application));
2464 if (application->priv->notifications == NULL)
2465 application->priv->notifications = g_notification_backend_new_default (application);
2469 generated_id = g_dbus_generate_guid ();
2473 g_notification_backend_send_notification (application->priv->notifications, id, notification);
2475 g_free (generated_id);
2479 * g_application_withdraw_notification:
2480 * @application: a #GApplication
2481 * @id: id of a previously sent notification
2483 * Withdraws a notification that was sent with
2484 * g_application_send_notification().
2486 * This call does nothing if a notification with @id doesn't exist or
2487 * the notification was never sent.
2489 * This function works even for notifications sent in previous
2490 * executions of this application, as long @id is the same as it was for
2491 * the sent notification.
2493 * Note that notifications are dismissed when the user clicks on one
2494 * of the buttons in a notification or triggers its default action, so
2495 * there is no need to explicitly withdraw the notification in that case.
2500 g_application_withdraw_notification (GApplication *application,
2503 g_return_if_fail (G_IS_APPLICATION (application));
2504 g_return_if_fail (id != NULL);
2506 if (application->priv->notifications)
2507 g_notification_backend_withdraw_notification (application->priv->notifications, id);
2511 /* vim:set foldmethod=marker: */