GLib.VariantType - Structures - GLib 2.0 (original) (raw)

Fields

None

Methods

class checked_ (type_string)
class new (type_string)
class new_array (element)
class new_dict_entry (key, value)
class new_maybe (element)
class new_tuple (items)
class string_get_depth_ (type_string)
class string_is_valid (type_string)
class string_scan (string, limit)
copy ()
dup_string ()
element ()
equal (type2)
first ()
free ()
get_string_length ()
hash ()
is_array ()
is_basic ()
is_container ()
is_definite ()
is_dict_entry ()
is_maybe ()
is_subtype_of (supertype)
is_tuple ()
is_variant ()
key ()
n_items ()
next ()
value ()

Details

class GLib.VariantType

A type in the [type`GLib`.Variant] type system.

[type`GLib`.Variant] types are represented as strings, but have a strict syntax described below. All [type`GLib`.VariantType]s passed to GLib must be valid, and they are typically expected to be static (i.e. not provided by user input) as they determine how binary [type`GLib`.Variant] data is interpreted.

To convert a static string to a [type`GLib`.VariantType] in C, use the [func`GLib`.VARIANT_TYPE] casting macro. When GLib is compiled with checks enabled, it will validate the type. To check if an arbitrary string is a valid [type`GLib`.VariantType], use [func`GLib`.VariantType.string_is_valid].

GLib.Variant Type System

This section introduces the [type`GLib`.Variant] type system. It is based, in large part, on the D-Bus type system, with two major changes and some minor lifting of restrictions. TheD-Bus specification, therefore, provides a significant amount of information that is useful when working with [type`GLib`.Variant].

The first major change with respect to the D-Bus type system is the introduction of maybe (or ‘nullable’) types. Any type in [type`GLib`.Variant] can be converted to a maybe type, in which case, nothing (or null) becomes a valid value. Maybe types have been added by introducing the character m to type strings.

The second major change is that the [type`GLib`.Variant] type system supports the concept of ‘indefinite types’ — types that are less specific than the normal types found in D-Bus. For example, it is possible to speak of ‘an array of any type’ in [type`GLib`.Variant], where the D-Bus type system would require you to speak of ‘an array of integers’ or ‘an array of strings’. Indefinite types have been added by introducing the characters *, ? and r to type strings.

Finally, all arbitrary restrictions relating to the complexity of types are lifted along with the restriction that dictionary entries may only appear nested inside of arrays.

Just as in D-Bus, [type`GLib`.Variant] types are described with strings (‘type strings’). Subject to the differences mentioned above, these strings are of the same form as those found in D-Bus. Note, however: D-Bus always works in terms of messages and therefore individual type strings appear nowhere in its interface. Instead, ‘signatures’ are a concatenation of the strings of the type of each argument in a message. [type`GLib`.Variant] deals with single values directly so [type`GLib`.Variant] type strings always describe the type of exactly one value. This means that a D-Bus signature string is generally not a valid [type`GLib`.Variant] type string — except in the case that it is the signature of a message containing exactly one argument.

An indefinite type is similar in spirit to what may be called an abstract type in other type systems. No value can exist that has an indefinite type as its type, but values can exist that have types that are subtypes of indefinite types. That is to say, [method`GLib`.Variant.get_type] will never return an indefinite type, but calling [method`GLib`.Variant.is_of_type] with an indefinite type may return true. For example, you cannot have a value that represents ‘an array of no particular type’, but you can have an ‘array of integers’ which certainly matches the type of ‘an array of no particular type’, since ‘array of integers’ is a subtype of ‘array of no particular type’.

This is similar to how instances of abstract classes may not directly exist in other type systems, but instances of their non-abstract subtypes may. For example, in GTK, no object that has the type of GtkWidget can exist (since GtkWidget is an abstract class), but a GtkWindowcan certainly be instantiated, and you would say that a GtkWindow is aGtkWidget (since GtkWindow is a subclass of GtkWidget).

Two types may not be compared by value; use [method`GLib`.VariantType.equal] or [method`GLib`.VariantType.is_subtype_of] May be copied using [method`GLib`.VariantType.copy] and freed using [method`GLib`.VariantType.free].

GLib.Variant Type Strings

A [type`GLib`.Variant] type string can be any of the following:

A basic type string describes a basic type (as per [method`GLib`.VariantType.is_basic]) and is always a single character in length. The valid basic type strings are b, y, n, q, i, u, x,t, h, d, s, o, g and ?.

The above definition is recursive to arbitrary depth. aaaaai and(ui(nq((y)))s) are both valid type strings, as isa(aa(ui)(qna{ya(yd)})). In order to not hit memory limits, [type`GLib`.Variant] imposes a limit on recursion depth of 65 nested containers. This is the limit in the D-Bus specification (64) plus one to allow a GDBusMessage to be nested in a top-level tuple.

The meaning of each of the characters is as follows:

