12 #include <glib-object.h>
58 #define VDO_TYPE_MAP (vdo_map_get_type())
59 G_DECLARE_FINAL_TYPE(
VdoMap, vdo_map, VDO, MAP, GObject)
76 #define vdo_map_get_printf(self, type, def, len, format, ...) __extension__ ({\
78 g_snprintf(name, len, format, __VA_ARGS__);\
79 vdo_map_get_##type(self, name, def);\
82 #define vdo_map_get_boolean_printf(self, def, len, format, ...) __extension__ ({\
84 g_snprintf(name, len, format, __VA_ARGS__);\
85 vdo_map_get_boolean(self, name, def);\
88 #define vdo_map_get_string_printf(self, def, len, format, ...) __extension__ ({\
90 g_snprintf(name, len, format, __VA_ARGS__);\
91 vdo_map_get_string(self, name, NULL, def);\
94 #define vdo_map_dup_string_printf(self, def, len, format, ...) __extension__ ({\
96 g_snprintf(name, len, format, __VA_ARGS__);\
97 vdo_map_dup_string(self, name, def);\
109 #define vdo_map_set_printf(self, type, value, len, format, ...) {\
111 g_snprintf(name, len, format, __VA_ARGS__);\
112 vdo_map_set_##type(self, name, value);\
115 #define vdo_map_set_boolean_printf(self, value, len, format, ...) {\
117 g_snprintf(name, len, format, __VA_ARGS__);\
118 vdo_map_set_boolean(self, name, value);\
128 #define vdo_map_remove_printf(self, len, format, ...) {\
130 g_snprintf(name, len, format, __VA_ARGS__);\
131 vdo_map_remove(self, name);\
159 #ifndef AXISOS_13_PREVIEW
160 VdoMap *vdo_map_new_from_variant(GVariant *dictionary);
170 gboolean vdo_map_empty(
const VdoMap *
self);
404 #ifndef AXISOS_13_PREVIEW
405 GVariant *vdo_map_to_variant(
const VdoMap *
self);
413 void vdo_map_dump(
const VdoMap *
self);
416 guchar vdo_map_get_byte(
const VdoMap *
self,
const gchar *name, guchar def);
417 gint16 vdo_map_get_int16(
const VdoMap *
self,
const gchar *name, gint16 def);
418 guint16 vdo_map_get_uint16(
const VdoMap *
self,
const gchar *name, guint16 def);
419 guint32* vdo_map_get_uint32x2(
const VdoMap *
self,
const gchar *name, guint32 def[2]);
420 guint32* vdo_map_get_uint32x4(
const VdoMap *
self,
const gchar *name, guint32 def[4]);
421 gdouble* vdo_map_get_doublex4(
const VdoMap *
self,
const gchar *name, gdouble def[4]);
424 #ifndef AXISOS_13_PREVIEW
425 GVariant* vdo_map_get_variant(
const VdoMap *
self,
const gchar *name, GVariant *def);
440 gboolean vdo_map_get_boolean(
const VdoMap *
self,
const gchar *name, gboolean def);
598 void vdo_map_set_byte(
VdoMap *
self,
const gchar *name, guchar value);
599 void vdo_map_set_int16(
VdoMap *
self,
const gchar *name, gint16 value);
600 void vdo_map_set_uint16(
VdoMap *
self,
const gchar *name, guint16 value);
601 void vdo_map_set_uint32x2(
VdoMap *
self,
const gchar *name,
const guint32 value[2]);
602 void vdo_map_set_uint32x4(
VdoMap *
self,
const gchar *name,
const guint32 value[4]);
603 void vdo_map_set_doublex4(
VdoMap *
self,
const gchar *name,
const gdouble value[4]);
A class representing a dictionary mapping keys to values.
guint32 vdo_map_get_uint32(const VdoMap *self, const gchar *name, guint32 def)
Returns the value which the key name is associated with.
guint64 vdo_map_get_uint64(const VdoMap *self, const gchar *name, guint64 def)
Returns the value which the key name is associated with.
gboolean vdo_map_equals(const VdoMap *self, const VdoMap *map)
Checks if all entries in this map and the specified map are equal.
gint32 vdo_map_get_int32(const VdoMap *self, const gchar *name, gint32 def)
Returns the value which the key name is associated with.
void vdo_map_set_pair32i(VdoMap *self, const gchar *name, VdoPair32i value)
Sets the value associated with the specified key.
gboolean vdo_map_contains_strv(const VdoMap *self, const gchar *const *names)
Checks if this map contains the specified set of keys.
void vdo_map_set_quad32u(VdoMap *self, const gchar *name, VdoQuad32u value)
Sets the value associated with the specified key.
void vdo_map_swap(VdoMap *lhs, VdoMap *rhs)
Swaps the contents of two maps.
void vdo_map_copy_value(VdoMap *self, const gchar *src, const gchar *dst)
Copies the value associated with the key src to an entry with the key dst.
void vdo_map_set_uint64(VdoMap *self, const gchar *name, guint64 value)
Sets the value associated with the specified key.
gboolean vdo_map_contains_va(const VdoMap *self,...)
Checks if this map contains the specified set of keys.
VdoMap * vdo_map_filter_prefix(const VdoMap *self, const gchar *prefix)
Returns a new map containing all entries from this map with a key that matches the specified prefix.
gchar * vdo_map_dup_string(const VdoMap *self, const gchar *name, const gchar *def)
Returns the value which the key name is associated with.
VdoMap * vdo_map_filter_strv(const VdoMap *self, const gchar *const *names)
Returns a new map containing all entries from this map with the specified keys.
void vdo_map_remove(VdoMap *self, const gchar *name)
Removes the entry with the specified key from this map.
const gchar * vdo_map_get_string(const VdoMap *self, const gchar *name, gsize *size, const gchar *def)
Returns the value which the key name is associated with.
gboolean vdo_map_equals_strv(const VdoMap *self, const VdoMap *map, const gchar *const *names)
Checks if all of the specified entries in this map and the specified map are equal.
VdoQuad32u vdo_map_get_quad32u(const VdoMap *self, const gchar *name, VdoQuad32u def)
Returns the value which the key name is associated with.
void vdo_map_set_quad32i(VdoMap *self, const gchar *name, VdoQuad32i value)
Sets the value associated with the specified key.
VdoPair32i vdo_map_get_pair32i(const VdoMap *self, const gchar *name, VdoPair32i def)
Returns the value which the key name is associated with.
void vdo_map_set_boolean(VdoMap *self, const gchar *name, gboolean value)
Sets the value associated with the specified key.
VdoMap * vdo_map_new(void)
Constructs an new empty VdoMap.
void vdo_map_set_double(VdoMap *self, const gchar *name, gdouble value)
Sets the value associated with the specified key.
void vdo_map_set_uint32(VdoMap *self, const gchar *name, guint32 value)
Sets the value associated with the specified key.
void vdo_map_set_pair32u(VdoMap *self, const gchar *name, VdoPair32u value)
Sets the value associated with the specified key.
VdoQuad32i vdo_map_get_quad32i(const VdoMap *self, const gchar *name, VdoQuad32i def)
Returns the value which the key name is associated with.
VdoMap * vdo_map_clone(const VdoMap *other)
Creates a deep copy of the specified VdoMap.
gsize vdo_map_size(const VdoMap *self)
Returns the number of entries in this map.
gboolean vdo_map_entry_updates(const VdoMap *self, const VdoMap *map, const gchar *name)
Checks if the specified key in the specified map is mapped to a value that differs from the one in th...
void vdo_map_set_string(VdoMap *self, const gchar *name, const gchar *value)
Sets the value associated with the specified key.
gboolean vdo_map_entry_equals(const VdoMap *self, const VdoMap *map, const gchar *name)
Checks if the specified entry in this map and the specified map are equal.
void vdo_map_remove_va(VdoMap *self,...)
Removes all entries with the specified keys from this map.
void vdo_map_clear(VdoMap *self)
Removes all of the entries from this map.
gdouble vdo_map_get_double(const VdoMap *self, const gchar *name, gdouble def)
Returns the value which the key name is associated with.
void vdo_map_set_int32(VdoMap *self, const gchar *name, gint32 value)
Sets the value associated with the specified key.
VdoPair32u vdo_map_get_pair32u(const VdoMap *self, const gchar *name, VdoPair32u def)
Returns the value which the key name is associated with.
void vdo_map_set_int64(VdoMap *self, const gchar *name, gint64 value)
Sets the value associated with the specified key.
gint64 vdo_map_get_int64(const VdoMap *self, const gchar *name, gint64 def)
Returns the value which the key name is associated with.
void vdo_map_merge(VdoMap *self, const VdoMap *map)
Merges the specified map into this map.
VdoMap * vdo_map_filter_va(const VdoMap *self,...)
Returns a new map containing all entries from this map with the specified keys.
gboolean vdo_map_equals_va(const VdoMap *self, const VdoMap *map,...)
Checks if all of the specified entries in this map and the specified map are equal.
void vdo_map_remove_strv(VdoMap *self, const gchar *const *names)
Removes all entries with the specified keys from this map.
gboolean vdo_map_contains(const VdoMap *self, const gchar *name)
Checks if this map contains the specified key.
Vdo common type definitions.