You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

191 lines
4.9KB

  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. #include <string.h>
  21. #include "avstring.h"
  22. #include "dict.h"
  23. #include "internal.h"
  24. #include "mem.h"
  25. struct AVDictionary {
  26. int count;
  27. AVDictionaryEntry *elems;
  28. };
  29. int av_dict_count(const AVDictionary *m)
  30. {
  31. return m ? m->count : 0;
  32. }
  33. AVDictionaryEntry *av_dict_get(FF_CONST_AVUTIL53 AVDictionary *m, const char *key,
  34. const AVDictionaryEntry *prev, int flags)
  35. {
  36. unsigned int i, j;
  37. if (!m)
  38. return NULL;
  39. if (prev)
  40. i = prev - m->elems + 1;
  41. else
  42. i = 0;
  43. for (; i < m->count; i++) {
  44. const char *s = m->elems[i].key;
  45. if (flags & AV_DICT_MATCH_CASE)
  46. for (j = 0; s[j] == key[j] && key[j]; j++)
  47. ;
  48. else
  49. for (j = 0; av_toupper(s[j]) == av_toupper(key[j]) && key[j]; j++)
  50. ;
  51. if (key[j])
  52. continue;
  53. if (s[j] && !(flags & AV_DICT_IGNORE_SUFFIX))
  54. continue;
  55. return &m->elems[i];
  56. }
  57. return NULL;
  58. }
  59. int av_dict_set(AVDictionary **pm, const char *key, const char *value,
  60. int flags)
  61. {
  62. AVDictionary *m = *pm;
  63. AVDictionaryEntry *tag = av_dict_get(m, key, NULL, flags);
  64. char *oldval = NULL;
  65. if (!m)
  66. m = *pm = av_mallocz(sizeof(*m));
  67. if (tag) {
  68. if (flags & AV_DICT_DONT_OVERWRITE)
  69. return 0;
  70. if (flags & AV_DICT_APPEND)
  71. oldval = tag->value;
  72. else
  73. av_free(tag->value);
  74. av_free(tag->key);
  75. *tag = m->elems[--m->count];
  76. } else {
  77. AVDictionaryEntry *tmp = av_realloc(m->elems,
  78. (m->count + 1) * sizeof(*m->elems));
  79. if (tmp)
  80. m->elems = tmp;
  81. else
  82. return AVERROR(ENOMEM);
  83. }
  84. if (value) {
  85. if (flags & AV_DICT_DONT_STRDUP_KEY)
  86. m->elems[m->count].key = (char*)(intptr_t)key;
  87. else
  88. m->elems[m->count].key = av_strdup(key);
  89. if (flags & AV_DICT_DONT_STRDUP_VAL) {
  90. m->elems[m->count].value = (char*)(intptr_t)value;
  91. } else if (oldval && flags & AV_DICT_APPEND) {
  92. int len = strlen(oldval) + strlen(value) + 1;
  93. char *newval = av_mallocz(len);
  94. if (!newval)
  95. return AVERROR(ENOMEM);
  96. av_strlcat(newval, oldval, len);
  97. av_freep(&oldval);
  98. av_strlcat(newval, value, len);
  99. m->elems[m->count].value = newval;
  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. return 0;
  109. }
  110. static int parse_key_value_pair(AVDictionary **pm, const char **buf,
  111. const char *key_val_sep, const char *pairs_sep,
  112. int flags)
  113. {
  114. char *key = av_get_token(buf, key_val_sep);
  115. char *val = NULL;
  116. int ret;
  117. if (key && *key && strspn(*buf, key_val_sep)) {
  118. (*buf)++;
  119. val = av_get_token(buf, pairs_sep);
  120. }
  121. if (key && *key && val && *val)
  122. ret = av_dict_set(pm, key, val, flags);
  123. else
  124. ret = AVERROR(EINVAL);
  125. av_freep(&key);
  126. av_freep(&val);
  127. return ret;
  128. }
  129. int av_dict_parse_string(AVDictionary **pm, const char *str,
  130. const char *key_val_sep, const char *pairs_sep,
  131. int flags)
  132. {
  133. int ret;
  134. if (!str)
  135. return 0;
  136. /* ignore STRDUP flags */
  137. flags &= ~(AV_DICT_DONT_STRDUP_KEY | AV_DICT_DONT_STRDUP_VAL);
  138. while (*str) {
  139. if ((ret = parse_key_value_pair(pm, &str, key_val_sep, pairs_sep, flags)) < 0)
  140. return ret;
  141. if (*str)
  142. str++;
  143. }
  144. return 0;
  145. }
  146. void av_dict_free(AVDictionary **pm)
  147. {
  148. AVDictionary *m = *pm;
  149. if (m) {
  150. while (m->count--) {
  151. av_free(m->elems[m->count].key);
  152. av_free(m->elems[m->count].value);
  153. }
  154. av_free(m->elems);
  155. }
  156. av_freep(pm);
  157. }
  158. void av_dict_copy(AVDictionary **dst, FF_CONST_AVUTIL53 AVDictionary *src, int flags)
  159. {
  160. AVDictionaryEntry *t = NULL;
  161. while ((t = av_dict_get(src, "", t, AV_DICT_IGNORE_SUFFIX)))
  162. av_dict_set(dst, t->key, t->value, flags);
  163. }