Any type string of a container that contains an indefinite type is, itself, an indefinite type. For example, the type string a*(corresponding to G_VARIANT_TYPE_ARRAY) is an indefinite type that is a supertype of every array type. (*s) is a supertype of all tuples that contain exactly two items where the second item is a string.

a{?*} is an indefinite type that is a supertype of all arrays containing dictionary entries where the key is any basic type and the value is any type at all. This is, by definition, a dictionary, so this type string corresponds to G_VARIANT_TYPE_DICTIONARY. Note that, due to the restriction that the key of a dictionary entry must be a basic type, {**} is not a valid type string.

New in version 2.24.

classmethod checked_(type_string)[source]

Parameters:

type_string (str) –

Return type:

GLib.VariantType

classmethod new(type_string)[source]

Parameters:

type_string (str) – a valid GVariant type string

Returns:

a new [type`GLib`.VariantType]

Return type:

GLib.VariantType

Creates a new [type`GLib`.VariantType] corresponding to the type string given by type_string.

It is appropriate to call [method`GLib`.VariantType.free] on the return value.

It is a programmer error to call this function with an invalid type string. Use [func`GLib`.VariantType.string_is_valid] if you are unsure.

New in version 2.24.

classmethod new_array(element)[source]

Parameters:

element (GLib.VariantType) – an element type

Returns:

a new array type

Return type:

GLib.VariantType

Constructs the type corresponding to an array of elements of the type type.

It is appropriate to call [method`GLib`.VariantType.first] on the return value.

classmethod new_dict_entry(key, value)[source]

Parameters:

Returns:

a new dictionary entry type

Return type:

GLib.VariantType

Constructs the type corresponding to a dictionary entry with a key of type key and a value of type value.

It is appropriate to call [method`GLib`.VariantType.free] on the return value.

classmethod new_maybe(element)[source]

Parameters:

element (GLib.VariantType) – an element type

Returns:

a new ‘maybe’ type

Return type:

GLib.VariantType

Constructs the type corresponding to a ‘maybe’ instance containing type type or Nothing.

It is appropriate to call [method`GLib`.VariantType.free] on the return value.

classmethod new_tuple(items)[source]

Parameters:

items ([GLib.VariantType]) – an array of types, one for each item

Returns:

a new tuple type

Return type:

GLib.VariantType

Constructs a new tuple type, from items.

length is the number of items in items, or -1 to indicate thatitems is NULL-terminated.

It is appropriate to call [method`GLib`.VariantType.free] on the return value.

classmethod string_get_depth_(type_string)[source]

Parameters:

type_string (str) –

Return type:

int

classmethod string_is_valid(type_string)[source]

Parameters:

type_string (str) – a pointer to any string

Returns:

true if type_string is exactly one valid type string

Return type:

bool

Checks if type_string is a validGVariant type string.

This call is equivalent to calling [func`GLib`.VariantType.string_scan] and confirming that the following character is a nul terminator.

classmethod string_scan(string, limit)[source]

Parameters:

Returns:

true if a valid type string was found

endptr:

location to store the end pointer

Return type:

(bool, endptr: str)

Scan for a single complete and valid GLib.Variant type string in string.

The memory pointed to by limit (or bytes beyond it) is never accessed.

If a valid type string is found, endptr is updated to point to the first character past the end of the string that was found and Trueis returned.

If there is no valid type string starting at string, or if the type string does not end before limit then False is returned.

For the simple case of checking if a string is a valid type string, see [func`GLib`.VariantType.string_is_valid].

New in version 2.24.

copy()[source]

Returns:

a new [type`GLib`.VariantType]

Return type:

GLib.VariantType

Makes a copy of a [type`GLib`.VariantType].

It is appropriate to call [method`GLib`.VariantType.free] on the return value.self may not be NULL.

dup_string()[source]

Returns:

the corresponding type string

Return type:

str

Returns a newly-allocated copy of the type string corresponding to self.

The returned string is nul-terminated. It is appropriate to call [func`GLib`.free] on the return value.

element()[source]

Returns:

the element type of self

Return type:

GLib.VariantType

Determines the element type of an array or ‘maybe’ type.

This function may only be used with array or ‘maybe’ types.

equal(type2)[source]

Parameters:

type2 (GLib.VariantType) – another type to compare

Returns:

true if self and type2 are exactly equal

Return type:

bool

Compares self and type2 for equality.

Only returns true if the types are exactly equal. Even if one type is an indefinite type and the other is a subtype of it, false will be returned if they are not exactly equal. If you want to check for subtypes, use [method`GLib`.VariantType.is_subtype_of].

The argument types of self and type2 are only gconstpointer to allow use with [type`GLib`.HashTable] without function pointer casting. For both arguments, a valid [type`GLib`.VariantType] must be provided.

first()[source]

Returns:

the first item type of self, or NULLif the type has no item types

Return type:

GLib.VariantType or None

Determines the first item type of a tuple or dictionary entry type.

This function may only be used with tuple or dictionary entry types, but must not be used with the generic tuple typeG_VARIANT_TYPE_TUPLE.

