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.

184 lines
4.8KB

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