mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-04-07 00:03:08 +02:00
Merge branch 'master' into 'master'
Add file handle support for gdbus call Closes #961 See merge request GNOME/glib!1729
This commit is contained in:
commit
c1a11c02e5
@ -321,6 +321,18 @@ $ gdbus call --session \
|
|||||||
5000
|
5000
|
||||||
(uint32 12,)
|
(uint32 12,)
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
<para>
|
||||||
|
Call a method with file handle argument:
|
||||||
|
</para>
|
||||||
|
<programlisting>
|
||||||
|
$ gdbus call --session \
|
||||||
|
--dest org.example.foo \
|
||||||
|
--object-path /org/example/foo \
|
||||||
|
--method SendFDs \
|
||||||
|
1 \
|
||||||
|
10 \
|
||||||
|
10<file.foo
|
||||||
|
</programlisting>
|
||||||
<para>
|
<para>
|
||||||
Monitoring all objects on a service:
|
Monitoring all objects on a service:
|
||||||
</para>
|
</para>
|
||||||
|
@ -27,6 +27,10 @@
|
|||||||
|
|
||||||
#include <gio/gio.h>
|
#include <gio/gio.h>
|
||||||
|
|
||||||
|
#ifdef G_OS_UNIX
|
||||||
|
#include <gio/gunixfdlist.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <gi18n.h>
|
#include <gi18n.h>
|
||||||
|
|
||||||
#ifdef G_OS_WIN32
|
#ifdef G_OS_WIN32
|
||||||
@ -905,6 +909,10 @@ handle_call (gint *argc,
|
|||||||
gchar *method_name;
|
gchar *method_name;
|
||||||
GVariant *result;
|
GVariant *result;
|
||||||
GPtrArray *in_signature_types;
|
GPtrArray *in_signature_types;
|
||||||
|
#ifdef G_OS_UNIX
|
||||||
|
GUnixFDList *fd_list;
|
||||||
|
guint fd_id;
|
||||||
|
#endif
|
||||||
gboolean complete_names;
|
gboolean complete_names;
|
||||||
gboolean complete_paths;
|
gboolean complete_paths;
|
||||||
gboolean complete_methods;
|
gboolean complete_methods;
|
||||||
@ -920,6 +928,9 @@ handle_call (gint *argc,
|
|||||||
method_name = NULL;
|
method_name = NULL;
|
||||||
result = NULL;
|
result = NULL;
|
||||||
in_signature_types = NULL;
|
in_signature_types = NULL;
|
||||||
|
#ifdef G_OS_UNIX
|
||||||
|
fd_list = NULL;
|
||||||
|
#endif
|
||||||
|
|
||||||
modify_argv0_for_command (argc, argv, "call");
|
modify_argv0_for_command (argc, argv, "call");
|
||||||
|
|
||||||
@ -1164,6 +1175,23 @@ handle_call (gint *argc,
|
|||||||
}
|
}
|
||||||
g_free (context);
|
g_free (context);
|
||||||
}
|
}
|
||||||
|
#ifdef G_OS_UNIX
|
||||||
|
if (g_variant_is_of_type (value, G_VARIANT_TYPE_HANDLE))
|
||||||
|
{
|
||||||
|
if (!fd_list)
|
||||||
|
fd_list = g_unix_fd_list_new ();
|
||||||
|
if ((fd_id = g_unix_fd_list_append (fd_list, g_variant_get_handle (value), &error)) == -1)
|
||||||
|
{
|
||||||
|
g_printerr (_("Error adding handle %d: %s\n"),
|
||||||
|
g_variant_get_handle (value), error->message);
|
||||||
|
g_variant_builder_clear (&builder);
|
||||||
|
g_error_free (error);
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
g_variant_unref (value);
|
||||||
|
value = g_variant_new_handle (fd_id);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
g_variant_builder_add_value (&builder, value);
|
g_variant_builder_add_value (&builder, value);
|
||||||
++parm;
|
++parm;
|
||||||
}
|
}
|
||||||
@ -1171,6 +1199,21 @@ handle_call (gint *argc,
|
|||||||
|
|
||||||
if (parameters != NULL)
|
if (parameters != NULL)
|
||||||
parameters = g_variant_ref_sink (parameters);
|
parameters = g_variant_ref_sink (parameters);
|
||||||
|
#ifdef G_OS_UNIX
|
||||||
|
result = g_dbus_connection_call_with_unix_fd_list_sync (c,
|
||||||
|
opt_call_dest,
|
||||||
|
opt_call_object_path,
|
||||||
|
interface_name,
|
||||||
|
method_name,
|
||||||
|
parameters,
|
||||||
|
NULL,
|
||||||
|
G_DBUS_CALL_FLAGS_NONE,
|
||||||
|
opt_call_timeout > 0 ? opt_call_timeout * 1000 : opt_call_timeout,
|
||||||
|
fd_list,
|
||||||
|
NULL,
|
||||||
|
NULL,
|
||||||
|
&error);
|
||||||
|
#else
|
||||||
result = g_dbus_connection_call_sync (c,
|
result = g_dbus_connection_call_sync (c,
|
||||||
opt_call_dest,
|
opt_call_dest,
|
||||||
opt_call_object_path,
|
opt_call_object_path,
|
||||||
@ -1182,6 +1225,7 @@ handle_call (gint *argc,
|
|||||||
opt_call_timeout > 0 ? opt_call_timeout * 1000 : opt_call_timeout,
|
opt_call_timeout > 0 ? opt_call_timeout * 1000 : opt_call_timeout,
|
||||||
NULL,
|
NULL,
|
||||||
&error);
|
&error);
|
||||||
|
#endif
|
||||||
if (result == NULL)
|
if (result == NULL)
|
||||||
{
|
{
|
||||||
g_printerr (_("Error: %s\n"), error->message);
|
g_printerr (_("Error: %s\n"), error->message);
|
||||||
@ -1230,6 +1274,9 @@ handle_call (gint *argc,
|
|||||||
g_free (interface_name);
|
g_free (interface_name);
|
||||||
g_free (method_name);
|
g_free (method_name);
|
||||||
g_option_context_free (o);
|
g_option_context_free (o);
|
||||||
|
#ifdef G_OS_UNIX
|
||||||
|
g_clear_object (&fd_list);
|
||||||
|
#endif
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user