In the case of a dictionary entry type, this returns the type of the key.

NULL is returned in case of self being G_VARIANT_TYPE_UNIT.

This call, together with [method`GLib`.VariantType.next] provides an iterator interface over tuple and dictionary entry types.

free()[source]

Frees a [type`GLib`.VariantType] that was allocated with [method`GLib`.VariantType.copy], [ctor`GLib`.VariantType.new] or one of the container type constructor functions.

In the case that self is NULL, this function does nothing.

New in version 2.24.

get_string_length()[source]

Returns:

the length of the corresponding type string

Return type:

int

Returns the length of the type string corresponding to the given self.

This function must be used to determine the valid extent of the memory region returned by [method`GLib`.VariantType.peek_string].

hash()[source]

Returns:

the hash value

Return type:

int

Hashes self.

The argument type of self is only gconstpointer to allow use with [type`GLib`.HashTable] without function pointer casting. A valid [type`GLib`.VariantType] must be provided.

is_array()[source]

Returns:

true if self is an array type

Return type:

bool

Determines if the given self is an array type.

This is true if the type string for self starts with an a.

This function returns true for any indefinite type for which every definite subtype is an array type — G_VARIANT_TYPE_ARRAY, for example.

is_basic()[source]

Returns:

true if self is a basic type

Return type:

bool

Determines if the given self is a basic type.

Basic types are booleans, bytes, integers, doubles, strings, object paths and signatures.

Only a basic type may be used as the key of a dictionary entry.

This function returns FALSE for all indefinite types exceptG_VARIANT_TYPE_BASIC.

is_container()[source]

Returns:

true if self is a container type

Return type:

bool

Determines if the given self is a container type.

Container types are any array, maybe, tuple, or dictionary entry types plus the variant type.

This function returns true for any indefinite type for which every definite subtype is a container — G_VARIANT_TYPE_ARRAY, for example.

is_definite()[source]

Returns:

true if self is definite

Return type:

bool

Determines if the given self is definite (ie: not indefinite).

A type is definite if its type string does not contain any indefinite type characters (*, ?, or r).

A [type`GLib`.Variant] instance may not have an indefinite type, so calling this function on the result of [method`GLib`.Variant.get_type] will always result in true being returned. Calling this function on an indefinite type like G_VARIANT_TYPE_ARRAY, however, will result inFALSE being returned.

is_dict_entry()[source]

Returns:

true if self is a dictionary entry type

Return type:

bool

Determines if the given self is a dictionary entry type.

This is true if the type string for self starts with a {.

This function returns true for any indefinite type for which every definite subtype is a dictionary entry type —G_VARIANT_TYPE_DICT_ENTRY, for example.

is_maybe()[source]

Returns:

true if self is a ‘maybe’ type

Return type:

bool

Determines if the given self is a ‘maybe’ type.

This is true if the type string for self starts with an m.

This function returns true for any indefinite type for which every definite subtype is a ‘maybe’ type — G_VARIANT_TYPE_MAYBE, for example.

is_subtype_of(supertype)[source]

Parameters:

supertype (GLib.VariantType) – type of potential supertype

Returns:

true if self is a subtype of supertype

Return type:

bool

Checks if self is a subtype of supertype.

This function returns true if self is a subtype of supertype. All types are considered to be subtypes of themselves. Aside from that, only indefinite types can have subtypes.

is_tuple()[source]

Returns:

true if self is a tuple type

Return type:

bool

Determines if the given self is a tuple type.

This is true if the type string for self starts with a ( or if self isG_VARIANT_TYPE_TUPLE.

This function returns true for any indefinite type for which every definite subtype is a tuple type — G_VARIANT_TYPE_TUPLE, for example.

is_variant()[source]

Returns:

true if self is the variant type

Return type:

bool

Determines if the given self is the variant type.

key()[source]

Returns:

the key type of the dictionary entry

Return type:

GLib.VariantType

Determines the key type of a dictionary entry type.

This function may only be used with a dictionary entry type. Other than the additional restriction, this call is equivalent to [method`GLib`.VariantType.first].

n_items()[source]

Returns:

the number of items in self

Return type:

int

Determines the number of items contained in a tuple or dictionary entry type.

This function may only be used with tuple or dictionary entry types, but must not be used with the generic tuple typeG_VARIANT_TYPE_TUPLE.

In the case of a dictionary entry type, this function will always return 2.

next()[source]

Returns:

the next type after self, or NULL if there are no further types

Return type:

GLib.VariantType or None

Determines the next item type of a tuple or dictionary entry type.

self must be the result of a previous call to [method`GLib`.VariantType.first] or [method`GLib`.VariantType.next].

If called on the key type of a dictionary entry then this call returns the value type. If called on the value type of a dictionary entry then this call returns NULL.

For tuples, NULL is returned when self is the last item in the tuple.

value()[source]

Returns:

the value type of the dictionary entry

Return type:

GLib.VariantType

Determines the value type of a dictionary entry type.

This function may only be used with a dictionary entry type.