]> git.sesse.net Git - ffmpeg/blob - libavutil/dict.c
lavu: add AV_FRAME_DATA_DOWNMIX_INFO side data type.
[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 *
39 av_dict_get(AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags)
40 {
41     unsigned int i, j;
42
43     if(!m)
44         return NULL;
45
46     if(prev) i= prev - m->elems + 1;
47     else     i= 0;
48
49     for(; i<m->count; i++){
50         const char *s= m->elems[i].key;
51         if(flags & AV_DICT_MATCH_CASE) for(j=0;         s[j]  ==         key[j]  && key[j]; j++);
52         else                               for(j=0; av_toupper(s[j]) == av_toupper(key[j]) && key[j]; j++);
53         if(key[j])
54             continue;
55         if(s[j] && !(flags & AV_DICT_IGNORE_SUFFIX))
56             continue;
57         return &m->elems[i];
58     }
59     return NULL;
60 }
61
62 int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
63 {
64     AVDictionary      *m = *pm;
65     AVDictionaryEntry *tag = av_dict_get(m, key, NULL, flags);
66     char *oldval = NULL;
67
68     if(!m)
69         m = *pm = av_mallocz(sizeof(*m));
70
71     if(tag) {
72         if (flags & AV_DICT_DONT_OVERWRITE)
73             return 0;
74         if (flags & AV_DICT_APPEND)
75             oldval = tag->value;
76         else
77             av_free(tag->value);
78         av_free(tag->key);
79         *tag = m->elems[--m->count];
80     } else {
81         AVDictionaryEntry *tmp = av_realloc(m->elems, (m->count+1) * sizeof(*m->elems));
82         if(tmp) {
83             m->elems = tmp;
84         } else
85             return AVERROR(ENOMEM);
86     }
87     if (value) {
88         if (flags & AV_DICT_DONT_STRDUP_KEY) {
89             m->elems[m->count].key  = key;
90         } else
91         m->elems[m->count].key  = av_strdup(key  );
92         if (flags & AV_DICT_DONT_STRDUP_VAL) {
93             m->elems[m->count].value = value;
94         } else if (oldval && flags & AV_DICT_APPEND) {
95             int len = strlen(oldval) + strlen(value) + 1;
96             if (!(oldval = av_realloc(oldval, len)))
97                 return AVERROR(ENOMEM);
98             av_strlcat(oldval, value, len);
99             m->elems[m->count].value = oldval;
100         } else
101             m->elems[m->count].value = av_strdup(value);
102         m->count++;
103     }
104     if (!m->count) {
105         av_free(m->elems);
106         av_freep(pm);
107     }
108
109     return 0;
110 }
111
112 static int parse_key_value_pair(AVDictionary **pm, const char **buf,
113                                 const char *key_val_sep, const char *pairs_sep,
114                                 int flags)
115 {
116     char *key = av_get_token(buf, key_val_sep);
117     char *val = NULL;
118     int ret;
119
120     if (key && *key && strspn(*buf, key_val_sep)) {
121         (*buf)++;
122         val = av_get_token(buf, pairs_sep);
123     }
124
125     if (key && *key && val && *val)
126         ret = av_dict_set(pm, key, val, flags);
127     else
128         ret = AVERROR(EINVAL);
129
130     av_freep(&key);
131     av_freep(&val);
132
133     return ret;
134 }
135
136 int av_dict_parse_string(AVDictionary **pm, const char *str,
137                          const char *key_val_sep, const char *pairs_sep,
138                          int flags)
139 {
140     int ret;
141
142     if (!str)
143         return 0;
144
145     /* ignore STRDUP flags */
146     flags &= ~(AV_DICT_DONT_STRDUP_KEY | AV_DICT_DONT_STRDUP_VAL);
147
148     while (*str) {
149         if ((ret = parse_key_value_pair(pm, &str, key_val_sep, pairs_sep, flags)) < 0)
150             return ret;
151
152         if (*str)
153             str++;
154     }
155
156     return 0;
157 }
158
159 void av_dict_free(AVDictionary **pm)
160 {
161     AVDictionary *m = *pm;
162
163     if (m) {
164         while(m->count--) {
165             av_free(m->elems[m->count].key);
166             av_free(m->elems[m->count].value);
167         }
168         av_free(m->elems);
169     }
170     av_freep(pm);
171 }
172
173 void av_dict_copy(AVDictionary **dst, AVDictionary *src, int flags)
174 {
175     AVDictionaryEntry *t = NULL;
176
177     while ((t = av_dict_get(src, "", t, AV_DICT_IGNORE_SUFFIX)))
178         av_dict_set(dst, t->key, t->value, flags);
179 }