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);\
150 VdoMap *vdo_map_new_from_variant(GVariant *dictionary);
393 GVariant *vdo_map_to_variant(
const VdoMap *
self);
403 guchar vdo_map_get_byte(
const VdoMap *
self,
const gchar *name, guchar def);
404 gint16 vdo_map_get_int16(
const VdoMap *
self,
const gchar *name, gint16 def);
405 guint16 vdo_map_get_uint16(
const VdoMap *
self,
const gchar *name, guint16 def);
406 guint32* vdo_map_get_uint32x2(
const VdoMap *
self,
const gchar *name, guint32 def[2]);
407 guint32* vdo_map_get_uint32x4(
const VdoMap *
self,
const gchar *name, guint32 def[4]);
408 gdouble* vdo_map_get_doublex4(
const VdoMap *
self,
const gchar *name, gdouble def[4]);
411 GVariant* vdo_map_get_variant(
const VdoMap *
self,
const gchar *name, GVariant *def);
555 void vdo_map_set_byte(
VdoMap *
self,
const gchar *name, guchar value);
556 void vdo_map_set_int16(
VdoMap *
self,
const gchar *name, gint16 value);
557 void vdo_map_set_uint16(
VdoMap *
self,
const gchar *name, guint16 value);
558 void vdo_map_set_uint32x2(
VdoMap *
self,
const gchar *name,
const guint32 value[2]);
559 void vdo_map_set_uint32x4(
VdoMap *
self,
const gchar *name,
const guint32 value[4]);
560 void vdo_map_set_doublex4(
VdoMap *
self,
const gchar *name,
const gdouble value[4]);
A class representing a dictionary mapping keys to values.
Generic object for two signed 32bit values.
Definition: vdo-types.h:462
Generic object for two unsigned 32bit values.
Definition: vdo-types.h:472
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.
gboolean vdo_map_get_boolean(const VdoMap *self, const gchar *name, gboolean 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_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.
gboolean vdo_map_empty(const VdoMap *self)
Checks if this map is empty.
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.
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_dump(const VdoMap *self)
Print a string representation of this map to stdout.
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.
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.