VariantDict

class VariantDict(val glibVariantDictPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance(source)

#GVariantDict is a mutable interface to #GVariant dictionaries.

It can be used for doing a sequence of dictionary lookups in an efficient way on an existing #GVariant dictionary or it can be used to construct new dictionaries with a hashtable-like interface. It can also be used for taking existing dictionaries and modifying them in order to create new ones.

#GVariantDict can only be used with %G_VARIANT_TYPE_VARDICT dictionaries.

It is possible to use #GVariantDict allocated on the stack or on the heap. When using a stack-allocated #GVariantDict, you begin with a call to g_variant_dict_init() and free the resources with a call to g_variant_dict_clear().

Heap-allocated #GVariantDict follows normal refcounting rules: you allocate it with g_variant_dict_new() and use g_variant_dict_ref() and g_variant_dict_unref().

g_variant_dict_end() is used to convert the #GVariantDict back into a dictionary-type #GVariant. When used with stack-allocated instances, this also implicitly frees all associated memory, but for heap-allocated instances, you must still call g_variant_dict_unref() afterwards.

You will typically want to use a heap-allocated #GVariantDict when you expose it as part of an API. For most other uses, the stack-allocated form will be more convenient.

Consider the following two examples that do the same thing in each style: take an existing dictionary and look up the "count" uint32 key, adding 1 to it if it is found, or returning an error if the key is not found. Each returns the new dictionary as a floating #GVariant.

Using a stack-allocated GVariantDict

|[ GVariant * add_to_count (GVariant *orig, GError **error) { GVariantDict dict; guint32 count;

g_variant_dict_init (&dict, orig);
if (!g_variant_dict_lookup (&dict, "count", "u", &count))
  {
    g_set_error (...);
    g_variant_dict_clear (&dict);
    return NULL;
  }

g_variant_dict_insert (&dict, "count", "u", count + 1);

return g_variant_dict_end (&dict);

} ]|

Using heap-allocated GVariantDict

|[ GVariant * add_to_count (GVariant *orig, GError **error) { GVariantDict *dict; GVariant *result; guint32 count;

dict = g_variant_dict_new (orig);

if (g_variant_dict_lookup (dict, "count", "u", &count))
  {
    g_variant_dict_insert (dict, "count", "u", count + 1);
    result = g_variant_dict_end (dict);
  }
else
  {
    g_set_error (...);
    result = NULL;
  }

g_variant_dict_unref (dict);

return result;

} ]|

Skipped during bindings generation

  • method insert: Varargs parameter is not supported

  • method lookup: Varargs parameter is not supported

  • field x: Array parameter of type guintptr is not supported

  • field y: Array parameter of type guintptr is not supported

Since

2.40

Constructors

Link copied to clipboard
constructor(fromAsv: Variant? = null)

Allocates and initialises a new #GVariantDict.

constructor()

Allocate a new VariantDict.

constructor(scope: <Error class: unknown class>)

Allocate a new VariantDict using the provided AutofreeScope.

constructor(asv: Variant?, partialMagic: <Error class: unknown class>)

Allocate a new VariantDict.

constructor(asv: Variant?, partialMagic: <Error class: unknown class>, scope: <Error class: unknown class>)

Allocate a new VariantDict using the provided AutofreeScope.

constructor(glibVariantDictPointer: <Error class: unknown class><<Error class: unknown class>>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
var asv: Variant?
Link copied to clipboard
val glibVariantDictPointer: <Error class: unknown class><<Error class: unknown class>>
Link copied to clipboard
open override val handle: <Error class: unknown class>
Link copied to clipboard
var partialMagic: <Error class: unknown class>

Functions

Link copied to clipboard
open override fun addCleaner(cleaner: <Error class: unknown class>): Boolean

Registers a cleaner to be executed when this proxy object is garbage collected.

Link copied to clipboard
fun clear()

Releases all memory associated with a #GVariantDict without freeing the #GVariantDict structure itself.

Link copied to clipboard

Checks if @key exists in @dict.

Link copied to clipboard
fun end(): Variant

Returns the current value of @dict as a #GVariant of type %G_VARIANT_TYPE_VARDICT, clearing it in the process.

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean

Compare two proxy instances for equality. This will compare both the type of the instances, and their memory addresses.

Link copied to clipboard
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
fun init(fromAsv: Variant? = null)

Initialises a #GVariantDict structure.

Link copied to clipboard
fun insertValue(key: String, value: Variant)

Inserts (or replaces) a key in a #GVariantDict.

Link copied to clipboard
fun lookupValue(key: String, expectedType: VariantType? = null): Variant?

Looks up a value in a #GVariantDict.

Link copied to clipboard

Increases the reference count on @dict.

Link copied to clipboard
fun remove(key: String): Boolean

Removes a key and its associated value from a #GVariantDict.

Link copied to clipboard
open override fun removeCleaner(cleaner: <Error class: unknown class>): Boolean

Removes a previously registered cleaner from this proxy object.

Link copied to clipboard
open override fun toString(): String
Link copied to clipboard
fun unref()

Decreases the reference count on @dict.