PipeWire  0.2.9
pw_properties Class Reference

A collection of key/value pairs. More...

Public Member Functions

SPA_EXPORT struct pw_propertiespw_properties_new (const char *key,...)
 Make a new properties object. More...
 
SPA_EXPORT struct pw_propertiespw_properties_new_dict (const struct spa_dict *dict)
 Make a new properties object from the given dictionary. More...
 
SPA_EXPORT struct pw_propertiespw_properties_new_string (const char *str)
 Make a new properties object from the given str. More...
 
SPA_EXPORT struct pw_propertiespw_properties_copy (const struct pw_properties *properties)
 Copy a properties object. More...
 
SPA_EXPORT void pw_properties_clear (struct pw_properties *properties)
 Clear a properties object. More...
 
SPA_EXPORT int pw_properties_update (struct pw_properties *props, const struct spa_dict *dict)
 Update properties. More...
 
SPA_EXPORT void pw_properties_free (struct pw_properties *properties)
 Free a properties object. More...
 
SPA_EXPORT int pw_properties_set (struct pw_properties *properties, const char *key, const char *value)
 Set a property value. More...
 
SPA_EXPORT int pw_properties_setf (struct pw_properties *properties, const char *key, const char *format,...)
 Set a property value by format. More...
 
SPA_EXPORT const char * pw_properties_get (const struct pw_properties *properties, const char *key)
 Get a property. More...
 
SPA_EXPORT const char * pw_properties_iterate (const struct pw_properties *properties, void **state)
 Iterate property values. More...
 

Data Fields

struct spa_dict dict
 dictionary of key/values More...
 
uint32_t flags
 extra flags More...
 

Detailed Description

A collection of key/value pairs.

Properties are used to pass around arbitrary key/value pairs. Both keys and values are strings which keeps things simple. Encoding of arbitrary values should be done by using a string serialization such as base64 for binary blobs.

Member Function Documentation

◆ pw_properties_clear()

SPA_EXPORT void pw_properties_clear ( struct pw_properties properties)

Clear a properties object.

Parameters
propertiesproperties to clear

References pw_array_for_each.

Referenced by pw_properties_free().

◆ pw_properties_copy()

SPA_EXPORT struct pw_properties * pw_properties_copy ( const struct pw_properties properties)

Copy a properties object.

Parameters
propertiesproperties to copy
Returns
a new properties object

References dict, and pw_properties_new_dict().

Referenced by pw_core::pw_core_new().

◆ pw_properties_free()

SPA_EXPORT void pw_properties_free ( struct pw_properties properties)

◆ pw_properties_get()

SPA_EXPORT const char * pw_properties_get ( const struct pw_properties properties,
const char *  key 
)

Get a property.

Parameters
propertiesa pw_properties
keya key
Returns
the property for key or NULL when the key was not found

Get the property in properties with key.

Referenced by pw_core::pw_core_new(), pw_device_register(), pw_pipewire::pw_fill_remote_properties(), pw_loop::pw_loop_new(), pw_node_register(), pw_remote_new(), and pw_stream_new().

◆ pw_properties_iterate()

SPA_EXPORT const char * pw_properties_iterate ( const struct pw_properties properties,
void **  state 
)

Iterate property values.

Parameters
propertiesa pw_properties
statestate
Returns
The next key or NULL when there are no more keys to iterate.

Iterate over properties, returning each key in turn. state should point to a pointer holding NULL to get the first element and will be updated after each iteration. When NULL is returned, all elements have been iterated.

References pw_array::pw_array_check_index, and pw_array::pw_array_get_unchecked.

◆ pw_properties_new()

SPA_EXPORT struct pw_properties * pw_properties_new ( const char *  key,
  ... 
)

Make a new properties object.

Parameters
keya first key
...value and more keys NULL terminated
Returns
a newly allocated properties object

Referenced by pw_client::pw_client_new(), pw_core::pw_core_new(), pw_device_new(), pw_device_register(), pw_factory_register(), pw_link_register(), pw_node_new(), pw_node_register(), pw_port_new(), pw_remote_new(), and pw_stream_new().

◆ pw_properties_new_dict()

SPA_EXPORT struct pw_properties * pw_properties_new_dict ( const struct spa_dict *  dict)

Make a new properties object from the given dictionary.

Parameters
dicta dictionary. keys and values are copied
Returns
a new properties object

Referenced by pw_port_new(), and pw_properties_copy().

◆ pw_properties_new_string()

SPA_EXPORT struct pw_properties * pw_properties_new_string ( const char *  str)

Make a new properties object from the given str.

str should be a whitespace separated list of key=value strings.

Parameters
argsa property description
Returns
a new properties object

◆ pw_properties_set()

SPA_EXPORT int pw_properties_set ( struct pw_properties properties,
const char *  key,
const char *  value 
)

Set a property value.

Parameters
propertiesthe properties to change
keya key
valuea value or NULL to remove the key
Returns
1 if the properties were changed. 0 if nothing was changed because the property already existed with the same value or because the key to remove did not exist.

Set the property in properties with key to value. Any previous value of key will be overwritten. When value is NULL, the key will be removed.

Referenced by pw_core::pw_core_new(), pw_device_register(), pw_factory_register(), pw_pipewire::pw_fill_remote_properties(), pw_node_register(), pw_port_new(), pw_properties_update(), and pw_stream_new().

◆ pw_properties_setf()

SPA_EXPORT int pw_properties_setf ( struct pw_properties properties,
const char *  key,
const char *  format,
  ... 
)

Set a property value by format.

Parameters
propertiesa pw_properties
keya key
formata value
...extra arguments

Set the property in properties with key to the value in printf style format Any previous value of key will be overwritten.

References pw_properties_setva().

Referenced by pw_core::pw_core_new(), pw_factory_register(), pw_pipewire::pw_fill_remote_properties(), and pw_link_register().

◆ pw_properties_update()

SPA_EXPORT int pw_properties_update ( struct pw_properties props,
const struct spa_dict *  dict 
)

Update properties.

Parameters
propsproperties to update
dictnew properties
Returns
the number of changed properties

The properties in props are updated with dict. Keys in dict with NULL values are removed from props.

References pw_properties_set().

Referenced by pw_client::pw_client_update_properties(), pw_core::pw_core_update_properties(), pw_module_update_properties(), pw_remote_update_properties(), and pw_stream_update_properties().

Field Documentation

◆ dict

struct spa_dict pw_properties::dict

◆ flags

uint32_t pw_properties::flags

extra flags


The documentation for this class was generated from the following files: