2010-05-06 20:13:59 +02:00
|
|
|
/* GDBus - GLib D-Bus Library
|
|
|
|
*
|
2010-05-09 19:14:55 +02:00
|
|
|
* Copyright (C) 2008-2010 Red Hat, Inc.
|
2010-05-06 20:13:59 +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
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* Public License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* Author: David Zeuthen <davidz@redhat.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "gdbusutils.h"
|
|
|
|
|
2010-05-06 22:34:23 +02:00
|
|
|
#include "glibintl.h"
|
|
|
|
|
2010-05-06 20:13:59 +02:00
|
|
|
/**
|
|
|
|
* SECTION:gdbusutils
|
|
|
|
* @title: D-Bus Utilities
|
|
|
|
* @short_description: Various utilities related to D-Bus.
|
2010-05-06 21:31:45 +02:00
|
|
|
* @include: gio/gio.h
|
2010-05-06 20:13:59 +02:00
|
|
|
*
|
|
|
|
* Various utility routines related to D-Bus.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
is_valid_bus_name_character (gint c,
|
|
|
|
gboolean allow_hyphen)
|
|
|
|
{
|
|
|
|
return
|
|
|
|
(c >= '0' && c <= '9') ||
|
|
|
|
(c >= 'A' && c <= 'Z') ||
|
|
|
|
(c >= 'a' && c <= 'z') ||
|
|
|
|
(c == '_') ||
|
|
|
|
(allow_hyphen && c == '-');
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
is_valid_initial_bus_name_character (gint c,
|
|
|
|
gboolean allow_initial_digit,
|
|
|
|
gboolean allow_hyphen)
|
|
|
|
{
|
|
|
|
if (allow_initial_digit)
|
|
|
|
return is_valid_bus_name_character (c, allow_hyphen);
|
|
|
|
else
|
|
|
|
return
|
|
|
|
(c >= 'A' && c <= 'Z') ||
|
|
|
|
(c >= 'a' && c <= 'z') ||
|
|
|
|
(c == '_') ||
|
|
|
|
(allow_hyphen && c == '-');
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
is_valid_name (const gchar *start,
|
|
|
|
guint len,
|
|
|
|
gboolean allow_initial_digit,
|
|
|
|
gboolean allow_hyphen)
|
|
|
|
{
|
|
|
|
gboolean ret;
|
|
|
|
const gchar *s;
|
|
|
|
const gchar *end;
|
|
|
|
gboolean has_dot;
|
|
|
|
|
|
|
|
ret = FALSE;
|
|
|
|
|
|
|
|
if (len == 0)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
s = start;
|
|
|
|
end = s + len;
|
|
|
|
has_dot = FALSE;
|
|
|
|
while (s != end)
|
|
|
|
{
|
|
|
|
if (*s == '.')
|
|
|
|
{
|
|
|
|
s += 1;
|
|
|
|
if (G_UNLIKELY (!is_valid_initial_bus_name_character (*s, allow_initial_digit, allow_hyphen)))
|
|
|
|
goto out;
|
|
|
|
has_dot = TRUE;
|
|
|
|
}
|
|
|
|
else if (G_UNLIKELY (!is_valid_bus_name_character (*s, allow_hyphen)))
|
|
|
|
{
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
s += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (G_UNLIKELY (!has_dot))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
ret = TRUE;
|
|
|
|
|
|
|
|
out:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_dbus_is_name:
|
|
|
|
* @string: The string to check.
|
|
|
|
*
|
|
|
|
* Checks if @string is a valid D-Bus bus name (either unique or well-known).
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if valid, %FALSE otherwise.
|
2010-05-06 22:02:08 +02:00
|
|
|
*
|
|
|
|
* Since: 2.26
|
2010-05-06 20:13:59 +02:00
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
g_dbus_is_name (const gchar *string)
|
|
|
|
{
|
|
|
|
guint len;
|
|
|
|
gboolean ret;
|
|
|
|
const gchar *s;
|
|
|
|
|
|
|
|
g_return_val_if_fail (string != NULL, FALSE);
|
|
|
|
|
|
|
|
ret = FALSE;
|
|
|
|
|
|
|
|
len = strlen (string);
|
|
|
|
if (G_UNLIKELY (len == 0 || len > 255))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
s = string;
|
|
|
|
if (*s == ':')
|
|
|
|
{
|
|
|
|
/* handle unique name */
|
|
|
|
if (!is_valid_name (s + 1, len - 1, TRUE, TRUE))
|
|
|
|
goto out;
|
|
|
|
ret = TRUE;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
else if (G_UNLIKELY (*s == '.'))
|
|
|
|
{
|
|
|
|
/* can't start with a . */
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
else if (G_UNLIKELY (!is_valid_initial_bus_name_character (*s, FALSE, TRUE)))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
ret = is_valid_name (s + 1, len - 1, FALSE, TRUE);
|
|
|
|
|
|
|
|
out:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_dbus_is_unique_name:
|
|
|
|
* @string: The string to check.
|
|
|
|
*
|
|
|
|
* Checks if @string is a valid D-Bus unique bus name.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if valid, %FALSE otherwise.
|
2010-05-06 22:02:08 +02:00
|
|
|
*
|
|
|
|
* Since: 2.26
|
2010-05-06 20:13:59 +02:00
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
g_dbus_is_unique_name (const gchar *string)
|
|
|
|
{
|
|
|
|
gboolean ret;
|
|
|
|
guint len;
|
|
|
|
|
|
|
|
g_return_val_if_fail (string != NULL, FALSE);
|
|
|
|
|
|
|
|
ret = FALSE;
|
|
|
|
|
|
|
|
len = strlen (string);
|
|
|
|
if (G_UNLIKELY (len == 0 || len > 255))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
if (G_UNLIKELY (*string != ':'))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
if (G_UNLIKELY (!is_valid_name (string + 1, len - 1, TRUE, TRUE)))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
ret = TRUE;
|
|
|
|
|
|
|
|
out:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_dbus_is_member_name:
|
|
|
|
* @string: The string to check.
|
|
|
|
*
|
|
|
|
* Checks if @string is a valid D-Bus member (e.g. signal or method) name.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if valid, %FALSE otherwise.
|
2010-05-06 22:02:08 +02:00
|
|
|
*
|
|
|
|
* Since: 2.26
|
2010-05-06 20:13:59 +02:00
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
g_dbus_is_member_name (const gchar *string)
|
|
|
|
{
|
|
|
|
gboolean ret;
|
|
|
|
guint n;
|
|
|
|
|
|
|
|
ret = FALSE;
|
|
|
|
if (G_UNLIKELY (string == NULL))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
if (G_UNLIKELY (!is_valid_initial_bus_name_character (string[0], FALSE, FALSE)))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
for (n = 1; string[n] != '\0'; n++)
|
|
|
|
{
|
|
|
|
if (G_UNLIKELY (!is_valid_bus_name_character (string[n], FALSE)))
|
|
|
|
{
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = TRUE;
|
|
|
|
|
|
|
|
out:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_dbus_is_interface_name:
|
|
|
|
* @string: The string to check.
|
|
|
|
*
|
|
|
|
* Checks if @string is a valid D-Bus interface name.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if valid, %FALSE otherwise.
|
2010-05-06 22:02:08 +02:00
|
|
|
*
|
|
|
|
* Since: 2.26
|
2010-05-06 20:13:59 +02:00
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
g_dbus_is_interface_name (const gchar *string)
|
|
|
|
{
|
|
|
|
guint len;
|
|
|
|
gboolean ret;
|
|
|
|
const gchar *s;
|
|
|
|
|
|
|
|
g_return_val_if_fail (string != NULL, FALSE);
|
|
|
|
|
|
|
|
ret = FALSE;
|
|
|
|
|
|
|
|
len = strlen (string);
|
|
|
|
if (G_UNLIKELY (len == 0 || len > 255))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
s = string;
|
|
|
|
if (G_UNLIKELY (*s == '.'))
|
|
|
|
{
|
|
|
|
/* can't start with a . */
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
else if (G_UNLIKELY (!is_valid_initial_bus_name_character (*s, FALSE, FALSE)))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
ret = is_valid_name (s + 1, len - 1, FALSE, FALSE);
|
|
|
|
|
|
|
|
out:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/* TODO: maybe move to glib? if so, it should conform to http://en.wikipedia.org/wiki/Guid and/or
|
|
|
|
* http://tools.ietf.org/html/rfc4122 - specifically it should have hyphens then.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_dbus_generate_guid:
|
|
|
|
*
|
|
|
|
* Generate a D-Bus GUID that can be used with
|
|
|
|
* e.g. g_dbus_connection_new().
|
|
|
|
*
|
|
|
|
* See the D-Bus specification regarding what strings are valid D-Bus
|
|
|
|
* GUID (for example, D-Bus GUIDs are not RFC-4122 compliant).
|
|
|
|
*
|
|
|
|
* Returns: A valid D-Bus GUID. Free with g_free().
|
2010-05-06 22:02:08 +02:00
|
|
|
*
|
|
|
|
* Since: 2.26
|
2010-05-06 20:13:59 +02:00
|
|
|
*/
|
|
|
|
gchar *
|
|
|
|
g_dbus_generate_guid (void)
|
|
|
|
{
|
|
|
|
GString *s;
|
|
|
|
GTimeVal now;
|
|
|
|
guint32 r1;
|
|
|
|
guint32 r2;
|
|
|
|
guint32 r3;
|
|
|
|
|
|
|
|
s = g_string_new (NULL);
|
|
|
|
|
|
|
|
r1 = g_random_int ();
|
|
|
|
r2 = g_random_int ();
|
|
|
|
r3 = g_random_int ();
|
|
|
|
g_get_current_time (&now);
|
|
|
|
|
|
|
|
g_string_append_printf (s, "%08x", r1);
|
|
|
|
g_string_append_printf (s, "%08x", r2);
|
|
|
|
g_string_append_printf (s, "%08x", r3);
|
|
|
|
g_string_append_printf (s, "%08x", (guint32) now.tv_sec);
|
|
|
|
|
|
|
|
return g_string_free (s, FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_dbus_is_guid:
|
|
|
|
* @string: The string to check.
|
|
|
|
*
|
|
|
|
* Checks if @string is a D-Bus GUID.
|
|
|
|
*
|
|
|
|
* See the D-Bus specification regarding what strings are valid D-Bus
|
|
|
|
* GUID (for example, D-Bus GUIDs are not RFC-4122 compliant).
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if @string is a guid, %FALSE otherwise.
|
2010-05-06 22:02:08 +02:00
|
|
|
*
|
|
|
|
* Since: 2.26
|
2010-05-06 20:13:59 +02:00
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
g_dbus_is_guid (const gchar *string)
|
|
|
|
{
|
|
|
|
gboolean ret;
|
|
|
|
guint n;
|
|
|
|
|
|
|
|
g_return_val_if_fail (string != NULL, FALSE);
|
|
|
|
|
|
|
|
ret = FALSE;
|
|
|
|
|
|
|
|
for (n = 0; n < 32; n++)
|
|
|
|
{
|
|
|
|
if (!g_ascii_isxdigit (string[n]))
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if (string[32] != '\0')
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
ret = TRUE;
|
|
|
|
|
|
|
|
out:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------------------------------------- */
|
2011-04-09 17:46:19 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* g_dbus_gvariant_to_gvalue:
|
|
|
|
* @value: A #GVariant.
|
2011-04-10 17:19:45 +02:00
|
|
|
* @out_gvalue: Return location pointing to a zero-filled (uninitialized) #GValue.
|
2011-04-09 17:46:19 +02:00
|
|
|
*
|
2011-04-10 17:19:45 +02:00
|
|
|
* Converts a #GVariant to a #GValue. If @value is floating, it is consumed.
|
2011-04-09 17:46:19 +02:00
|
|
|
*
|
2011-04-10 17:19:45 +02:00
|
|
|
* The rules specified in the g_dbus_gvalue_to_gvariant() function are
|
|
|
|
* used - this function is essentially its reverse form.
|
2011-04-09 17:46:19 +02:00
|
|
|
*
|
2011-04-10 17:19:45 +02:00
|
|
|
* The conversion never fails - a valid #GValue is always returned in
|
|
|
|
* @out_gvalue.
|
2011-04-09 17:46:19 +02:00
|
|
|
*
|
|
|
|
* Since: 2.30
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
g_dbus_gvariant_to_gvalue (GVariant *value,
|
|
|
|
GValue *out_gvalue)
|
|
|
|
{
|
|
|
|
const GVariantType *type;
|
|
|
|
gchar **array;
|
|
|
|
|
|
|
|
g_return_if_fail (value != NULL);
|
|
|
|
g_return_if_fail (out_gvalue != NULL);
|
|
|
|
|
|
|
|
memset (out_gvalue, '\0', sizeof (GValue));
|
|
|
|
|
|
|
|
switch (g_variant_classify (value))
|
|
|
|
{
|
|
|
|
case G_VARIANT_CLASS_BOOLEAN:
|
|
|
|
g_value_init (out_gvalue, G_TYPE_BOOLEAN);
|
|
|
|
g_value_set_boolean (out_gvalue, g_variant_get_boolean (value));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case G_VARIANT_CLASS_BYTE:
|
|
|
|
g_value_init (out_gvalue, G_TYPE_UCHAR);
|
|
|
|
g_value_set_uchar (out_gvalue, g_variant_get_byte (value));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case G_VARIANT_CLASS_INT16:
|
|
|
|
g_value_init (out_gvalue, G_TYPE_INT);
|
|
|
|
g_value_set_int (out_gvalue, g_variant_get_int16 (value));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case G_VARIANT_CLASS_UINT16:
|
|
|
|
g_value_init (out_gvalue, G_TYPE_UINT);
|
|
|
|
g_value_set_uint (out_gvalue, g_variant_get_uint16 (value));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case G_VARIANT_CLASS_INT32:
|
|
|
|
g_value_init (out_gvalue, G_TYPE_INT);
|
|
|
|
g_value_set_int (out_gvalue, g_variant_get_int32 (value));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case G_VARIANT_CLASS_UINT32:
|
|
|
|
g_value_init (out_gvalue, G_TYPE_UINT);
|
|
|
|
g_value_set_uint (out_gvalue, g_variant_get_uint32 (value));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case G_VARIANT_CLASS_INT64:
|
|
|
|
g_value_init (out_gvalue, G_TYPE_INT64);
|
|
|
|
g_value_set_int64 (out_gvalue, g_variant_get_int64 (value));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case G_VARIANT_CLASS_UINT64:
|
|
|
|
g_value_init (out_gvalue, G_TYPE_UINT64);
|
|
|
|
g_value_set_uint64 (out_gvalue, g_variant_get_uint64 (value));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case G_VARIANT_CLASS_DOUBLE:
|
|
|
|
g_value_init (out_gvalue, G_TYPE_DOUBLE);
|
|
|
|
g_value_set_double (out_gvalue, g_variant_get_double (value));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case G_VARIANT_CLASS_STRING:
|
|
|
|
g_value_init (out_gvalue, G_TYPE_STRING);
|
|
|
|
g_value_set_string (out_gvalue, g_variant_get_string (value, NULL));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case G_VARIANT_CLASS_OBJECT_PATH:
|
|
|
|
g_value_init (out_gvalue, G_TYPE_STRING);
|
|
|
|
g_value_set_string (out_gvalue, g_variant_get_string (value, NULL));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case G_VARIANT_CLASS_SIGNATURE:
|
|
|
|
g_value_init (out_gvalue, G_TYPE_STRING);
|
|
|
|
g_value_set_string (out_gvalue, g_variant_get_string (value, NULL));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case G_VARIANT_CLASS_ARRAY:
|
|
|
|
type = g_variant_get_type (value);
|
|
|
|
switch (g_variant_type_peek_string (type)[1])
|
|
|
|
{
|
|
|
|
case G_VARIANT_CLASS_BYTE:
|
|
|
|
g_value_init (out_gvalue, G_TYPE_STRING);
|
|
|
|
g_value_set_string (out_gvalue, g_variant_get_bytestring (value));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case G_VARIANT_CLASS_STRING:
|
|
|
|
g_value_init (out_gvalue, G_TYPE_STRV);
|
|
|
|
array = g_variant_dup_strv (value, NULL);
|
|
|
|
g_value_take_boxed (out_gvalue, array);
|
|
|
|
break;
|
|
|
|
|
2011-07-21 15:32:38 +02:00
|
|
|
case G_VARIANT_CLASS_OBJECT_PATH:
|
|
|
|
g_value_init (out_gvalue, G_TYPE_STRV);
|
|
|
|
array = g_variant_dup_objv (value, NULL);
|
|
|
|
g_value_take_boxed (out_gvalue, array);
|
|
|
|
break;
|
|
|
|
|
2011-04-09 17:46:19 +02:00
|
|
|
case G_VARIANT_CLASS_ARRAY:
|
|
|
|
switch (g_variant_type_peek_string (type)[2])
|
|
|
|
{
|
|
|
|
case G_VARIANT_CLASS_BYTE:
|
|
|
|
g_value_init (out_gvalue, G_TYPE_STRV);
|
|
|
|
array = g_variant_dup_bytestring_array (value, NULL);
|
|
|
|
g_value_take_boxed (out_gvalue, array);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
g_value_init (out_gvalue, G_TYPE_VARIANT);
|
|
|
|
g_value_set_variant (out_gvalue, value);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
g_value_init (out_gvalue, G_TYPE_VARIANT);
|
|
|
|
g_value_set_variant (out_gvalue, value);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2011-07-21 15:43:59 +02:00
|
|
|
case G_VARIANT_CLASS_HANDLE:
|
2011-04-09 17:46:19 +02:00
|
|
|
case G_VARIANT_CLASS_VARIANT:
|
|
|
|
case G_VARIANT_CLASS_MAYBE:
|
|
|
|
case G_VARIANT_CLASS_TUPLE:
|
|
|
|
case G_VARIANT_CLASS_DICT_ENTRY:
|
|
|
|
g_value_init (out_gvalue, G_TYPE_VARIANT);
|
|
|
|
g_value_set_variant (out_gvalue, value);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_dbus_gvalue_to_gvariant:
|
|
|
|
* @gvalue: A #GValue to convert to a #GVariant.
|
2011-04-10 17:19:45 +02:00
|
|
|
* @type: A #GVariantType.
|
2011-04-09 17:46:19 +02:00
|
|
|
*
|
2011-04-10 17:19:45 +02:00
|
|
|
* Converts a #GValue to a #GVariant of the type indicated by the @type parameter.
|
2011-04-09 17:46:19 +02:00
|
|
|
*
|
|
|
|
* The conversion is using the following rules:
|
|
|
|
* <table frame='all'>
|
2011-04-09 23:51:59 +02:00
|
|
|
* <title>#GValue / #GVariant conversion rules</title>
|
2011-04-09 17:46:19 +02:00
|
|
|
* <tgroup cols='2' align='left' colsep='1' rowsep='1'>
|
|
|
|
* <thead>
|
|
|
|
* <row>
|
|
|
|
* <entry>If the #GType for @gvalue is...</entry>
|
2011-04-10 17:19:45 +02:00
|
|
|
* <entry>... then @type must be</entry>
|
2011-04-09 17:46:19 +02:00
|
|
|
* </row>
|
|
|
|
* </thead>
|
|
|
|
* <tbody>
|
|
|
|
* <row>
|
|
|
|
* <entry>#G_TYPE_STRING</entry>
|
2011-04-10 17:19:45 +02:00
|
|
|
* <entry><link linkend="G-VARIANT-TYPE-STRING:CAPS">'s'</link>, <link linkend="G-VARIANT-TYPE-OBJECT-PATH:CAPS">'o'</link>, <link linkend="G-VARIANT-TYPE-SIGNATURE:CAPS">'g'</link> or <link linkend="G-VARIANT-TYPE-BYTESTRING:CAPS">'ay'</link></entry>
|
2011-04-09 17:46:19 +02:00
|
|
|
* </row>
|
|
|
|
* <row>
|
|
|
|
* <entry>#G_TYPE_STRV</entry>
|
2011-07-21 15:32:38 +02:00
|
|
|
* <entry><link linkend="G-VARIANT-TYPE-STRING-ARRAY:CAPS">'as'</link>, <link linkend="G-VARIANT-TYPE-OBJECT-PATH-ARRAY:CAPS">'ao'</link> or <link linkend="G-VARIANT-TYPE-BYTESTRING-ARRAY:CAPS">'aay'</link></entry>
|
2011-04-09 17:46:19 +02:00
|
|
|
* </row>
|
|
|
|
* <row>
|
|
|
|
* <entry>#G_TYPE_BOOLEAN</entry>
|
2011-04-10 17:19:45 +02:00
|
|
|
* <entry><link linkend="G-VARIANT-TYPE-BOOLEAN:CAPS">'b'</link></entry>
|
2011-04-09 17:46:19 +02:00
|
|
|
* </row>
|
|
|
|
* <row>
|
|
|
|
* <entry>#G_TYPE_UCHAR</entry>
|
2011-04-10 17:19:45 +02:00
|
|
|
* <entry><link linkend="G-VARIANT-TYPE-BYTE:CAPS">'y'</link></entry>
|
2011-04-09 17:46:19 +02:00
|
|
|
* </row>
|
|
|
|
* <row>
|
|
|
|
* <entry>#G_TYPE_INT</entry>
|
2011-04-10 17:19:45 +02:00
|
|
|
* <entry><link linkend="G-VARIANT-TYPE-INT32:CAPS">'i'</link> or <link linkend="G-VARIANT-TYPE-INT16:CAPS">'n'</link></entry>
|
2011-04-09 17:46:19 +02:00
|
|
|
* </row>
|
|
|
|
* <row>
|
|
|
|
* <entry>#G_TYPE_UINT</entry>
|
2011-04-10 17:19:45 +02:00
|
|
|
* <entry><link linkend="G-VARIANT-TYPE-UINT32:CAPS">'u'</link> or <link linkend="G-VARIANT-TYPE-UINT16:CAPS">'q'</link></entry>
|
2011-04-09 17:46:19 +02:00
|
|
|
* </row>
|
|
|
|
* <row>
|
|
|
|
* <entry>#G_TYPE_INT64</entry>
|
2011-04-10 17:19:45 +02:00
|
|
|
* <entry><link linkend="G-VARIANT-TYPE-INT64:CAPS">'x'</link></entry>
|
2011-04-09 17:46:19 +02:00
|
|
|
* </row>
|
|
|
|
* <row>
|
|
|
|
* <entry>#G_TYPE_UINT64</entry>
|
2011-04-10 17:19:45 +02:00
|
|
|
* <entry><link linkend="G-VARIANT-TYPE-UINT64:CAPS">'t'</link></entry>
|
2011-04-09 17:46:19 +02:00
|
|
|
* </row>
|
|
|
|
* <row>
|
|
|
|
* <entry>#G_TYPE_DOUBLE</entry>
|
2011-04-10 17:19:45 +02:00
|
|
|
* <entry><link linkend="G-VARIANT-TYPE-DOUBLE:CAPS">'d'</link></entry>
|
2011-04-09 17:46:19 +02:00
|
|
|
* </row>
|
|
|
|
* <row>
|
|
|
|
* <entry>#G_TYPE_VARIANT</entry>
|
|
|
|
* <entry>Any #GVariantType</entry>
|
|
|
|
* </row>
|
|
|
|
* </tbody>
|
|
|
|
* </tgroup>
|
|
|
|
* </table>
|
2011-04-10 17:19:45 +02:00
|
|
|
* This can fail if e.g. @gvalue is of type #G_TYPE_STRING and @type
|
|
|
|
* is <link linkend="G-VARIANT-TYPE-INT32:CAPS">'i'</link>. It will
|
|
|
|
* also fail for any #GType (including e.g. #G_TYPE_OBJECT and
|
|
|
|
* #G_TYPE_BOXED derived-types) not in the table above.
|
2011-04-09 17:46:19 +02:00
|
|
|
*
|
|
|
|
* Note that if @gvalue is of type #G_TYPE_VARIANT and its value is
|
|
|
|
* %NULL, the <emphasis>empty</emphasis> #GVariant instance (never
|
2011-04-10 17:19:45 +02:00
|
|
|
* %NULL) for @type is returned (e.g. 0 for scalar types, the empty
|
|
|
|
* string for string types, <literal>'/'</literal> for object path
|
|
|
|
* types, the empty array for any array type and so on).
|
|
|
|
*
|
|
|
|
* See the g_dbus_gvariant_to_gvalue() function for how to convert a
|
|
|
|
* #GVariant to a #GValue.
|
2011-04-09 17:46:19 +02:00
|
|
|
*
|
|
|
|
* Returns: A #GVariant (never floating) of #GVariantType
|
2011-04-10 17:19:45 +02:00
|
|
|
* @type holding the data from @gvalue or %NULL in case of
|
2011-04-09 17:46:19 +02:00
|
|
|
* failure. Free with g_variant_unref().
|
|
|
|
*
|
|
|
|
* Since: 2.30
|
|
|
|
*/
|
|
|
|
GVariant *
|
2011-04-10 17:19:45 +02:00
|
|
|
g_dbus_gvalue_to_gvariant (const GValue *gvalue,
|
|
|
|
const GVariantType *type)
|
2011-04-09 17:46:19 +02:00
|
|
|
{
|
|
|
|
GVariant *ret;
|
|
|
|
const gchar *s;
|
|
|
|
const gchar * const *as;
|
|
|
|
const gchar *empty_strv[1] = {NULL};
|
|
|
|
|
|
|
|
g_return_val_if_fail (gvalue != NULL, NULL);
|
2011-04-10 17:19:45 +02:00
|
|
|
g_return_val_if_fail (type != NULL, NULL);
|
2011-04-09 17:46:19 +02:00
|
|
|
|
|
|
|
ret = NULL;
|
|
|
|
|
2011-04-10 17:19:45 +02:00
|
|
|
/* @type can easily be e.g. "s" with the GValue holding a GVariant - for example this
|
|
|
|
* can happen when using the org.gtk.GDBus.C.ForceGVariant annotation with the
|
|
|
|
* gdbus-codegen(1) tool.
|
2011-04-09 17:46:19 +02:00
|
|
|
*/
|
|
|
|
if (G_VALUE_TYPE (gvalue) == G_TYPE_VARIANT)
|
|
|
|
{
|
|
|
|
ret = g_value_dup_variant (gvalue);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-04-10 17:19:45 +02:00
|
|
|
switch (g_variant_type_peek_string (type)[0])
|
2011-04-09 17:46:19 +02:00
|
|
|
{
|
|
|
|
case G_VARIANT_CLASS_BOOLEAN:
|
|
|
|
ret = g_variant_ref_sink (g_variant_new_boolean (g_value_get_boolean (gvalue)));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case G_VARIANT_CLASS_BYTE:
|
|
|
|
ret = g_variant_ref_sink (g_variant_new_byte (g_value_get_uchar (gvalue)));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case G_VARIANT_CLASS_INT16:
|
|
|
|
ret = g_variant_ref_sink (g_variant_new_int16 (g_value_get_int (gvalue)));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case G_VARIANT_CLASS_UINT16:
|
|
|
|
ret = g_variant_ref_sink (g_variant_new_uint16 (g_value_get_uint (gvalue)));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case G_VARIANT_CLASS_INT32:
|
|
|
|
ret = g_variant_ref_sink (g_variant_new_int32 (g_value_get_int (gvalue)));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case G_VARIANT_CLASS_UINT32:
|
|
|
|
ret = g_variant_ref_sink (g_variant_new_uint32 (g_value_get_uint (gvalue)));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case G_VARIANT_CLASS_INT64:
|
|
|
|
ret = g_variant_ref_sink (g_variant_new_int64 (g_value_get_int64 (gvalue)));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case G_VARIANT_CLASS_UINT64:
|
|
|
|
ret = g_variant_ref_sink (g_variant_new_uint64 (g_value_get_uint64 (gvalue)));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case G_VARIANT_CLASS_DOUBLE:
|
|
|
|
ret = g_variant_ref_sink (g_variant_new_double (g_value_get_double (gvalue)));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case G_VARIANT_CLASS_STRING:
|
|
|
|
s = g_value_get_string (gvalue);
|
|
|
|
if (s == NULL)
|
|
|
|
s = "";
|
|
|
|
ret = g_variant_ref_sink (g_variant_new_string (s));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case G_VARIANT_CLASS_OBJECT_PATH:
|
|
|
|
s = g_value_get_string (gvalue);
|
|
|
|
if (s == NULL)
|
|
|
|
s = "/";
|
|
|
|
ret = g_variant_ref_sink (g_variant_new_object_path (s));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case G_VARIANT_CLASS_SIGNATURE:
|
|
|
|
s = g_value_get_string (gvalue);
|
|
|
|
if (s == NULL)
|
|
|
|
s = "";
|
|
|
|
ret = g_variant_ref_sink (g_variant_new_signature (s));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case G_VARIANT_CLASS_ARRAY:
|
2011-04-10 17:19:45 +02:00
|
|
|
switch (g_variant_type_peek_string (type)[1])
|
2011-04-09 17:46:19 +02:00
|
|
|
{
|
|
|
|
case G_VARIANT_CLASS_BYTE:
|
|
|
|
s = g_value_get_string (gvalue);
|
|
|
|
if (s == NULL)
|
|
|
|
s = "";
|
|
|
|
ret = g_variant_ref_sink (g_variant_new_bytestring (s));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case G_VARIANT_CLASS_STRING:
|
|
|
|
as = g_value_get_boxed (gvalue);
|
|
|
|
if (as == NULL)
|
|
|
|
as = empty_strv;
|
|
|
|
ret = g_variant_ref_sink (g_variant_new_strv (as, -1));
|
|
|
|
break;
|
|
|
|
|
2011-07-21 15:32:38 +02:00
|
|
|
case G_VARIANT_CLASS_OBJECT_PATH:
|
|
|
|
as = g_value_get_boxed (gvalue);
|
|
|
|
if (as == NULL)
|
|
|
|
as = empty_strv;
|
|
|
|
ret = g_variant_ref_sink (g_variant_new_objv (as, -1));
|
|
|
|
break;
|
|
|
|
|
2011-04-09 17:46:19 +02:00
|
|
|
case G_VARIANT_CLASS_ARRAY:
|
2011-04-10 17:19:45 +02:00
|
|
|
switch (g_variant_type_peek_string (type)[2])
|
2011-04-09 17:46:19 +02:00
|
|
|
{
|
|
|
|
case G_VARIANT_CLASS_BYTE:
|
|
|
|
as = g_value_get_boxed (gvalue);
|
|
|
|
if (as == NULL)
|
|
|
|
as = empty_strv;
|
|
|
|
ret = g_variant_ref_sink (g_variant_new_bytestring_array (as, -1));
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
ret = g_value_dup_variant (gvalue);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
ret = g_value_dup_variant (gvalue);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2011-07-21 15:43:59 +02:00
|
|
|
case G_VARIANT_CLASS_HANDLE:
|
2011-04-09 17:46:19 +02:00
|
|
|
case G_VARIANT_CLASS_VARIANT:
|
|
|
|
case G_VARIANT_CLASS_MAYBE:
|
|
|
|
case G_VARIANT_CLASS_TUPLE:
|
|
|
|
case G_VARIANT_CLASS_DICT_ENTRY:
|
|
|
|
ret = g_value_dup_variant (gvalue);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Could be that the GValue is holding a NULL GVariant - in that case,
|
|
|
|
* we return an "empty" GVariant instead of a NULL GVariant
|
|
|
|
*/
|
|
|
|
if (ret == NULL)
|
|
|
|
{
|
|
|
|
GVariant *untrusted_empty;
|
2011-04-10 17:19:45 +02:00
|
|
|
untrusted_empty = g_variant_new_from_data (type, NULL, 0, FALSE, NULL, NULL);
|
2011-04-09 17:46:19 +02:00
|
|
|
ret = g_variant_ref_sink (g_variant_get_normal_form (untrusted_empty));
|
|
|
|
g_variant_unref (untrusted_empty);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_assert (!g_variant_is_floating (ret));
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|