]> git.sesse.net Git - ffmpeg/blob - libavutil/dict.c
Merge commit '9d4da474f5f40b019cb4cb931c8499deee586174'
[ffmpeg] / libavutil / dict.c
1 /*
2  * copyright (c) 2009 Michael Niedermayer
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg 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  * FFmpeg 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 FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 #include <ctype.h>
22 #include <string.h>
23
24 #include "avstring.h"
25 #include "dict.h"
26 #include "internal.h"
27 #include "mem.h"
28
29 struct AVDictionary {
30     int count;
31     AVDictionaryEntry *elems;
32 };
33
34 int av_dict_count(const AVDictionary *m)
35 {
36     return m ? m->count : 0;
37 }
38
39 AVDictionaryEntry *
40 av_dict_get(AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags)
41 {
42     unsigned int i, j;
43
44     if(!m)
45         return NULL;
46
47     if(prev) i= prev - m->elems + 1;
48     else     i= 0;
49
50     for(; i<m->count; i++){
51         const char *s= m->elems[i].key;
52         if(flags & AV_DICT_MATCH_CASE) for(j=0;         s[j]  ==         key[j]  && key[j]; j++);
53         else                               for(j=0; toupper(s[j]) == toupper(key[j]) && key[j]; j++);
54         if(key[j])
55             continue;
56         if(s[j] && !(flags & AV_DICT_IGNORE_SUFFIX))
57             continue;
58         return &m->elems[i];
59     }
60     return NULL;
61 }
62
63 int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
64 {
65     AVDictionary      *m = *pm;
66     AVDictionaryEntry *tag = av_dict_get(m, key, NULL, flags);
67     char *oldval = NULL;
68
69     if(!m)
70         m = *pm = av_mallocz(sizeof(*m));
71
72     if(tag) {
73         if (flags & AV_DICT_DONT_OVERWRITE)
74             return 0;
75         if (flags & AV_DICT_APPEND)
76             oldval = tag->value;
77         else
78             av_free(tag->value);
79         av_free(tag->key);
80         *tag = m->elems[--m->count];
81     } else {
82         AVDictionaryEntry *tmp = av_realloc(m->elems, (m->count+1) * sizeof(*m->elems));
83         if(tmp) {
84             m->elems = tmp;
85         } else
86             return AVERROR(ENOMEM);
87     }
88     if (value) {
89         if (flags & AV_DICT_DONT_STRDUP_KEY) {
90             m->elems[m->count].key   = (char*)(intptr_t)key;
91         } else
92         m->elems[m->count].key  = av_strdup(key  );
93         if (flags & AV_DICT_DONT_STRDUP_VAL) {
94             m->elems[m->count].value = (char*)(intptr_t)value;
95         } else if (oldval && flags & AV_DICT_APPEND) {
96             int len = strlen(oldval) + strlen(value) + 1;
97             char *newval = av_mallocz(len);
98             if (!newval)
99                 return AVERROR(ENOMEM);
100             av_strlcat(newval, oldval, len);
101             av_freep(&oldval);
102             av_strlcat(newval, value, len);
103             m->elems[m->count].value = newval;
104         } else
105             m->elems[m->count].value = av_strdup(value);
106         m->count++;
107     }
108     if (!m->count) {
109         av_free(m->elems);
110         av_freep(pm);
111     }
112
113     return 0;
114 }
115
116 static int parse_key_value_pair(AVDictionary **pm, const char **buf,
117                                 const char *key_val_sep, const char *pairs_sep,
118                                 int flags)
119 {
120     char *key = av_get_token(buf, key_val_sep);
121     char *val = NULL;
122     int ret;
123
124     if (key && *key && strspn(*buf, key_val_sep)) {
125         (*buf)++;
126         val = av_get_token(buf, pairs_sep);
127     }
128
129     if (key && *key && val && *val)
130         ret = av_dict_set(pm, key, val, flags);
131     else
132         ret = AVERROR(EINVAL);
133
134     av_freep(&key);
135     av_freep(&val);
136
137     return ret;
138 }
139
140 int av_dict_parse_string(AVDictionary **pm, const char *str,
141                          const char *key_val_sep, const char *pairs_sep,
142                          int flags)
143 {
144     int ret;
145
146     if (!str)
147         return 0;
148
149     /* ignore STRDUP flags */
150     flags &= ~(AV_DICT_DONT_STRDUP_KEY | AV_DICT_DONT_STRDUP_VAL);
151
152     while (*str) {
153         if ((ret = parse_key_value_pair(pm, &str, key_val_sep, pairs_sep, flags)) < 0)
154             return ret;
155
156         if (*str)
157             str++;
158     }
159
160     return 0;
161 }
162
163 void av_dict_free(AVDictionary **pm)
164 {
165     AVDictionary *m = *pm;
166
167     if (m) {
168         while(m->count--) {
169             av_free(m->elems[m->count].key);
170             av_free(m->elems[m->count].value);
171         }
172         av_free(m->elems);
173     }
174     av_freep(pm);
175 }
176
177 void av_dict_copy(AVDictionary **dst, AVDictionary *src, int flags)
178 {
179     AVDictionaryEntry *t = NULL;
180
181     while ((t = av_dict_get(src, "", t, AV_DICT_IGNORE_SUFFIX)))
182         av_dict_set(dst, t->key, t->value, flags);
183 }