]> git.sesse.net Git - ffmpeg/blob - libavutil/dict.c
7b4dbf29ac755e05081305a9edd5390f5a67820e
[ffmpeg] / libavutil / dict.c
1 /*
2  * copyright (c) 2009 Michael Niedermayer
3  *
4  * This file is part of Libav.
5  *
6  * Libav is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * Libav is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with Libav; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 #include <string.h>
22
23 #include "avstring.h"
24 #include "dict.h"
25 #include "internal.h"
26 #include "mem.h"
27
28 struct AVDictionary {
29     int count;
30     AVDictionaryEntry *elems;
31 };
32
33 int av_dict_count(const AVDictionary *m)
34 {
35     return m ? m->count : 0;
36 }
37
38 AVDictionaryEntry *av_dict_get(const AVDictionary *m, const char *key,
39                                const AVDictionaryEntry *prev, int flags)
40 {
41     unsigned int i, j;
42
43     if (!m)
44         return NULL;
45
46     if (prev)
47         i = prev - m->elems + 1;
48     else
49         i = 0;
50
51     for (; i < m->count; i++) {
52         const char *s = m->elems[i].key;
53         if (flags & AV_DICT_MATCH_CASE)
54             for (j = 0; s[j] == key[j] && key[j]; j++)
55                 ;
56         else
57             for (j = 0; av_toupper(s[j]) == av_toupper(key[j]) && key[j]; j++)
58                 ;
59         if (key[j])
60             continue;
61         if (s[j] && !(flags & AV_DICT_IGNORE_SUFFIX))
62             continue;
63         return &m->elems[i];
64     }
65     return NULL;
66 }
67
68 int av_dict_set(AVDictionary **pm, const char *key, const char *value,
69                 int flags)
70 {
71     AVDictionary *m = *pm;
72     AVDictionaryEntry *tag = av_dict_get(m, key, NULL, flags);
73     char *oldval = NULL;
74
75     if (!m)
76         m = *pm = av_mallocz(sizeof(*m));
77
78     if (tag) {
79         if (flags & AV_DICT_DONT_OVERWRITE)
80             return 0;
81         if (flags & AV_DICT_APPEND)
82             oldval = tag->value;
83         else
84             av_free(tag->value);
85         av_free(tag->key);
86         *tag = m->elems[--m->count];
87     } else {
88         AVDictionaryEntry *tmp = av_realloc(m->elems,
89                                             (m->count + 1) * sizeof(*m->elems));
90         if (tmp)
91             m->elems = tmp;
92         else
93             return AVERROR(ENOMEM);
94     }
95     if (value) {
96         if (flags & AV_DICT_DONT_STRDUP_KEY)
97             m->elems[m->count].key = key;
98         else
99             m->elems[m->count].key = av_strdup(key);
100         if (flags & AV_DICT_DONT_STRDUP_VAL) {
101             m->elems[m->count].value = value;
102         } else if (oldval && flags & AV_DICT_APPEND) {
103             int len = strlen(oldval) + strlen(value) + 1;
104             if (!(oldval = av_realloc(oldval, len)))
105                 return AVERROR(ENOMEM);
106             av_strlcat(oldval, value, len);
107             m->elems[m->count].value = oldval;
108         } else
109             m->elems[m->count].value = av_strdup(value);
110         m->count++;
111     }
112     if (!m->count) {
113         av_free(m->elems);
114         av_freep(pm);
115     }
116
117     return 0;
118 }
119
120 static int parse_key_value_pair(AVDictionary **pm, const char **buf,
121                                 const char *key_val_sep, const char *pairs_sep,
122                                 int flags)
123 {
124     char *key = av_get_token(buf, key_val_sep);
125     char *val = NULL;
126     int ret;
127
128     if (key && *key && strspn(*buf, key_val_sep)) {
129         (*buf)++;
130         val = av_get_token(buf, pairs_sep);
131     }
132
133     if (key && *key && val && *val)
134         ret = av_dict_set(pm, key, val, flags);
135     else
136         ret = AVERROR(EINVAL);
137
138     av_freep(&key);
139     av_freep(&val);
140
141     return ret;
142 }
143
144 int av_dict_parse_string(AVDictionary **pm, const char *str,
145                          const char *key_val_sep, const char *pairs_sep,
146                          int flags)
147 {
148     int ret;
149
150     if (!str)
151         return 0;
152
153     /* ignore STRDUP flags */
154     flags &= ~(AV_DICT_DONT_STRDUP_KEY | AV_DICT_DONT_STRDUP_VAL);
155
156     while (*str) {
157         if ((ret = parse_key_value_pair(pm, &str, key_val_sep, pairs_sep, flags)) < 0)
158             return ret;
159
160         if (*str)
161             str++;
162     }
163
164     return 0;
165 }
166
167 void av_dict_free(AVDictionary **pm)
168 {
169     AVDictionary *m = *pm;
170
171     if (m) {
172         while (m->count--) {
173             av_free(m->elems[m->count].key);
174             av_free(m->elems[m->count].value);
175         }
176         av_free(m->elems);
177     }
178     av_freep(pm);
179 }
180
181 void av_dict_copy(AVDictionary **dst, const AVDictionary *src, int flags)
182 {
183     AVDictionaryEntry *t = NULL;
184
185     while ((t = av_dict_get(src, "", t, AV_DICT_IGNORE_SUFFIX)))
186         av_dict_set(dst, t->key, t->value, flags);
187 }