summaryrefslogtreecommitdiffstats
path: root/m_option.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-08-04 11:14:38 +0200
committerwm4 <wm4@nowhere>2012-08-04 19:59:56 +0200
commit37c03f2c81a443e910eeb3b2613865dce59c54bf (patch)
treee9d5ae5c0ed1fce9f6f689f03edec75bf1e7cca4 /m_option.c
parentab63072b47f9710852636a78a339b368b493e329 (diff)
downloadmpv-37c03f2c81a443e910eeb3b2613865dce59c54bf.tar.bz2
mpv-37c03f2c81a443e910eeb3b2613865dce59c54bf.tar.xz
options: revert passing around talloc contexts
This reverts commit 48f0692ab9 "options: make option struct the talloc parent of options". This made things actually more complicated. It introduced a new parameter to the option parse and copy functions, which was used inconsistently. Some code passed a parent, some not. Morever, you have to call m_option_free() anyway, because not all options actually respect the talloc parent. There is also the question whether passing NULL as parent is supposed to work, or if you still have to implement m_config_free(). On the other hand, this simplifies nothing. I assume the intention was being able to free all option values with a single talloc_free() call, but the same goal can be reached by simply freeing the m_config struct. (The m_config talloc destructor will free each option values.) Get rid of the talloc parent context parameter. This essentially reverts commit 48f0692ab9 ("options: make option struct the talloc parent of options"). In video_out.c, make the VO priv struct the talloc parent for the m_config object, so that destroying the VO will free the options. The ability to free the m_config struct and all its managed options was introduced in commit 89a17bcda6c.
Diffstat (limited to 'm_option.c')
-rw-r--r--m_option.c91
1 files changed, 35 insertions, 56 deletions
diff --git a/m_option.c b/m_option.c
index 8ef4267a9f..283e24b37b 100644
--- a/m_option.c
+++ b/m_option.c
@@ -77,8 +77,7 @@ const m_option_t *m_option_list_find(const m_option_t *list, const char *name)
// Default function that just does a memcpy
-static void copy_opt(const m_option_t *opt, void *dst, const void *src,
- void *talloc_ctx)
+static void copy_opt(const m_option_t *opt, void *dst, const void *src)
{
if (dst && src)
memcpy(dst, src, opt->type->size);
@@ -89,8 +88,7 @@ static void copy_opt(const m_option_t *opt, void *dst, const void *src,
#define VAL(x) (*(int *)(x))
static int parse_flag(const m_option_t *opt, struct bstr name,
- struct bstr param, bool ambiguous_param, void *dst,
- void *talloc_ctx)
+ struct bstr param, bool ambiguous_param, void *dst)
{
if (param.len && !ambiguous_param) {
char * const enable[] = { "yes", "on", "ja", "si", "igen", "y", "j",
@@ -179,8 +177,7 @@ static int parse_longlong(const m_option_t *opt, struct bstr name,
}
static int parse_int(const m_option_t *opt, struct bstr name,
- struct bstr param, bool ambiguous_param, void *dst,
- void *talloc_ctx)
+ struct bstr param, bool ambiguous_param, void *dst)
{
long long tmp;
int r = parse_longlong(opt, name, param, false, &tmp);
@@ -190,8 +187,7 @@ static int parse_int(const m_option_t *opt, struct bstr name,
}
static int parse_int64(const m_option_t *opt, struct bstr name,
- struct bstr param, bool ambiguous_param, void *dst,
- void *talloc_ctx)
+ struct bstr param, bool ambiguous_param, void *dst)
{
long long tmp;
int r = parse_longlong(opt, name, param, false, &tmp);
@@ -225,8 +221,7 @@ const m_option_type_t m_option_type_int64 = {
};
static int parse_intpair(const struct m_option *opt, struct bstr name,
- struct bstr param, bool ambiguous_param, void *dst,
- void *talloc_ctx)
+ struct bstr param, bool ambiguous_param, void *dst)
{
if (param.len == 0)
return M_OPT_MISSING_PARAM;
@@ -269,8 +264,7 @@ const struct m_option_type m_option_type_intpair = {
};
static int parse_choice(const struct m_option *opt, struct bstr name,
- struct bstr param, bool ambiguous_param, void *dst,
- void *talloc_ctx)
+ struct bstr param, bool ambiguous_param, void *dst)
{
bool allow_empty = opt->flags & M_OPT_IMPLICIT_DEFAULT;
int ret;
@@ -326,8 +320,7 @@ const struct m_option_type m_option_type_choice = {
#define VAL(x) (*(double *)(x))
static int parse_double(const m_option_t *opt, struct bstr name,
- struct bstr param, bool ambiguous_param, void *dst,
- void *talloc_ctx)
+ struct bstr param, bool ambiguous_param, void *dst)
{
if (param.len == 0)
return M_OPT_MISSING_PARAM;
@@ -401,11 +394,10 @@ const m_option_type_t m_option_type_double = {
#define VAL(x) (*(float *)(x))
static int parse_float(const m_option_t *opt, struct bstr name,
- struct bstr param, bool ambiguous_param, void *dst,
- void *talloc_ctx)
+ struct bstr param, bool ambiguous_param, void *dst)
{
double tmp;
- int r = parse_double(opt, name, param, false, &tmp, NULL);
+ int r = parse_double(opt, name, param, false, &tmp);
if (r == 1 && dst)
VAL(dst) = tmp;
return r;
@@ -431,8 +423,7 @@ const m_option_type_t m_option_type_float = {
#define VAL(x) (*(off_t *)(x))
static int parse_position(const m_option_t *opt, struct bstr name,
- struct bstr param, bool ambiguous_param, void *dst,
- void *talloc_ctx)
+ struct bstr param, bool ambiguous_param, void *dst)
{
long long tmp;
int r = parse_longlong(opt, name, param, false, &tmp);
@@ -462,8 +453,7 @@ const m_option_type_t m_option_type_position = {
#define VAL(x) (*(char **)(x))
static int parse_str(const m_option_t *opt, struct bstr name,
- struct bstr param, bool ambiguous_param, void *dst,
- void *talloc_ctx)
+ struct bstr param, bool ambiguous_param, void *dst)
{
if (param.start == NULL)
return M_OPT_MISSING_PARAM;
@@ -484,7 +474,7 @@ static int parse_str(const m_option_t *opt, struct bstr name,
if (dst) {
talloc_free(VAL(dst));
- VAL(dst) = bstrdup0(talloc_ctx, param);
+ VAL(dst) = bstrdup0(NULL, param);
}
return 1;
@@ -496,12 +486,11 @@ static char *print_str(const m_option_t *opt, const void *val)
return (val && VAL(val)) ? talloc_strdup(NULL, VAL(val)) : NULL;
}
-static void copy_str(const m_option_t *opt, void *dst, const void *src,
- void *talloc_ctx)
+static void copy_str(const m_option_t *opt, void *dst, const void *src)
{
if (dst && src) {
talloc_free(VAL(dst));
- VAL(dst) = talloc_strdup(talloc_ctx, VAL(src));
+ VAL(dst) = talloc_strdup(NULL, VAL(src));
}
}
@@ -549,7 +538,7 @@ static void free_str_list(void *dst)
VAL(dst) = NULL;
}
-static int str_list_add(char **add, int n, void *dst, int pre, void *talloc_ctx)
+static int str_list_add(char **add, int n, void *dst, int pre)
{
char **lst = VAL(dst);
int ln;
@@ -653,8 +642,7 @@ static struct bstr get_nextsep(struct bstr *ptr, char sep, bool modify)
}
static int parse_str_list(const m_option_t *opt, struct bstr name,
- struct bstr param, bool ambiguous_param, void *dst,
- void *talloc_ctx)
+ struct bstr param, bool ambiguous_param, void *dst)
{
char **res;
int op = OP_NONE;
@@ -703,14 +691,14 @@ static int parse_str_list(const m_option_t *opt, struct bstr name,
if (!dst)
return 1;
- res = talloc_array(talloc_ctx, char *, n + 2);
+ res = talloc_array(NULL, char *, n + 2);
str = bstrdup(NULL, param);
char *ptr = str.start;
n = 0;
while (1) {
struct bstr el = get_nextsep(&str, separator, 1);
- res[n] = bstrdup0(talloc_ctx, el);
+ res[n] = bstrdup0(NULL, el);
n++;
if (!str.len)
break;
@@ -721,9 +709,9 @@ static int parse_str_list(const m_option_t *opt, struct bstr name,
switch (op) {
case OP_ADD:
- return str_list_add(res, n, dst, 0, talloc_ctx);
+ return str_list_add(res, n, dst, 0);
case OP_PRE:
- return str_list_add(res, n, dst, 1, talloc_ctx);
+ return str_list_add(res, n, dst, 1);
case OP_DEL:
return str_list_del(res, n, dst);
}
@@ -735,8 +723,7 @@ static int parse_str_list(const m_option_t *opt, struct bstr name,
return 1;
}
-static void copy_str_list(const m_option_t *opt, void *dst, const void *src,
- void *talloc_ctx)
+static void copy_str_list(const m_option_t *opt, void *dst, const void *src)
{
int n;
char **d, **s;
@@ -755,9 +742,9 @@ static void copy_str_list(const m_option_t *opt, void *dst, const void *src,
for (n = 0; s[n] != NULL; n++)
/* NOTHING */;
- d = talloc_array(talloc_ctx, char *, n + 1);
+ d = talloc_array(NULL, char *, n + 1);
for (; n >= 0; n--)
- d[n] = talloc_strdup(talloc_ctx, s[n]);
+ d[n] = talloc_strdup(NULL, s[n]);
VAL(dst) = d;
}
@@ -801,8 +788,7 @@ const m_option_type_t m_option_type_string_list = {
/////////////////// Print
static int parse_print(const m_option_t *opt, struct bstr name,
- struct bstr param, bool ambiguous_param, void *dst,
- void *talloc_ctx)
+ struct bstr param, bool ambiguous_param, void *dst)
{
if (opt->type == CONF_TYPE_PRINT_INDIRECT)
mp_msg(MSGT_CFGPARSER, MSGL_INFO, "%s", *(char **) opt->p);
@@ -843,8 +829,7 @@ const m_option_type_t m_option_type_print_func = {
#define VAL(x) (*(char ***)(x))
static int parse_subconf(const m_option_t *opt, struct bstr name,
- struct bstr param, bool ambiguous_param, void *dst,
- void *talloc_ctx)
+ struct bstr param, bool ambiguous_param, void *dst)
{
int nr = 0;
char **lst = NULL;
@@ -1004,8 +989,7 @@ static struct {
};
static int parse_imgfmt(const m_option_t *opt, struct bstr name,
- struct bstr param, bool ambiguous_param, void *dst,
- void *talloc_ctx)
+ struct bstr param, bool ambiguous_param, void *dst)
{
uint32_t fmt = 0;
int i;
@@ -1095,8 +1079,7 @@ static struct {
};
static int parse_afmt(const m_option_t *opt, struct bstr name,
- struct bstr param, bool ambiguous_param, void *dst,
- void *talloc_ctx)
+ struct bstr param, bool ambiguous_param, void *dst)
{
uint32_t fmt = 0;
int i;
@@ -1164,8 +1147,7 @@ static int parse_timestring(struct bstr str, double *time, char endchar)
static int parse_time(const m_option_t *opt, struct bstr name,
- struct bstr param, bool ambiguous_param, void *dst,
- void *talloc_ctx)
+ struct bstr param, bool ambiguous_param, void *dst)
{
double time;
@@ -1195,8 +1177,7 @@ const m_option_type_t m_option_type_time = {
// Time or size (-endpos)
static int parse_time_size(const m_option_t *opt, struct bstr name,
- struct bstr param, bool ambiguous_param, void *dst,
- void *talloc_ctx)
+ struct bstr param, bool ambiguous_param, void *dst)
{
m_time_size_t ts;
char unit[4];
@@ -1428,8 +1409,7 @@ static int get_obj_params(struct bstr opt_name, struct bstr name,
}
static int parse_obj_params(const m_option_t *opt, struct bstr name,
- struct bstr param, bool ambiguous_param, void *dst,
- void *talloc_ctx)
+ struct bstr param, bool ambiguous_param, void *dst)
{
char **opts;
int r;
@@ -1627,7 +1607,7 @@ static void free_obj_settings_list(void *dst)
static int parse_obj_settings_list(const m_option_t *opt, struct bstr name,
struct bstr param, bool ambiguous_param,
- void *dst, void *talloc_ctx)
+ void *dst)
{
int len = strlen(opt->name);
m_obj_settings_t *res = NULL, *queue = NULL, *head = NULL;
@@ -1758,7 +1738,7 @@ static int parse_obj_settings_list(const m_option_t *opt, struct bstr name,
}
static void copy_obj_settings_list(const m_option_t *opt, void *dst,
- const void *src, void *talloc_ctx)
+ const void *src)
{
m_obj_settings_t *d, *s;
int n;
@@ -1781,7 +1761,7 @@ static void copy_obj_settings_list(const m_option_t *opt, void *dst,
for (n = 0; s[n].name; n++) {
d[n].name = talloc_strdup(NULL, s[n].name);
d[n].attribs = NULL;
- copy_str_list(NULL, &(d[n].attribs), &(s[n].attribs), NULL);
+ copy_str_list(NULL, &(d[n].attribs), &(s[n].attribs));
}
d[n].name = NULL;
d[n].attribs = NULL;
@@ -1801,7 +1781,7 @@ const m_option_type_t m_option_type_obj_settings_list = {
static int parse_obj_presets(const m_option_t *opt, struct bstr name,
struct bstr param, bool ambiguous_param,
- void *dst, void *talloc_ctx)
+ void *dst)
{
m_obj_presets_t *obj_p = (m_obj_presets_t *)opt->priv;
const m_struct_t *in_desc;
@@ -1876,8 +1856,7 @@ const m_option_type_t m_option_type_obj_presets = {
};
static int parse_custom_url(const m_option_t *opt, struct bstr name,
- struct bstr url, bool ambiguous_param, void *dst,
- void *talloc_ctx)
+ struct bstr url, bool ambiguous_param, void *dst)
{
int r;
m_struct_t *desc = opt->priv;