| Line | Branch | Exec | Source |
|---|---|---|---|
| 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 <inttypes.h> | ||
| 22 | #include <stdio.h> | ||
| 23 | #include <string.h> | ||
| 24 | |||
| 25 | #include "avassert.h" | ||
| 26 | #include "avstring.h" | ||
| 27 | #include "dict.h" | ||
| 28 | #include "error.h" | ||
| 29 | #include "mem.h" | ||
| 30 | #include "bprint.h" | ||
| 31 | |||
| 32 | struct AVDictionary { | ||
| 33 | int count; | ||
| 34 | AVDictionaryEntry *elems; | ||
| 35 | }; | ||
| 36 | |||
| 37 | 32677 | int av_dict_count(const AVDictionary *m) | |
| 38 | { | ||
| 39 |
2/2✓ Branch 0 taken 22937 times.
✓ Branch 1 taken 9740 times.
|
32677 | return m ? m->count : 0; |
| 40 | } | ||
| 41 | |||
| 42 | 6230763 | const AVDictionaryEntry *av_dict_iterate(const AVDictionary *m, | |
| 43 | const AVDictionaryEntry *prev) | ||
| 44 | { | ||
| 45 | 6230763 | int i = 0; | |
| 46 | |||
| 47 |
2/2✓ Branch 0 taken 2803849 times.
✓ Branch 1 taken 3426914 times.
|
6230763 | if (!m) |
| 48 | 2803849 | return NULL; | |
| 49 | |||
| 50 |
2/2✓ Branch 0 taken 2223262 times.
✓ Branch 1 taken 1203652 times.
|
3426914 | if (prev) |
| 51 | 2223262 | i = prev - m->elems + 1; | |
| 52 | |||
| 53 | av_assert2(i >= 0); | ||
| 54 |
2/2✓ Branch 0 taken 941549 times.
✓ Branch 1 taken 2485365 times.
|
3426914 | if (i >= m->count) |
| 55 | 941549 | return NULL; | |
| 56 | |||
| 57 | 2485365 | return &m->elems[i]; | |
| 58 | } | ||
| 59 | |||
| 60 | 2007560 | AVDictionaryEntry *av_dict_get(const AVDictionary *m, const char *key, | |
| 61 | const AVDictionaryEntry *prev, int flags) | ||
| 62 | { | ||
| 63 | 2007560 | const AVDictionaryEntry *entry = prev; | |
| 64 | unsigned int j; | ||
| 65 | |||
| 66 |
2/2✓ Branch 0 taken 1 times.
✓ Branch 1 taken 2007559 times.
|
2007560 | if (!key) |
| 67 | 1 | return NULL; | |
| 68 | |||
| 69 |
2/2✓ Branch 1 taken 1934148 times.
✓ Branch 2 taken 1745228 times.
|
3679376 | while ((entry = av_dict_iterate(m, entry))) { |
| 70 | 1934148 | const char *s = entry->key; | |
| 71 |
2/2✓ Branch 0 taken 224281 times.
✓ Branch 1 taken 1709867 times.
|
1934148 | if (flags & AV_DICT_MATCH_CASE) |
| 72 |
4/4✓ Branch 0 taken 268217 times.
✓ Branch 1 taken 213787 times.
✓ Branch 2 taken 257723 times.
✓ Branch 3 taken 10494 times.
|
482004 | for (j = 0; s[j] == key[j] && key[j]; j++) |
| 73 | ; | ||
| 74 | else | ||
| 75 |
4/4✓ Branch 0 taken 6668610 times.
✓ Branch 1 taken 1458272 times.
✓ Branch 2 taken 6417015 times.
✓ Branch 3 taken 251595 times.
|
8126882 | for (j = 0; av_toupper(s[j]) == av_toupper(key[j]) && key[j]; j++) |
| 76 | ; | ||
| 77 |
2/2✓ Branch 0 taken 1665308 times.
✓ Branch 1 taken 268840 times.
|
1934148 | if (key[j]) |
| 78 | 1665308 | continue; | |
| 79 |
4/4✓ Branch 0 taken 6751 times.
✓ Branch 1 taken 262089 times.
✓ Branch 2 taken 6509 times.
✓ Branch 3 taken 242 times.
|
268840 | if (s[j] && !(flags & AV_DICT_IGNORE_SUFFIX)) |
| 80 | 6509 | continue; | |
| 81 | 262331 | return (AVDictionaryEntry *)entry; | |
| 82 | } | ||
| 83 | 1745228 | return NULL; | |
| 84 | } | ||
| 85 | |||
| 86 | 1330412 | int av_dict_set(AVDictionary **pm, const char *key, const char *value, | |
| 87 | int flags) | ||
| 88 | { | ||
| 89 | 1330412 | AVDictionary *m = *pm; | |
| 90 | 1330412 | AVDictionaryEntry *tag = NULL; | |
| 91 | 1330412 | char *copy_key = NULL, *copy_value = NULL; | |
| 92 | int err; | ||
| 93 | |||
| 94 |
2/2✓ Branch 0 taken 65124 times.
✓ Branch 1 taken 1265288 times.
|
1330412 | if (flags & AV_DICT_DONT_STRDUP_VAL) |
| 95 | 65124 | copy_value = (void *)value; | |
| 96 |
2/2✓ Branch 0 taken 575806 times.
✓ Branch 1 taken 689482 times.
|
1265288 | else if (value) |
| 97 | 575806 | copy_value = av_strdup(value); | |
| 98 |
2/2✓ Branch 0 taken 4 times.
✓ Branch 1 taken 1330408 times.
|
1330412 | if (!key) { |
| 99 | 4 | err = AVERROR(EINVAL); | |
| 100 | 4 | goto err_out; | |
| 101 | } | ||
| 102 |
2/2✓ Branch 0 taken 34035 times.
✓ Branch 1 taken 1296373 times.
|
1330408 | if (flags & AV_DICT_DONT_STRDUP_KEY) |
| 103 | 34035 | copy_key = (void *)key; | |
| 104 | else | ||
| 105 | 1296373 | copy_key = av_strdup(key); | |
| 106 |
4/6✓ Branch 0 taken 1330408 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 640925 times.
✓ Branch 3 taken 689483 times.
✗ Branch 4 not taken.
✓ Branch 5 taken 640925 times.
|
1330408 | if (!copy_key || (value && !copy_value)) |
| 107 | ✗ | goto enomem; | |
| 108 | |||
| 109 |
2/2✓ Branch 0 taken 1217907 times.
✓ Branch 1 taken 112501 times.
|
1330408 | if (!(flags & AV_DICT_MULTIKEY)) { |
| 110 | 1217907 | tag = av_dict_get(m, key, NULL, flags); | |
| 111 |
2/2✓ Branch 0 taken 7507 times.
✓ Branch 1 taken 104994 times.
|
112501 | } else if (flags & AV_DICT_DEDUP) { |
| 112 |
2/2✓ Branch 1 taken 20 times.
✓ Branch 2 taken 7490 times.
|
7510 | while ((tag = av_dict_get(m, key, tag, flags))) { |
| 113 |
2/6✗ Branch 0 not taken.
✓ Branch 1 taken 20 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 20 times.
✗ Branch 5 not taken.
|
20 | if ((!value && !tag->value) || |
| 114 |
3/4✓ Branch 0 taken 20 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 17 times.
✓ Branch 3 taken 3 times.
|
20 | (value && tag->value && !strcmp(value, tag->value))) { |
| 115 | 17 | av_free(copy_key); | |
| 116 | 17 | av_free(copy_value); | |
| 117 | 17 | return 0; | |
| 118 | } | ||
| 119 | } | ||
| 120 | } | ||
| 121 |
2/2✓ Branch 0 taken 733239 times.
✓ Branch 1 taken 597152 times.
|
1330391 | if (!m) |
| 122 | 733239 | m = *pm = av_mallocz(sizeof(*m)); | |
| 123 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1330391 times.
|
1330391 | if (!m) |
| 124 | ✗ | goto enomem; | |
| 125 | |||
| 126 |
2/2✓ Branch 0 taken 164251 times.
✓ Branch 1 taken 1166140 times.
|
1330391 | if (tag) { |
| 127 |
2/2✓ Branch 0 taken 812 times.
✓ Branch 1 taken 163439 times.
|
164251 | if (flags & AV_DICT_DONT_OVERWRITE) { |
| 128 | 812 | av_free(copy_key); | |
| 129 | 812 | av_free(copy_value); | |
| 130 | 812 | return 0; | |
| 131 | } | ||
| 132 |
4/4✓ Branch 0 taken 38124 times.
✓ Branch 1 taken 125315 times.
✓ Branch 2 taken 16401 times.
✓ Branch 3 taken 21723 times.
|
163439 | if (copy_value && flags & AV_DICT_APPEND) { |
| 133 | 16401 | size_t oldlen = strlen(tag->value); | |
| 134 | 16401 | size_t new_part_len = strlen(copy_value); | |
| 135 | 16401 | size_t len = oldlen + new_part_len + 1; | |
| 136 | 16401 | char *newval = av_realloc(tag->value, len); | |
| 137 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 16401 times.
|
16401 | if (!newval) |
| 138 | ✗ | goto enomem; | |
| 139 | 16401 | memcpy(newval + oldlen, copy_value, new_part_len + 1); | |
| 140 | 16401 | av_freep(©_value); | |
| 141 | 16401 | copy_value = newval; | |
| 142 | } else | ||
| 143 | 147038 | av_free(tag->value); | |
| 144 | 163439 | av_free(tag->key); | |
| 145 | 163439 | *tag = m->elems[--m->count]; | |
| 146 |
2/2✓ Branch 0 taken 601972 times.
✓ Branch 1 taken 564168 times.
|
1166140 | } else if (copy_value) { |
| 147 | 601972 | AVDictionaryEntry *tmp = av_realloc_array(m->elems, | |
| 148 | 601972 | m->count + 1, sizeof(*m->elems)); | |
| 149 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 601972 times.
|
601972 | if (!tmp) |
| 150 | ✗ | goto enomem; | |
| 151 | 601972 | m->elems = tmp; | |
| 152 | } | ||
| 153 |
2/2✓ Branch 0 taken 640096 times.
✓ Branch 1 taken 689483 times.
|
1329579 | if (copy_value) { |
| 154 | 640096 | m->elems[m->count].key = copy_key; | |
| 155 | 640096 | m->elems[m->count].value = copy_value; | |
| 156 | 640096 | m->count++; | |
| 157 | } else { | ||
| 158 | 689483 | err = 0; | |
| 159 | 689483 | goto end; | |
| 160 | } | ||
| 161 | |||
| 162 | 640096 | return 0; | |
| 163 | |||
| 164 | ✗ | enomem: | |
| 165 | ✗ | err = AVERROR(ENOMEM); | |
| 166 | 4 | err_out: | |
| 167 | 4 | av_free(copy_value); | |
| 168 | 689487 | end: | |
| 169 |
4/4✓ Branch 0 taken 689483 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 518711 times.
✓ Branch 3 taken 170772 times.
|
689487 | if (m && !m->count) { |
| 170 | 518711 | av_freep(&m->elems); | |
| 171 | 518711 | av_freep(pm); | |
| 172 | } | ||
| 173 | 689487 | av_free(copy_key); | |
| 174 | 689487 | return err; | |
| 175 | } | ||
| 176 | |||
| 177 | 9476 | int av_dict_set_int(AVDictionary **pm, const char *key, int64_t value, | |
| 178 | int flags) | ||
| 179 | { | ||
| 180 | char valuestr[22]; | ||
| 181 | 9476 | snprintf(valuestr, sizeof(valuestr), "%"PRId64, value); | |
| 182 | 9476 | flags &= ~AV_DICT_DONT_STRDUP_VAL; | |
| 183 | 9476 | return av_dict_set(pm, key, valuestr, flags); | |
| 184 | } | ||
| 185 | |||
| 186 | 559 | static int parse_key_value_pair(AVDictionary **pm, const char **buf, | |
| 187 | const char *key_val_sep, const char *pairs_sep, | ||
| 188 | int flags) | ||
| 189 | { | ||
| 190 | 559 | char *key = av_get_token(buf, key_val_sep); | |
| 191 | 559 | char *val = NULL; | |
| 192 | int ret; | ||
| 193 | |||
| 194 |
3/6✓ Branch 0 taken 559 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 559 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 559 times.
✗ Branch 5 not taken.
|
559 | if (key && *key && strspn(*buf, key_val_sep)) { |
| 195 | 559 | (*buf)++; | |
| 196 | 559 | val = av_get_token(buf, pairs_sep); | |
| 197 | } | ||
| 198 | |||
| 199 |
4/8✓ Branch 0 taken 559 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 559 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 559 times.
✗ Branch 5 not taken.
✓ Branch 6 taken 559 times.
✗ Branch 7 not taken.
|
559 | if (key && *key && val && *val) |
| 200 | 559 | ret = av_dict_set(pm, key, val, flags); | |
| 201 | else | ||
| 202 | ✗ | ret = AVERROR(EINVAL); | |
| 203 | |||
| 204 | 559 | av_freep(&key); | |
| 205 | 559 | av_freep(&val); | |
| 206 | |||
| 207 | 559 | return ret; | |
| 208 | } | ||
| 209 | |||
| 210 | 276 | int av_dict_parse_string(AVDictionary **pm, const char *str, | |
| 211 | const char *key_val_sep, const char *pairs_sep, | ||
| 212 | int flags) | ||
| 213 | { | ||
| 214 | int ret; | ||
| 215 | |||
| 216 |
2/2✓ Branch 0 taken 7 times.
✓ Branch 1 taken 269 times.
|
276 | if (!str) |
| 217 | 7 | return 0; | |
| 218 | |||
| 219 | /* ignore STRDUP flags */ | ||
| 220 | 269 | flags &= ~(AV_DICT_DONT_STRDUP_KEY | AV_DICT_DONT_STRDUP_VAL); | |
| 221 | |||
| 222 |
2/2✓ Branch 0 taken 559 times.
✓ Branch 1 taken 269 times.
|
1097 | while (*str) { |
| 223 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 559 times.
|
559 | if ((ret = parse_key_value_pair(pm, &str, key_val_sep, pairs_sep, flags)) < 0) |
| 224 | ✗ | return ret; | |
| 225 | |||
| 226 |
2/2✓ Branch 0 taken 267 times.
✓ Branch 1 taken 292 times.
|
559 | if (*str) |
| 227 | 292 | str++; | |
| 228 | } | ||
| 229 | |||
| 230 | 269 | return 0; | |
| 231 | } | ||
| 232 | |||
| 233 | 11046537 | void av_dict_free(AVDictionary **pm) | |
| 234 | { | ||
| 235 | 11046537 | AVDictionary *m = *pm; | |
| 236 | |||
| 237 |
2/2✓ Branch 0 taken 214528 times.
✓ Branch 1 taken 10832009 times.
|
11046537 | if (m) { |
| 238 |
2/2✓ Branch 0 taken 476657 times.
✓ Branch 1 taken 214528 times.
|
691185 | while (m->count--) { |
| 239 | 476657 | av_freep(&m->elems[m->count].key); | |
| 240 | 476657 | av_freep(&m->elems[m->count].value); | |
| 241 | } | ||
| 242 | 214528 | av_freep(&m->elems); | |
| 243 | } | ||
| 244 | 11046537 | av_freep(pm); | |
| 245 | 11046537 | } | |
| 246 | |||
| 247 | 1588437 | int av_dict_copy(AVDictionary **dst, const AVDictionary *src, int flags) | |
| 248 | { | ||
| 249 | 1588437 | const AVDictionaryEntry *t = NULL; | |
| 250 | |||
| 251 |
2/2✓ Branch 1 taken 109214 times.
✓ Branch 2 taken 1588437 times.
|
1697651 | while ((t = av_dict_iterate(src, t))) { |
| 252 | 109214 | int ret = av_dict_set(dst, t->key, t->value, flags); | |
| 253 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 109214 times.
|
109214 | if (ret < 0) |
| 254 | ✗ | return ret; | |
| 255 | } | ||
| 256 | |||
| 257 | 1588437 | return 0; | |
| 258 | } | ||
| 259 | |||
| 260 | 4624 | int av_dict_get_string(const AVDictionary *m, char **buffer, | |
| 261 | const char key_val_sep, const char pairs_sep) | ||
| 262 | { | ||
| 263 | 4624 | const AVDictionaryEntry *t = NULL; | |
| 264 | AVBPrint bprint; | ||
| 265 | 4624 | int cnt = 0; | |
| 266 | 4624 | char special_chars[] = {pairs_sep, key_val_sep, '\0'}; | |
| 267 | |||
| 268 |
4/8✓ Branch 0 taken 4624 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 4624 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 4624 times.
✗ Branch 5 not taken.
✓ Branch 6 taken 4624 times.
✗ Branch 7 not taken.
|
4624 | if (!buffer || pairs_sep == '\0' || key_val_sep == '\0' || pairs_sep == key_val_sep || |
| 269 |
2/4✓ Branch 0 taken 4624 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 4624 times.
|
4624 | pairs_sep == '\\' || key_val_sep == '\\') |
| 270 | ✗ | return AVERROR(EINVAL); | |
| 271 | |||
| 272 |
2/2✓ Branch 1 taken 41 times.
✓ Branch 2 taken 4583 times.
|
4624 | if (!av_dict_count(m)) { |
| 273 | 41 | *buffer = av_strdup(""); | |
| 274 |
1/2✓ Branch 0 taken 41 times.
✗ Branch 1 not taken.
|
41 | return *buffer ? 0 : AVERROR(ENOMEM); |
| 275 | } | ||
| 276 | |||
| 277 | 4583 | av_bprint_init(&bprint, 64, AV_BPRINT_SIZE_UNLIMITED); | |
| 278 |
2/2✓ Branch 1 taken 4637 times.
✓ Branch 2 taken 4583 times.
|
9220 | while ((t = av_dict_iterate(m, t))) { |
| 279 |
2/2✓ Branch 0 taken 54 times.
✓ Branch 1 taken 4583 times.
|
4637 | if (cnt++) |
| 280 | 54 | av_bprint_append_data(&bprint, &pairs_sep, 1); | |
| 281 | 4637 | av_bprint_escape(&bprint, t->key, special_chars, AV_ESCAPE_MODE_BACKSLASH, 0); | |
| 282 | 4637 | av_bprint_append_data(&bprint, &key_val_sep, 1); | |
| 283 | 4637 | av_bprint_escape(&bprint, t->value, special_chars, AV_ESCAPE_MODE_BACKSLASH, 0); | |
| 284 | } | ||
| 285 | 4583 | return av_bprint_finalize(&bprint, buffer); | |
| 286 | } | ||
| 287 |