message-params: clean up

Part-of: <https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/525>
This commit is contained in:
Igor V. Kovalenko 2021-03-14 10:24:51 +03:00 committed by PulseAudio Marge Bot
parent 1dd05f4a9b
commit a2db3fcfb2
9 changed files with 0 additions and 827 deletions

View file

@ -683,7 +683,6 @@ INPUT = @top_srcdir@/src/pulse/channelmap.h \
@top_srcdir@/src/pulse/mainloop-api.h \
@top_srcdir@/src/pulse/mainloop-signal.h \
@top_srcdir@/src/pulse/mainloop.h \
@top_srcdir@/src/pulse/message-params.h \
@top_srcdir@/src/pulse/operation.h \
@top_srcdir@/src/pulse/proplist.h \
@top_srcdir@/src/pulse/pulseaudio.h \

View file

@ -5,7 +5,6 @@ libpulsecommon_sources = [
'pulse/format.c',
'pulse/json.c',
'pulse/mainloop-api.c',
'pulse/message-params.c',
'pulse/xmalloc.c',
'pulse/proplist.c',
'pulse/utf8.c',
@ -76,7 +75,6 @@ libpulsecommon_headers = [
'pulse/format.h',
'pulse/json.h',
'pulse/mainloop-api.h',
'pulse/message-params.h',
'pulse/xmalloc.h',
'pulse/proplist.h',
'pulse/utf8.h',

View file

@ -32,7 +32,6 @@
#include <pulse/timeval.h>
#include <pulse/utf8.h>
#include <pulse/util.h>
#include <pulse/message-params.h>
#include <pulsecore/core-error.h>
#include <pulsecore/core-rtclock.h>

View file

@ -262,27 +262,6 @@ pa_mainloop_quit;
pa_mainloop_run;
pa_mainloop_set_poll_func;
pa_mainloop_wakeup;
pa_message_params_begin_list;
pa_message_params_end_list;
pa_message_params_free;
pa_message_params_new;
pa_message_params_read_bool;
pa_message_params_read_double;
pa_message_params_read_double_array;
pa_message_params_read_int64;
pa_message_params_read_int64_array;
pa_message_params_read_raw;
pa_message_params_read_string;
pa_message_params_read_string_array;
pa_message_params_read_uint64;
pa_message_params_read_uint64_array;
pa_message_params_to_string_free;
pa_message_params_write_bool;
pa_message_params_write_double;
pa_message_params_write_int64;
pa_message_params_write_raw;
pa_message_params_write_string;
pa_message_params_write_uint64;
pa_msleep;
pa_operation_cancel;
pa_operation_get_state;

View file

@ -19,7 +19,6 @@ libpulse_sources = [
'mainloop-api.c',
'mainloop-signal.c',
'mainloop.c',
'message-params.c',
'operation.c',
'proplist.c',
'rtclock.c',
@ -52,7 +51,6 @@ libpulse_headers = [
'mainloop-api.h',
'mainloop-signal.h',
'mainloop.h',
'message-params.h',
'operation.h',
'proplist.h',
'pulseaudio.h',

View file

@ -1,641 +0,0 @@
/***
This file is part of PulseAudio.
PulseAudio is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation; either version 2.1 of the
License, or (at your option) any later version.
PulseAudio is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
***/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <locale.h>
#include <sys/types.h>
#include <pulse/xmalloc.h>
#include <pulsecore/macro.h>
#include <pulsecore/strbuf.h>
#include <pulsecore/core-util.h>
#include "message-params.h"
/* Message parameter structure, a wrapper for pa_strbuf */
struct pa_message_params {
pa_strbuf *buffer;
};
/* Helper functions */
/* Count number of top level elements in parameter list */
static int count_elements(const char *c) {
const char *s;
uint32_t element_count;
bool found_element, found_backslash;
int open_braces;
if (!c || *c == 0)
return PA_MESSAGE_PARAMS_LIST_END;
element_count = 0;
open_braces = 0;
found_element = false;
found_backslash = false;
s = c;
/* Count elements in list */
while (*s != 0) {
/* Skip escaped curly braces. */
if (*s == '\\' && !found_backslash) {
found_backslash = true;
s++;
continue;
}
if (*s == '{' && !found_backslash) {
found_element = true;
open_braces++;
}
if (*s == '}' && !found_backslash)
open_braces--;
/* unexpected closing brace, parse error */
if (open_braces < 0)
return PA_MESSAGE_PARAMS_PARSE_ERROR;
if (open_braces == 0 && found_element) {
element_count++;
found_element = false;
}
found_backslash = false;
s++;
}
/* missing closing brace, parse error */
if (open_braces > 0)
return PA_MESSAGE_PARAMS_PARSE_ERROR;
return element_count;
}
/* Split the specified string into elements. An element is defined as
* a sub-string between curly braces. The function is needed to parse
* the parameters of messages. Each time it is called it returns the
* position of the current element in result and the state pointer is
* advanced to the next list element. On return, the parameter
* *is_unpacked indicates if the string is plain text or contains a
* sub-list. is_unpacked may be NULL.
*
* The variable state points to, should be initialized to NULL before
* the first call. The function returns 1 on success, 0 if end of string
* is encountered and -1 on parse error.
*
* result is set to NULL on end of string or parse error. */
static int split_list(char *c, char **result, bool *is_unpacked, void **state) {
char *current = *state ? *state : c;
uint32_t open_braces;
bool found_backslash = false;
pa_assert(result);
*result = NULL;
/* Empty or no string */
if (!current || *current == 0)
return PA_MESSAGE_PARAMS_LIST_END;
/* Find opening brace */
while (*current != 0) {
/* Skip escaped curly braces. */
if (*current == '\\' && !found_backslash) {
found_backslash = true;
current++;
continue;
}
if (*current == '{' && !found_backslash)
break;
/* unexpected closing brace, parse error */
if (*current == '}' && !found_backslash)
return PA_MESSAGE_PARAMS_PARSE_ERROR;
found_backslash = false;
current++;
}
/* No opening brace found, end of string */
if (*current == 0)
return PA_MESSAGE_PARAMS_LIST_END;
if (is_unpacked)
*is_unpacked = true;
*result = current + 1;
found_backslash = false;
open_braces = 1;
while (open_braces != 0 && *current != 0) {
current++;
/* Skip escaped curly braces. */
if (*current == '\\' && !found_backslash) {
found_backslash = true;
continue;
}
if (*current == '{' && !found_backslash) {
open_braces++;
if (is_unpacked)
*is_unpacked = false;
}
if (*current == '}' && !found_backslash)
open_braces--;
found_backslash = false;
}
/* Parse error, closing brace missing */
if (open_braces != 0) {
*result = NULL;
return PA_MESSAGE_PARAMS_PARSE_ERROR;
}
/* Replace } with 0 */
*current = 0;
*state = current + 1;
return PA_MESSAGE_PARAMS_OK;
}
/* Read functions */
/* Read a string from the parameter list. The state pointer is
* advanced to the next element of the list. Returns a pointer
* to a sub-string within c. Escape characters will be removed
* from the string. The result must not be freed. */
int pa_message_params_read_string(char *c, const char **result, void **state) {
char *start_pos;
char *value = NULL;
int r;
bool is_unpacked = true;
pa_assert(result);
if ((r = split_list(c, &start_pos, &is_unpacked, state)) == PA_MESSAGE_PARAMS_OK)
value = start_pos;
/* Check if we got a plain string not containing further lists */
if (!is_unpacked) {
/* Parse error */
r = PA_MESSAGE_PARAMS_PARSE_ERROR;
value = NULL;
}
if (value)
*result = pa_unescape(value);
return r;
}
/* A wrapper for split_list() to distinguish between reading pure
* string data and raw data which may contain further lists. */
int pa_message_params_read_raw(char *c, char **result, void **state) {
return split_list(c, result, NULL, state);
}
/* Read a double from the parameter list. The state pointer is
* advanced to the next element of the list. */
int pa_message_params_read_double(char *c, double *result, void **state) {
char *start_pos, *end_pos, *s;
int err;
struct lconv *locale;
double value;
bool is_unpacked = true;
pa_assert(result);
if ((err = split_list(c, &start_pos, &is_unpacked, state)) != PA_MESSAGE_PARAMS_OK)
return err;
/* Empty element */
if (!*start_pos)
return PA_MESSAGE_PARAMS_IS_NULL;
/* Check if we got a plain string not containing further lists */
if (!is_unpacked)
return PA_MESSAGE_PARAMS_PARSE_ERROR;
/* Get decimal separator for current locale */
locale = localeconv();
/* Replace decimal point with the correct character for the
* current locale. This assumes that no thousand separator
* is used. */
for (s = start_pos; *s; s++) {
if (*s == '.' || *s == ',')
*s = *locale->decimal_point;
}
/* Convert to double */
errno = 0;
value = strtod(start_pos, &end_pos);
/* Conversion error or string contains invalid characters. If the
* whole string was used for conversion, end_pos should point to
* the end of the string. */
if (errno != 0 || *end_pos != 0 || end_pos == start_pos)
return PA_MESSAGE_PARAMS_PARSE_ERROR;
*result = value;
return PA_MESSAGE_PARAMS_OK;
}
/* Read an integer from the parameter list. The state pointer is
* advanced to the next element of the list. */
int pa_message_params_read_int64(char *c, int64_t *result, void **state) {
char *start_pos;
int err;
int64_t value;
bool is_unpacked = true;
pa_assert(result);
if ((err = split_list(c, &start_pos, &is_unpacked, state)) != PA_MESSAGE_PARAMS_OK)
return err;
/* Empty element */
if (!*start_pos)
return PA_MESSAGE_PARAMS_IS_NULL;
/* Check if we got a plain string not containing further lists */
if (!is_unpacked)
return PA_MESSAGE_PARAMS_PARSE_ERROR;
/* Convert to int64 */
if (pa_atoi64(start_pos, &value) < 0)
return PA_MESSAGE_PARAMS_PARSE_ERROR;
*result = value;
return PA_MESSAGE_PARAMS_OK;
}
/* Read an unsigned integer from the parameter list. The state pointer is
* advanced to the next element of the list. */
int pa_message_params_read_uint64(char *c, uint64_t *result, void **state) {
char *start_pos;
int err;
uint64_t value;
bool is_unpacked = true;
pa_assert(result);
if ((err = split_list(c, &start_pos, &is_unpacked, state)) != PA_MESSAGE_PARAMS_OK)
return err;
/* Empty element */
if (!*start_pos)
return PA_MESSAGE_PARAMS_IS_NULL;
/* Check if we got a plain string not containing further lists */
if (!is_unpacked)
return PA_MESSAGE_PARAMS_PARSE_ERROR;
/* Convert to int64 */
if (pa_atou64(start_pos, &value) < 0)
return PA_MESSAGE_PARAMS_PARSE_ERROR;
*result = value;
return PA_MESSAGE_PARAMS_OK;
}
/* Read a boolean from the parameter list. The state pointer is
* advanced to the next element of the list. */
int pa_message_params_read_bool(char *c, bool *result, void **state) {
int err;
uint64_t value;
pa_assert(result);
if ((err = pa_message_params_read_uint64(c, &value, state)) != PA_MESSAGE_PARAMS_OK)
return err;
*result = false;
if (value)
*result = true;
return PA_MESSAGE_PARAMS_OK;
}
/* Converts a parameter list to a string array. */
int pa_message_params_read_string_array(char *c, const char ***results, int *length, void **state) {
void *state1 = NULL;
int element_count, i;
int err;
const char **values;
char *start_pos;
pa_assert(results);
pa_assert(length);
if ((err = split_list(c, &start_pos, NULL, state)) != PA_MESSAGE_PARAMS_OK)
return err;
/* Count elements, return if no element was found or parse error. */
element_count = count_elements(start_pos);
if (element_count < 0) {
return PA_MESSAGE_PARAMS_PARSE_ERROR;
} else if (element_count == 0) {
*length = 0;
return PA_MESSAGE_PARAMS_OK;
}
/* Allocate array */
values = pa_xmalloc0(element_count * sizeof(char *));
for (i = 0; (err = pa_message_params_read_string(start_pos, &(values[i]), &state1)) > 0; i++)
;
if (err < 0) {
pa_xfree(values);
return PA_MESSAGE_PARAMS_PARSE_ERROR;
}
*results = values;
*length = element_count;
return PA_MESSAGE_PARAMS_OK;
}
/* Converts a parameter list to a double array. */
int pa_message_params_read_double_array(char *c, double **results, int *length, void **state) {
double *values;
void *state1 = NULL;
int element_count, i;
int err;
char *start_pos;
pa_assert(results);
pa_assert(length);
if ((err = split_list(c, &start_pos, NULL, state)) != PA_MESSAGE_PARAMS_OK)
return err;
/* Count elements, return if no element was found or parse error. */
element_count = count_elements(start_pos);
if (element_count < 0) {
return PA_MESSAGE_PARAMS_PARSE_ERROR;
} else if (element_count == 0) {
*length = 0;
return PA_MESSAGE_PARAMS_OK;
}
/* Allocate array */
values = pa_xmalloc0(element_count * sizeof(double));
for (i = 0; (err = pa_message_params_read_double(start_pos, &(values[i]), &state1)) > 0; i++)
;
if (err < 0) {
pa_xfree(values);
return PA_MESSAGE_PARAMS_PARSE_ERROR;
}
*results = values;
*length = element_count;
return PA_MESSAGE_PARAMS_OK;
}
/* Converts a parameter list to an int64 array. */
int pa_message_params_read_int64_array(char *c, int64_t **results, int *length, void **state) {
int64_t *values;
void *state1 = NULL;
int element_count, i;
int err;
char *start_pos;
pa_assert(results);
pa_assert(length);
if ((err = split_list(c, &start_pos, NULL, state)) != PA_MESSAGE_PARAMS_OK)
return err;
/* Count elements, return if no element was found or parse error. */
element_count = count_elements(start_pos);
if (element_count < 0) {
return PA_MESSAGE_PARAMS_PARSE_ERROR;
} else if (element_count == 0) {
*length = 0;
return PA_MESSAGE_PARAMS_OK;
}
/* Allocate array */
values = pa_xmalloc0(element_count * sizeof(int64_t));
for (i = 0; (err = pa_message_params_read_int64(start_pos, &(values[i]), &state1)) > 0; i++)
;
if (err < 0) {
pa_xfree(values);
return PA_MESSAGE_PARAMS_PARSE_ERROR;
}
*results = values;
*length = element_count;
return PA_MESSAGE_PARAMS_OK;
}
/* Converts a parameter list to an uint64 array. */
int pa_message_params_read_uint64_array(char *c, uint64_t **results, int *length, void **state) {
uint64_t *values;
void *state1 = NULL;
int element_count, i;
int err;
char *start_pos;
pa_assert(results);
pa_assert(length);
if ((err = split_list(c, &start_pos, NULL, state)) != PA_MESSAGE_PARAMS_OK)
return err;
/* Count elements, return if no element was found or parse error. */
element_count = count_elements(start_pos);
if (element_count < 0) {
return PA_MESSAGE_PARAMS_PARSE_ERROR;
} else if (element_count == 0) {
*length = 0;
return PA_MESSAGE_PARAMS_OK;
}
/* Allocate array */
values = pa_xmalloc0(element_count * sizeof(uint64_t));
for (i = 0; (err = pa_message_params_read_uint64(start_pos, &(values[i]), &state1)) > 0; i++)
;
if (err < 0) {
pa_xfree(values);
return PA_MESSAGE_PARAMS_PARSE_ERROR;
}
*results = values;
*length = element_count;
return PA_MESSAGE_PARAMS_OK;
}
/* Write functions. The functions are wrapper functions around pa_strbuf,
* so that the client does not need to use pa_strbuf directly. */
/* Creates a new pa_message_param structure */
pa_message_params *pa_message_params_new(void) {
pa_message_params *params;
params = pa_xnew(pa_message_params, 1);
params->buffer = pa_strbuf_new();
return params;
}
/* Frees a pa_message_params structure */
void pa_message_params_free(pa_message_params *params) {
pa_assert(params);
pa_strbuf_free(params->buffer);
pa_xfree(params);
}
/* Converts a pa_message_param structure to string and frees the structure.
* The returned string needs to be freed with pa_xree(). */
char *pa_message_params_to_string_free(pa_message_params *params) {
char *result;
pa_assert(params);
result = pa_strbuf_to_string_free(params->buffer);
pa_xfree(params);
return result;
}
/* Writes an opening curly brace */
void pa_message_params_begin_list(pa_message_params *params) {
pa_assert(params);
pa_strbuf_putc(params->buffer, '{');
}
/* Writes a closing curly brace */
void pa_message_params_end_list(pa_message_params *params) {
pa_assert(params);
pa_strbuf_putc(params->buffer, '}');
}
/* Writes a string to a message_params structure, adding curly braces
* around the string and escaping curly braces within the string. */
void pa_message_params_write_string(pa_message_params *params, const char *value) {
char *output;
pa_assert(params);
/* Null value is written as empty element */
if (!value)
value = "";
output = pa_escape(value, "{}");
pa_strbuf_printf(params->buffer, "{%s}", output);
pa_xfree(output);
}
/* Writes a raw string to a message_params structure, adding curly braces
* around the string if add_braces is true. This function can be used to
* write parts of a string or whole parameter lists that have been prepared
* elsewhere (for example an array). */
void pa_message_params_write_raw(pa_message_params *params, const char *value, bool add_braces) {
pa_assert(params);
/* Null value is written as empty element if add_braces is true.
* Otherwise nothing is written. */
if (!value)
value = "";
if (add_braces)
pa_strbuf_printf(params->buffer, "{%s}", value);
else
pa_strbuf_puts(params->buffer, value);
}
/* Writes a double to a message_params structure, adding curly braces.
* precision gives the number of significant digits, not digits after
* the decimal point. */
void pa_message_params_write_double(pa_message_params *params, double value, int precision) {
char *buf, *s;
pa_assert(params);
/* We do not care about locale because we do not know which locale is
* used on the server side. If the decimal separator is a comma, we
* replace it with a dot to achieve consistent output on all locales. */
buf = pa_sprintf_malloc("{%.*g}", precision, value);
for (s = buf; *s; s++) {
if (*s == ',') {
*s = '.';
break;
}
}
pa_strbuf_puts(params->buffer, buf);
pa_xfree(buf);
}
/* Writes an integer to a message_param structure, adding curly braces. */
void pa_message_params_write_int64(pa_message_params *params, int64_t value) {
pa_assert(params);
pa_strbuf_printf(params->buffer, "{%lli}", (long long)value);
}
/* Writes an unsigned integer to a message_params structure, adding curly braces. */
void pa_message_params_write_uint64(pa_message_params *params, uint64_t value) {
pa_assert(params);
pa_strbuf_printf(params->buffer, "{%llu}", (unsigned long long)value);
}
/* Writes a boolean to a message_params structure, adding curly braces. */
void pa_message_params_write_bool(pa_message_params *params, bool value) {
pa_assert(params);
if (value)
pa_strbuf_puts(params->buffer, "{1}");
else
pa_strbuf_puts(params->buffer, "{0}");
}

View file

@ -1,157 +0,0 @@
#ifndef foomessagehelperhfoo
#define foomessagehelperhfoo
/***
This file is part of PulseAudio.
PulseAudio is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation; either version 2.1 of the
License, or (at your option) any later version.
PulseAudio is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
***/
#include <stddef.h>
#include <stdbool.h>
#include <inttypes.h>
#include <pulse/cdecl.h>
#include <pulse/version.h>
/** \file
* Utility functions for reading and writing message parameters.
* All read functions return a value from pa_message_params_error_code
* and the read value in result (or *result for string functions).
* The string read functions read_string() and read_raw() return a pointer
* to a sub-string within the parameter list in *result, therefore the
* string in *result must not be freed and is only valid within the
* message handler callback function. If the string is needed outside
* the callback, it must be copied using pa_xstrdup().
* When a read function is called, the state pointer is advanced to the
* next list element. The variable state points to should be initialized
* to NULL before the first call.
* All read functions except read_raw() preserve a default value passed
* in result if the call fails. For the array functions, results must be
* initialized prior to the call either to NULL or to an array with default
* values. If the function succeeds, the default array will be freed and
* the number of elements in the result array is returned.\n\n
* Write functions operate on a pa_message_params structure which is a
* wrapper for pa_strbuf. A parameter list or sub-list is started by a
* call to begin_list() and ended by a call to end_list().
* A pa_message_params structure must be converted to a string using
* pa_message_params_to_string_free() before it can be passed to a
* message handler. */
PA_C_DECL_BEGIN
/** Structure which holds a parameter list. Wrapper for pa_strbuf \since 15.0 */
typedef struct pa_message_params pa_message_params;
/** Read function return values \since 15.0 */
enum pa_message_params_error_code {
/** No value (empty element) found for numeric or boolean value */
PA_MESSAGE_PARAMS_IS_NULL = -2,
/** Error encountered while parsing a value */
PA_MESSAGE_PARAMS_PARSE_ERROR = -1,
/** End of parameter list reached */
PA_MESSAGE_PARAMS_LIST_END = 0,
/** Parsing successful */
PA_MESSAGE_PARAMS_OK = 1,
};
/** @{ \name Read functions */
/** Read a boolean from parameter list in c. \since 15.0 */
int pa_message_params_read_bool(char *c, bool *result, void **state);
/** Read a double from parameter list in c. \since 15.0 */
int pa_message_params_read_double(char *c, double *result, void **state);
/** Converts a parameter list to a double array. Empty elements in the parameter
* list are treated as error. Returns allocated array in *results and array size in *length.
* The returned array must be freed with pa_xfree(). \since 15.0 */
int pa_message_params_read_double_array(char *c, double **results, int *length, void **state);
/** Read an integer from parameter list in c. \since 15.0 */
int pa_message_params_read_int64(char *c, int64_t *result, void **state);
/** Converts a parameter list to an int64 array. Empty elements in the parameter
* list are treated as error. Returns allocated array in *results and array size in *length.
* The returned array must be freed with pa_xfree(). \since 15.0 */
int pa_message_params_read_int64_array(char *c, int64_t **results, int *length, void **state);
/** Read raw data from parameter list in c. Used to split a message parameter
* string into list elements. The string returned in *result must not be freed. \since 15.0 */
int pa_message_params_read_raw(char *c, char **result, void **state);
/** Read a string from a parameter list in c. Escaped curly braces and backslashes
* will be unescaped. \since 15.0 */
int pa_message_params_read_string(char *c, const char **result, void **state);
/** Convert a parameter list to a string array. Escaping is removed from
* the strings. Returns allocated array of pointers to sub-strings within c in
* *results and stores array size in *length. The returned array must be
* freed with pa_xfree(), but not the strings within the array. \since 15.0 */
int pa_message_params_read_string_array(char *c, const char ***results, int *length, void **state);
/** Read an unsigned integer from parameter list in c. \since 15.0 */
int pa_message_params_read_uint64(char *c, uint64_t *result, void **state);
/** Converts a parameter list to an uint64 array. Empty elements in the parameter
* list are treated as error. Returns allocated array in *results and array size in *length.
* The returned array must be freed with pa_xfree(). \since 15.0 */
int pa_message_params_read_uint64_array(char *c, uint64_t **results, int *length, void **state);
/** @} */
/** @{ \name Write functions */
/** Create a new pa_message_params structure. \since 15.0 */
pa_message_params *pa_message_params_new(void);
/** Free a pa_message_params structure. \since 15.0 */
void pa_message_params_free(pa_message_params *params);
/** Convert pa_message_params to string, free pa_message_params structure. \since 15.0 */
char *pa_message_params_to_string_free(pa_message_params *params);
/** Start a list by writing an opening brace. \since 15.0 */
void pa_message_params_begin_list(pa_message_params *params);
/** End a list by writing a closing brace. \since 15.0 */
void pa_message_params_end_list(pa_message_params *params);
/** Append a boolean to parameter list. \since 15.0 */
void pa_message_params_write_bool(pa_message_params *params, bool value);
/** Append a double to parameter list. Precision gives the number of
* significant digits. The decimal separator will always be written as
* dot, regardless which locale is used. \since 15.0 */
void pa_message_params_write_double(pa_message_params *params, double value, int precision);
/** Append an integer to parameter list. \since 15.0 */
void pa_message_params_write_int64(pa_message_params *params, int64_t value);
/** Append string to parameter list. Curly braces and backslashes will be escaped. \since 15.0 */
void pa_message_params_write_string(pa_message_params *params, const char *value);
/** Append raw string to parameter list. Used to write incomplete strings
* or complete parameter lists (for example arrays). Adds curly braces around
* the string if add_braces is true. \since 15.0 */
void pa_message_params_write_raw(pa_message_params *params, const char *value, bool add_braces);
/** Append an unsigned integer to parameter list. \since 15.0 */
void pa_message_params_write_uint64(pa_message_params *params, uint64_t value);
/** @} */
PA_C_DECL_END
#endif

View file

@ -29,7 +29,6 @@
#include <pulse/rtclock.h>
#include <pulse/timeval.h>
#include <pulse/xmalloc.h>
#include <pulse/message-params.h>
#include <pulsecore/module.h>
#include <pulsecore/core-rtclock.h>

View file

@ -35,7 +35,6 @@
#include <sndfile.h>
#include <pulse/pulseaudio.h>
#include <pulse/message-params.h>
#include <pulse/ext-device-restore.h>
#include <pulse/json.h>