2011-04-11 16:54:52 +02:00
|
|
|
/* GLib testing framework examples and tests
|
|
|
|
*
|
2018-11-21 16:41:42 +01:00
|
|
|
* Copyright (C) 2008-2018 Red Hat, Inc.
|
2011-04-11 16:54:52 +02:00
|
|
|
*
|
2022-05-18 10:20:07 +02:00
|
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
*
|
2011-04-11 16:54:52 +02:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2017-05-27 17:19:21 +02:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2011-04-11 16:54:52 +02:00
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General
|
2014-01-23 12:58:29 +01:00
|
|
|
* Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2011-04-11 16:54:52 +02:00
|
|
|
*
|
|
|
|
* Author: David Zeuthen <davidz@redhat.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <gio/gio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2024-05-13 14:00:34 +02:00
|
|
|
#include "gdbusprivate.h"
|
2011-04-11 16:54:52 +02:00
|
|
|
#include "gdbus-tests.h"
|
2023-06-30 05:42:58 +02:00
|
|
|
#include "gstdio.h"
|
2011-04-11 16:54:52 +02:00
|
|
|
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
#if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_64
|
2020-01-27 11:11:46 +01:00
|
|
|
#include "gdbus-test-codegen-generated-min-required-2-64.h"
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
#else
|
2011-04-11 16:54:52 +02:00
|
|
|
#include "gdbus-test-codegen-generated.h"
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
#endif
|
|
|
|
|
2018-12-06 22:38:39 +01:00
|
|
|
#include "gdbus-test-codegen-generated-interface-info.h"
|
2011-04-11 16:54:52 +02:00
|
|
|
|
2020-08-03 17:08:55 +02:00
|
|
|
#if GLIB_VERSION_MIN_REQUIRED < GLIB_VERSION_2_68
|
|
|
|
# undef G_DBUS_METHOD_INVOCATION_HANDLED
|
|
|
|
# define G_DBUS_METHOD_INVOCATION_HANDLED TRUE
|
|
|
|
#endif
|
|
|
|
|
2011-04-11 16:54:52 +02:00
|
|
|
/* ---------------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
static guint
|
|
|
|
count_annotations (GDBusAnnotationInfo **annotations)
|
|
|
|
{
|
|
|
|
guint ret;
|
|
|
|
ret = 0;
|
|
|
|
while (annotations != NULL && annotations[ret] != NULL)
|
|
|
|
ret++;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* checks that
|
|
|
|
*
|
|
|
|
* - non-internal annotations are written out correctly; and
|
|
|
|
* - injection via --annotation --key --value works
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
test_annotations (void)
|
|
|
|
{
|
|
|
|
GDBusInterfaceInfo *iface;
|
|
|
|
GDBusMethodInfo *method;
|
|
|
|
GDBusSignalInfo *signal;
|
|
|
|
GDBusPropertyInfo *property;
|
|
|
|
|
2011-09-16 22:01:13 +02:00
|
|
|
iface = foo_igen_bar_interface_info ();
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert (iface != NULL);
|
|
|
|
|
2019-01-09 12:42:16 +01:00
|
|
|
/* see meson.build for where these annotations are injected */
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_cmpint (count_annotations (iface->annotations), ==, 1);
|
|
|
|
g_assert_cmpstr (g_dbus_annotation_info_lookup (iface->annotations, "Key1"), ==, "Value1");
|
|
|
|
|
|
|
|
method = g_dbus_interface_info_lookup_method (iface, "HelloWorld");
|
|
|
|
g_assert (method != NULL);
|
|
|
|
g_assert_cmpint (count_annotations (method->annotations), ==, 2);
|
|
|
|
g_assert_cmpstr (g_dbus_annotation_info_lookup (method->annotations, "ExistingAnnotation"), ==, "blah");
|
|
|
|
g_assert_cmpstr (g_dbus_annotation_info_lookup (method->annotations, "Key3"), ==, "Value3");
|
|
|
|
|
|
|
|
signal = g_dbus_interface_info_lookup_signal (iface, "TestSignal");
|
|
|
|
g_assert (signal != NULL);
|
|
|
|
g_assert_cmpint (count_annotations (signal->annotations), ==, 1);
|
|
|
|
g_assert_cmpstr (g_dbus_annotation_info_lookup (signal->annotations, "Key4"), ==, "Value4");
|
|
|
|
g_assert_cmpstr (g_dbus_annotation_info_lookup (signal->args[1]->annotations, "Key8"), ==, "Value8");
|
|
|
|
|
|
|
|
property = g_dbus_interface_info_lookup_property (iface, "ay");
|
|
|
|
g_assert (property != NULL);
|
|
|
|
g_assert_cmpint (count_annotations (property->annotations), ==, 1);
|
|
|
|
g_assert_cmpstr (g_dbus_annotation_info_lookup (property->annotations, "Key5"), ==, "Value5");
|
|
|
|
|
|
|
|
method = g_dbus_interface_info_lookup_method (iface, "TestPrimitiveTypes");
|
|
|
|
g_assert (method != NULL);
|
|
|
|
g_assert_cmpstr (g_dbus_annotation_info_lookup (method->in_args[4]->annotations, "Key6"), ==, "Value6");
|
|
|
|
g_assert_cmpstr (g_dbus_annotation_info_lookup (method->out_args[5]->annotations, "Key7"), ==, "Value7");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
static gboolean
|
2011-09-16 22:01:13 +02:00
|
|
|
on_handle_hello_world (FooiGenBar *object,
|
2011-04-11 16:54:52 +02:00
|
|
|
GDBusMethodInvocation *invocation,
|
|
|
|
const gchar *greeting,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
gchar *response;
|
2013-05-20 22:54:48 +02:00
|
|
|
response = g_strdup_printf ("Word! You said '%s'. I'm Skeleton, btw!", greeting);
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_bar_complete_hello_world (object, invocation, response);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_free (response);
|
2020-08-03 17:08:55 +02:00
|
|
|
return G_DBUS_METHOD_INVOCATION_HANDLED;
|
2011-04-11 16:54:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2011-09-16 22:01:13 +02:00
|
|
|
on_handle_test_primitive_types (FooiGenBar *object,
|
2011-04-11 16:54:52 +02:00
|
|
|
GDBusMethodInvocation *invocation,
|
|
|
|
guchar val_byte,
|
|
|
|
gboolean val_boolean,
|
|
|
|
gint16 val_int16,
|
|
|
|
guint16 val_uint16,
|
|
|
|
gint val_int32,
|
|
|
|
guint val_uint32,
|
|
|
|
gint64 val_int64,
|
|
|
|
guint64 val_uint64,
|
|
|
|
gdouble val_double,
|
|
|
|
const gchar *val_string,
|
|
|
|
const gchar *val_objpath,
|
|
|
|
const gchar *val_signature,
|
|
|
|
const gchar *val_bytestring,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
gchar *s1;
|
|
|
|
gchar *s2;
|
|
|
|
gchar *s3;
|
2013-05-20 22:54:48 +02:00
|
|
|
s1 = g_strdup_printf ("Word! You said '%s'. Rock'n'roll!", val_string);
|
2011-04-11 16:54:52 +02:00
|
|
|
s2 = g_strdup_printf ("/modified%s", val_objpath);
|
|
|
|
s3 = g_strdup_printf ("assgit%s", val_signature);
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_bar_complete_test_primitive_types (object,
|
|
|
|
invocation,
|
|
|
|
10 + val_byte,
|
|
|
|
!val_boolean,
|
|
|
|
100 + val_int16,
|
|
|
|
1000 + val_uint16,
|
|
|
|
10000 + val_int32,
|
|
|
|
100000 + val_uint32,
|
|
|
|
1000000 + val_int64,
|
|
|
|
10000000 + val_uint64,
|
|
|
|
val_double / G_PI,
|
|
|
|
s1,
|
|
|
|
s2,
|
|
|
|
s3,
|
|
|
|
"bytestring!\xff");
|
2011-04-11 16:54:52 +02:00
|
|
|
g_free (s1);
|
|
|
|
g_free (s2);
|
|
|
|
g_free (s3);
|
2020-08-03 17:08:55 +02:00
|
|
|
return G_DBUS_METHOD_INVOCATION_HANDLED;
|
2011-04-11 16:54:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2011-09-16 22:01:13 +02:00
|
|
|
on_handle_test_non_primitive_types (FooiGenBar *object,
|
2011-04-11 16:54:52 +02:00
|
|
|
GDBusMethodInvocation *invocation,
|
|
|
|
GVariant *dict_s_to_s,
|
|
|
|
GVariant *dict_s_to_pairs,
|
|
|
|
GVariant *a_struct,
|
|
|
|
const gchar* const *array_of_strings,
|
2011-07-21 15:32:38 +02:00
|
|
|
const gchar* const *array_of_objpaths,
|
2011-04-11 16:54:52 +02:00
|
|
|
GVariant *array_of_signatures,
|
|
|
|
const gchar* const *array_of_bytestrings,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
gchar *s;
|
|
|
|
GString *str;
|
|
|
|
str = g_string_new (NULL);
|
|
|
|
s = g_variant_print (dict_s_to_s, TRUE); g_string_append (str, s); g_free (s);
|
|
|
|
s = g_variant_print (dict_s_to_pairs, TRUE); g_string_append (str, s); g_free (s);
|
|
|
|
s = g_variant_print (a_struct, TRUE); g_string_append (str, s); g_free (s);
|
|
|
|
s = g_strjoinv (", ", (gchar **) array_of_strings);
|
|
|
|
g_string_append_printf (str, "array_of_strings: [%s] ", s);
|
|
|
|
g_free (s);
|
2011-07-21 15:32:38 +02:00
|
|
|
s = g_strjoinv (", ", (gchar **) array_of_objpaths);
|
|
|
|
g_string_append_printf (str, "array_of_objpaths: [%s] ", s);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_free (s);
|
2011-07-21 15:32:38 +02:00
|
|
|
s = g_variant_print (array_of_signatures, TRUE);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_string_append_printf (str, "array_of_signatures: %s ", s);
|
|
|
|
g_free (s);
|
|
|
|
s = g_strjoinv (", ", (gchar **) array_of_bytestrings);
|
|
|
|
g_string_append_printf (str, "array_of_bytestrings: [%s] ", s);
|
|
|
|
g_free (s);
|
2014-12-05 16:25:51 +01:00
|
|
|
foo_igen_bar_complete_test_non_primitive_types (object, invocation,
|
|
|
|
array_of_strings,
|
|
|
|
array_of_objpaths,
|
|
|
|
array_of_signatures,
|
|
|
|
array_of_bytestrings,
|
|
|
|
str->str);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_string_free (str, TRUE);
|
2020-08-03 17:08:55 +02:00
|
|
|
return G_DBUS_METHOD_INVOCATION_HANDLED;
|
2011-04-11 16:54:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2011-09-16 22:01:13 +02:00
|
|
|
on_handle_request_signal_emission (FooiGenBar *object,
|
2011-04-11 16:54:52 +02:00
|
|
|
GDBusMethodInvocation *invocation,
|
|
|
|
gint which_one,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
if (which_one == 0)
|
|
|
|
{
|
|
|
|
const gchar *a_strv[] = {"foo", "bar", NULL};
|
|
|
|
const gchar *a_bytestring_array[] = {"foo\xff", "bar\xff", NULL};
|
|
|
|
GVariant *a_variant = g_variant_new_parsed ("{'first': (42, 42), 'second': (43, 43)}");
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_bar_emit_test_signal (object, 43, a_strv, a_bytestring_array, a_variant); /* consumes a_variant */
|
|
|
|
foo_igen_bar_complete_request_signal_emission (object, invocation);
|
2011-04-11 16:54:52 +02:00
|
|
|
}
|
2020-08-03 17:08:55 +02:00
|
|
|
return G_DBUS_METHOD_INVOCATION_HANDLED;
|
2011-04-11 16:54:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2011-09-16 22:01:13 +02:00
|
|
|
on_handle_request_multi_property_mods (FooiGenBar *object,
|
2011-04-11 16:54:52 +02:00
|
|
|
GDBusMethodInvocation *invocation,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_bar_set_y (object, foo_igen_bar_get_y (object) + 1);
|
|
|
|
foo_igen_bar_set_i (object, foo_igen_bar_get_i (object) + 1);
|
|
|
|
foo_igen_bar_set_y (object, foo_igen_bar_get_y (object) + 1);
|
|
|
|
foo_igen_bar_set_i (object, foo_igen_bar_get_i (object) + 1);
|
2011-04-13 22:33:51 +02:00
|
|
|
g_dbus_interface_skeleton_flush (G_DBUS_INTERFACE_SKELETON (object));
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_bar_set_y (object, foo_igen_bar_get_y (object) + 1);
|
|
|
|
foo_igen_bar_set_i (object, foo_igen_bar_get_i (object) + 1);
|
|
|
|
foo_igen_bar_complete_request_multi_property_mods (object, invocation);
|
2020-08-03 17:08:55 +02:00
|
|
|
return G_DBUS_METHOD_INVOCATION_HANDLED;
|
2011-04-11 16:54:52 +02:00
|
|
|
}
|
|
|
|
|
2011-04-15 21:53:28 +02:00
|
|
|
static gboolean
|
2011-09-16 22:01:13 +02:00
|
|
|
on_handle_property_cancellation (FooiGenBar *object,
|
2011-04-15 21:53:28 +02:00
|
|
|
GDBusMethodInvocation *invocation,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
guint n;
|
2011-09-16 22:01:13 +02:00
|
|
|
n = foo_igen_bar_get_n (object);
|
2011-04-15 21:53:28 +02:00
|
|
|
/* This queues up a PropertiesChange event */
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_bar_set_n (object, n + 1);
|
2011-04-15 21:53:28 +02:00
|
|
|
/* this modifies the queued up event */
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_bar_set_n (object, n);
|
2011-04-15 21:53:28 +02:00
|
|
|
/* this flushes all PropertiesChanges event (sends the D-Bus message right
|
|
|
|
* away, if any - there should not be any)
|
|
|
|
*/
|
|
|
|
g_dbus_interface_skeleton_flush (G_DBUS_INTERFACE_SKELETON (object));
|
|
|
|
/* this makes us return the reply D-Bus method */
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_bar_complete_property_cancellation (object, invocation);
|
2020-08-03 17:08:55 +02:00
|
|
|
return G_DBUS_METHOD_INVOCATION_HANDLED;
|
2011-04-15 21:53:28 +02:00
|
|
|
}
|
|
|
|
|
2011-04-11 16:54:52 +02:00
|
|
|
/* ---------------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
static gboolean
|
2011-09-16 22:01:13 +02:00
|
|
|
on_handle_force_method (FooiGenBat *object,
|
2011-04-11 16:54:52 +02:00
|
|
|
GDBusMethodInvocation *invocation,
|
|
|
|
GVariant *force_in_i,
|
|
|
|
GVariant *force_in_s,
|
|
|
|
GVariant *force_in_ay,
|
|
|
|
GVariant *force_in_struct,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
GVariant *ret_i;
|
|
|
|
GVariant *ret_s;
|
|
|
|
GVariant *ret_ay;
|
|
|
|
GVariant *ret_struct;
|
|
|
|
gint32 val;
|
|
|
|
gchar *s;
|
|
|
|
|
|
|
|
ret_i = g_variant_new_int32 (g_variant_get_int32 (force_in_i) + 10);
|
|
|
|
s = g_strdup_printf ("%s_foo", g_variant_get_string (force_in_s, NULL));
|
|
|
|
ret_s = g_variant_new_string (s);
|
|
|
|
g_free (s);
|
|
|
|
s = g_strdup_printf ("%s_foo\xff", g_variant_get_bytestring (force_in_ay));
|
|
|
|
ret_ay = g_variant_new_bytestring (s);
|
|
|
|
g_free (s);
|
|
|
|
|
|
|
|
g_variant_get (force_in_struct, "(i)", &val);
|
|
|
|
ret_struct = g_variant_new ("(i)", val + 10);
|
|
|
|
|
|
|
|
g_variant_ref_sink (ret_i);
|
|
|
|
g_variant_ref_sink (ret_s);
|
|
|
|
g_variant_ref_sink (ret_ay);
|
|
|
|
g_variant_ref_sink (ret_struct);
|
|
|
|
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_bat_emit_force_signal (object,
|
|
|
|
ret_i,
|
|
|
|
ret_s,
|
|
|
|
ret_ay,
|
|
|
|
ret_struct);
|
2011-04-11 16:54:52 +02:00
|
|
|
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_bat_complete_force_method (object,
|
|
|
|
invocation,
|
|
|
|
ret_i,
|
|
|
|
ret_s,
|
|
|
|
ret_ay,
|
|
|
|
ret_struct);
|
2011-04-11 16:54:52 +02:00
|
|
|
|
|
|
|
g_variant_unref (ret_i);
|
|
|
|
g_variant_unref (ret_s);
|
|
|
|
g_variant_unref (ret_ay);
|
|
|
|
g_variant_unref (ret_struct);
|
|
|
|
|
2020-08-03 17:08:55 +02:00
|
|
|
return G_DBUS_METHOD_INVOCATION_HANDLED;
|
2011-04-11 16:54:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
static gboolean
|
2011-04-13 22:33:51 +02:00
|
|
|
my_g_authorize_method_handler (GDBusInterfaceSkeleton *interface,
|
|
|
|
GDBusMethodInvocation *invocation,
|
|
|
|
gpointer user_data)
|
2011-04-11 16:54:52 +02:00
|
|
|
{
|
|
|
|
const gchar *method_name;
|
|
|
|
gboolean authorized;
|
|
|
|
|
|
|
|
authorized = FALSE;
|
|
|
|
|
|
|
|
method_name = g_dbus_method_invocation_get_method_name (invocation);
|
|
|
|
if (g_strcmp0 (method_name, "CheckNotAuthorized") == 0)
|
|
|
|
{
|
|
|
|
authorized = FALSE;
|
|
|
|
}
|
|
|
|
else if (g_strcmp0 (method_name, "CheckAuthorized") == 0)
|
|
|
|
{
|
|
|
|
authorized = TRUE;
|
|
|
|
}
|
|
|
|
else if (g_strcmp0 (method_name, "CheckNotAuthorizedFromObject") == 0)
|
|
|
|
{
|
|
|
|
authorized = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!authorized)
|
|
|
|
{
|
|
|
|
g_dbus_method_invocation_return_error (invocation,
|
|
|
|
G_IO_ERROR,
|
|
|
|
G_IO_ERROR_PERMISSION_DENIED,
|
|
|
|
"not authorized...");
|
|
|
|
}
|
|
|
|
return authorized;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2011-04-13 22:33:51 +02:00
|
|
|
my_object_authorize_method_handler (GDBusObjectSkeleton *object,
|
|
|
|
GDBusInterfaceSkeleton *interface,
|
|
|
|
GDBusMethodInvocation *invocation,
|
|
|
|
gpointer user_data)
|
2011-04-11 16:54:52 +02:00
|
|
|
{
|
|
|
|
const gchar *method_name;
|
|
|
|
gboolean authorized;
|
|
|
|
|
|
|
|
authorized = FALSE;
|
|
|
|
|
|
|
|
method_name = g_dbus_method_invocation_get_method_name (invocation);
|
|
|
|
if (g_strcmp0 (method_name, "CheckNotAuthorized") == 0)
|
|
|
|
{
|
|
|
|
authorized = TRUE;
|
|
|
|
}
|
|
|
|
else if (g_strcmp0 (method_name, "CheckAuthorized") == 0)
|
|
|
|
{
|
|
|
|
authorized = TRUE;
|
|
|
|
}
|
|
|
|
else if (g_strcmp0 (method_name, "CheckNotAuthorizedFromObject") == 0)
|
|
|
|
{
|
|
|
|
authorized = FALSE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!authorized)
|
|
|
|
{
|
|
|
|
g_dbus_method_invocation_return_error (invocation,
|
|
|
|
G_IO_ERROR,
|
|
|
|
G_IO_ERROR_PENDING,
|
|
|
|
"not authorized (from object)...");
|
|
|
|
}
|
|
|
|
return authorized;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2011-09-16 22:01:13 +02:00
|
|
|
on_handle_check_not_authorized (FooiGenAuthorize *object,
|
2011-04-11 16:54:52 +02:00
|
|
|
GDBusMethodInvocation *invocation,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_authorize_complete_check_not_authorized (object, invocation);
|
2020-08-03 17:08:55 +02:00
|
|
|
return G_DBUS_METHOD_INVOCATION_HANDLED;
|
2011-04-11 16:54:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2011-09-16 22:01:13 +02:00
|
|
|
on_handle_check_authorized (FooiGenAuthorize *object,
|
2011-04-11 16:54:52 +02:00
|
|
|
GDBusMethodInvocation *invocation,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_authorize_complete_check_authorized (object, invocation);
|
2020-08-03 17:08:55 +02:00
|
|
|
return G_DBUS_METHOD_INVOCATION_HANDLED;
|
2011-04-11 16:54:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2011-09-16 22:01:13 +02:00
|
|
|
on_handle_check_not_authorized_from_object (FooiGenAuthorize *object,
|
2011-04-11 16:54:52 +02:00
|
|
|
GDBusMethodInvocation *invocation,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_authorize_complete_check_not_authorized_from_object (object, invocation);
|
2020-08-03 17:08:55 +02:00
|
|
|
return G_DBUS_METHOD_INVOCATION_HANDLED;
|
2011-04-11 16:54:52 +02:00
|
|
|
}
|
|
|
|
|
2023-06-30 05:42:58 +02:00
|
|
|
static gboolean
|
|
|
|
on_handle_fdpassing_hello_fd (FooiGenMethodThreads *object,
|
|
|
|
GDBusMethodInvocation *invocation,
|
|
|
|
GUnixFDList *fd_list,
|
|
|
|
const gchar *greeting,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
g_assert_true (G_IS_UNIX_FD_LIST (fd_list));
|
|
|
|
g_assert_cmpuint (g_unix_fd_list_get_length (fd_list), ==, 2);
|
|
|
|
g_assert_cmpstr (greeting, ==, "Hey fd!");
|
|
|
|
foo_igen_test_fdpassing_complete_hello_fd (FOO_IGEN_TEST_FDPASSING (object),
|
|
|
|
invocation, fd_list,
|
|
|
|
"I love to receive fds!");
|
|
|
|
return G_DBUS_METHOD_INVOCATION_HANDLED;
|
|
|
|
}
|
|
|
|
|
2011-04-11 16:54:52 +02:00
|
|
|
/* ---------------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
static gboolean
|
2011-09-16 22:01:13 +02:00
|
|
|
on_handle_get_self (FooiGenMethodThreads *object,
|
2011-04-11 16:54:52 +02:00
|
|
|
GDBusMethodInvocation *invocation,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
gchar *s;
|
2018-01-01 17:12:37 +01:00
|
|
|
s = g_strdup_printf ("%p", (void *)g_thread_self ());
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_method_threads_complete_get_self (object, invocation, s);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_free (s);
|
2020-08-03 17:08:55 +02:00
|
|
|
return G_DBUS_METHOD_INVOCATION_HANDLED;
|
2011-04-11 16:54:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
static GThread *method_handler_thread = NULL;
|
|
|
|
|
2011-09-16 22:01:13 +02:00
|
|
|
static FooiGenBar *exported_bar_object = NULL;
|
|
|
|
static FooiGenBat *exported_bat_object = NULL;
|
2023-06-30 05:42:58 +02:00
|
|
|
static FooiGenTestFDPassing *exported_fd_passing_object = NULL;
|
2011-09-16 22:01:13 +02:00
|
|
|
static FooiGenAuthorize *exported_authorize_object = NULL;
|
2011-04-13 22:33:51 +02:00
|
|
|
static GDBusObjectSkeleton *authorize_enclosing_object = NULL;
|
2011-09-16 22:01:13 +02:00
|
|
|
static FooiGenMethodThreads *exported_thread_object_1 = NULL;
|
|
|
|
static FooiGenMethodThreads *exported_thread_object_2 = NULL;
|
2011-04-11 16:54:52 +02:00
|
|
|
|
2012-04-17 23:51:01 +02:00
|
|
|
static void
|
|
|
|
unexport_objects (void)
|
|
|
|
{
|
|
|
|
g_dbus_interface_skeleton_unexport (G_DBUS_INTERFACE_SKELETON (exported_bar_object));
|
|
|
|
g_dbus_interface_skeleton_unexport (G_DBUS_INTERFACE_SKELETON (exported_bat_object));
|
|
|
|
g_dbus_interface_skeleton_unexport (G_DBUS_INTERFACE_SKELETON (exported_authorize_object));
|
|
|
|
g_dbus_interface_skeleton_unexport (G_DBUS_INTERFACE_SKELETON (exported_thread_object_1));
|
|
|
|
g_dbus_interface_skeleton_unexport (G_DBUS_INTERFACE_SKELETON (exported_thread_object_2));
|
2023-06-30 05:42:58 +02:00
|
|
|
g_dbus_interface_skeleton_unexport (G_DBUS_INTERFACE_SKELETON (exported_fd_passing_object));
|
2012-04-17 23:51:01 +02:00
|
|
|
}
|
|
|
|
|
2011-04-11 16:54:52 +02:00
|
|
|
static void
|
|
|
|
on_bus_acquired (GDBusConnection *connection,
|
|
|
|
const gchar *name,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
GError *error;
|
|
|
|
|
|
|
|
/* Test that we can export an object using the generated
|
2011-09-16 22:01:13 +02:00
|
|
|
* FooiGenBarSkeleton subclass. Notes:
|
2011-04-11 16:54:52 +02:00
|
|
|
*
|
|
|
|
* 1. We handle methods by simply connecting to the appropriate
|
|
|
|
* GObject signal.
|
|
|
|
*
|
|
|
|
* 2. Property storage is taken care of by the class; we can
|
|
|
|
* use g_object_get()/g_object_set() (and the generated
|
|
|
|
* C bindings at will)
|
|
|
|
*/
|
|
|
|
error = NULL;
|
2011-09-16 22:01:13 +02:00
|
|
|
exported_bar_object = foo_igen_bar_skeleton_new ();
|
|
|
|
foo_igen_bar_set_ay (exported_bar_object, "ABCabc");
|
|
|
|
foo_igen_bar_set_y (exported_bar_object, 42);
|
|
|
|
foo_igen_bar_set_d (exported_bar_object, 43.0);
|
|
|
|
foo_igen_bar_set_finally_normal_name (exported_bar_object, "There aint no place like home");
|
|
|
|
foo_igen_bar_set_writeonly_property (exported_bar_object, "Mr. Burns");
|
2011-04-11 16:54:52 +02:00
|
|
|
|
2011-04-13 22:33:51 +02:00
|
|
|
/* The following works because it's on the Skeleton object - it will
|
2011-04-11 16:54:52 +02:00
|
|
|
* fail (at run-time) on a Proxy (see on_proxy_appeared() below)
|
|
|
|
*/
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_bar_set_readonly_property (exported_bar_object, "blah");
|
|
|
|
g_assert_cmpstr (foo_igen_bar_get_writeonly_property (exported_bar_object), ==, "Mr. Burns");
|
2011-04-11 16:54:52 +02:00
|
|
|
|
2011-04-13 22:33:51 +02:00
|
|
|
g_dbus_interface_skeleton_export (G_DBUS_INTERFACE_SKELETON (exported_bar_object),
|
|
|
|
connection,
|
|
|
|
"/bar",
|
|
|
|
&error);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_no_error (error);
|
|
|
|
g_signal_connect (exported_bar_object,
|
|
|
|
"handle-hello-world",
|
|
|
|
G_CALLBACK (on_handle_hello_world),
|
|
|
|
NULL);
|
|
|
|
g_signal_connect (exported_bar_object,
|
|
|
|
"handle-test-primitive-types",
|
|
|
|
G_CALLBACK (on_handle_test_primitive_types),
|
|
|
|
NULL);
|
|
|
|
g_signal_connect (exported_bar_object,
|
|
|
|
"handle-test-non-primitive-types",
|
|
|
|
G_CALLBACK (on_handle_test_non_primitive_types),
|
|
|
|
NULL);
|
|
|
|
g_signal_connect (exported_bar_object,
|
|
|
|
"handle-request-signal-emission",
|
|
|
|
G_CALLBACK (on_handle_request_signal_emission),
|
|
|
|
NULL);
|
|
|
|
g_signal_connect (exported_bar_object,
|
|
|
|
"handle-request-multi-property-mods",
|
|
|
|
G_CALLBACK (on_handle_request_multi_property_mods),
|
|
|
|
NULL);
|
2011-04-15 21:53:28 +02:00
|
|
|
g_signal_connect (exported_bar_object,
|
|
|
|
"handle-property-cancellation",
|
|
|
|
G_CALLBACK (on_handle_property_cancellation),
|
|
|
|
NULL);
|
2011-04-11 16:54:52 +02:00
|
|
|
|
2011-09-16 22:01:13 +02:00
|
|
|
exported_bat_object = foo_igen_bat_skeleton_new ();
|
2011-04-13 22:33:51 +02:00
|
|
|
g_dbus_interface_skeleton_export (G_DBUS_INTERFACE_SKELETON (exported_bat_object),
|
|
|
|
connection,
|
|
|
|
"/bat",
|
|
|
|
&error);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_no_error (error);
|
|
|
|
g_signal_connect (exported_bat_object,
|
|
|
|
"handle-force-method",
|
|
|
|
G_CALLBACK (on_handle_force_method),
|
|
|
|
NULL);
|
|
|
|
g_object_set (exported_bat_object,
|
|
|
|
"force-i", g_variant_new_int32 (43),
|
|
|
|
"force-s", g_variant_new_string ("prop string"),
|
|
|
|
"force-ay", g_variant_new_bytestring ("prop bytestring\xff"),
|
|
|
|
"force-struct", g_variant_new ("(i)", 4300),
|
|
|
|
NULL);
|
|
|
|
|
2011-04-13 22:33:51 +02:00
|
|
|
authorize_enclosing_object = g_dbus_object_skeleton_new ("/authorize");
|
2011-04-11 16:54:52 +02:00
|
|
|
g_signal_connect (authorize_enclosing_object,
|
|
|
|
"authorize-method",
|
|
|
|
G_CALLBACK (my_object_authorize_method_handler),
|
|
|
|
NULL);
|
2011-09-16 22:01:13 +02:00
|
|
|
exported_authorize_object = foo_igen_authorize_skeleton_new ();
|
2011-04-13 22:33:51 +02:00
|
|
|
g_dbus_object_skeleton_add_interface (authorize_enclosing_object,
|
|
|
|
G_DBUS_INTERFACE_SKELETON (exported_authorize_object));
|
|
|
|
g_dbus_interface_skeleton_export (G_DBUS_INTERFACE_SKELETON (exported_authorize_object),
|
|
|
|
connection,
|
|
|
|
"/authorize",
|
|
|
|
&error);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_no_error (error);
|
|
|
|
g_signal_connect (exported_authorize_object,
|
|
|
|
"g-authorize-method",
|
|
|
|
G_CALLBACK (my_g_authorize_method_handler),
|
|
|
|
NULL);
|
|
|
|
g_signal_connect (exported_authorize_object,
|
|
|
|
"handle-check-not-authorized",
|
|
|
|
G_CALLBACK (on_handle_check_not_authorized),
|
|
|
|
NULL);
|
|
|
|
g_signal_connect (exported_authorize_object,
|
|
|
|
"handle-check-authorized",
|
|
|
|
G_CALLBACK (on_handle_check_authorized),
|
|
|
|
NULL);
|
|
|
|
g_signal_connect (exported_authorize_object,
|
|
|
|
"handle-check-not-authorized-from-object",
|
|
|
|
G_CALLBACK (on_handle_check_not_authorized_from_object),
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
|
2011-04-13 22:33:51 +02:00
|
|
|
/* only object 1 has the G_DBUS_INTERFACE_SKELETON_FLAGS_HANDLE_METHOD_INVOCATIONS_IN_THREAD flag set */
|
2011-09-16 22:01:13 +02:00
|
|
|
exported_thread_object_1 = foo_igen_method_threads_skeleton_new ();
|
2011-04-13 22:33:51 +02:00
|
|
|
g_dbus_interface_skeleton_set_flags (G_DBUS_INTERFACE_SKELETON (exported_thread_object_1),
|
|
|
|
G_DBUS_INTERFACE_SKELETON_FLAGS_HANDLE_METHOD_INVOCATIONS_IN_THREAD);
|
2012-04-02 13:37:55 +02:00
|
|
|
|
|
|
|
g_assert (!g_dbus_interface_skeleton_has_connection (G_DBUS_INTERFACE_SKELETON (exported_thread_object_1), connection));
|
2011-04-13 22:33:51 +02:00
|
|
|
g_dbus_interface_skeleton_export (G_DBUS_INTERFACE_SKELETON (exported_thread_object_1),
|
|
|
|
connection,
|
|
|
|
"/method_threads_1",
|
|
|
|
&error);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_no_error (error);
|
|
|
|
g_signal_connect (exported_thread_object_1,
|
|
|
|
"handle-get-self",
|
|
|
|
G_CALLBACK (on_handle_get_self),
|
|
|
|
NULL);
|
2012-04-02 13:37:55 +02:00
|
|
|
g_assert_cmpint (g_dbus_interface_skeleton_get_flags (G_DBUS_INTERFACE_SKELETON (exported_thread_object_1)), ==, G_DBUS_INTERFACE_SKELETON_FLAGS_HANDLE_METHOD_INVOCATIONS_IN_THREAD);
|
2011-04-11 16:54:52 +02:00
|
|
|
|
2011-09-16 22:01:13 +02:00
|
|
|
exported_thread_object_2 = foo_igen_method_threads_skeleton_new ();
|
2011-04-13 22:33:51 +02:00
|
|
|
g_dbus_interface_skeleton_export (G_DBUS_INTERFACE_SKELETON (exported_thread_object_2),
|
|
|
|
connection,
|
|
|
|
"/method_threads_2",
|
|
|
|
&error);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_no_error (error);
|
|
|
|
g_signal_connect (exported_thread_object_2,
|
|
|
|
"handle-get-self",
|
|
|
|
G_CALLBACK (on_handle_get_self),
|
|
|
|
NULL);
|
|
|
|
|
2012-04-02 13:37:55 +02:00
|
|
|
g_assert_cmpint (g_dbus_interface_skeleton_get_flags (G_DBUS_INTERFACE_SKELETON (exported_thread_object_2)), ==, G_DBUS_INTERFACE_SKELETON_FLAGS_NONE);
|
|
|
|
|
2023-06-30 05:42:58 +02:00
|
|
|
exported_fd_passing_object = foo_igen_test_fdpassing_skeleton_new ();
|
|
|
|
g_dbus_interface_skeleton_export (G_DBUS_INTERFACE_SKELETON (exported_fd_passing_object),
|
|
|
|
connection,
|
|
|
|
"/fdpassing",
|
|
|
|
&error);
|
|
|
|
g_assert_no_error (error);
|
|
|
|
g_signal_connect (exported_fd_passing_object,
|
|
|
|
"handle-hello-fd",
|
|
|
|
G_CALLBACK (on_handle_fdpassing_hello_fd),
|
|
|
|
NULL);
|
|
|
|
|
2011-04-11 16:54:52 +02:00
|
|
|
method_handler_thread = g_thread_self ();
|
|
|
|
}
|
|
|
|
|
|
|
|
static gpointer check_proxies_in_thread (gpointer user_data);
|
|
|
|
|
|
|
|
static void
|
|
|
|
on_name_acquired (GDBusConnection *connection,
|
|
|
|
const gchar *name,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
GMainLoop *loop = user_data;
|
2019-02-22 01:00:00 +01:00
|
|
|
GThread *thread = g_thread_new ("check-proxies", check_proxies_in_thread, loop);
|
|
|
|
g_thread_unref (thread);
|
2011-04-11 16:54:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
on_name_lost (GDBusConnection *connection,
|
|
|
|
const gchar *name,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GMainLoop *thread_loop;
|
|
|
|
gint initial_y;
|
|
|
|
gint initial_i;
|
|
|
|
guint num_g_properties_changed;
|
|
|
|
gboolean received_test_signal;
|
|
|
|
guint num_notify_u;
|
|
|
|
guint num_notify_n;
|
|
|
|
} ClientData;
|
|
|
|
|
|
|
|
static void
|
|
|
|
on_notify_u (GObject *object,
|
|
|
|
GParamSpec *pspec,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
ClientData *data = user_data;
|
|
|
|
g_assert_cmpstr (pspec->name, ==, "u");
|
|
|
|
data->num_notify_u += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
on_notify_n (GObject *object,
|
|
|
|
GParamSpec *pspec,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
ClientData *data = user_data;
|
|
|
|
g_assert_cmpstr (pspec->name, ==, "n");
|
|
|
|
data->num_notify_n += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
on_g_properties_changed (GDBusProxy *_proxy,
|
|
|
|
GVariant *changed_properties,
|
|
|
|
const gchar* const *invalidated_properties,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
ClientData *data = user_data;
|
2011-09-16 22:01:13 +02:00
|
|
|
FooiGenBar *proxy = FOO_IGEN_BAR (_proxy);
|
2011-04-11 16:54:52 +02:00
|
|
|
|
|
|
|
g_assert_cmpint (g_variant_n_children (changed_properties), ==, 2);
|
|
|
|
|
|
|
|
if (data->num_g_properties_changed == 0)
|
|
|
|
{
|
2011-09-16 22:01:13 +02:00
|
|
|
g_assert_cmpint (data->initial_y, ==, foo_igen_bar_get_y (proxy) - 2);
|
|
|
|
g_assert_cmpint (data->initial_i, ==, foo_igen_bar_get_i (proxy) - 2);
|
2011-04-11 16:54:52 +02:00
|
|
|
}
|
|
|
|
else if (data->num_g_properties_changed == 1)
|
|
|
|
{
|
2011-09-16 22:01:13 +02:00
|
|
|
g_assert_cmpint (data->initial_y, ==, foo_igen_bar_get_y (proxy) - 3);
|
|
|
|
g_assert_cmpint (data->initial_i, ==, foo_igen_bar_get_i (proxy) - 3);
|
2011-04-11 16:54:52 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
g_assert_not_reached ();
|
|
|
|
|
|
|
|
data->num_g_properties_changed++;
|
|
|
|
|
|
|
|
if (data->num_g_properties_changed == 2)
|
|
|
|
g_main_loop_quit (data->thread_loop);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-09-16 22:01:13 +02:00
|
|
|
on_test_signal (FooiGenBar *proxy,
|
2011-04-11 16:54:52 +02:00
|
|
|
gint val_int32,
|
|
|
|
const gchar* const *array_of_strings,
|
|
|
|
const gchar* const *array_of_bytestrings,
|
|
|
|
GVariant *dict_s_to_pairs,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
ClientData *data = user_data;
|
|
|
|
|
|
|
|
g_assert_cmpint (val_int32, ==, 43);
|
|
|
|
g_assert_cmpstr (array_of_strings[0], ==, "foo");
|
|
|
|
g_assert_cmpstr (array_of_strings[1], ==, "bar");
|
|
|
|
g_assert (array_of_strings[2] == NULL);
|
|
|
|
g_assert_cmpstr (array_of_bytestrings[0], ==, "foo\xff");
|
|
|
|
g_assert_cmpstr (array_of_bytestrings[1], ==, "bar\xff");
|
|
|
|
g_assert (array_of_bytestrings[2] == NULL);
|
|
|
|
|
|
|
|
data->received_test_signal = TRUE;
|
|
|
|
g_main_loop_quit (data->thread_loop);
|
|
|
|
}
|
|
|
|
|
2011-04-15 21:53:28 +02:00
|
|
|
static void
|
2011-09-16 22:01:13 +02:00
|
|
|
on_property_cancellation_cb (FooiGenBar *proxy,
|
2011-04-15 21:53:28 +02:00
|
|
|
GAsyncResult *res,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
ClientData *data = user_data;
|
|
|
|
gboolean ret;
|
|
|
|
GError *error = NULL;
|
|
|
|
|
|
|
|
error = NULL;
|
2011-09-16 22:01:13 +02:00
|
|
|
ret = foo_igen_bar_call_property_cancellation_finish (proxy, res, &error);
|
2011-04-15 21:53:28 +02:00
|
|
|
g_assert_no_error (error);
|
|
|
|
g_assert (ret);
|
|
|
|
|
|
|
|
g_main_loop_quit (data->thread_loop);
|
|
|
|
}
|
|
|
|
|
2011-04-11 16:54:52 +02:00
|
|
|
static void
|
2011-09-16 22:01:13 +02:00
|
|
|
check_bar_proxy (FooiGenBar *proxy,
|
|
|
|
GMainLoop *thread_loop)
|
2011-04-11 16:54:52 +02:00
|
|
|
{
|
2012-11-02 00:40:41 +01:00
|
|
|
const gchar *array_of_strings[3] = {"one", "two", NULL};
|
|
|
|
const gchar *array_of_strings_2[3] = {"one2", "two2", NULL};
|
|
|
|
const gchar *array_of_objpaths[3] = {"/one", "/one/two", NULL};
|
2014-12-05 16:25:51 +01:00
|
|
|
GVariant *array_of_signatures = NULL;
|
2012-11-02 00:40:41 +01:00
|
|
|
const gchar *array_of_bytestrings[3] = {"one\xff", "two\xff", NULL};
|
2014-12-05 16:25:51 +01:00
|
|
|
gchar **ret_array_of_strings = NULL;
|
|
|
|
gchar **ret_array_of_objpaths = NULL;
|
|
|
|
GVariant *ret_array_of_signatures = NULL;
|
|
|
|
gchar **ret_array_of_bytestrings = NULL;
|
2011-04-11 16:54:52 +02:00
|
|
|
guchar ret_val_byte;
|
|
|
|
gboolean ret_val_boolean;
|
|
|
|
gint16 ret_val_int16;
|
|
|
|
guint16 ret_val_uint16;
|
|
|
|
gint ret_val_int32;
|
|
|
|
guint ret_val_uint32;
|
|
|
|
gint64 ret_val_int64;
|
|
|
|
guint64 ret_val_uint64;
|
|
|
|
gdouble ret_val_double;
|
|
|
|
gchar *ret_val_string;
|
|
|
|
gchar *ret_val_objpath;
|
|
|
|
gchar *ret_val_signature;
|
|
|
|
gchar *ret_val_bytestring;
|
|
|
|
gboolean ret;
|
|
|
|
GError *error;
|
|
|
|
ClientData *data;
|
|
|
|
guchar val_y;
|
|
|
|
gboolean val_b;
|
2011-06-20 19:41:52 +02:00
|
|
|
gint val_n;
|
|
|
|
guint val_q;
|
2011-04-11 16:54:52 +02:00
|
|
|
gint val_i;
|
|
|
|
guint val_u;
|
|
|
|
gint64 val_x;
|
|
|
|
guint64 val_t;
|
|
|
|
gdouble val_d;
|
|
|
|
gchar *val_s;
|
|
|
|
gchar *val_o;
|
|
|
|
gchar *val_g;
|
|
|
|
gchar *val_ay;
|
|
|
|
gchar **val_as;
|
2011-07-21 15:32:38 +02:00
|
|
|
gchar **val_ao;
|
2011-04-11 16:54:52 +02:00
|
|
|
GVariant *val_ag;
|
|
|
|
gint32 val_unset_i;
|
|
|
|
gdouble val_unset_d;
|
|
|
|
gchar *val_unset_s;
|
|
|
|
gchar *val_unset_o;
|
|
|
|
gchar *val_unset_g;
|
|
|
|
gchar *val_unset_ay;
|
|
|
|
gchar **val_unset_as;
|
2011-07-21 15:32:38 +02:00
|
|
|
gchar **val_unset_ao;
|
2011-04-11 16:54:52 +02:00
|
|
|
GVariant *val_unset_ag;
|
|
|
|
GVariant *val_unset_struct;
|
|
|
|
gchar *val_finally_normal_name;
|
|
|
|
GVariant *v;
|
|
|
|
gchar *s;
|
2012-11-02 00:40:41 +01:00
|
|
|
const gchar *const *read_as;
|
|
|
|
const gchar *const *read_as2;
|
|
|
|
const gchar *const *read_as3;
|
2011-04-11 16:54:52 +02:00
|
|
|
|
|
|
|
data = g_new0 (ClientData, 1);
|
|
|
|
data->thread_loop = thread_loop;
|
|
|
|
|
|
|
|
v = g_dbus_proxy_get_cached_property (G_DBUS_PROXY (proxy), "y");
|
|
|
|
g_assert (v != NULL);
|
|
|
|
g_variant_unref (v);
|
|
|
|
|
|
|
|
/* set empty values to non-empty */
|
|
|
|
val_unset_i = 42;
|
|
|
|
val_unset_d = 42.0;
|
|
|
|
val_unset_s = "42";
|
|
|
|
val_unset_o = "42";
|
|
|
|
val_unset_g = "42";
|
|
|
|
val_unset_ay = NULL;
|
|
|
|
val_unset_as = NULL;
|
|
|
|
val_unset_ao = NULL;
|
|
|
|
val_unset_ag = NULL;
|
|
|
|
val_unset_struct = NULL;
|
|
|
|
/* check properties */
|
|
|
|
g_object_get (proxy,
|
|
|
|
"y", &val_y,
|
|
|
|
"b", &val_b,
|
|
|
|
"n", &val_n,
|
|
|
|
"q", &val_q,
|
|
|
|
"i", &val_i,
|
|
|
|
"u", &val_u,
|
|
|
|
"x", &val_x,
|
|
|
|
"t", &val_t,
|
|
|
|
"d", &val_d,
|
|
|
|
"s", &val_s,
|
|
|
|
"o", &val_o,
|
|
|
|
"g", &val_g,
|
|
|
|
"ay", &val_ay,
|
|
|
|
"as", &val_as,
|
|
|
|
"ao", &val_ao,
|
|
|
|
"ag", &val_ag,
|
|
|
|
"unset_i", &val_unset_i,
|
|
|
|
"unset_d", &val_unset_d,
|
|
|
|
"unset_s", &val_unset_s,
|
|
|
|
"unset_o", &val_unset_o,
|
|
|
|
"unset_g", &val_unset_g,
|
|
|
|
"unset_ay", &val_unset_ay,
|
|
|
|
"unset_as", &val_unset_as,
|
|
|
|
"unset_ao", &val_unset_ao,
|
|
|
|
"unset_ag", &val_unset_ag,
|
|
|
|
"unset_struct", &val_unset_struct,
|
|
|
|
"finally-normal-name", &val_finally_normal_name,
|
|
|
|
NULL);
|
|
|
|
g_assert_cmpint (val_y, ==, 42);
|
|
|
|
g_assert_cmpstr (val_finally_normal_name, ==, "There aint no place like home");
|
|
|
|
g_free (val_s);
|
|
|
|
g_free (val_o);
|
|
|
|
g_free (val_g);
|
|
|
|
g_assert_cmpstr (val_ay, ==, "ABCabc");
|
|
|
|
g_free (val_ay);
|
|
|
|
g_strfreev (val_as);
|
2011-07-21 15:32:38 +02:00
|
|
|
g_strfreev (val_ao);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_variant_unref (val_ag);
|
|
|
|
g_free (val_finally_normal_name);
|
|
|
|
/* check empty values */
|
|
|
|
g_assert_cmpint (val_unset_i, ==, 0);
|
|
|
|
g_assert_cmpfloat (val_unset_d, ==, 0.0);
|
|
|
|
g_assert_cmpstr (val_unset_s, ==, "");
|
|
|
|
g_assert_cmpstr (val_unset_o, ==, "/");
|
|
|
|
g_assert_cmpstr (val_unset_g, ==, "");
|
|
|
|
g_free (val_unset_s);
|
|
|
|
g_free (val_unset_o);
|
|
|
|
g_free (val_unset_g);
|
|
|
|
g_assert_cmpstr (val_unset_ay, ==, "");
|
|
|
|
g_assert (val_unset_as[0] == NULL);
|
2011-07-21 15:32:38 +02:00
|
|
|
g_assert (val_unset_ao[0] == NULL);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert (g_variant_is_of_type (val_unset_ag, G_VARIANT_TYPE ("ag")));
|
|
|
|
g_assert (g_variant_is_of_type (val_unset_struct, G_VARIANT_TYPE ("(idsogayasaoag)")));
|
|
|
|
s = g_variant_print (val_unset_struct, TRUE);
|
|
|
|
g_assert_cmpstr (s, ==, "(0, 0.0, '', objectpath '/', signature '', @ay [], @as [], @ao [], @ag [])");
|
|
|
|
g_free (s);
|
|
|
|
g_free (val_unset_ay);
|
|
|
|
g_strfreev (val_unset_as);
|
2011-07-21 15:32:38 +02:00
|
|
|
g_strfreev (val_unset_ao);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_variant_unref (val_unset_ag);
|
|
|
|
g_variant_unref (val_unset_struct);
|
|
|
|
|
|
|
|
/* Try setting a property. This causes the generated glue to invoke
|
|
|
|
* the org.fd.DBus.Properties.Set() method asynchronously. So we
|
|
|
|
* have to wait for properties-changed...
|
|
|
|
*/
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_bar_set_finally_normal_name (proxy, "foo!");
|
2011-04-11 16:54:52 +02:00
|
|
|
_g_assert_property_notify (proxy, "finally-normal-name");
|
2011-09-16 22:01:13 +02:00
|
|
|
g_assert_cmpstr (foo_igen_bar_get_finally_normal_name (proxy), ==, "foo!");
|
2011-04-11 16:54:52 +02:00
|
|
|
|
|
|
|
/* Try setting properties that requires memory management. This
|
|
|
|
* is to exercise the paths that frees the references.
|
|
|
|
*/
|
2011-07-21 15:32:38 +02:00
|
|
|
|
2011-04-11 16:54:52 +02:00
|
|
|
g_object_set (proxy,
|
|
|
|
"s", "a string",
|
|
|
|
"o", "/a/path",
|
|
|
|
"g", "asig",
|
2022-03-08 21:08:43 +01:00
|
|
|
"ay", "eg",
|
2011-04-11 16:54:52 +02:00
|
|
|
"as", array_of_strings,
|
2011-07-21 15:32:38 +02:00
|
|
|
"ao", array_of_objpaths,
|
2011-04-11 16:54:52 +02:00
|
|
|
"ag", g_variant_new_parsed ("[@g 'ass', 'git']"),
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
error = NULL;
|
2011-09-16 22:01:13 +02:00
|
|
|
ret = foo_igen_bar_call_test_primitive_types_sync (proxy,
|
|
|
|
10,
|
|
|
|
TRUE,
|
|
|
|
11,
|
|
|
|
12,
|
|
|
|
13,
|
|
|
|
14,
|
|
|
|
15,
|
|
|
|
16,
|
|
|
|
17,
|
|
|
|
"a string",
|
|
|
|
"/a/path",
|
|
|
|
"asig",
|
|
|
|
"bytestring\xff",
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
#if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_64
|
|
|
|
G_DBUS_CALL_FLAGS_NONE,
|
|
|
|
-1,
|
|
|
|
#endif
|
2011-09-16 22:01:13 +02:00
|
|
|
&ret_val_byte,
|
|
|
|
&ret_val_boolean,
|
|
|
|
&ret_val_int16,
|
|
|
|
&ret_val_uint16,
|
|
|
|
&ret_val_int32,
|
|
|
|
&ret_val_uint32,
|
|
|
|
&ret_val_int64,
|
|
|
|
&ret_val_uint64,
|
|
|
|
&ret_val_double,
|
|
|
|
&ret_val_string,
|
|
|
|
&ret_val_objpath,
|
|
|
|
&ret_val_signature,
|
|
|
|
&ret_val_bytestring,
|
|
|
|
NULL, /* GCancellable */
|
|
|
|
&error);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_no_error (error);
|
|
|
|
g_assert (ret);
|
|
|
|
|
2017-11-15 13:27:16 +01:00
|
|
|
g_clear_pointer (&ret_val_string, g_free);
|
|
|
|
g_clear_pointer (&ret_val_objpath, g_free);
|
|
|
|
g_clear_pointer (&ret_val_signature, g_free);
|
|
|
|
g_clear_pointer (&ret_val_bytestring, g_free);
|
|
|
|
|
2011-04-11 16:54:52 +02:00
|
|
|
error = NULL;
|
2014-12-05 16:25:51 +01:00
|
|
|
array_of_signatures = g_variant_ref_sink (g_variant_new_parsed ("[@g 'ass', 'git']"));
|
2011-09-16 22:01:13 +02:00
|
|
|
ret = foo_igen_bar_call_test_non_primitive_types_sync (proxy,
|
|
|
|
g_variant_new_parsed ("{'one': 'red',"
|
|
|
|
" 'two': 'blue'}"),
|
|
|
|
g_variant_new_parsed ("{'first': (42, 42), "
|
|
|
|
"'second': (43, 43)}"),
|
|
|
|
g_variant_new_parsed ("(42, 'foo', 'bar')"),
|
|
|
|
array_of_strings,
|
|
|
|
array_of_objpaths,
|
2014-12-05 16:25:51 +01:00
|
|
|
array_of_signatures,
|
2011-09-16 22:01:13 +02:00
|
|
|
array_of_bytestrings,
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
#if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_64
|
|
|
|
G_DBUS_CALL_FLAGS_NONE,
|
|
|
|
-1,
|
|
|
|
#endif
|
2014-12-05 16:25:51 +01:00
|
|
|
&ret_array_of_strings,
|
|
|
|
&ret_array_of_objpaths,
|
|
|
|
&ret_array_of_signatures,
|
|
|
|
&ret_array_of_bytestrings,
|
2011-09-16 22:01:13 +02:00
|
|
|
&s,
|
|
|
|
NULL, /* GCancellable */
|
|
|
|
&error);
|
2011-04-11 16:54:52 +02:00
|
|
|
|
|
|
|
g_assert_no_error (error);
|
|
|
|
g_assert (ret);
|
|
|
|
|
2014-12-05 16:25:51 +01:00
|
|
|
g_assert_nonnull (ret_array_of_strings);
|
|
|
|
g_assert_cmpuint (g_strv_length ((gchar **) ret_array_of_strings), ==,
|
|
|
|
g_strv_length ((gchar **) array_of_strings));
|
|
|
|
g_assert_nonnull (ret_array_of_objpaths);
|
|
|
|
g_assert_cmpuint (g_strv_length ((gchar **) ret_array_of_objpaths), ==,
|
|
|
|
g_strv_length ((gchar **) array_of_objpaths));
|
|
|
|
g_assert_nonnull (ret_array_of_signatures);
|
2018-12-14 16:04:11 +01:00
|
|
|
g_assert_cmpvariant (ret_array_of_signatures, array_of_signatures);
|
2014-12-05 16:25:51 +01:00
|
|
|
g_assert_nonnull (ret_array_of_bytestrings);
|
|
|
|
g_assert_cmpuint (g_strv_length ((gchar **) ret_array_of_bytestrings), ==,
|
|
|
|
g_strv_length ((gchar **) array_of_bytestrings));
|
|
|
|
|
|
|
|
g_clear_pointer (&ret_array_of_strings, g_strfreev);
|
|
|
|
g_clear_pointer (&ret_array_of_objpaths, g_strfreev);
|
|
|
|
g_clear_pointer (&ret_array_of_signatures, g_variant_unref);
|
|
|
|
g_clear_pointer (&ret_array_of_bytestrings, g_strfreev);
|
|
|
|
g_clear_pointer (&s, g_free);
|
|
|
|
|
2011-04-11 16:54:52 +02:00
|
|
|
/* Check that org.freedesktop.DBus.Error.UnknownMethod is returned on
|
|
|
|
* unimplemented methods.
|
|
|
|
*/
|
|
|
|
error = NULL;
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
#if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_64
|
|
|
|
ret = foo_igen_bar_call_unimplemented_method_sync (proxy, G_DBUS_CALL_FLAGS_NONE, -1, NULL /* GCancellable */, &error);
|
|
|
|
#else
|
2011-09-16 22:01:13 +02:00
|
|
|
ret = foo_igen_bar_call_unimplemented_method_sync (proxy, NULL /* GCancellable */, &error);
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
#endif
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_error (error, G_DBUS_ERROR, G_DBUS_ERROR_UNKNOWN_METHOD);
|
|
|
|
g_error_free (error);
|
|
|
|
error = NULL;
|
|
|
|
g_assert (!ret);
|
|
|
|
|
|
|
|
g_signal_connect (proxy,
|
|
|
|
"test-signal",
|
|
|
|
G_CALLBACK (on_test_signal),
|
|
|
|
data);
|
|
|
|
error = NULL;
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
#if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_64
|
|
|
|
ret = foo_igen_bar_call_request_signal_emission_sync (proxy, 0, G_DBUS_CALL_FLAGS_NONE, -1, NULL, &error);
|
|
|
|
#else
|
2011-09-16 22:01:13 +02:00
|
|
|
ret = foo_igen_bar_call_request_signal_emission_sync (proxy, 0, NULL, &error);
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
#endif
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_no_error (error);
|
|
|
|
g_assert (ret);
|
|
|
|
|
|
|
|
g_assert (!data->received_test_signal);
|
|
|
|
g_main_loop_run (thread_loop);
|
|
|
|
g_assert (data->received_test_signal);
|
|
|
|
|
|
|
|
/* Try setting a property. This causes the generated glue to invoke
|
|
|
|
* the org.fd.DBus.Properties.Set() method asynchronously. So we
|
|
|
|
* have to wait for properties-changed...
|
|
|
|
*/
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_bar_set_finally_normal_name (proxy, "hey back!");
|
2011-04-11 16:54:52 +02:00
|
|
|
_g_assert_property_notify (proxy, "finally-normal-name");
|
2011-09-16 22:01:13 +02:00
|
|
|
g_assert_cmpstr (foo_igen_bar_get_finally_normal_name (proxy), ==, "hey back!");
|
2011-04-11 16:54:52 +02:00
|
|
|
|
2011-08-23 18:46:32 +02:00
|
|
|
/* Check that multiple calls to a strv getter works... and that
|
|
|
|
* updates on them works as well (See comment for "property vfuncs"
|
|
|
|
* in gio/gdbus-codegen/codegen.py for details)
|
|
|
|
*/
|
2011-09-16 22:01:13 +02:00
|
|
|
read_as = foo_igen_bar_get_as (proxy);
|
|
|
|
read_as2 = foo_igen_bar_get_as (proxy);
|
2011-08-23 18:46:32 +02:00
|
|
|
g_assert_cmpint (g_strv_length ((gchar **) read_as), ==, 2);
|
|
|
|
g_assert_cmpstr (read_as[0], ==, "one");
|
|
|
|
g_assert_cmpstr (read_as[1], ==, "two");
|
|
|
|
g_assert (read_as == read_as2); /* this is more testing an implementation detail */
|
|
|
|
g_object_set (proxy,
|
|
|
|
"as", array_of_strings_2,
|
|
|
|
NULL);
|
|
|
|
_g_assert_property_notify (proxy, "as");
|
2011-09-16 22:01:13 +02:00
|
|
|
read_as3 = foo_igen_bar_get_as (proxy);
|
2011-08-23 18:46:32 +02:00
|
|
|
g_assert_cmpint (g_strv_length ((gchar **) read_as3), ==, 2);
|
|
|
|
g_assert_cmpstr (read_as3[0], ==, "one2");
|
|
|
|
g_assert_cmpstr (read_as3[1], ==, "two2");
|
|
|
|
|
2011-04-11 16:54:52 +02:00
|
|
|
/* Check that grouping changes in idle works.
|
|
|
|
*
|
|
|
|
* See on_handle_request_multi_property_mods(). The server should
|
|
|
|
* emit exactly two PropertiesChanged signals each containing two
|
|
|
|
* properties.
|
|
|
|
*
|
|
|
|
* On the first reception, y and i should both be increased by
|
2012-08-19 08:27:04 +02:00
|
|
|
* two. On the second reception, only by one. The signal handler
|
2011-04-11 16:54:52 +02:00
|
|
|
* checks this.
|
|
|
|
*
|
|
|
|
* This also checks that _drain_notify() works.
|
|
|
|
*/
|
2011-09-16 22:01:13 +02:00
|
|
|
data->initial_y = foo_igen_bar_get_y (proxy);
|
|
|
|
data->initial_i = foo_igen_bar_get_i (proxy);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_signal_connect (proxy,
|
|
|
|
"g-properties-changed",
|
|
|
|
G_CALLBACK (on_g_properties_changed),
|
|
|
|
data);
|
|
|
|
error = NULL;
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
#if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_64
|
|
|
|
ret = foo_igen_bar_call_request_multi_property_mods_sync (proxy, G_DBUS_CALL_FLAGS_NONE, -1, NULL, &error);
|
|
|
|
#else
|
2011-09-16 22:01:13 +02:00
|
|
|
ret = foo_igen_bar_call_request_multi_property_mods_sync (proxy, NULL, &error);
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
#endif
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_no_error (error);
|
|
|
|
g_assert (ret);
|
|
|
|
g_main_loop_run (thread_loop);
|
|
|
|
g_assert_cmpint (data->num_g_properties_changed, ==, 2);
|
|
|
|
g_signal_handlers_disconnect_by_func (proxy,
|
|
|
|
G_CALLBACK (on_g_properties_changed),
|
|
|
|
data);
|
|
|
|
|
|
|
|
/* Check that we don't emit PropertiesChanged() if the property
|
|
|
|
* didn't change... we actually get two notifies.. one for the
|
|
|
|
* local set (without a value change) and one when receiving
|
|
|
|
* the PropertiesChanged() signal generated from the remote end.
|
|
|
|
*/
|
|
|
|
g_assert_cmpint (data->num_notify_u, ==, 0);
|
|
|
|
g_signal_connect (proxy,
|
|
|
|
"notify::u",
|
|
|
|
G_CALLBACK (on_notify_u),
|
|
|
|
data);
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_bar_set_u (proxy, 1042);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_cmpint (data->num_notify_u, ==, 1);
|
2011-09-16 22:01:13 +02:00
|
|
|
g_assert_cmpint (foo_igen_bar_get_u (proxy), ==, 0);
|
2011-04-11 16:54:52 +02:00
|
|
|
_g_assert_property_notify (proxy, "u");
|
2011-09-16 22:01:13 +02:00
|
|
|
g_assert_cmpint (foo_igen_bar_get_u (proxy), ==, 1042);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_cmpint (data->num_notify_u, ==, 2);
|
|
|
|
|
|
|
|
/* Now change u again to the same value.. this will cause a
|
|
|
|
* local notify:: notify and the usual Properties.Set() call
|
|
|
|
*
|
|
|
|
* (Btw, why also the Set() call if the value in the cache is
|
|
|
|
* the same? Because someone else might have changed it
|
|
|
|
* in the mean time and we're just waiting to receive the
|
|
|
|
* PropertiesChanged() signal...)
|
|
|
|
*
|
|
|
|
* More tricky - how do we check for the *absence* of the
|
|
|
|
* notification that u changed? Simple: we change another
|
|
|
|
* property and wait for that PropertiesChanged() message
|
|
|
|
* to arrive.
|
|
|
|
*/
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_bar_set_u (proxy, 1042);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_cmpint (data->num_notify_u, ==, 3);
|
|
|
|
|
|
|
|
g_assert_cmpint (data->num_notify_n, ==, 0);
|
|
|
|
g_signal_connect (proxy,
|
|
|
|
"notify::n",
|
|
|
|
G_CALLBACK (on_notify_n),
|
|
|
|
data);
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_bar_set_n (proxy, 10042);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_cmpint (data->num_notify_n, ==, 1);
|
2011-09-16 22:01:13 +02:00
|
|
|
g_assert_cmpint (foo_igen_bar_get_n (proxy), ==, 0);
|
2011-04-11 16:54:52 +02:00
|
|
|
_g_assert_property_notify (proxy, "n");
|
2011-09-16 22:01:13 +02:00
|
|
|
g_assert_cmpint (foo_igen_bar_get_n (proxy), ==, 10042);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_cmpint (data->num_notify_n, ==, 2);
|
|
|
|
/* Checks that u didn't change at all */
|
|
|
|
g_assert_cmpint (data->num_notify_u, ==, 3);
|
|
|
|
|
2011-04-15 21:53:28 +02:00
|
|
|
/* Now we check that if the service does
|
|
|
|
*
|
2011-09-16 22:01:13 +02:00
|
|
|
* guint n = foo_igen_bar_get_n (foo);
|
|
|
|
* foo_igen_bar_set_n (foo, n + 1);
|
|
|
|
* foo_igen_bar_set_n (foo, n);
|
2011-04-15 21:53:28 +02:00
|
|
|
*
|
|
|
|
* then no PropertiesChanged() signal is emitted!
|
|
|
|
*/
|
|
|
|
error = NULL;
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_bar_call_property_cancellation (proxy,
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
#if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_64
|
|
|
|
G_DBUS_CALL_FLAGS_NONE,
|
|
|
|
-1,
|
|
|
|
#endif
|
2011-09-16 22:01:13 +02:00
|
|
|
NULL, /* GCancellable */
|
|
|
|
(GAsyncReadyCallback) on_property_cancellation_cb,
|
|
|
|
data);
|
2011-04-15 21:53:28 +02:00
|
|
|
g_main_loop_run (thread_loop);
|
|
|
|
/* Checks that n didn't change at all */
|
|
|
|
g_assert_cmpint (data->num_notify_n, ==, 2);
|
|
|
|
|
2011-04-11 16:54:52 +02:00
|
|
|
/* cleanup */
|
|
|
|
g_free (data);
|
2014-12-05 16:25:51 +01:00
|
|
|
g_variant_unref (array_of_signatures);
|
2011-04-11 16:54:52 +02:00
|
|
|
}
|
|
|
|
|
2023-06-30 05:42:58 +02:00
|
|
|
static void
|
|
|
|
check_fdpassing_proxy (FooiGenTestFDPassing *proxy)
|
|
|
|
{
|
|
|
|
GError *error = NULL;
|
|
|
|
GUnixFDList *fd_list = g_unix_fd_list_new ();
|
|
|
|
GUnixFDList *ret_fd_list = NULL;
|
|
|
|
char *response = NULL;
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
fd = dup (0);
|
|
|
|
g_assert_cmpint (g_unix_fd_list_append (fd_list, fd, &error), ==, 0);
|
|
|
|
g_assert_no_error (error);
|
|
|
|
g_close (fd, &error);
|
|
|
|
g_assert_no_error (error);
|
|
|
|
|
|
|
|
fd = dup (0);
|
|
|
|
g_assert_cmpint (g_unix_fd_list_append (fd_list, fd, &error), ==, 1);
|
|
|
|
g_assert_no_error (error);
|
|
|
|
g_close (fd, &error);
|
|
|
|
g_assert_no_error (error);
|
|
|
|
|
|
|
|
foo_igen_test_fdpassing_call_hello_fd_sync (proxy, "Hey fd!",
|
|
|
|
#if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_64
|
|
|
|
G_DBUS_CALL_FLAGS_NO_AUTO_START, -1,
|
|
|
|
#endif
|
|
|
|
fd_list,
|
|
|
|
&response, &ret_fd_list, NULL,
|
|
|
|
&error);
|
|
|
|
g_assert_no_error (error);
|
|
|
|
|
|
|
|
g_assert_true (G_IS_UNIX_FD_LIST (ret_fd_list));
|
|
|
|
g_assert_cmpuint (g_unix_fd_list_get_length (fd_list), ==, 2);
|
|
|
|
|
|
|
|
g_assert_cmpstr (response, ==, "I love to receive fds!");
|
|
|
|
g_clear_pointer (&response, g_free);
|
|
|
|
g_clear_object (&fd_list);
|
|
|
|
g_clear_object (&ret_fd_list);
|
|
|
|
}
|
|
|
|
|
2011-04-11 16:54:52 +02:00
|
|
|
/* ---------------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
static void
|
2011-09-16 22:01:13 +02:00
|
|
|
on_force_signal (FooiGenBat *proxy,
|
|
|
|
GVariant *force_i,
|
|
|
|
GVariant *force_s,
|
|
|
|
GVariant *force_ay,
|
|
|
|
GVariant *force_struct,
|
|
|
|
gpointer user_data)
|
2011-04-11 16:54:52 +02:00
|
|
|
{
|
|
|
|
gboolean *signal_received = user_data;
|
|
|
|
gint val;
|
|
|
|
|
|
|
|
g_assert (!(*signal_received));
|
|
|
|
|
|
|
|
g_assert_cmpint (g_variant_get_int32 (force_i), ==, 42 + 10);
|
|
|
|
g_assert_cmpstr (g_variant_get_string (force_s, NULL), ==, "a string_foo");
|
|
|
|
g_assert_cmpstr (g_variant_get_bytestring (force_ay), ==, "a bytestring\xff_foo\xff");
|
|
|
|
g_variant_get (force_struct, "(i)", &val);
|
|
|
|
g_assert_cmpint (val, ==, 4200 + 10);
|
|
|
|
|
|
|
|
*signal_received = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-09-16 22:01:13 +02:00
|
|
|
check_bat_proxy (FooiGenBat *proxy,
|
|
|
|
GMainLoop *thread_loop)
|
2011-04-11 16:54:52 +02:00
|
|
|
{
|
|
|
|
GError *error;
|
|
|
|
GVariant *ret_i;
|
|
|
|
GVariant *ret_s;
|
|
|
|
GVariant *ret_ay;
|
|
|
|
GVariant *ret_struct;
|
|
|
|
gint val;
|
|
|
|
gboolean force_signal_received;
|
|
|
|
|
|
|
|
/* --------------------------------------------------- */
|
|
|
|
/* Check type-mapping where we force use of a GVariant */
|
|
|
|
/* --------------------------------------------------- */
|
|
|
|
|
|
|
|
/* check properties */
|
|
|
|
g_object_get (proxy,
|
|
|
|
"force-i", &ret_i,
|
|
|
|
"force-s", &ret_s,
|
|
|
|
"force-ay", &ret_ay,
|
|
|
|
"force-struct", &ret_struct,
|
|
|
|
NULL);
|
|
|
|
g_assert_cmpint (g_variant_get_int32 (ret_i), ==, 43);
|
|
|
|
g_assert_cmpstr (g_variant_get_string (ret_s, NULL), ==, "prop string");
|
|
|
|
g_assert_cmpstr (g_variant_get_bytestring (ret_ay), ==, "prop bytestring\xff");
|
|
|
|
g_variant_get (ret_struct, "(i)", &val);
|
|
|
|
g_assert_cmpint (val, ==, 4300);
|
|
|
|
g_variant_unref (ret_i);
|
|
|
|
g_variant_unref (ret_s);
|
|
|
|
g_variant_unref (ret_ay);
|
|
|
|
g_variant_unref (ret_struct);
|
|
|
|
|
|
|
|
/* check method and signal */
|
|
|
|
force_signal_received = FALSE;
|
|
|
|
g_signal_connect (proxy,
|
|
|
|
"force-signal",
|
|
|
|
G_CALLBACK (on_force_signal),
|
|
|
|
&force_signal_received);
|
|
|
|
|
|
|
|
error = NULL;
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_bat_call_force_method_sync (proxy,
|
|
|
|
g_variant_new_int32 (42),
|
|
|
|
g_variant_new_string ("a string"),
|
|
|
|
g_variant_new_bytestring ("a bytestring\xff"),
|
|
|
|
g_variant_new ("(i)", 4200),
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
#if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_64
|
|
|
|
G_DBUS_CALL_FLAGS_NONE,
|
|
|
|
-1,
|
|
|
|
#endif
|
2011-09-16 22:01:13 +02:00
|
|
|
&ret_i,
|
|
|
|
&ret_s,
|
|
|
|
&ret_ay,
|
|
|
|
&ret_struct,
|
|
|
|
NULL, /* GCancellable* */
|
|
|
|
&error);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_no_error (error);
|
|
|
|
g_assert_cmpint (g_variant_get_int32 (ret_i), ==, 42 + 10);
|
|
|
|
g_assert_cmpstr (g_variant_get_string (ret_s, NULL), ==, "a string_foo");
|
|
|
|
g_assert_cmpstr (g_variant_get_bytestring (ret_ay), ==, "a bytestring\xff_foo\xff");
|
|
|
|
g_variant_get (ret_struct, "(i)", &val);
|
|
|
|
g_assert_cmpint (val, ==, 4200 + 10);
|
|
|
|
g_variant_unref (ret_i);
|
|
|
|
g_variant_unref (ret_s);
|
|
|
|
g_variant_unref (ret_ay);
|
|
|
|
g_variant_unref (ret_struct);
|
|
|
|
_g_assert_signal_received (proxy, "force-signal");
|
|
|
|
g_assert (force_signal_received);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
static void
|
2011-09-16 22:01:13 +02:00
|
|
|
check_authorize_proxy (FooiGenAuthorize *proxy,
|
|
|
|
GMainLoop *thread_loop)
|
2011-04-11 16:54:52 +02:00
|
|
|
{
|
|
|
|
GError *error;
|
|
|
|
gboolean ret;
|
|
|
|
|
|
|
|
/* Check that g-authorize-method works as intended */
|
|
|
|
|
|
|
|
error = NULL;
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
#if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_64
|
|
|
|
ret = foo_igen_authorize_call_check_not_authorized_sync (proxy, G_DBUS_CALL_FLAGS_NONE, -1, NULL, &error);
|
|
|
|
#else
|
2011-09-16 22:01:13 +02:00
|
|
|
ret = foo_igen_authorize_call_check_not_authorized_sync (proxy, NULL, &error);
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
#endif
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_error (error, G_IO_ERROR, G_IO_ERROR_PERMISSION_DENIED);
|
|
|
|
g_error_free (error);
|
|
|
|
g_assert (!ret);
|
|
|
|
|
|
|
|
error = NULL;
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
#if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_64
|
|
|
|
ret = foo_igen_authorize_call_check_authorized_sync (proxy, G_DBUS_CALL_FLAGS_NONE, -1, NULL, &error);
|
|
|
|
#else
|
2011-09-16 22:01:13 +02:00
|
|
|
ret = foo_igen_authorize_call_check_authorized_sync (proxy, NULL, &error);
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
#endif
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_no_error (error);
|
|
|
|
g_assert (ret);
|
|
|
|
|
|
|
|
error = NULL;
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
#if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_64
|
|
|
|
ret = foo_igen_authorize_call_check_not_authorized_from_object_sync (proxy, G_DBUS_CALL_FLAGS_NONE, -1, NULL, &error);
|
|
|
|
#else
|
2011-09-16 22:01:13 +02:00
|
|
|
ret = foo_igen_authorize_call_check_not_authorized_from_object_sync (proxy, NULL, &error);
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
#endif
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_error (error, G_IO_ERROR, G_IO_ERROR_PENDING);
|
|
|
|
g_error_free (error);
|
|
|
|
g_assert (!ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
static GThread *
|
2011-09-16 22:01:13 +02:00
|
|
|
get_self_via_proxy (FooiGenMethodThreads *proxy_1)
|
2011-04-11 16:54:52 +02:00
|
|
|
{
|
|
|
|
GError *error;
|
|
|
|
gchar *self_str;
|
|
|
|
gboolean ret;
|
|
|
|
gpointer self;
|
|
|
|
|
|
|
|
error = NULL;
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
#if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_64
|
|
|
|
ret = foo_igen_method_threads_call_get_self_sync (proxy_1, G_DBUS_CALL_FLAGS_NONE, -1, &self_str, NULL, &error);
|
|
|
|
#else
|
2011-09-16 22:01:13 +02:00
|
|
|
ret = foo_igen_method_threads_call_get_self_sync (proxy_1, &self_str, NULL, &error);
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
#endif
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_no_error (error);
|
|
|
|
g_assert (ret);
|
|
|
|
|
|
|
|
g_assert_cmpint (sscanf (self_str, "%p", &self), ==, 1);
|
|
|
|
|
|
|
|
g_free (self_str);
|
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-09-16 22:01:13 +02:00
|
|
|
check_thread_proxies (FooiGenMethodThreads *proxy_1,
|
|
|
|
FooiGenMethodThreads *proxy_2,
|
|
|
|
GMainLoop *thread_loop)
|
2011-04-11 16:54:52 +02:00
|
|
|
{
|
|
|
|
/* proxy_1 is indeed using threads so should never get the handler thread */
|
|
|
|
g_assert (get_self_via_proxy (proxy_1) != method_handler_thread);
|
|
|
|
|
|
|
|
/* proxy_2 is not using threads so should get the handler thread */
|
|
|
|
g_assert (get_self_via_proxy (proxy_2) == method_handler_thread);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
static gpointer
|
|
|
|
check_proxies_in_thread (gpointer user_data)
|
|
|
|
{
|
|
|
|
GMainLoop *loop = user_data;
|
|
|
|
GMainContext *thread_context;
|
|
|
|
GMainLoop *thread_loop;
|
|
|
|
GError *error;
|
2011-09-16 22:01:13 +02:00
|
|
|
FooiGenBar *bar_proxy;
|
|
|
|
FooiGenBat *bat_proxy;
|
2023-06-30 05:42:58 +02:00
|
|
|
FooiGenTestFDPassing *fd_passing_proxy;
|
2011-09-16 22:01:13 +02:00
|
|
|
FooiGenAuthorize *authorize_proxy;
|
|
|
|
FooiGenMethodThreads *thread_proxy_1;
|
|
|
|
FooiGenMethodThreads *thread_proxy_2;
|
2011-04-11 16:54:52 +02:00
|
|
|
|
|
|
|
thread_context = g_main_context_new ();
|
|
|
|
thread_loop = g_main_loop_new (thread_context, FALSE);
|
|
|
|
g_main_context_push_thread_default (thread_context);
|
|
|
|
|
|
|
|
/* Check the object */
|
|
|
|
error = NULL;
|
2011-09-16 22:01:13 +02:00
|
|
|
bar_proxy = foo_igen_bar_proxy_new_for_bus_sync (G_BUS_TYPE_SESSION,
|
|
|
|
G_DBUS_PROXY_FLAGS_NONE,
|
|
|
|
"org.gtk.GDBus.BindingsTool.Test",
|
|
|
|
"/bar",
|
|
|
|
NULL, /* GCancellable* */
|
|
|
|
&error);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_no_error (error);
|
2023-12-05 16:58:45 +01:00
|
|
|
check_bar_proxy (bar_proxy, thread_loop);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_object_unref (bar_proxy);
|
|
|
|
|
|
|
|
error = NULL;
|
2011-09-16 22:01:13 +02:00
|
|
|
bat_proxy = foo_igen_bat_proxy_new_for_bus_sync (G_BUS_TYPE_SESSION,
|
|
|
|
G_DBUS_PROXY_FLAGS_NONE,
|
|
|
|
"org.gtk.GDBus.BindingsTool.Test",
|
|
|
|
"/bat",
|
|
|
|
NULL, /* GCancellable* */
|
|
|
|
&error);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_no_error (error);
|
2023-12-05 16:58:45 +01:00
|
|
|
check_bat_proxy (bat_proxy, thread_loop);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_object_unref (bat_proxy);
|
|
|
|
|
|
|
|
error = NULL;
|
2011-09-16 22:01:13 +02:00
|
|
|
authorize_proxy = foo_igen_authorize_proxy_new_for_bus_sync (G_BUS_TYPE_SESSION,
|
|
|
|
G_DBUS_PROXY_FLAGS_NONE,
|
|
|
|
"org.gtk.GDBus.BindingsTool.Test",
|
|
|
|
"/authorize",
|
|
|
|
NULL, /* GCancellable* */
|
|
|
|
&error);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_no_error (error);
|
2023-12-05 16:58:45 +01:00
|
|
|
check_authorize_proxy (authorize_proxy, thread_loop);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_object_unref (authorize_proxy);
|
|
|
|
|
|
|
|
error = NULL;
|
2011-09-16 22:01:13 +02:00
|
|
|
thread_proxy_1 = foo_igen_method_threads_proxy_new_for_bus_sync (G_BUS_TYPE_SESSION,
|
|
|
|
G_DBUS_PROXY_FLAGS_NONE,
|
|
|
|
"org.gtk.GDBus.BindingsTool.Test",
|
|
|
|
"/method_threads_1",
|
|
|
|
NULL, /* GCancellable* */
|
|
|
|
&error);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_no_error (error);
|
2011-09-16 22:01:13 +02:00
|
|
|
thread_proxy_2 = foo_igen_method_threads_proxy_new_for_bus_sync (G_BUS_TYPE_SESSION,
|
|
|
|
G_DBUS_PROXY_FLAGS_NONE,
|
|
|
|
"org.gtk.GDBus.BindingsTool.Test",
|
|
|
|
"/method_threads_2",
|
|
|
|
NULL, /* GCancellable* */
|
|
|
|
&error);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_no_error (error);
|
|
|
|
check_thread_proxies (thread_proxy_1, thread_proxy_2, thread_loop);
|
|
|
|
g_object_unref (thread_proxy_1);
|
|
|
|
g_object_unref (thread_proxy_2);
|
|
|
|
|
2023-06-30 05:42:58 +02:00
|
|
|
fd_passing_proxy = foo_igen_test_fdpassing_proxy_new_for_bus_sync (G_BUS_TYPE_SESSION,
|
|
|
|
G_DBUS_PROXY_FLAGS_NONE,
|
|
|
|
"org.gtk.GDBus.BindingsTool.Test",
|
|
|
|
"/fdpassing",
|
|
|
|
NULL, /* GCancellable* */
|
|
|
|
&error);
|
|
|
|
g_assert_no_error (error);
|
|
|
|
check_fdpassing_proxy (fd_passing_proxy);
|
|
|
|
g_object_unref (fd_passing_proxy);
|
|
|
|
|
2022-03-08 21:09:59 +01:00
|
|
|
/* Wait for the proxy signals to all be unsubscribed. */
|
|
|
|
while (g_main_context_iteration (thread_context, FALSE))
|
|
|
|
{
|
|
|
|
/* Nothing needs to be done here */
|
|
|
|
}
|
|
|
|
|
2011-04-11 16:54:52 +02:00
|
|
|
g_main_loop_unref (thread_loop);
|
|
|
|
g_main_context_unref (thread_context);
|
|
|
|
|
|
|
|
/* this breaks out of the loop in main() (below) */
|
|
|
|
g_main_loop_quit (loop);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
gchar *xml;
|
|
|
|
GMainLoop *loop;
|
|
|
|
} IntrospectData;
|
|
|
|
|
|
|
|
static void
|
|
|
|
introspect_cb (GDBusConnection *connection,
|
|
|
|
GAsyncResult *res,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
IntrospectData *data = user_data;
|
|
|
|
GVariant *result;
|
|
|
|
GError *error;
|
|
|
|
|
|
|
|
error = NULL;
|
|
|
|
result = g_dbus_connection_call_finish (connection,
|
|
|
|
res,
|
|
|
|
&error);
|
|
|
|
g_assert_no_error (error);
|
|
|
|
g_assert (result != NULL);
|
|
|
|
g_variant_get (result, "(s)", &data->xml);
|
|
|
|
g_variant_unref (result);
|
|
|
|
|
|
|
|
g_main_loop_quit (data->loop);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GDBusNodeInfo *
|
|
|
|
introspect (GDBusConnection *connection,
|
|
|
|
const gchar *name,
|
|
|
|
const gchar *object_path,
|
|
|
|
GMainLoop *loop)
|
|
|
|
{
|
|
|
|
GError *error;
|
|
|
|
GDBusNodeInfo *node_info;
|
|
|
|
IntrospectData *data;
|
|
|
|
|
|
|
|
data = g_new0 (IntrospectData, 1);
|
|
|
|
data->xml = NULL;
|
|
|
|
data->loop = loop;
|
|
|
|
|
|
|
|
/* do this async to avoid deadlocks */
|
|
|
|
g_dbus_connection_call (connection,
|
|
|
|
name,
|
|
|
|
object_path,
|
2024-05-13 14:00:34 +02:00
|
|
|
DBUS_INTERFACE_INTROSPECTABLE,
|
2011-04-11 16:54:52 +02:00
|
|
|
"Introspect",
|
|
|
|
NULL, /* params */
|
|
|
|
G_VARIANT_TYPE ("(s)"),
|
|
|
|
G_DBUS_CALL_FLAGS_NONE,
|
|
|
|
-1,
|
|
|
|
NULL,
|
|
|
|
(GAsyncReadyCallback) introspect_cb,
|
|
|
|
data);
|
|
|
|
g_main_loop_run (loop);
|
|
|
|
g_assert (data->xml != NULL);
|
|
|
|
|
|
|
|
error = NULL;
|
|
|
|
node_info = g_dbus_node_info_new_for_xml (data->xml, &error);
|
|
|
|
g_assert_no_error (error);
|
|
|
|
g_assert (node_info != NULL);
|
|
|
|
g_free (data->xml);
|
|
|
|
g_free (data);
|
|
|
|
|
|
|
|
return node_info;
|
|
|
|
}
|
|
|
|
|
|
|
|
static guint
|
|
|
|
count_interfaces (GDBusNodeInfo *info)
|
|
|
|
{
|
|
|
|
guint n;
|
|
|
|
for (n = 0; info->interfaces != NULL && info->interfaces[n] != NULL; n++)
|
|
|
|
;
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
static guint
|
|
|
|
count_nodes (GDBusNodeInfo *info)
|
|
|
|
{
|
|
|
|
guint n;
|
|
|
|
for (n = 0; info->nodes != NULL && info->nodes[n] != NULL; n++)
|
|
|
|
;
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
static guint
|
|
|
|
has_interface (GDBusNodeInfo *info,
|
|
|
|
const gchar *name)
|
|
|
|
{
|
|
|
|
guint n;
|
|
|
|
for (n = 0; info->interfaces != NULL && info->interfaces[n] != NULL; n++)
|
|
|
|
{
|
|
|
|
if (g_strcmp0 (info->interfaces[n]->name, name) == 0)
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
GMainLoop *loop;
|
|
|
|
GVariant *result;
|
|
|
|
} OMGetManagedObjectsData;
|
|
|
|
|
|
|
|
static void
|
|
|
|
om_get_all_cb (GDBusConnection *connection,
|
|
|
|
GAsyncResult *res,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
OMGetManagedObjectsData *data = user_data;
|
|
|
|
GError *error;
|
|
|
|
|
|
|
|
error = NULL;
|
|
|
|
data->result = g_dbus_connection_call_finish (connection,
|
|
|
|
res,
|
|
|
|
&error);
|
|
|
|
g_assert_no_error (error);
|
|
|
|
g_assert (data->result != NULL);
|
|
|
|
g_main_loop_quit (data->loop);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
om_check_get_all (GDBusConnection *c,
|
|
|
|
GMainLoop *loop,
|
|
|
|
const gchar *str)
|
|
|
|
{
|
|
|
|
OMGetManagedObjectsData data;
|
|
|
|
gchar *s;
|
|
|
|
|
|
|
|
data.loop = loop;
|
|
|
|
data.result = NULL;
|
|
|
|
|
|
|
|
/* do this async to avoid deadlocks */
|
|
|
|
g_dbus_connection_call (c,
|
|
|
|
g_dbus_connection_get_unique_name (c),
|
|
|
|
"/managed",
|
2024-05-13 14:00:34 +02:00
|
|
|
DBUS_INTERFACE_OBJECT_MANAGER,
|
2011-04-11 16:54:52 +02:00
|
|
|
"GetManagedObjects",
|
|
|
|
NULL, /* params */
|
|
|
|
G_VARIANT_TYPE ("(a{oa{sa{sv}}})"),
|
|
|
|
G_DBUS_CALL_FLAGS_NONE,
|
|
|
|
-1,
|
|
|
|
NULL,
|
|
|
|
(GAsyncReadyCallback) om_get_all_cb,
|
|
|
|
&data);
|
|
|
|
g_main_loop_run (loop);
|
|
|
|
g_assert (data.result != NULL);
|
|
|
|
s = g_variant_print (data.result, TRUE);
|
|
|
|
g_assert_cmpstr (s, ==, str);
|
|
|
|
g_free (s);
|
|
|
|
g_variant_unref (data.result);
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GMainLoop *loop;
|
|
|
|
guint state;
|
|
|
|
|
|
|
|
guint num_object_proxy_added_signals;
|
|
|
|
guint num_object_proxy_removed_signals;
|
|
|
|
guint num_interface_added_signals;
|
|
|
|
guint num_interface_removed_signals;
|
|
|
|
} OMData;
|
|
|
|
|
|
|
|
static void
|
|
|
|
om_check_interfaces_added (const gchar *signal_name,
|
|
|
|
GVariant *parameters,
|
|
|
|
const gchar *object_path,
|
|
|
|
const gchar *first_interface_name,
|
|
|
|
...)
|
|
|
|
{
|
|
|
|
const gchar *path;
|
|
|
|
GVariant *array;
|
|
|
|
guint n;
|
|
|
|
GPtrArray *interfaces;
|
|
|
|
GPtrArray *interfaces_in_message;
|
|
|
|
va_list var_args;
|
|
|
|
const gchar *str;
|
|
|
|
|
|
|
|
interfaces = g_ptr_array_new ();
|
|
|
|
g_ptr_array_add (interfaces, (gpointer) first_interface_name);
|
|
|
|
va_start (var_args, first_interface_name);
|
|
|
|
do
|
|
|
|
{
|
|
|
|
str = va_arg (var_args, const gchar *);
|
|
|
|
if (str == NULL)
|
|
|
|
break;
|
|
|
|
g_ptr_array_add (interfaces, (gpointer) str);
|
|
|
|
}
|
|
|
|
while (TRUE);
|
|
|
|
va_end (var_args);
|
|
|
|
|
|
|
|
g_variant_get (parameters, "(&o*)", &path, &array);
|
|
|
|
g_assert_cmpstr (signal_name, ==, "InterfacesAdded");
|
|
|
|
g_assert_cmpstr (path, ==, object_path);
|
|
|
|
g_assert_cmpint (g_variant_n_children (array), ==, interfaces->len);
|
|
|
|
interfaces_in_message = g_ptr_array_new ();
|
|
|
|
for (n = 0; n < interfaces->len; n++)
|
|
|
|
{
|
|
|
|
const gchar *iface_name;
|
|
|
|
g_variant_get_child (array, n, "{&sa{sv}}", &iface_name, NULL);
|
|
|
|
g_ptr_array_add (interfaces_in_message, (gpointer) iface_name);
|
|
|
|
}
|
|
|
|
g_assert_cmpint (interfaces_in_message->len, ==, interfaces->len);
|
2022-12-20 00:22:05 +01:00
|
|
|
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
|
|
|
g_ptr_array_sort_values (interfaces, (GCompareFunc) g_strcmp0);
|
|
|
|
g_ptr_array_sort_values (interfaces_in_message, (GCompareFunc) g_strcmp0);
|
|
|
|
G_GNUC_END_IGNORE_DEPRECATIONS
|
2011-04-11 16:54:52 +02:00
|
|
|
for (n = 0; n < interfaces->len; n++)
|
|
|
|
g_assert_cmpstr (interfaces->pdata[n], ==, interfaces_in_message->pdata[n]);
|
|
|
|
g_ptr_array_unref (interfaces_in_message);
|
|
|
|
g_ptr_array_unref (interfaces);
|
|
|
|
g_variant_unref (array);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
om_check_interfaces_removed (const gchar *signal_name,
|
|
|
|
GVariant *parameters,
|
|
|
|
const gchar *object_path,
|
|
|
|
const gchar *first_interface_name,
|
|
|
|
...)
|
|
|
|
{
|
|
|
|
const gchar *path;
|
|
|
|
GVariant *array;
|
|
|
|
guint n;
|
|
|
|
GPtrArray *interfaces;
|
|
|
|
GPtrArray *interfaces_in_message;
|
|
|
|
va_list var_args;
|
|
|
|
const gchar *str;
|
|
|
|
|
|
|
|
interfaces = g_ptr_array_new ();
|
|
|
|
g_ptr_array_add (interfaces, (gpointer) first_interface_name);
|
|
|
|
va_start (var_args, first_interface_name);
|
|
|
|
do
|
|
|
|
{
|
|
|
|
str = va_arg (var_args, const gchar *);
|
|
|
|
if (str == NULL)
|
|
|
|
break;
|
|
|
|
g_ptr_array_add (interfaces, (gpointer) str);
|
|
|
|
}
|
|
|
|
while (TRUE);
|
|
|
|
va_end (var_args);
|
|
|
|
|
|
|
|
g_variant_get (parameters, "(&o*)", &path, &array);
|
|
|
|
g_assert_cmpstr (signal_name, ==, "InterfacesRemoved");
|
|
|
|
g_assert_cmpstr (path, ==, object_path);
|
|
|
|
g_assert_cmpint (g_variant_n_children (array), ==, interfaces->len);
|
|
|
|
interfaces_in_message = g_ptr_array_new ();
|
|
|
|
for (n = 0; n < interfaces->len; n++)
|
|
|
|
{
|
|
|
|
const gchar *iface_name;
|
|
|
|
g_variant_get_child (array, n, "&s", &iface_name, NULL);
|
|
|
|
g_ptr_array_add (interfaces_in_message, (gpointer) iface_name);
|
|
|
|
}
|
|
|
|
g_assert_cmpint (interfaces_in_message->len, ==, interfaces->len);
|
2022-12-20 00:22:05 +01:00
|
|
|
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
|
|
|
g_ptr_array_sort_values (interfaces, (GCompareFunc) g_strcmp0);
|
|
|
|
g_ptr_array_sort_values (interfaces_in_message, (GCompareFunc) g_strcmp0);
|
|
|
|
G_GNUC_END_IGNORE_DEPRECATIONS
|
2011-04-11 16:54:52 +02:00
|
|
|
for (n = 0; n < interfaces->len; n++)
|
|
|
|
g_assert_cmpstr (interfaces->pdata[n], ==, interfaces_in_message->pdata[n]);
|
|
|
|
g_ptr_array_unref (interfaces_in_message);
|
|
|
|
g_ptr_array_unref (interfaces);
|
|
|
|
g_variant_unref (array);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
om_on_signal (GDBusConnection *connection,
|
|
|
|
const gchar *sender_name,
|
|
|
|
const gchar *object_path,
|
|
|
|
const gchar *interface_name,
|
|
|
|
const gchar *signal_name,
|
|
|
|
GVariant *parameters,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
OMData *om_data = user_data;
|
|
|
|
|
|
|
|
//g_debug ("foo: %s", g_variant_print (parameters, TRUE));
|
|
|
|
|
|
|
|
switch (om_data->state)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case 0:
|
2015-05-11 18:03:00 +02:00
|
|
|
g_printerr ("failing and om_data->state=%d on signal %s, params=%s\n",
|
2011-04-11 16:54:52 +02:00
|
|
|
om_data->state,
|
|
|
|
signal_name,
|
|
|
|
g_variant_print (parameters, TRUE));
|
|
|
|
g_assert_not_reached ();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
om_check_interfaces_added (signal_name, parameters, "/managed/first",
|
|
|
|
"org.project.Bar", NULL);
|
|
|
|
om_data->state = 2;
|
|
|
|
g_main_loop_quit (om_data->loop);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
om_check_interfaces_removed (signal_name, parameters, "/managed/first",
|
|
|
|
"org.project.Bar", NULL);
|
|
|
|
om_data->state = 5;
|
|
|
|
/* keep running the loop */
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 5:
|
|
|
|
om_check_interfaces_added (signal_name, parameters, "/managed/first",
|
|
|
|
"org.project.Bar", NULL);
|
|
|
|
om_data->state = 6;
|
|
|
|
g_main_loop_quit (om_data->loop);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 7:
|
|
|
|
om_check_interfaces_removed (signal_name, parameters, "/managed/first",
|
|
|
|
"org.project.Bar", NULL);
|
|
|
|
om_data->state = 9;
|
|
|
|
/* keep running the loop */
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 9:
|
|
|
|
om_check_interfaces_added (signal_name, parameters, "/managed/first",
|
|
|
|
"org.project.Bar", NULL);
|
|
|
|
om_data->state = 10;
|
|
|
|
g_main_loop_quit (om_data->loop);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 11:
|
|
|
|
om_check_interfaces_added (signal_name, parameters, "/managed/first",
|
|
|
|
"org.project.Bat", NULL);
|
|
|
|
om_data->state = 12;
|
|
|
|
g_main_loop_quit (om_data->loop);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 13:
|
|
|
|
om_check_interfaces_removed (signal_name, parameters, "/managed/first",
|
|
|
|
"org.project.Bar", NULL);
|
|
|
|
om_data->state = 14;
|
|
|
|
g_main_loop_quit (om_data->loop);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 15:
|
|
|
|
om_check_interfaces_removed (signal_name, parameters, "/managed/first",
|
|
|
|
"org.project.Bat", NULL);
|
|
|
|
om_data->state = 16;
|
|
|
|
g_main_loop_quit (om_data->loop);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 17:
|
|
|
|
om_check_interfaces_added (signal_name, parameters, "/managed/first",
|
|
|
|
"com.acme.Coyote", NULL);
|
|
|
|
om_data->state = 18;
|
|
|
|
g_main_loop_quit (om_data->loop);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 101:
|
|
|
|
om_check_interfaces_added (signal_name, parameters, "/managed/second",
|
|
|
|
"org.project.Bat", "org.project.Bar", NULL);
|
|
|
|
om_data->state = 102;
|
|
|
|
g_main_loop_quit (om_data->loop);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 103:
|
|
|
|
om_check_interfaces_removed (signal_name, parameters, "/managed/second",
|
|
|
|
"org.project.Bat", "org.project.Bar", NULL);
|
|
|
|
om_data->state = 104;
|
|
|
|
g_main_loop_quit (om_data->loop);
|
|
|
|
break;
|
2011-09-19 23:31:21 +02:00
|
|
|
|
|
|
|
case 200:
|
|
|
|
om_check_interfaces_added (signal_name, parameters, "/managed/first_1",
|
|
|
|
"com.acme.Coyote", NULL);
|
|
|
|
om_data->state = 201;
|
|
|
|
g_main_loop_quit (om_data->loop);
|
|
|
|
break;
|
2011-04-11 16:54:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static GAsyncResult *om_res = NULL;
|
|
|
|
|
|
|
|
static void
|
2011-09-16 22:01:13 +02:00
|
|
|
om_pm_start_cb (FooiGenObjectManagerClient *manager,
|
|
|
|
GAsyncResult *res,
|
|
|
|
gpointer user_data)
|
2011-04-11 16:54:52 +02:00
|
|
|
{
|
|
|
|
GMainLoop *loop = user_data;
|
|
|
|
om_res = g_object_ref (res);
|
|
|
|
g_main_loop_quit (loop);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
on_interface_added (GDBusObject *object,
|
|
|
|
GDBusInterface *interface,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
OMData *om_data = user_data;
|
|
|
|
om_data->num_interface_added_signals += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
on_interface_removed (GDBusObject *object,
|
|
|
|
GDBusInterface *interface,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
OMData *om_data = user_data;
|
|
|
|
om_data->num_interface_removed_signals += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
on_object_proxy_added (GDBusObjectManagerClient *manager,
|
|
|
|
GDBusObjectProxy *object_proxy,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
OMData *om_data = user_data;
|
|
|
|
om_data->num_object_proxy_added_signals += 1;
|
|
|
|
g_signal_connect (object_proxy,
|
|
|
|
"interface-added",
|
|
|
|
G_CALLBACK (on_interface_added),
|
|
|
|
om_data);
|
|
|
|
g_signal_connect (object_proxy,
|
|
|
|
"interface-removed",
|
|
|
|
G_CALLBACK (on_interface_removed),
|
|
|
|
om_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
on_object_proxy_removed (GDBusObjectManagerClient *manager,
|
|
|
|
GDBusObjectProxy *object_proxy,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
OMData *om_data = user_data;
|
|
|
|
om_data->num_object_proxy_removed_signals += 1;
|
|
|
|
g_assert_cmpint (g_signal_handlers_disconnect_by_func (object_proxy,
|
|
|
|
G_CALLBACK (on_interface_added),
|
|
|
|
om_data), ==, 1);
|
|
|
|
g_assert_cmpint (g_signal_handlers_disconnect_by_func (object_proxy,
|
|
|
|
G_CALLBACK (on_interface_removed),
|
|
|
|
om_data), ==, 1);
|
|
|
|
}
|
|
|
|
|
2012-06-18 21:31:47 +02:00
|
|
|
static void
|
2018-12-13 12:06:02 +01:00
|
|
|
property_changed (GObject *object,
|
|
|
|
GParamSpec *pspec,
|
|
|
|
gpointer user_data)
|
2012-06-18 21:31:47 +02:00
|
|
|
{
|
|
|
|
gboolean *changed = user_data;
|
|
|
|
|
|
|
|
*changed = TRUE;
|
|
|
|
}
|
|
|
|
|
2011-04-11 16:54:52 +02:00
|
|
|
static void
|
|
|
|
om_check_property_and_signal_emission (GMainLoop *loop,
|
2011-09-16 22:01:13 +02:00
|
|
|
FooiGenBar *skeleton,
|
|
|
|
FooiGenBar *proxy)
|
2011-04-11 16:54:52 +02:00
|
|
|
{
|
2012-06-18 21:31:47 +02:00
|
|
|
gboolean d_changed = FALSE;
|
2018-12-13 12:06:02 +01:00
|
|
|
gboolean quiet_changed = FALSE;
|
|
|
|
gboolean quiet_too_changed = FALSE;
|
2012-06-18 21:31:47 +02:00
|
|
|
guint handler;
|
|
|
|
|
2011-04-11 16:54:52 +02:00
|
|
|
/* First PropertiesChanged */
|
2011-09-16 22:01:13 +02:00
|
|
|
g_assert_cmpint (foo_igen_bar_get_i (skeleton), ==, 0);
|
|
|
|
g_assert_cmpint (foo_igen_bar_get_i (proxy), ==, 0);
|
|
|
|
foo_igen_bar_set_i (skeleton, 1);
|
2011-04-11 16:54:52 +02:00
|
|
|
_g_assert_property_notify (proxy, "i");
|
2011-09-16 22:01:13 +02:00
|
|
|
g_assert_cmpint (foo_igen_bar_get_i (skeleton), ==, 1);
|
|
|
|
g_assert_cmpint (foo_igen_bar_get_i (proxy), ==, 1);
|
2011-04-11 16:54:52 +02:00
|
|
|
|
2012-06-18 21:31:47 +02:00
|
|
|
/* Double-check the gdouble case */
|
|
|
|
g_assert_cmpfloat (foo_igen_bar_get_d (skeleton), ==, 0.0);
|
|
|
|
g_assert_cmpfloat (foo_igen_bar_get_d (proxy), ==, 0.0);
|
|
|
|
foo_igen_bar_set_d (skeleton, 1.0);
|
|
|
|
_g_assert_property_notify (proxy, "d");
|
|
|
|
|
|
|
|
/* Verify that re-setting it to the same value doesn't cause a
|
|
|
|
* notify on the proxy, by taking advantage of the fact that
|
|
|
|
* notifications are serialized.
|
|
|
|
*/
|
|
|
|
handler = g_signal_connect (proxy, "notify::d",
|
2018-12-13 12:06:02 +01:00
|
|
|
G_CALLBACK (property_changed), &d_changed);
|
2012-06-18 21:31:47 +02:00
|
|
|
foo_igen_bar_set_d (skeleton, 1.0);
|
|
|
|
foo_igen_bar_set_i (skeleton, 2);
|
|
|
|
_g_assert_property_notify (proxy, "i");
|
|
|
|
g_assert (d_changed == FALSE);
|
|
|
|
g_signal_handler_disconnect (proxy, handler);
|
|
|
|
|
2018-12-13 12:06:02 +01:00
|
|
|
/* Verify that re-setting a property with the "EmitsChangedSignal"
|
|
|
|
* set to false doesn't emit a signal. */
|
|
|
|
handler = g_signal_connect (proxy, "notify::quiet",
|
|
|
|
G_CALLBACK (property_changed), &quiet_changed);
|
|
|
|
foo_igen_bar_set_quiet (skeleton, "hush!");
|
|
|
|
foo_igen_bar_set_i (skeleton, 3);
|
|
|
|
_g_assert_property_notify (proxy, "i");
|
|
|
|
g_assert (quiet_changed == FALSE);
|
|
|
|
g_assert_cmpstr (foo_igen_bar_get_quiet (skeleton), ==, "hush!");
|
|
|
|
g_signal_handler_disconnect (proxy, handler);
|
|
|
|
|
|
|
|
/* Also verify that re-setting a property with the "EmitsChangedSignal"
|
|
|
|
* set to 'const' doesn't emit a signal. */
|
|
|
|
handler = g_signal_connect (proxy, "notify::quiet-too",
|
|
|
|
G_CALLBACK (property_changed), &quiet_changed);
|
|
|
|
foo_igen_bar_set_quiet_too (skeleton, "hush too!");
|
|
|
|
foo_igen_bar_set_i (skeleton, 4);
|
|
|
|
_g_assert_property_notify (proxy, "i");
|
|
|
|
g_assert (quiet_too_changed == FALSE);
|
|
|
|
g_assert_cmpstr (foo_igen_bar_get_quiet_too (skeleton), ==, "hush too!");
|
|
|
|
g_signal_handler_disconnect (proxy, handler);
|
|
|
|
|
2011-04-11 16:54:52 +02:00
|
|
|
/* Then just a regular signal */
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_bar_emit_another_signal (skeleton, "word");
|
2011-04-11 16:54:52 +02:00
|
|
|
_g_assert_signal_received (proxy, "another-signal");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
check_object_manager (void)
|
|
|
|
{
|
2012-04-17 23:51:01 +02:00
|
|
|
FooiGenObjectSkeleton *o = NULL;
|
|
|
|
FooiGenObjectSkeleton *o2 = NULL;
|
|
|
|
FooiGenObjectSkeleton *o3 = NULL;
|
2011-04-13 22:33:51 +02:00
|
|
|
GDBusInterfaceSkeleton *i;
|
2011-04-11 16:54:52 +02:00
|
|
|
GDBusConnection *c;
|
2012-04-17 23:51:01 +02:00
|
|
|
GDBusObjectManagerServer *manager = NULL;
|
2011-04-11 16:54:52 +02:00
|
|
|
GDBusNodeInfo *info;
|
|
|
|
GError *error;
|
|
|
|
GMainLoop *loop;
|
2012-04-17 23:51:01 +02:00
|
|
|
OMData *om_data = NULL;
|
2020-11-19 20:05:07 +01:00
|
|
|
guint om_signal_id = 0;
|
2012-04-17 23:51:01 +02:00
|
|
|
GDBusObjectManager *pm = NULL;
|
2011-04-11 16:54:52 +02:00
|
|
|
GList *object_proxies;
|
|
|
|
GList *proxies;
|
|
|
|
GDBusObject *op;
|
|
|
|
GDBusProxy *p;
|
2011-09-16 22:01:13 +02:00
|
|
|
FooiGenBar *bar_skeleton;
|
2012-04-02 13:37:55 +02:00
|
|
|
GDBusInterface *iface;
|
|
|
|
gchar *path, *name, *name_owner;
|
|
|
|
GDBusConnection *c2;
|
|
|
|
GDBusObjectManagerClientFlags flags;
|
2011-04-11 16:54:52 +02:00
|
|
|
|
|
|
|
loop = g_main_loop_new (NULL, FALSE);
|
|
|
|
|
|
|
|
om_data = g_new0 (OMData, 1);
|
|
|
|
om_data->loop = loop;
|
|
|
|
om_data->state = 0;
|
|
|
|
|
|
|
|
error = NULL;
|
|
|
|
c = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, &error);
|
|
|
|
g_assert_no_error (error);
|
|
|
|
g_assert (c != NULL);
|
|
|
|
|
|
|
|
om_signal_id = g_dbus_connection_signal_subscribe (c,
|
|
|
|
NULL, /* sender */
|
2024-05-13 14:00:34 +02:00
|
|
|
DBUS_INTERFACE_OBJECT_MANAGER,
|
2011-04-11 16:54:52 +02:00
|
|
|
NULL, /* member */
|
|
|
|
NULL, /* object_path */
|
|
|
|
NULL, /* arg0 */
|
|
|
|
G_DBUS_SIGNAL_FLAGS_NONE,
|
|
|
|
om_on_signal,
|
|
|
|
om_data,
|
|
|
|
NULL); /* user_data_free_func */
|
|
|
|
|
|
|
|
/* Our GDBusObjectManagerClient tests are simple - we basically just count the
|
|
|
|
* number of times the various signals have been emitted (we don't check
|
|
|
|
* that the right objects/interfaces are passed though - that's checked
|
|
|
|
* in the lower-level tests in om_on_signal()...)
|
|
|
|
*
|
|
|
|
* Note that these tests rely on the D-Bus signal handlers used by
|
|
|
|
* GDBusObjectManagerClient firing before om_on_signal().
|
|
|
|
*/
|
|
|
|
error = NULL;
|
2011-09-16 22:01:13 +02:00
|
|
|
pm = foo_igen_object_manager_client_new_sync (c,
|
|
|
|
G_DBUS_OBJECT_MANAGER_CLIENT_FLAGS_NONE,
|
|
|
|
g_dbus_connection_get_unique_name (c),
|
|
|
|
"/managed",
|
|
|
|
NULL, /* GCancellable */
|
|
|
|
&error);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_error (error, G_DBUS_ERROR, G_DBUS_ERROR_UNKNOWN_METHOD);
|
|
|
|
g_error_free (error);
|
|
|
|
g_assert (pm == NULL);
|
|
|
|
|
2011-05-04 09:37:46 +02:00
|
|
|
manager = g_dbus_object_manager_server_new ("/managed");
|
2012-04-02 13:37:55 +02:00
|
|
|
|
|
|
|
g_assert (g_dbus_object_manager_server_get_connection (manager) == NULL);
|
|
|
|
|
2011-05-04 09:37:46 +02:00
|
|
|
g_dbus_object_manager_server_set_connection (manager, c);
|
2011-04-11 16:54:52 +02:00
|
|
|
|
2012-04-02 13:37:55 +02:00
|
|
|
g_assert_cmpstr (g_dbus_object_manager_get_object_path (G_DBUS_OBJECT_MANAGER (manager)), ==, "/managed");
|
|
|
|
g_object_get (manager, "object-path", &path, "connection", &c2, NULL);
|
|
|
|
g_assert_cmpstr (path, ==, "/managed");
|
|
|
|
g_assert (c2 == c);
|
|
|
|
g_free (path);
|
2012-04-17 23:51:01 +02:00
|
|
|
g_clear_object (&c2);
|
2012-04-02 13:37:55 +02:00
|
|
|
|
2011-04-11 16:54:52 +02:00
|
|
|
/* Check that the manager object is visible */
|
|
|
|
info = introspect (c, g_dbus_connection_get_unique_name (c), "/managed", loop);
|
|
|
|
g_assert_cmpint (count_interfaces (info), ==, 4); /* ObjectManager + Properties,Introspectable,Peer */
|
2024-05-13 14:00:34 +02:00
|
|
|
g_assert (has_interface (info, DBUS_INTERFACE_OBJECT_MANAGER));
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_cmpint (count_nodes (info), ==, 0);
|
|
|
|
g_dbus_node_info_unref (info);
|
|
|
|
|
|
|
|
/* Check GetManagedObjects() - should be empty since we have no objects */
|
|
|
|
om_check_get_all (c, loop,
|
|
|
|
"(@a{oa{sa{sv}}} {},)");
|
|
|
|
|
2012-08-19 08:27:04 +02:00
|
|
|
/* Now try to create the proxy manager again - this time it should work */
|
2011-04-11 16:54:52 +02:00
|
|
|
error = NULL;
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_object_manager_client_new (c,
|
|
|
|
G_DBUS_OBJECT_MANAGER_CLIENT_FLAGS_NONE,
|
|
|
|
g_dbus_connection_get_unique_name (c),
|
|
|
|
"/managed",
|
|
|
|
NULL, /* GCancellable */
|
|
|
|
(GAsyncReadyCallback) om_pm_start_cb,
|
|
|
|
loop);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_main_loop_run (loop);
|
|
|
|
error = NULL;
|
2011-09-16 22:01:13 +02:00
|
|
|
pm = foo_igen_object_manager_client_new_finish (om_res, &error);
|
2012-04-17 23:51:01 +02:00
|
|
|
g_clear_object (&om_res);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_no_error (error);
|
|
|
|
g_assert (pm != NULL);
|
|
|
|
g_signal_connect (pm,
|
|
|
|
"object-added",
|
|
|
|
G_CALLBACK (on_object_proxy_added),
|
|
|
|
om_data);
|
|
|
|
g_signal_connect (pm,
|
|
|
|
"object-removed",
|
|
|
|
G_CALLBACK (on_object_proxy_removed),
|
|
|
|
om_data);
|
2012-04-02 13:37:55 +02:00
|
|
|
|
|
|
|
g_assert_cmpstr (g_dbus_object_manager_get_object_path (G_DBUS_OBJECT_MANAGER (pm)), ==, "/managed");
|
|
|
|
g_object_get (pm,
|
|
|
|
"object-path", &path,
|
|
|
|
"connection", &c2,
|
|
|
|
"name", &name,
|
|
|
|
"name-owner", &name_owner,
|
|
|
|
"flags", &flags,
|
|
|
|
NULL);
|
|
|
|
g_assert_cmpstr (path, ==, "/managed");
|
|
|
|
g_assert_cmpstr (name, ==, g_dbus_connection_get_unique_name (c));
|
|
|
|
g_assert_cmpstr (name_owner, ==, g_dbus_connection_get_unique_name (c));
|
|
|
|
g_assert_cmpint (flags, ==, G_DBUS_OBJECT_MANAGER_CLIENT_FLAGS_NONE);
|
|
|
|
g_assert (c2 == c);
|
|
|
|
g_free (path);
|
2012-04-17 23:51:01 +02:00
|
|
|
g_clear_object (&c2);
|
2012-04-02 13:37:55 +02:00
|
|
|
g_free (name);
|
|
|
|
g_free (name_owner);
|
|
|
|
|
2011-04-11 16:54:52 +02:00
|
|
|
/* ... check there are no object proxies yet */
|
|
|
|
object_proxies = g_dbus_object_manager_get_objects (pm);
|
|
|
|
g_assert (object_proxies == NULL);
|
|
|
|
|
|
|
|
/* First, export an object with a single interface (also check that
|
|
|
|
* g_dbus_interface_get_object() works and that the object isn't reffed)
|
|
|
|
*/
|
2011-09-16 22:01:13 +02:00
|
|
|
o = foo_igen_object_skeleton_new ("/managed/first");
|
|
|
|
i = G_DBUS_INTERFACE_SKELETON (foo_igen_bar_skeleton_new ());
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert (g_dbus_interface_get_object (G_DBUS_INTERFACE (i)) == NULL);
|
|
|
|
g_assert_cmpint (G_OBJECT (o)->ref_count, ==, 1);
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_object_skeleton_set_bar (o, FOO_IGEN_BAR (i));
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_cmpint (G_OBJECT (o)->ref_count, ==, 1);
|
|
|
|
g_assert (g_dbus_interface_get_object (G_DBUS_INTERFACE (i)) == G_DBUS_OBJECT (o));
|
|
|
|
g_assert_cmpint (G_OBJECT (o)->ref_count, ==, 1);
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_object_skeleton_set_bar (o, NULL);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert (g_dbus_interface_get_object (G_DBUS_INTERFACE (i)) == NULL);
|
|
|
|
g_assert_cmpint (G_OBJECT (o)->ref_count, ==, 1);
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_object_skeleton_set_bar (o, FOO_IGEN_BAR (i));
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert (g_dbus_interface_get_object (G_DBUS_INTERFACE (i)) == G_DBUS_OBJECT (o));
|
|
|
|
g_assert_cmpint (G_OBJECT (o)->ref_count, ==, 1);
|
2012-04-02 13:37:55 +02:00
|
|
|
|
|
|
|
o2 = FOO_IGEN_OBJECT_SKELETON (g_dbus_interface_dup_object (G_DBUS_INTERFACE (i)));
|
|
|
|
g_assert (G_DBUS_OBJECT (o2) == G_DBUS_OBJECT (o));
|
|
|
|
g_assert_cmpint (G_OBJECT (o2)->ref_count, ==, 2);
|
2012-04-17 23:51:01 +02:00
|
|
|
g_clear_object (&o2);
|
2012-04-02 13:37:55 +02:00
|
|
|
|
2011-04-25 15:29:18 +02:00
|
|
|
g_dbus_object_manager_server_export (manager, G_DBUS_OBJECT_SKELETON (o));
|
2011-04-11 16:54:52 +02:00
|
|
|
|
|
|
|
/* ... check we get the InterfacesAdded signal */
|
|
|
|
om_data->state = 1;
|
2012-04-17 23:51:01 +02:00
|
|
|
|
2011-04-11 16:54:52 +02:00
|
|
|
g_main_loop_run (om_data->loop);
|
2012-04-17 23:51:01 +02:00
|
|
|
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_cmpint (om_data->state, ==, 2);
|
|
|
|
g_assert_cmpint (om_data->num_object_proxy_added_signals, ==, 1);
|
|
|
|
g_assert_cmpint (om_data->num_object_proxy_removed_signals, ==, 0);
|
|
|
|
g_assert_cmpint (om_data->num_interface_added_signals, ==, 0);
|
|
|
|
g_assert_cmpint (om_data->num_interface_removed_signals, ==, 0);
|
|
|
|
/* ... check there's one non-standard interfaces */
|
|
|
|
info = introspect (c, g_dbus_connection_get_unique_name (c), "/managed/first", loop);
|
|
|
|
g_assert_cmpint (count_interfaces (info), ==, 4); /* Bar + Properties,Introspectable,Peer */
|
|
|
|
g_assert (has_interface (info, "org.project.Bar"));
|
|
|
|
g_dbus_node_info_unref (info);
|
|
|
|
|
2012-04-02 13:37:55 +02:00
|
|
|
/* Also check g_dbus_object_manager_get_interface */
|
|
|
|
iface = g_dbus_object_manager_get_interface (G_DBUS_OBJECT_MANAGER (manager), "/managed/first", "org.project.Bar");
|
|
|
|
g_assert (iface != NULL);
|
2012-04-17 23:51:01 +02:00
|
|
|
g_clear_object (&iface);
|
2012-04-02 13:37:55 +02:00
|
|
|
iface = g_dbus_object_manager_get_interface (G_DBUS_OBJECT_MANAGER (manager), "/managed/first", "org.project.Bat");
|
|
|
|
g_assert (iface == NULL);
|
|
|
|
iface = g_dbus_object_manager_get_interface (G_DBUS_OBJECT_MANAGER (pm), "/managed/first", "org.project.Bar");
|
|
|
|
g_assert (iface != NULL);
|
2012-04-17 23:51:01 +02:00
|
|
|
g_clear_object (&iface);
|
2012-04-02 13:37:55 +02:00
|
|
|
iface = g_dbus_object_manager_get_interface (G_DBUS_OBJECT_MANAGER (pm), "/managed/first", "org.project.Bat");
|
|
|
|
g_assert (iface == NULL);
|
|
|
|
|
2011-04-11 16:54:52 +02:00
|
|
|
/* Now, check adding the same interface replaces the existing one */
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_object_skeleton_set_bar (o, FOO_IGEN_BAR (i));
|
2011-04-11 16:54:52 +02:00
|
|
|
/* ... check we get the InterfacesRemoved */
|
|
|
|
om_data->state = 3;
|
|
|
|
g_main_loop_run (om_data->loop);
|
|
|
|
/* ... and then check we get the InterfacesAdded */
|
|
|
|
g_assert_cmpint (om_data->state, ==, 6);
|
|
|
|
g_assert_cmpint (om_data->num_object_proxy_added_signals, ==, 2);
|
|
|
|
g_assert_cmpint (om_data->num_object_proxy_removed_signals, ==, 1);
|
|
|
|
g_assert_cmpint (om_data->num_interface_added_signals, ==, 0);
|
|
|
|
g_assert_cmpint (om_data->num_interface_removed_signals, ==, 0);
|
|
|
|
/* ... check introspection data */
|
|
|
|
info = introspect (c, g_dbus_connection_get_unique_name (c), "/managed/first", loop);
|
|
|
|
g_assert_cmpint (count_interfaces (info), ==, 4); /* Bar + Properties,Introspectable,Peer */
|
|
|
|
g_assert (has_interface (info, "org.project.Bar"));
|
|
|
|
g_dbus_node_info_unref (info);
|
2012-04-17 23:51:01 +02:00
|
|
|
g_clear_object (&i);
|
2011-04-11 16:54:52 +02:00
|
|
|
|
|
|
|
/* check adding an interface of same type (but not same object) replaces the existing one */
|
2011-09-16 22:01:13 +02:00
|
|
|
i = G_DBUS_INTERFACE_SKELETON (foo_igen_bar_skeleton_new ());
|
|
|
|
foo_igen_object_skeleton_set_bar (o, FOO_IGEN_BAR (i));
|
2011-04-11 16:54:52 +02:00
|
|
|
/* ... check we get the InterfacesRemoved and then InterfacesAdded */
|
|
|
|
om_data->state = 7;
|
|
|
|
g_main_loop_run (om_data->loop);
|
|
|
|
g_assert_cmpint (om_data->state, ==, 10);
|
|
|
|
g_assert_cmpint (om_data->num_object_proxy_added_signals, ==, 3);
|
|
|
|
g_assert_cmpint (om_data->num_object_proxy_removed_signals, ==, 2);
|
|
|
|
g_assert_cmpint (om_data->num_interface_added_signals, ==, 0);
|
|
|
|
g_assert_cmpint (om_data->num_interface_removed_signals, ==, 0);
|
|
|
|
/* ... check introspection data */
|
|
|
|
info = introspect (c, g_dbus_connection_get_unique_name (c), "/managed/first", loop);
|
|
|
|
g_assert_cmpint (count_interfaces (info), ==, 4); /* Bar + Properties,Introspectable,Peer */
|
|
|
|
g_assert (has_interface (info, "org.project.Bar"));
|
|
|
|
g_dbus_node_info_unref (info);
|
2012-04-17 23:51:01 +02:00
|
|
|
g_clear_object (&i);
|
2011-04-11 16:54:52 +02:00
|
|
|
|
|
|
|
/* check adding an interface of another type doesn't replace the existing one */
|
2011-09-16 22:01:13 +02:00
|
|
|
i = G_DBUS_INTERFACE_SKELETON (foo_igen_bat_skeleton_new ());
|
|
|
|
foo_igen_object_skeleton_set_bat (o, FOO_IGEN_BAT (i));
|
2012-04-17 23:51:01 +02:00
|
|
|
g_clear_object (&i);
|
2011-04-11 16:54:52 +02:00
|
|
|
/* ... check we get the InterfacesAdded */
|
|
|
|
om_data->state = 11;
|
|
|
|
g_main_loop_run (om_data->loop);
|
|
|
|
g_assert_cmpint (om_data->state, ==, 12);
|
|
|
|
g_assert_cmpint (om_data->num_object_proxy_added_signals, ==, 3);
|
|
|
|
g_assert_cmpint (om_data->num_object_proxy_removed_signals, ==, 2);
|
|
|
|
g_assert_cmpint (om_data->num_interface_added_signals, ==, 1);
|
|
|
|
g_assert_cmpint (om_data->num_interface_removed_signals, ==, 0);
|
|
|
|
/* ... check introspection data */
|
|
|
|
info = introspect (c, g_dbus_connection_get_unique_name (c), "/managed/first", loop);
|
|
|
|
g_assert_cmpint (count_interfaces (info), ==, 5); /* Bar,Bat + Properties,Introspectable,Peer */
|
|
|
|
g_assert (has_interface (info, "org.project.Bar"));
|
|
|
|
g_assert (has_interface (info, "org.project.Bat"));
|
|
|
|
g_dbus_node_info_unref (info);
|
|
|
|
|
|
|
|
/* check we can remove an interface */
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_object_skeleton_set_bar (o, NULL);
|
2011-04-11 16:54:52 +02:00
|
|
|
/* ... check we get the InterfacesRemoved */
|
|
|
|
om_data->state = 13;
|
|
|
|
g_main_loop_run (om_data->loop);
|
|
|
|
g_assert_cmpint (om_data->state, ==, 14);
|
|
|
|
g_assert_cmpint (om_data->num_object_proxy_added_signals, ==, 3);
|
|
|
|
g_assert_cmpint (om_data->num_object_proxy_removed_signals, ==, 2);
|
|
|
|
g_assert_cmpint (om_data->num_interface_added_signals, ==, 1);
|
|
|
|
g_assert_cmpint (om_data->num_interface_removed_signals, ==, 1);
|
|
|
|
/* ... check introspection data */
|
|
|
|
info = introspect (c, g_dbus_connection_get_unique_name (c), "/managed/first", loop);
|
|
|
|
g_assert_cmpint (count_interfaces (info), ==, 4); /* Bat + Properties,Introspectable,Peer */
|
|
|
|
g_assert (has_interface (info, "org.project.Bat"));
|
|
|
|
g_dbus_node_info_unref (info);
|
|
|
|
/* also and that the call only has effect if the interface actually exists
|
|
|
|
*
|
|
|
|
* (Note: if a signal was emitted we'd assert in the signal handler
|
|
|
|
* because we're in state 14)
|
|
|
|
*/
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_object_skeleton_set_bar (o, NULL);
|
2011-04-11 16:54:52 +02:00
|
|
|
/* ... check introspection data */
|
|
|
|
info = introspect (c, g_dbus_connection_get_unique_name (c), "/managed/first", loop);
|
|
|
|
g_assert_cmpint (count_interfaces (info), ==, 4); /* Bat + Properties,Introspectable,Peer */
|
|
|
|
g_assert (has_interface (info, "org.project.Bat"));
|
|
|
|
g_dbus_node_info_unref (info);
|
|
|
|
|
|
|
|
/* remove the last interface */
|
2011-09-16 22:01:13 +02:00
|
|
|
foo_igen_object_skeleton_set_bat (o, NULL);
|
2011-04-11 16:54:52 +02:00
|
|
|
/* ... check we get the InterfacesRemoved */
|
|
|
|
om_data->state = 15;
|
|
|
|
g_main_loop_run (om_data->loop);
|
|
|
|
g_assert_cmpint (om_data->state, ==, 16);
|
|
|
|
g_assert_cmpint (om_data->num_object_proxy_added_signals, ==, 3);
|
|
|
|
g_assert_cmpint (om_data->num_object_proxy_removed_signals, ==, 3);
|
|
|
|
g_assert_cmpint (om_data->num_interface_added_signals, ==, 1);
|
|
|
|
g_assert_cmpint (om_data->num_interface_removed_signals, ==, 1);
|
|
|
|
/* ... check introspection data */
|
|
|
|
info = introspect (c, g_dbus_connection_get_unique_name (c), "/managed/first", loop);
|
|
|
|
g_assert_cmpint (count_interfaces (info), ==, 0); /* nothing */
|
|
|
|
g_dbus_node_info_unref (info);
|
|
|
|
|
|
|
|
/* and add an interface again */
|
2011-09-16 22:01:13 +02:00
|
|
|
i = G_DBUS_INTERFACE_SKELETON (foo_igen_com_acme_coyote_skeleton_new ());
|
|
|
|
foo_igen_object_skeleton_set_com_acme_coyote (o, FOO_IGEN_COM_ACME_COYOTE (i));
|
2012-04-17 23:51:01 +02:00
|
|
|
g_clear_object (&i);
|
2011-04-11 16:54:52 +02:00
|
|
|
/* ... check we get the InterfacesAdded */
|
|
|
|
om_data->state = 17;
|
|
|
|
g_main_loop_run (om_data->loop);
|
|
|
|
g_assert_cmpint (om_data->state, ==, 18);
|
|
|
|
g_assert_cmpint (om_data->num_object_proxy_added_signals, ==, 4);
|
|
|
|
g_assert_cmpint (om_data->num_object_proxy_removed_signals, ==, 3);
|
|
|
|
g_assert_cmpint (om_data->num_interface_added_signals, ==, 1);
|
|
|
|
g_assert_cmpint (om_data->num_interface_removed_signals, ==, 1);
|
|
|
|
/* ... check introspection data */
|
|
|
|
info = introspect (c, g_dbus_connection_get_unique_name (c), "/managed/first", loop);
|
|
|
|
g_assert_cmpint (count_interfaces (info), ==, 4); /* com.acme.Coyote + Properties,Introspectable,Peer */
|
|
|
|
g_assert (has_interface (info, "com.acme.Coyote"));
|
|
|
|
g_dbus_node_info_unref (info);
|
|
|
|
|
|
|
|
/* Check GetManagedObjects() - should be just the Coyote */
|
|
|
|
om_check_get_all (c, loop,
|
|
|
|
"({objectpath '/managed/first': {'com.acme.Coyote': {'Mood': <''>}}},)");
|
|
|
|
|
|
|
|
/* -------------------------------------------------- */
|
|
|
|
|
|
|
|
/* create a new object with two interfaces */
|
2011-09-16 22:01:13 +02:00
|
|
|
o2 = foo_igen_object_skeleton_new ("/managed/second");
|
|
|
|
i = G_DBUS_INTERFACE_SKELETON (foo_igen_bar_skeleton_new ());
|
|
|
|
bar_skeleton = FOO_IGEN_BAR (i); /* save for later test */
|
|
|
|
foo_igen_object_skeleton_set_bar (o2, FOO_IGEN_BAR (i));
|
2012-04-17 23:51:01 +02:00
|
|
|
g_clear_object (&i);
|
2011-09-16 22:01:13 +02:00
|
|
|
i = G_DBUS_INTERFACE_SKELETON (foo_igen_bat_skeleton_new ());
|
|
|
|
foo_igen_object_skeleton_set_bat (o2, FOO_IGEN_BAT (i));
|
2012-04-17 23:51:01 +02:00
|
|
|
g_clear_object (&i);
|
2011-04-11 16:54:52 +02:00
|
|
|
/* ... add it */
|
2011-04-25 15:29:18 +02:00
|
|
|
g_dbus_object_manager_server_export (manager, G_DBUS_OBJECT_SKELETON (o2));
|
2011-04-11 16:54:52 +02:00
|
|
|
/* ... check we get the InterfacesAdded with _two_ interfaces */
|
|
|
|
om_data->state = 101;
|
|
|
|
g_main_loop_run (om_data->loop);
|
|
|
|
g_assert_cmpint (om_data->state, ==, 102);
|
|
|
|
g_assert_cmpint (om_data->num_object_proxy_added_signals, ==, 5);
|
|
|
|
g_assert_cmpint (om_data->num_object_proxy_removed_signals, ==, 3);
|
|
|
|
g_assert_cmpint (om_data->num_interface_added_signals, ==, 1);
|
|
|
|
g_assert_cmpint (om_data->num_interface_removed_signals, ==, 1);
|
|
|
|
|
|
|
|
/* -------------------------------------------------- */
|
|
|
|
|
|
|
|
/* Now that we have a couple of objects with interfaces, check
|
|
|
|
* that ObjectManager.GetManagedObjects() works
|
|
|
|
*/
|
|
|
|
om_check_get_all (c, loop,
|
2018-12-13 12:06:02 +01:00
|
|
|
"({objectpath '/managed/first': {'com.acme.Coyote': {'Mood': <''>}}, '/managed/second': {'org.project.Bar': {'y': <byte 0x00>, 'b': <false>, 'n': <int16 0>, 'q': <uint16 0>, 'i': <0>, 'u': <uint32 0>, 'x': <int64 0>, 't': <uint64 0>, 'd': <0.0>, 's': <''>, 'o': <objectpath '/'>, 'g': <signature ''>, 'ay': <b''>, 'as': <@as []>, 'aay': <@aay []>, 'ao': <@ao []>, 'ag': <@ag []>, 'FinallyNormalName': <''>, 'ReadonlyProperty': <''>, 'quiet': <''>, 'quiet_too': <''>, 'unset_i': <0>, 'unset_d': <0.0>, 'unset_s': <''>, 'unset_o': <objectpath '/'>, 'unset_g': <signature ''>, 'unset_ay': <b''>, 'unset_as': <@as []>, 'unset_ao': <@ao []>, 'unset_ag': <@ag []>, 'unset_struct': <(0, 0.0, '', objectpath '/', signature '', @ay [], @as [], @ao [], @ag [])>}, 'org.project.Bat': {'force_i': <0>, 'force_s': <''>, 'force_ay': <@ay []>, 'force_struct': <(0,)>}}},)");
|
2011-05-04 09:37:46 +02:00
|
|
|
|
|
|
|
/* Set connection to NULL, causing everything to be unexported.. verify this.. and
|
|
|
|
* then set the connection back.. and then check things still work
|
|
|
|
*/
|
|
|
|
g_dbus_object_manager_server_set_connection (manager, NULL);
|
|
|
|
info = introspect (c, g_dbus_connection_get_unique_name (c), "/managed", loop);
|
|
|
|
g_assert_cmpint (count_interfaces (info), ==, 0); /* nothing */
|
|
|
|
g_dbus_node_info_unref (info);
|
2012-04-17 23:51:01 +02:00
|
|
|
|
2011-05-04 09:37:46 +02:00
|
|
|
g_dbus_object_manager_server_set_connection (manager, c);
|
|
|
|
om_check_get_all (c, loop,
|
2018-12-13 12:06:02 +01:00
|
|
|
"({objectpath '/managed/first': {'com.acme.Coyote': {'Mood': <''>}}, '/managed/second': {'org.project.Bar': {'y': <byte 0x00>, 'b': <false>, 'n': <int16 0>, 'q': <uint16 0>, 'i': <0>, 'u': <uint32 0>, 'x': <int64 0>, 't': <uint64 0>, 'd': <0.0>, 's': <''>, 'o': <objectpath '/'>, 'g': <signature ''>, 'ay': <b''>, 'as': <@as []>, 'aay': <@aay []>, 'ao': <@ao []>, 'ag': <@ag []>, 'FinallyNormalName': <''>, 'ReadonlyProperty': <''>, 'quiet': <''>, 'quiet_too': <''>, 'unset_i': <0>, 'unset_d': <0.0>, 'unset_s': <''>, 'unset_o': <objectpath '/'>, 'unset_g': <signature ''>, 'unset_ay': <b''>, 'unset_as': <@as []>, 'unset_ao': <@ao []>, 'unset_ag': <@ag []>, 'unset_struct': <(0, 0.0, '', objectpath '/', signature '', @ay [], @as [], @ao [], @ag [])>}, 'org.project.Bat': {'force_i': <0>, 'force_s': <''>, 'force_ay': <@ay []>, 'force_struct': <(0,)>}}},)");
|
2011-04-11 16:54:52 +02:00
|
|
|
|
|
|
|
/* Also check that the ObjectManagerClient returns these objects - and
|
2011-04-25 15:29:18 +02:00
|
|
|
* that they are of the right GType cf. what was requested via
|
|
|
|
* the generated ::get-proxy-type signal handler
|
2011-04-11 16:54:52 +02:00
|
|
|
*/
|
|
|
|
object_proxies = g_dbus_object_manager_get_objects (pm);
|
|
|
|
g_assert (g_list_length (object_proxies) == 2);
|
2012-01-02 15:20:42 +01:00
|
|
|
g_list_free_full (object_proxies, g_object_unref);
|
2011-04-11 16:54:52 +02:00
|
|
|
op = g_dbus_object_manager_get_object (pm, "/managed/first");
|
|
|
|
g_assert (op != NULL);
|
2011-09-16 22:01:13 +02:00
|
|
|
g_assert (FOO_IGEN_IS_OBJECT_PROXY (op));
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_cmpstr (g_dbus_object_get_object_path (op), ==, "/managed/first");
|
|
|
|
proxies = g_dbus_object_get_interfaces (op);
|
|
|
|
g_assert (g_list_length (proxies) == 1);
|
2012-01-02 15:20:42 +01:00
|
|
|
g_list_free_full (proxies, g_object_unref);
|
2011-09-16 22:01:13 +02:00
|
|
|
p = G_DBUS_PROXY (foo_igen_object_get_com_acme_coyote (FOO_IGEN_OBJECT (op)));
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert (p != NULL);
|
2011-09-16 22:01:13 +02:00
|
|
|
g_assert_cmpint (G_TYPE_FROM_INSTANCE (p), ==, FOO_IGEN_TYPE_COM_ACME_COYOTE_PROXY);
|
|
|
|
g_assert (g_type_is_a (G_TYPE_FROM_INSTANCE (p), FOO_IGEN_TYPE_COM_ACME_COYOTE));
|
2012-04-17 23:51:01 +02:00
|
|
|
g_clear_object (&p);
|
2011-04-11 16:54:52 +02:00
|
|
|
p = (GDBusProxy *) g_dbus_object_get_interface (op, "org.project.NonExisting");
|
|
|
|
g_assert (p == NULL);
|
2012-04-17 23:51:01 +02:00
|
|
|
g_clear_object (&op);
|
|
|
|
|
2011-04-11 16:54:52 +02:00
|
|
|
/* -- */
|
|
|
|
op = g_dbus_object_manager_get_object (pm, "/managed/second");
|
|
|
|
g_assert (op != NULL);
|
2011-09-16 22:01:13 +02:00
|
|
|
g_assert (FOO_IGEN_IS_OBJECT_PROXY (op));
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert_cmpstr (g_dbus_object_get_object_path (op), ==, "/managed/second");
|
|
|
|
proxies = g_dbus_object_get_interfaces (op);
|
|
|
|
g_assert (g_list_length (proxies) == 2);
|
2012-01-02 15:20:42 +01:00
|
|
|
g_list_free_full (proxies, g_object_unref);
|
2011-09-16 22:01:13 +02:00
|
|
|
p = G_DBUS_PROXY (foo_igen_object_get_bat (FOO_IGEN_OBJECT (op)));
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert (p != NULL);
|
2011-09-16 22:01:13 +02:00
|
|
|
g_assert_cmpint (G_TYPE_FROM_INSTANCE (p), ==, FOO_IGEN_TYPE_BAT_PROXY);
|
|
|
|
g_assert (g_type_is_a (G_TYPE_FROM_INSTANCE (p), FOO_IGEN_TYPE_BAT));
|
2012-04-17 23:51:01 +02:00
|
|
|
g_clear_object (&p);
|
2011-09-16 22:01:13 +02:00
|
|
|
p = G_DBUS_PROXY (foo_igen_object_get_bar (FOO_IGEN_OBJECT (op)));
|
2011-04-11 16:54:52 +02:00
|
|
|
g_assert (p != NULL);
|
2011-09-16 22:01:13 +02:00
|
|
|
g_assert_cmpint (G_TYPE_FROM_INSTANCE (p), ==, FOO_IGEN_TYPE_BAR_PROXY);
|
|
|
|
g_assert (g_type_is_a (G_TYPE_FROM_INSTANCE (p), FOO_IGEN_TYPE_BAR));
|
2011-04-11 16:54:52 +02:00
|
|
|
/* ... now that we have a Bar instance around, also check that we get signals
|
|
|
|
* and property changes...
|
|
|
|
*/
|
2011-09-16 22:01:13 +02:00
|
|
|
om_check_property_and_signal_emission (loop, bar_skeleton, FOO_IGEN_BAR (p));
|
2012-04-17 23:51:01 +02:00
|
|
|
g_clear_object (&p);
|
2011-04-11 16:54:52 +02:00
|
|
|
p = (GDBusProxy *) g_dbus_object_get_interface (op, "org.project.NonExisting");
|
|
|
|
g_assert (p == NULL);
|
2012-04-17 23:51:01 +02:00
|
|
|
g_clear_object (&op);
|
2011-04-11 16:54:52 +02:00
|
|
|
|
|
|
|
/* -------------------------------------------------- */
|
|
|
|
|
|
|
|
/* Now remove the second object added above */
|
|
|
|
g_dbus_object_manager_server_unexport (manager, "/managed/second");
|
|
|
|
/* ... check we get InterfacesRemoved with both interfaces */
|
|
|
|
om_data->state = 103;
|
|
|
|
g_main_loop_run (om_data->loop);
|
|
|
|
g_assert_cmpint (om_data->state, ==, 104);
|
|
|
|
g_assert_cmpint (om_data->num_object_proxy_added_signals, ==, 5);
|
|
|
|
g_assert_cmpint (om_data->num_object_proxy_removed_signals, ==, 4);
|
|
|
|
g_assert_cmpint (om_data->num_interface_added_signals, ==, 1);
|
|
|
|
g_assert_cmpint (om_data->num_interface_removed_signals, ==, 1);
|
|
|
|
/* ... check introspection data (there should be nothing) */
|
|
|
|
info = introspect (c, g_dbus_connection_get_unique_name (c), "/managed/second", loop);
|
|
|
|
g_assert_cmpint (count_nodes (info), ==, 0);
|
|
|
|
g_assert_cmpint (count_interfaces (info), ==, 0);
|
|
|
|
g_dbus_node_info_unref (info);
|
|
|
|
|
|
|
|
/* Check GetManagedObjects() again */
|
|
|
|
om_check_get_all (c, loop,
|
|
|
|
"({objectpath '/managed/first': {'com.acme.Coyote': {'Mood': <''>}}},)");
|
2011-09-19 23:31:21 +02:00
|
|
|
/* -------------------------------------------------- */
|
|
|
|
|
|
|
|
/* Check that export_uniquely() works */
|
|
|
|
|
|
|
|
o3 = foo_igen_object_skeleton_new ("/managed/first");
|
|
|
|
i = G_DBUS_INTERFACE_SKELETON (foo_igen_com_acme_coyote_skeleton_new ());
|
|
|
|
foo_igen_com_acme_coyote_set_mood (FOO_IGEN_COM_ACME_COYOTE (i), "indifferent");
|
|
|
|
foo_igen_object_skeleton_set_com_acme_coyote (o3, FOO_IGEN_COM_ACME_COYOTE (i));
|
2012-04-17 23:51:01 +02:00
|
|
|
g_clear_object (&i);
|
2011-09-19 23:31:21 +02:00
|
|
|
g_dbus_object_manager_server_export_uniquely (manager, G_DBUS_OBJECT_SKELETON (o3));
|
|
|
|
/* ... check we get the InterfacesAdded signal */
|
|
|
|
om_data->state = 200;
|
|
|
|
g_main_loop_run (om_data->loop);
|
|
|
|
g_assert_cmpint (om_data->state, ==, 201);
|
|
|
|
|
|
|
|
om_check_get_all (c, loop,
|
|
|
|
"({objectpath '/managed/first': {'com.acme.Coyote': {'Mood': <''>}}, '/managed/first_1': {'com.acme.Coyote': {'Mood': <'indifferent'>}}},)");
|
|
|
|
|
2011-04-11 16:54:52 +02:00
|
|
|
//g_main_loop_run (loop); /* TODO: tmp */
|
|
|
|
|
2012-04-17 23:51:01 +02:00
|
|
|
/* Clean up objects */
|
|
|
|
g_assert (g_dbus_object_manager_server_unexport (manager, "/managed/first_1"));
|
|
|
|
//g_assert (g_dbus_object_manager_server_unexport (manager, "/managed/second"));
|
|
|
|
g_assert (g_dbus_object_manager_server_unexport (manager, "/managed/first"));
|
|
|
|
g_assert_cmpint (g_list_length (g_dbus_object_manager_get_objects (G_DBUS_OBJECT_MANAGER (manager))), ==, 0);
|
|
|
|
|
|
|
|
if (loop != NULL)
|
|
|
|
g_main_loop_unref (loop);
|
|
|
|
|
2020-11-19 20:05:07 +01:00
|
|
|
if (om_signal_id != 0)
|
2012-04-17 23:51:01 +02:00
|
|
|
g_dbus_connection_signal_unsubscribe (c, om_signal_id);
|
|
|
|
g_clear_object (&o3);
|
|
|
|
g_clear_object (&o2);
|
|
|
|
g_clear_object (&o);
|
|
|
|
g_clear_object (&manager);
|
|
|
|
if (pm != NULL)
|
|
|
|
{
|
|
|
|
g_assert_cmpint (g_signal_handlers_disconnect_by_func (pm,
|
|
|
|
G_CALLBACK (on_object_proxy_added),
|
|
|
|
om_data), ==, 1);
|
|
|
|
g_assert_cmpint (g_signal_handlers_disconnect_by_func (pm,
|
|
|
|
G_CALLBACK (on_object_proxy_removed),
|
|
|
|
om_data), ==, 1);
|
|
|
|
g_clear_object (&pm);
|
|
|
|
}
|
|
|
|
g_clear_object (&c);
|
2011-04-11 16:54:52 +02:00
|
|
|
|
|
|
|
g_free (om_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_object_manager (void)
|
|
|
|
{
|
|
|
|
GMainLoop *loop;
|
|
|
|
guint id;
|
|
|
|
|
|
|
|
loop = g_main_loop_new (NULL, FALSE);
|
|
|
|
|
|
|
|
id = g_bus_own_name (G_BUS_TYPE_SESSION,
|
|
|
|
"org.gtk.GDBus.BindingsTool.Test",
|
|
|
|
G_BUS_NAME_OWNER_FLAGS_NONE,
|
|
|
|
on_bus_acquired,
|
|
|
|
on_name_acquired,
|
|
|
|
on_name_lost,
|
|
|
|
loop,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
g_main_loop_run (loop);
|
|
|
|
|
|
|
|
check_object_manager ();
|
|
|
|
|
|
|
|
/* uncomment to keep the service around (to e.g. introspect it) */
|
|
|
|
/* g_main_loop_run (loop); */
|
|
|
|
|
2012-04-17 23:51:01 +02:00
|
|
|
unexport_objects ();
|
|
|
|
|
2011-04-11 16:54:52 +02:00
|
|
|
g_bus_unown_name (id);
|
|
|
|
g_main_loop_unref (loop);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------------------------------------- */
|
|
|
|
/* This checks that forcing names via org.gtk.GDBus.Name works (see test-codegen.xml) */
|
|
|
|
|
|
|
|
extern gpointer name_forcing_1;
|
|
|
|
extern gpointer name_forcing_2;
|
|
|
|
extern gpointer name_forcing_3;
|
|
|
|
extern gpointer name_forcing_4;
|
2011-04-15 14:24:40 +02:00
|
|
|
extern gpointer name_forcing_5;
|
|
|
|
extern gpointer name_forcing_6;
|
|
|
|
extern gpointer name_forcing_7;
|
2011-09-16 22:01:13 +02:00
|
|
|
gpointer name_forcing_1 = foo_igen_rocket123_get_type;
|
|
|
|
gpointer name_forcing_2 = foo_igen_rocket123_call_ignite_xyz;
|
|
|
|
gpointer name_forcing_3 = foo_igen_rocket123_emit_exploded_xyz;
|
|
|
|
gpointer name_forcing_4 = foo_igen_rocket123_get_speed_xyz;
|
|
|
|
gpointer name_forcing_5 = foo_igen_test_ugly_case_interface_call_get_iscsi_servers;
|
|
|
|
gpointer name_forcing_6 = foo_igen_test_ugly_case_interface_emit_servers_updated_now;
|
|
|
|
gpointer name_forcing_7 = foo_igen_test_ugly_case_interface_get_ugly_name;
|
2011-04-11 16:54:52 +02:00
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------------------------------------- */
|
|
|
|
|
2011-04-12 22:17:28 +02:00
|
|
|
/* See https://bugzilla.gnome.org/show_bug.cgi?id=647577#c5 for details */
|
|
|
|
|
2011-09-16 22:01:13 +02:00
|
|
|
#define CHECK_FIELD(name, v1, v2) g_assert_cmpint (G_STRUCT_OFFSET (FooiGenChangingInterface##v1##Iface, name), ==, G_STRUCT_OFFSET (FooiGenChangingInterface##v2##Iface, name));
|
2011-04-12 22:17:28 +02:00
|
|
|
|
|
|
|
static void
|
|
|
|
test_interface_stability (void)
|
|
|
|
{
|
|
|
|
CHECK_FIELD(handle_foo_method, V1, V2);
|
|
|
|
CHECK_FIELD(handle_bar_method, V1, V2);
|
|
|
|
CHECK_FIELD(handle_baz_method, V1, V2);
|
|
|
|
CHECK_FIELD(foo_signal, V1, V2);
|
|
|
|
CHECK_FIELD(bar_signal, V1, V2);
|
|
|
|
CHECK_FIELD(baz_signal, V1, V2);
|
|
|
|
CHECK_FIELD(handle_new_method_in2, V2, V10);
|
|
|
|
CHECK_FIELD(new_signal_in2, V2, V10);
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef CHECK_FIELD
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------------------------------------- */
|
|
|
|
|
2012-07-06 15:19:48 +02:00
|
|
|
/* property naming
|
|
|
|
*
|
|
|
|
* - check that a property with name "Type" is mapped into g-name "type"
|
|
|
|
* with C accessors get_type_ (to avoid clashing with the GType accessor)
|
2020-06-12 15:02:30 +02:00
|
|
|
* and set_type_ (for symmetry)
|
2012-07-06 15:19:48 +02:00
|
|
|
* (see https://bugzilla.gnome.org/show_bug.cgi?id=679473 for details)
|
|
|
|
*
|
|
|
|
* - (could add more tests here)
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_property_naming (void)
|
|
|
|
{
|
|
|
|
gpointer c_getter_name = foo_igen_naming_get_type_;
|
|
|
|
gpointer c_setter_name = foo_igen_naming_set_type_;
|
|
|
|
FooiGenNaming *skel;
|
|
|
|
|
|
|
|
(void) c_getter_name;
|
|
|
|
(void) c_setter_name;
|
|
|
|
|
|
|
|
skel = foo_igen_naming_skeleton_new ();
|
|
|
|
g_assert (g_object_class_find_property (G_OBJECT_GET_CLASS (skel), "type") != NULL);
|
|
|
|
g_object_unref (skel);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------------------------------------- */
|
|
|
|
|
2018-10-26 14:49:54 +02:00
|
|
|
/* autocleanups
|
|
|
|
*
|
|
|
|
* - check that g_autoptr() works for all generated types, if supported by the
|
|
|
|
* current compiler
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_autocleanups (void)
|
|
|
|
{
|
|
|
|
#ifdef g_autoptr
|
|
|
|
g_autoptr(FooiGenBar) bar = NULL;
|
|
|
|
g_autoptr(FooiGenBarProxy) bar_proxy = NULL;
|
|
|
|
g_autoptr(FooiGenBarSkeleton) bar_skeleton = NULL;
|
2018-10-26 12:16:13 +02:00
|
|
|
g_autoptr(FooiGenObject) object = NULL;
|
2018-10-26 14:49:54 +02:00
|
|
|
g_autoptr(FooiGenObjectProxy) object_proxy = NULL;
|
|
|
|
g_autoptr(FooiGenObjectSkeleton) object_skeleton = NULL;
|
|
|
|
g_autoptr(FooiGenObjectManagerClient) object_manager_client = NULL;
|
|
|
|
|
|
|
|
(void) bar;
|
|
|
|
(void) bar_proxy;
|
|
|
|
(void) bar_skeleton;
|
2018-10-26 12:16:13 +02:00
|
|
|
(void) object;
|
2018-10-26 14:49:54 +02:00
|
|
|
(void) object_proxy;
|
|
|
|
(void) object_skeleton;
|
|
|
|
(void) object_manager_client;
|
|
|
|
#elif GLIB_CHECK_VERSION(2, 38, 0)
|
|
|
|
/* This file is compiled twice, once without GLib version guards and once
|
|
|
|
* with
|
|
|
|
*
|
|
|
|
* -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_36
|
|
|
|
* -DGLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_2_36
|
|
|
|
*
|
|
|
|
* g_test_skip() was added in 2.38.
|
|
|
|
*/
|
|
|
|
g_test_skip ("g_autoptr() not supported on this compiler");
|
|
|
|
#else
|
|
|
|
/* Let's just say it passed. */
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------------------------------------- */
|
|
|
|
|
2018-11-21 16:41:42 +01:00
|
|
|
/* deprecations
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_deprecations (void)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
FooiGenOldieInterface *iskel;
|
|
|
|
GParamSpec *pspec;
|
|
|
|
|
|
|
|
G_GNUC_BEGIN_IGNORE_DEPRECATIONS;
|
|
|
|
iskel = foo_igen_oldie_interface_skeleton_new ();
|
|
|
|
G_GNUC_END_IGNORE_DEPRECATIONS;
|
|
|
|
|
|
|
|
pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (iskel), "bat");
|
|
|
|
g_assert_nonnull (pspec);
|
|
|
|
g_assert_cmpint (pspec->flags & G_PARAM_DEPRECATED, ==, G_PARAM_DEPRECATED);
|
|
|
|
|
|
|
|
g_object_unref (iskel);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
FooiGenObjectSkeleton *oskel;
|
|
|
|
GParamSpec *pspec;
|
|
|
|
|
|
|
|
oskel = foo_igen_object_skeleton_new ("/objects/first");
|
|
|
|
pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (oskel), "oldie-interface");
|
|
|
|
g_assert_nonnull (pspec);
|
|
|
|
g_assert_cmpint (pspec->flags & G_PARAM_DEPRECATED, ==, G_PARAM_DEPRECATED);
|
|
|
|
|
|
|
|
g_object_unref (oskel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------------------------------------- */
|
|
|
|
|
2018-12-06 22:38:39 +01:00
|
|
|
static void
|
|
|
|
assert_arg_infos_equal (GDBusArgInfo **a,
|
|
|
|
GDBusArgInfo **b)
|
|
|
|
{
|
|
|
|
if (a == NULL)
|
|
|
|
{
|
|
|
|
g_assert_null (b);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_assert_nonnull (b);
|
|
|
|
|
|
|
|
for (; *a != NULL && *b != NULL; a++, b++)
|
|
|
|
{
|
|
|
|
g_assert_cmpstr ((*a)->name, ==, (*b)->name);
|
|
|
|
g_assert_cmpstr ((*a)->signature, ==, (*b)->signature);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_assert_null (*a);
|
|
|
|
g_assert_null (*b);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
assert_annotations_equal (GDBusAnnotationInfo **a,
|
|
|
|
GDBusAnnotationInfo **b)
|
|
|
|
{
|
|
|
|
guint a_len = count_annotations (a);
|
|
|
|
guint b_len = count_annotations (b);
|
|
|
|
|
|
|
|
g_assert_cmpuint (a_len, ==, b_len);
|
|
|
|
|
|
|
|
if (a == NULL || b == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (; *a != NULL && *b != NULL; a++, b++)
|
|
|
|
{
|
|
|
|
g_assert_cmpstr ((*a)->key, ==, (*b)->key);
|
|
|
|
g_assert_cmpstr ((*a)->value, ==, (*b)->value);
|
|
|
|
assert_annotations_equal ((*a)->annotations, (*b)->annotations);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_assert_null (*a);
|
|
|
|
g_assert_null (*b);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Test that the GDBusInterfaceInfo structure generated by gdbus-codegen
|
|
|
|
* --interface-info-body matches that generated by the other mode.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
test_standalone_interface_info (void)
|
|
|
|
{
|
|
|
|
GDBusInterfaceSkeleton *skel = G_DBUS_INTERFACE_SKELETON (foo_igen_bar_skeleton_new ());
|
|
|
|
GDBusInterfaceInfo *skel_info = g_dbus_interface_skeleton_get_info (skel);
|
|
|
|
const GDBusInterfaceInfo *slim_info = &org_project_bar_interface;
|
|
|
|
gsize i;
|
|
|
|
|
|
|
|
g_assert_cmpstr (skel_info->name, ==, slim_info->name);
|
|
|
|
|
|
|
|
for (i = 0; skel_info->methods[i] != NULL; i++)
|
|
|
|
{
|
|
|
|
GDBusMethodInfo *skel_method = skel_info->methods[i];
|
|
|
|
GDBusMethodInfo *slim_method = slim_info->methods[i];
|
|
|
|
|
|
|
|
g_assert_nonnull (slim_method);
|
|
|
|
g_assert_cmpstr (skel_method->name, ==, slim_method->name);
|
|
|
|
assert_arg_infos_equal (skel_method->in_args, slim_method->in_args);
|
|
|
|
assert_arg_infos_equal (skel_method->out_args, slim_method->out_args);
|
|
|
|
assert_annotations_equal (skel_method->annotations, slim_method->annotations);
|
|
|
|
}
|
|
|
|
g_assert_null (slim_info->methods[i]);
|
|
|
|
|
|
|
|
for (i = 0; skel_info->signals[i] != NULL; i++)
|
|
|
|
{
|
|
|
|
GDBusSignalInfo *skel_signal = skel_info->signals[i];
|
|
|
|
GDBusSignalInfo *slim_signal = slim_info->signals[i];
|
|
|
|
|
|
|
|
g_assert_nonnull (slim_signal);
|
|
|
|
g_assert_cmpstr (skel_signal->name, ==, slim_signal->name);
|
|
|
|
assert_arg_infos_equal (skel_signal->args, slim_signal->args);
|
|
|
|
assert_annotations_equal (skel_signal->annotations, slim_signal->annotations);
|
|
|
|
}
|
|
|
|
g_assert_null (slim_info->signals[i]);
|
|
|
|
|
|
|
|
for (i = 0; skel_info->properties[i] != NULL; i++)
|
|
|
|
{
|
|
|
|
GDBusPropertyInfo *skel_prop = skel_info->properties[i];
|
|
|
|
GDBusPropertyInfo *slim_prop = slim_info->properties[i];
|
|
|
|
|
|
|
|
g_assert_nonnull (slim_prop);
|
|
|
|
|
|
|
|
g_assert_cmpstr (skel_prop->name, ==, slim_prop->name);
|
|
|
|
g_assert_cmpstr (skel_prop->signature, ==, slim_prop->signature);
|
|
|
|
g_assert_cmpuint (skel_prop->flags, ==, slim_prop->flags);
|
|
|
|
assert_annotations_equal (skel_prop->annotations, slim_prop->annotations);
|
|
|
|
}
|
|
|
|
g_assert_null (slim_info->properties[i]);
|
|
|
|
|
|
|
|
assert_annotations_equal (skel_info->annotations, slim_info->annotations);
|
|
|
|
|
|
|
|
g_clear_object (&skel);
|
|
|
|
}
|
|
|
|
|
2019-09-02 07:54:37 +02:00
|
|
|
/* ---------------------------------------------------------------------------------------------------- */
|
|
|
|
static gboolean
|
2023-06-30 04:53:23 +02:00
|
|
|
handle_hello_fd (FooiGenTestFDPassing *object,
|
2019-09-02 07:54:37 +02:00
|
|
|
GDBusMethodInvocation *invocation,
|
|
|
|
GUnixFDList *fd_list,
|
|
|
|
const gchar *arg_greeting)
|
|
|
|
{
|
2023-06-30 04:53:23 +02:00
|
|
|
foo_igen_test_fdpassing_complete_hello_fd (object, invocation, fd_list, arg_greeting);
|
2020-08-03 17:08:55 +02:00
|
|
|
return G_DBUS_METHOD_INVOCATION_HANDLED;
|
2019-09-02 07:54:37 +02:00
|
|
|
}
|
|
|
|
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
#if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_64
|
|
|
|
static gboolean
|
2023-06-30 04:53:23 +02:00
|
|
|
handle_no_annotation (FooiGenTestFDPassing *object,
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
GDBusMethodInvocation *invocation,
|
|
|
|
GUnixFDList *fd_list,
|
|
|
|
GVariant *arg_greeting,
|
|
|
|
const gchar *arg_greeting_locale)
|
|
|
|
{
|
2023-06-30 04:53:23 +02:00
|
|
|
foo_igen_test_fdpassing_complete_no_annotation (object, invocation, fd_list, arg_greeting, arg_greeting_locale);
|
2020-08-03 17:08:55 +02:00
|
|
|
return G_DBUS_METHOD_INVOCATION_HANDLED;
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2023-06-30 04:53:23 +02:00
|
|
|
handle_no_annotation_nested (FooiGenTestFDPassing *object,
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
GDBusMethodInvocation *invocation,
|
|
|
|
GUnixFDList *fd_list,
|
|
|
|
GVariant *arg_files)
|
|
|
|
{
|
2023-06-30 04:53:23 +02:00
|
|
|
foo_igen_test_fdpassing_complete_no_annotation_nested (object, invocation, fd_list);
|
2020-08-03 17:08:55 +02:00
|
|
|
return G_DBUS_METHOD_INVOCATION_HANDLED;
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
}
|
|
|
|
#else
|
2019-09-02 07:56:08 +02:00
|
|
|
static gboolean
|
2023-06-30 04:53:23 +02:00
|
|
|
handle_no_annotation (FooiGenTestFDPassing *object,
|
2019-09-02 07:56:08 +02:00
|
|
|
GDBusMethodInvocation *invocation,
|
|
|
|
GVariant *arg_greeting,
|
|
|
|
const gchar *arg_greeting_locale)
|
|
|
|
{
|
2023-06-30 04:53:23 +02:00
|
|
|
foo_igen_test_fdpassing_complete_no_annotation (object, invocation, arg_greeting, arg_greeting_locale);
|
2020-08-03 17:08:55 +02:00
|
|
|
return G_DBUS_METHOD_INVOCATION_HANDLED;
|
2019-09-02 07:56:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2023-06-30 04:53:23 +02:00
|
|
|
handle_no_annotation_nested (FooiGenTestFDPassing *object,
|
2019-09-02 07:56:08 +02:00
|
|
|
GDBusMethodInvocation *invocation,
|
|
|
|
GVariant *arg_files)
|
|
|
|
{
|
2023-06-30 04:53:23 +02:00
|
|
|
foo_igen_test_fdpassing_complete_no_annotation_nested (object, invocation);
|
2020-08-03 17:08:55 +02:00
|
|
|
return G_DBUS_METHOD_INVOCATION_HANDLED;
|
2019-09-02 07:56:08 +02:00
|
|
|
}
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
#endif
|
2019-09-02 07:56:08 +02:00
|
|
|
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
/* Test that generated code for methods includes GUnixFDList arguments
|
|
|
|
* unconditionally if the method is explicitly annotated as C.UnixFD, and only
|
|
|
|
* emits GUnixFDList arguments when there's merely an 'h' parameter if
|
2020-01-27 11:11:46 +01:00
|
|
|
* --glib-min-required=2.64 or greater.
|
2019-09-02 07:54:37 +02:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
test_unix_fd_list (void)
|
|
|
|
{
|
2023-06-30 04:53:23 +02:00
|
|
|
FooiGenTestFDPassingIface iface;
|
2019-09-02 07:54:37 +02:00
|
|
|
|
2019-09-02 07:56:08 +02:00
|
|
|
g_test_bug ("https://gitlab.gnome.org/GNOME/glib/issues/1726");
|
|
|
|
|
2019-09-02 07:54:37 +02:00
|
|
|
/* This method is explicitly annotated. */
|
|
|
|
iface.handle_hello_fd = handle_hello_fd;
|
2019-10-18 11:24:42 +02:00
|
|
|
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
/* This one is not annotated; even though it's got an in and out 'h'
|
|
|
|
* parameter, for backwards compatibility we cannot emit GUnixFDList
|
2020-01-27 11:11:46 +01:00
|
|
|
* arguments unless --glib-min-required >= 2.64 was used.
|
2019-09-02 07:56:08 +02:00
|
|
|
*/
|
|
|
|
iface.handle_no_annotation = handle_no_annotation;
|
gdbus-codegen: Add call_flags and timeout_msec args
Currently the code generated by gdbus-codegen uses
G_DBUS_CALL_FLAGS_NONE in its D-Bus calls, which occur for each method
defined by the input XML, and for proxy_set_property functions. This
means that if the daemon which implements the methods checks for
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION and only does interactive
authorization if that flag is present, users of the generated code have
no way to cause the daemon to use interactive authorization (e.g. polkit
dialogs).
If we simply changed the generated code to always use
G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, its users would have no
way to disallow interactive authorization (except for manually calling
the D-Bus method themselves).
So instead, this commit adds a GDBusCallFlags argument to method call
functions. Since this is an API break which will require changes in
projects using gdbus-codegen code, the change is conditional on the
command line argument --glib-min-version having the value 2.64 or
higher.
The impetus for this change is that I'm changing accountsservice to
properly respect G_DBUS_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION, and
libaccountsservice uses generated code for D-Bus method calls. So
these changes will allow libaccountsservice to continue allowing
interactive authorization, and avoid breaking any users of it which
expect that. See
https://gitlab.freedesktop.org/accountsservice/accountsservice/merge_requests/46
It might make sense to also let GDBusCallFlags be specified for property
set operations, but that is not needed in the case of accountsservice,
and would require significant work and breaking API in multiple places.
Similarly, the generated code currently hard codes -1 as the timeout
value when calling g_dbus_proxy_call*(). Add a timeout_msec argument so
the user of the generated code can specify the timeout as well.
Also, test this new API. In gio/tests/codegen.py we test that the new
arguments are generated if and only of --glib-min-version is used with a
value greater than or equal to 2.64, and in gio/tests/meson.build we
test that the generated code with the new API can be linked against.
The test_unix_fd_list() test also needed modification to continue
working now that we're using gdbus-test-codegen.c with code generated
with --glib-min-version=2.64 in one test.
Finally, update the docs for gdbus-codegen to explain the effect of
using --glib-min-version 2.64, both from this commit and from
"gdbus-codegen: Emit GUnixFDLists if an arg has type `h` w/
min-version".
2019-11-25 20:51:13 +01:00
|
|
|
|
2019-09-02 07:56:08 +02:00
|
|
|
/* This method has an 'h' inside a complex type. */
|
|
|
|
iface.handle_no_annotation_nested = handle_no_annotation_nested;
|
2019-09-02 07:54:37 +02:00
|
|
|
|
|
|
|
(void) iface;
|
|
|
|
}
|
|
|
|
|
2018-12-06 22:38:39 +01:00
|
|
|
/* ---------------------------------------------------------------------------------------------------- */
|
|
|
|
|
2011-04-11 16:54:52 +02:00
|
|
|
int
|
|
|
|
main (int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
2022-11-23 12:15:20 +01:00
|
|
|
g_test_init (&argc, &argv, G_TEST_OPTION_ISOLATE_DIRS, NULL);
|
2011-04-11 16:54:52 +02:00
|
|
|
|
|
|
|
g_test_add_func ("/gdbus/codegen/annotations", test_annotations);
|
2011-04-12 22:17:28 +02:00
|
|
|
g_test_add_func ("/gdbus/codegen/interface_stability", test_interface_stability);
|
2011-04-11 16:54:52 +02:00
|
|
|
g_test_add_func ("/gdbus/codegen/object-manager", test_object_manager);
|
2012-07-06 15:19:48 +02:00
|
|
|
g_test_add_func ("/gdbus/codegen/property-naming", test_property_naming);
|
2018-10-26 14:49:54 +02:00
|
|
|
g_test_add_func ("/gdbus/codegen/autocleanups", test_autocleanups);
|
2018-11-21 16:41:42 +01:00
|
|
|
g_test_add_func ("/gdbus/codegen/deprecations", test_deprecations);
|
2018-12-06 22:38:39 +01:00
|
|
|
g_test_add_func ("/gdbus/codegen/standalone-interface-info", test_standalone_interface_info);
|
2019-09-02 07:54:37 +02:00
|
|
|
g_test_add_func ("/gdbus/codegen/unix-fd-list", test_unix_fd_list);
|
2011-04-11 16:54:52 +02:00
|
|
|
|
2013-10-28 22:18:54 +01:00
|
|
|
return session_bus_run ();
|
2011-04-11 16:54:52 +02:00
|
|
|
}
|