2 * Copyright © 2010 Codethink Limited
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at 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>
22 #include "gapplicationimpl.h"
24 #include "gactiongroup.h"
25 #include "gactiongroupexporter.h"
26 #include "gremoteactiongroup.h"
27 #include "gdbusactiongroup-private.h"
28 #include "gapplication.h"
30 #include "gdbusconnection.h"
31 #include "gdbusintrospection.h"
32 #include "gdbuserror.h"
33 #include "glib/gstdio.h"
38 #include "gapplicationcommandline.h"
39 #include "gdbusmethodinvocation.h"
42 #include "gunixinputstream.h"
43 #include "gunixfdlist.h"
46 /* DBus Interface definition {{{1 */
48 /* For documentation of these interfaces, see
49 * https://wiki.gnome.org/Projects/GLib/GApplication/DBusAPI
51 static const gchar org_gtk_Application_xml
[] =
53 "<interface name='org.gtk.Application'>"
54 "<method name='Activate'>"
55 "<arg type='a{sv}' name='platform-data' direction='in'/>"
57 "<method name='Open'>"
58 "<arg type='as' name='uris' direction='in'/>"
59 "<arg type='s' name='hint' direction='in'/>"
60 "<arg type='a{sv}' name='platform-data' direction='in'/>"
62 "<method name='CommandLine'>"
63 "<arg type='o' name='path' direction='in'/>"
64 "<arg type='aay' name='arguments' direction='in'/>"
65 "<arg type='a{sv}' name='platform-data' direction='in'/>"
66 "<arg type='i' name='exit-status' direction='out'/>"
68 "<property name='Busy' type='b' access='read'/>"
72 static GDBusInterfaceInfo
*org_gtk_Application
;
74 static const gchar org_freedesktop_Application_xml
[] =
76 "<interface name='org.freedesktop.Application'>"
77 "<method name='Activate'>"
78 "<arg type='a{sv}' name='platform-data' direction='in'/>"
80 "<method name='Open'>"
81 "<arg type='as' name='uris' direction='in'/>"
82 "<arg type='a{sv}' name='platform-data' direction='in'/>"
84 "<method name='ActivateAction'>"
85 "<arg type='s' name='action-name' direction='in'/>"
86 "<arg type='av' name='parameter' direction='in'/>"
87 "<arg type='a{sv}' name='platform-data' direction='in'/>"
92 static GDBusInterfaceInfo
*org_freedesktop_Application
;
94 static const gchar org_gtk_private_CommandLine_xml
[] =
96 "<interface name='org.gtk.private.CommandLine'>"
97 "<method name='Print'>"
98 "<arg type='s' name='message' direction='in'/>"
100 "<method name='PrintError'>"
101 "<arg type='s' name='message' direction='in'/>"
106 static GDBusInterfaceInfo
*org_gtk_private_CommandLine
;
108 /* GApplication implementation {{{1 */
109 struct _GApplicationImpl
111 GDBusConnection
*session_bus
;
112 GActionGroup
*exported_actions
;
113 const gchar
*bus_name
;
120 gboolean properties_live
;
128 static GApplicationCommandLine
*
129 g_dbus_command_line_new (GDBusMethodInvocation
*invocation
);
132 g_application_impl_get_property (GDBusConnection
*connection
,
134 const gchar
*object_path
,
135 const gchar
*interface_name
,
136 const gchar
*property_name
,
140 GApplicationImpl
*impl
= user_data
;
142 if (strcmp (property_name
, "Busy") == 0)
143 return g_variant_new_boolean (impl
->busy
);
145 g_assert_not_reached ();
151 send_property_change (GApplicationImpl
*impl
)
153 GVariantBuilder builder
;
155 g_variant_builder_init (&builder
, G_VARIANT_TYPE_ARRAY
);
156 g_variant_builder_add (&builder
,
158 "Busy", g_variant_new_boolean (impl
->busy
));
160 g_dbus_connection_emit_signal (impl
->session_bus
,
163 "org.freedesktop.DBus.Properties",
165 g_variant_new ("(sa{sv}as)",
166 "org.gtk.Application",
173 g_application_impl_method_call (GDBusConnection
*connection
,
175 const gchar
*object_path
,
176 const gchar
*interface_name
,
177 const gchar
*method_name
,
178 GVariant
*parameters
,
179 GDBusMethodInvocation
*invocation
,
182 GApplicationImpl
*impl
= user_data
;
183 GApplicationClass
*class;
185 class = G_APPLICATION_GET_CLASS (impl
->app
);
187 if (strcmp (method_name
, "Activate") == 0)
189 GVariant
*platform_data
;
191 /* Completely the same for both freedesktop and gtk interfaces */
193 g_variant_get (parameters
, "(@a{sv})", &platform_data
);
195 class->before_emit (impl
->app
, platform_data
);
196 g_signal_emit_by_name (impl
->app
, "activate");
197 class->after_emit (impl
->app
, platform_data
);
198 g_variant_unref (platform_data
);
200 g_dbus_method_invocation_return_value (invocation
, NULL
);
203 else if (strcmp (method_name
, "Open") == 0)
205 GApplicationFlags flags
;
206 GVariant
*platform_data
;
212 flags
= g_application_get_flags (impl
->app
);
213 if ((flags
& G_APPLICATION_HANDLES_OPEN
) == 0)
215 g_dbus_method_invocation_return_error (invocation
, G_DBUS_ERROR
, G_DBUS_ERROR_NOT_SUPPORTED
, "Application does not open files");
219 /* freedesktop interface has no hint parameter */
220 if (g_str_equal (interface_name
, "org.freedesktop.Application"))
222 g_variant_get (parameters
, "(@as@a{sv})", &array
, &platform_data
);
226 g_variant_get (parameters
, "(@as&s@a{sv})", &array
, &hint
, &platform_data
);
228 n
= g_variant_n_children (array
);
229 files
= g_new (GFile
*, n
+ 1);
231 for (i
= 0; i
< n
; i
++)
235 g_variant_get_child (array
, i
, "&s", &uri
);
236 files
[i
] = g_file_new_for_uri (uri
);
238 g_variant_unref (array
);
241 class->before_emit (impl
->app
, platform_data
);
242 g_signal_emit_by_name (impl
->app
, "open", files
, n
, hint
);
243 class->after_emit (impl
->app
, platform_data
);
245 g_variant_unref (platform_data
);
247 for (i
= 0; i
< n
; i
++)
248 g_object_unref (files
[i
]);
251 g_dbus_method_invocation_return_value (invocation
, NULL
);
254 else if (strcmp (method_name
, "CommandLine") == 0)
256 GApplicationFlags flags
;
257 GApplicationCommandLine
*cmdline
;
258 GVariant
*platform_data
;
261 flags
= g_application_get_flags (impl
->app
);
262 if ((flags
& G_APPLICATION_HANDLES_COMMAND_LINE
) == 0)
264 g_dbus_method_invocation_return_error (invocation
, G_DBUS_ERROR
, G_DBUS_ERROR_NOT_SUPPORTED
,
265 "Application does not handle command line arguments");
269 /* Only on the GtkApplication interface */
271 cmdline
= g_dbus_command_line_new (invocation
);
272 platform_data
= g_variant_get_child_value (parameters
, 2);
273 class->before_emit (impl
->app
, platform_data
);
274 g_signal_emit_by_name (impl
->app
, "command-line", cmdline
, &status
);
275 g_application_command_line_set_exit_status (cmdline
, status
);
276 class->after_emit (impl
->app
, platform_data
);
277 g_variant_unref (platform_data
);
278 g_object_unref (cmdline
);
280 else if (g_str_equal (method_name
, "ActivateAction"))
282 GVariant
*parameter
= NULL
;
283 GVariant
*platform_data
;
287 /* Only on the freedesktop interface */
289 g_variant_get (parameters
, "(&sav@a{sv})", &name
, &iter
, &platform_data
);
290 g_variant_iter_next (iter
, "v", ¶meter
);
291 g_variant_iter_free (iter
);
293 class->before_emit (impl
->app
, platform_data
);
294 g_action_group_activate_action (impl
->exported_actions
, name
, parameter
);
295 class->after_emit (impl
->app
, platform_data
);
298 g_variant_unref (parameter
);
300 g_variant_unref (platform_data
);
302 g_dbus_method_invocation_return_value (invocation
, NULL
);
305 g_assert_not_reached ();
309 application_path_from_appid (const gchar
*appid
)
311 gchar
*appid_path
, *iter
;
314 /* this is a private implementation detail */
315 return g_strdup ("/org/gtk/Application/anonymous");
317 appid_path
= g_strconcat ("/", appid
, NULL
);
318 for (iter
= appid_path
; *iter
; iter
++)
330 /* Attempt to become the primary instance.
332 * Returns %TRUE if everything went OK, regardless of if we became the
333 * primary instance or not. %FALSE is reserved for when something went
334 * seriously wrong (and @error will be set too, in that case).
336 * After a %TRUE return, impl->primary will be TRUE if we were
340 g_application_impl_attempt_primary (GApplicationImpl
*impl
,
341 GCancellable
*cancellable
,
344 const static GDBusInterfaceVTable vtable
= {
345 g_application_impl_method_call
,
346 g_application_impl_get_property
,
347 NULL
/* set_property */
349 GApplicationClass
*app_class
= G_APPLICATION_GET_CLASS (impl
->app
);
353 if (org_gtk_Application
== NULL
)
355 GError
*error
= NULL
;
358 info
= g_dbus_node_info_new_for_xml (org_gtk_Application_xml
, &error
);
359 if G_UNLIKELY (info
== NULL
)
360 g_error ("%s", error
->message
);
361 org_gtk_Application
= g_dbus_node_info_lookup_interface (info
, "org.gtk.Application");
362 g_assert (org_gtk_Application
!= NULL
);
363 g_dbus_interface_info_ref (org_gtk_Application
);
364 g_dbus_node_info_unref (info
);
366 info
= g_dbus_node_info_new_for_xml (org_freedesktop_Application_xml
, &error
);
367 if G_UNLIKELY (info
== NULL
)
368 g_error ("%s", error
->message
);
369 org_freedesktop_Application
= g_dbus_node_info_lookup_interface (info
, "org.freedesktop.Application");
370 g_assert (org_freedesktop_Application
!= NULL
);
371 g_dbus_interface_info_ref (org_freedesktop_Application
);
372 g_dbus_node_info_unref (info
);
375 /* We could possibly have been D-Bus activated as a result of incoming
376 * requests on either the application or actiongroup interfaces.
377 * Because of how GDBus dispatches messages, we need to ensure that
378 * both of those things are registered before we attempt to request
381 * The action group need not be populated yet, as long as it happens
382 * before we return to the mainloop. The reason for that is because
383 * GDBus does the check to make sure the object exists from the worker
384 * thread but doesn't actually dispatch the action invocation until we
385 * hit the mainloop in this thread. There is also no danger of
386 * receiving 'activate' or 'open' signals until after 'startup' runs,
387 * for the same reason.
389 impl
->object_id
= g_dbus_connection_register_object (impl
->session_bus
, impl
->object_path
,
390 org_gtk_Application
, &vtable
, impl
, NULL
, error
);
392 if (impl
->object_id
== 0)
395 impl
->fdo_object_id
= g_dbus_connection_register_object (impl
->session_bus
, impl
->object_path
,
396 org_freedesktop_Application
, &vtable
, impl
, NULL
, error
);
398 if (impl
->fdo_object_id
== 0)
401 impl
->actions_id
= g_dbus_connection_export_action_group (impl
->session_bus
, impl
->object_path
,
402 impl
->exported_actions
, error
);
404 if (impl
->actions_id
== 0)
407 impl
->registered
= TRUE
;
408 if (!app_class
->dbus_register (impl
->app
,
414 if (impl
->bus_name
== NULL
)
416 /* If this is a non-unique application then it is sufficient to
417 * have our object paths registered. We can return now.
419 * Note: non-unique applications always act as primary-instance.
421 impl
->primary
= TRUE
;
425 /* If this is a unique application then we need to attempt to own
426 * the well-known name and fall back to remote mode (!is_primary)
427 * in the case that we can't do that.
429 /* DBUS_NAME_FLAG_DO_NOT_QUEUE: 0x4 */
430 reply
= g_dbus_connection_call_sync (impl
->session_bus
, "org.freedesktop.DBus", "/org/freedesktop/DBus",
431 "org.freedesktop.DBus", "RequestName",
432 g_variant_new ("(su)", impl
->bus_name
, 0x4), G_VARIANT_TYPE ("(u)"),
433 0, -1, cancellable
, error
);
438 g_variant_get (reply
, "(u)", &rval
);
439 g_variant_unref (reply
);
441 /* DBUS_REQUEST_NAME_REPLY_EXISTS: 3 */
442 impl
->primary
= (rval
!= 3);
447 /* Stop doing the things that the primary instance does.
449 * This should be called if attempting to become the primary instance
450 * failed (in order to clean up any partial success) and should also
451 * be called when freeing the GApplication.
453 * It is safe to call this multiple times.
456 g_application_impl_stop_primary (GApplicationImpl
*impl
)
458 GApplicationClass
*app_class
= G_APPLICATION_GET_CLASS (impl
->app
);
460 if (impl
->registered
)
462 app_class
->dbus_unregister (impl
->app
,
465 impl
->registered
= FALSE
;
470 g_dbus_connection_unregister_object (impl
->session_bus
, impl
->object_id
);
474 if (impl
->fdo_object_id
)
476 g_dbus_connection_unregister_object (impl
->session_bus
, impl
->fdo_object_id
);
477 impl
->fdo_object_id
= 0;
480 if (impl
->actions_id
)
482 g_dbus_connection_unexport_action_group (impl
->session_bus
, impl
->actions_id
);
483 impl
->actions_id
= 0;
486 if (impl
->primary
&& impl
->bus_name
)
488 g_dbus_connection_call (impl
->session_bus
, "org.freedesktop.DBus",
489 "/org/freedesktop/DBus", "org.freedesktop.DBus",
490 "ReleaseName", g_variant_new ("(s)", impl
->bus_name
),
491 NULL
, G_DBUS_CALL_FLAGS_NONE
, -1, NULL
, NULL
, NULL
);
492 impl
->primary
= FALSE
;
497 g_application_impl_set_busy_state (GApplicationImpl
*impl
,
500 if (impl
->busy
!= busy
)
503 send_property_change (impl
);
508 g_application_impl_destroy (GApplicationImpl
*impl
)
510 g_application_impl_stop_primary (impl
);
512 if (impl
->session_bus
)
513 g_object_unref (impl
->session_bus
);
515 g_free (impl
->object_path
);
517 g_slice_free (GApplicationImpl
, impl
);
521 g_application_impl_register (GApplication
*application
,
523 GApplicationFlags flags
,
524 GActionGroup
*exported_actions
,
525 GRemoteActionGroup
**remote_actions
,
526 GCancellable
*cancellable
,
529 GDBusActionGroup
*actions
;
530 GApplicationImpl
*impl
;
532 g_assert ((flags
& G_APPLICATION_NON_UNIQUE
) || appid
!= NULL
);
534 impl
= g_slice_new0 (GApplicationImpl
);
536 impl
->app
= application
;
537 impl
->exported_actions
= exported_actions
;
539 /* non-unique applications do not attempt to acquire a bus name */
540 if (~flags
& G_APPLICATION_NON_UNIQUE
)
541 impl
->bus_name
= appid
;
543 impl
->session_bus
= g_bus_get_sync (G_BUS_TYPE_SESSION
, cancellable
, NULL
);
545 if (impl
->session_bus
== NULL
)
547 /* If we can't connect to the session bus, proceed as a normal
548 * non-unique application.
550 *remote_actions
= NULL
;
554 impl
->object_path
= application_path_from_appid (appid
);
556 /* Only try to be the primary instance if
557 * G_APPLICATION_IS_LAUNCHER was not specified.
559 if (~flags
& G_APPLICATION_IS_LAUNCHER
)
561 if (!g_application_impl_attempt_primary (impl
, cancellable
, error
))
563 g_application_impl_destroy (impl
);
570 /* We didn't make it. Drop our service-side stuff. */
571 g_application_impl_stop_primary (impl
);
573 if (flags
& G_APPLICATION_IS_SERVICE
)
575 g_set_error (error
, G_DBUS_ERROR
, G_DBUS_ERROR_FAILED
,
576 "Unable to acquire bus name '%s'", appid
);
577 g_application_impl_destroy (impl
);
583 /* We are non-primary. Try to get the primary's list of actions.
584 * This also serves as a mechanism to ensure that the primary exists
585 * (ie: DBus service files installed correctly, etc).
587 actions
= g_dbus_action_group_get (impl
->session_bus
, impl
->bus_name
, impl
->object_path
);
588 if (!g_dbus_action_group_sync (actions
, cancellable
, error
))
590 /* The primary appears not to exist. Fail the registration. */
591 g_application_impl_destroy (impl
);
592 g_object_unref (actions
);
597 *remote_actions
= G_REMOTE_ACTION_GROUP (actions
);
603 g_application_impl_activate (GApplicationImpl
*impl
,
604 GVariant
*platform_data
)
606 g_dbus_connection_call (impl
->session_bus
,
609 "org.gtk.Application",
611 g_variant_new ("(@a{sv})", platform_data
),
612 NULL
, 0, -1, NULL
, NULL
, NULL
);
616 g_application_impl_open (GApplicationImpl
*impl
,
620 GVariant
*platform_data
)
622 GVariantBuilder builder
;
625 g_variant_builder_init (&builder
, G_VARIANT_TYPE ("(assa{sv})"));
626 g_variant_builder_open (&builder
, G_VARIANT_TYPE_STRING_ARRAY
);
627 for (i
= 0; i
< n_files
; i
++)
629 gchar
*uri
= g_file_get_uri (files
[i
]);
630 g_variant_builder_add (&builder
, "s", uri
);
633 g_variant_builder_close (&builder
);
634 g_variant_builder_add (&builder
, "s", hint
);
635 g_variant_builder_add_value (&builder
, platform_data
);
637 g_dbus_connection_call (impl
->session_bus
,
640 "org.gtk.Application",
642 g_variant_builder_end (&builder
),
643 NULL
, 0, -1, NULL
, NULL
, NULL
);
647 g_application_impl_cmdline_method_call (GDBusConnection
*connection
,
649 const gchar
*object_path
,
650 const gchar
*interface_name
,
651 const gchar
*method_name
,
652 GVariant
*parameters
,
653 GDBusMethodInvocation
*invocation
,
656 const gchar
*message
;
658 g_variant_get_child (parameters
, 0, "&s", &message
);
660 if (strcmp (method_name
, "Print") == 0)
661 g_print ("%s", message
);
662 else if (strcmp (method_name
, "PrintError") == 0)
663 g_printerr ("%s", message
);
665 g_assert_not_reached ();
667 g_dbus_method_invocation_return_value (invocation
, NULL
);
677 g_application_impl_cmdline_done (GObject
*source
,
678 GAsyncResult
*result
,
681 CommandLineData
*data
= user_data
;
682 GError
*error
= NULL
;
686 reply
= g_dbus_connection_call_with_unix_fd_list_finish (G_DBUS_CONNECTION (source
), NULL
, result
, &error
);
688 reply
= g_dbus_connection_call_finish (G_DBUS_CONNECTION (source
), result
, &error
);
694 g_variant_get (reply
, "(i)", &data
->status
);
695 g_variant_unref (reply
);
700 g_printerr ("%s\n", error
->message
);
701 g_error_free (error
);
705 g_main_loop_quit (data
->loop
);
709 g_application_impl_command_line (GApplicationImpl
*impl
,
710 const gchar
* const *arguments
,
711 GVariant
*platform_data
)
713 const static GDBusInterfaceVTable vtable
= {
714 g_application_impl_cmdline_method_call
716 const gchar
*object_path
= "/org/gtk/Application/CommandLine";
717 GMainContext
*context
;
718 CommandLineData data
;
721 context
= g_main_context_new ();
722 data
.loop
= g_main_loop_new (context
, FALSE
);
723 g_main_context_push_thread_default (context
);
725 if (org_gtk_private_CommandLine
== NULL
)
727 GError
*error
= NULL
;
730 info
= g_dbus_node_info_new_for_xml (org_gtk_private_CommandLine_xml
, &error
);
731 if G_UNLIKELY (info
== NULL
)
732 g_error ("%s", error
->message
);
733 org_gtk_private_CommandLine
= g_dbus_node_info_lookup_interface (info
, "org.gtk.private.CommandLine");
734 g_assert (org_gtk_private_CommandLine
!= NULL
);
735 g_dbus_interface_info_ref (org_gtk_private_CommandLine
);
736 g_dbus_node_info_unref (info
);
739 object_id
= g_dbus_connection_register_object (impl
->session_bus
, object_path
,
740 org_gtk_private_CommandLine
,
741 &vtable
, &data
, NULL
, NULL
);
742 /* In theory we should try other paths... */
743 g_assert (object_id
!= 0);
747 GError
*error
= NULL
;
748 GUnixFDList
*fd_list
;
750 /* send along the stdin in case
751 * g_application_command_line_get_stdin_data() is called
753 fd_list
= g_unix_fd_list_new ();
754 g_unix_fd_list_append (fd_list
, 0, &error
);
755 g_assert_no_error (error
);
757 g_dbus_connection_call_with_unix_fd_list (impl
->session_bus
, impl
->bus_name
, impl
->object_path
,
758 "org.gtk.Application", "CommandLine",
759 g_variant_new ("(o^aay@a{sv})", object_path
, arguments
, platform_data
),
760 G_VARIANT_TYPE ("(i)"), 0, G_MAXINT
, fd_list
, NULL
,
761 g_application_impl_cmdline_done
, &data
);
762 g_object_unref (fd_list
);
765 g_dbus_connection_call (impl
->session_bus
, impl
->bus_name
, impl
->object_path
,
766 "org.gtk.Application", "CommandLine",
767 g_variant_new ("(o^aay@a{sv})", object_path
, arguments
, platform_data
),
768 G_VARIANT_TYPE ("(i)"), 0, G_MAXINT
, NULL
,
769 g_application_impl_cmdline_done
, &data
);
772 g_main_loop_run (data
.loop
);
774 g_main_context_pop_thread_default (context
);
775 g_main_context_unref (context
);
776 g_main_loop_unref (data
.loop
);
782 g_application_impl_flush (GApplicationImpl
*impl
)
784 if (impl
->session_bus
)
785 g_dbus_connection_flush_sync (impl
->session_bus
, NULL
, NULL
);
789 g_application_impl_get_dbus_connection (GApplicationImpl
*impl
)
791 return impl
->session_bus
;
795 g_application_impl_get_dbus_object_path (GApplicationImpl
*impl
)
797 return impl
->object_path
;
800 /* GDBusCommandLine implementation {{{1 */
802 typedef GApplicationCommandLineClass GDBusCommandLineClass
;
803 static GType
g_dbus_command_line_get_type (void);
806 GApplicationCommandLine parent_instance
;
807 GDBusMethodInvocation
*invocation
;
809 GDBusConnection
*connection
;
810 const gchar
*bus_name
;
811 const gchar
*object_path
;
815 G_DEFINE_TYPE (GDBusCommandLine
,
817 G_TYPE_APPLICATION_COMMAND_LINE
)
820 g_dbus_command_line_print_literal (GApplicationCommandLine
*cmdline
,
821 const gchar
*message
)
823 GDBusCommandLine
*gdbcl
= (GDBusCommandLine
*) cmdline
;
825 g_dbus_connection_call (gdbcl
->connection
,
828 "org.gtk.private.CommandLine", "Print",
829 g_variant_new ("(s)", message
),
830 NULL
, 0, -1, NULL
, NULL
, NULL
);
834 g_dbus_command_line_printerr_literal (GApplicationCommandLine
*cmdline
,
835 const gchar
*message
)
837 GDBusCommandLine
*gdbcl
= (GDBusCommandLine
*) cmdline
;
839 g_dbus_connection_call (gdbcl
->connection
,
842 "org.gtk.private.CommandLine", "PrintError",
843 g_variant_new ("(s)", message
),
844 NULL
, 0, -1, NULL
, NULL
, NULL
);
847 static GInputStream
*
848 g_dbus_command_line_get_stdin (GApplicationCommandLine
*cmdline
)
851 GDBusCommandLine
*gdbcl
= (GDBusCommandLine
*) cmdline
;
852 GInputStream
*result
= NULL
;
853 GDBusMessage
*message
;
854 GUnixFDList
*fd_list
;
856 message
= g_dbus_method_invocation_get_message (gdbcl
->invocation
);
857 fd_list
= g_dbus_message_get_unix_fd_list (message
);
859 if (fd_list
&& g_unix_fd_list_get_length (fd_list
))
863 fds
= g_unix_fd_list_steal_fds (fd_list
, &n_fds
);
864 result
= g_unix_input_stream_new (fds
[0], TRUE
);
865 for (i
= 1; i
< n_fds
; i
++)
866 (void) g_close (fds
[i
], NULL
);
877 g_dbus_command_line_finalize (GObject
*object
)
879 GApplicationCommandLine
*cmdline
= G_APPLICATION_COMMAND_LINE (object
);
880 GDBusCommandLine
*gdbcl
= (GDBusCommandLine
*) object
;
883 status
= g_application_command_line_get_exit_status (cmdline
);
885 g_dbus_method_invocation_return_value (gdbcl
->invocation
,
886 g_variant_new ("(i)", status
));
887 g_object_unref (gdbcl
->invocation
);
889 G_OBJECT_CLASS (g_dbus_command_line_parent_class
)
894 g_dbus_command_line_init (GDBusCommandLine
*gdbcl
)
899 g_dbus_command_line_class_init (GApplicationCommandLineClass
*class)
901 GObjectClass
*object_class
= G_OBJECT_CLASS (class);
903 object_class
->finalize
= g_dbus_command_line_finalize
;
904 class->printerr_literal
= g_dbus_command_line_printerr_literal
;
905 class->print_literal
= g_dbus_command_line_print_literal
;
906 class->get_stdin
= g_dbus_command_line_get_stdin
;
909 static GApplicationCommandLine
*
910 g_dbus_command_line_new (GDBusMethodInvocation
*invocation
)
912 GDBusCommandLine
*gdbcl
;
914 GVariant
*arguments
, *platform_data
;
916 args
= g_dbus_method_invocation_get_parameters (invocation
);
918 arguments
= g_variant_get_child_value (args
, 1);
919 platform_data
= g_variant_get_child_value (args
, 2);
920 gdbcl
= g_object_new (g_dbus_command_line_get_type (),
921 "arguments", arguments
,
922 "platform-data", platform_data
,
924 g_variant_unref (arguments
);
925 g_variant_unref (platform_data
);
927 gdbcl
->connection
= g_dbus_method_invocation_get_connection (invocation
);
928 gdbcl
->bus_name
= g_dbus_method_invocation_get_sender (invocation
);
929 g_variant_get_child (args
, 0, "&o", &gdbcl
->object_path
);
930 gdbcl
->invocation
= g_object_ref (invocation
);
932 return G_APPLICATION_COMMAND_LINE (gdbcl
);
937 /* vim:set foldmethod=marker: */