dict.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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 <strings.h>
  21. #include "avstring.h"
  22. #include "dict.h"
  23. #include "internal.h"
  24. #include "mem.h"
  25. AVDictionaryEntry *
  26. av_dict_get(AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags)
  27. {
  28. unsigned int i, j;
  29. if(!m)
  30. return NULL;
  31. if(prev) i= prev - m->elems + 1;
  32. else i= 0;
  33. for(; i<m->count; i++){
  34. const char *s= m->elems[i].key;
  35. if(flags & AV_DICT_MATCH_CASE) for(j=0; s[j] == key[j] && key[j]; j++);
  36. else for(j=0; toupper(s[j]) == toupper(key[j]) && key[j]; j++);
  37. if(key[j])
  38. continue;
  39. if(s[j] && !(flags & AV_DICT_IGNORE_SUFFIX))
  40. continue;
  41. return &m->elems[i];
  42. }
  43. return NULL;
  44. }
  45. int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
  46. {
  47. AVDictionary *m = *pm;
  48. AVDictionaryEntry *tag = av_dict_get(m, key, NULL, flags);
  49. char *oldval = NULL;
  50. if(!m)
  51. m = *pm = av_mallocz(sizeof(*m));
  52. if(tag) {
  53. if (flags & AV_DICT_DONT_OVERWRITE)
  54. return 0;
  55. if (flags & AV_DICT_APPEND)
  56. oldval = tag->value;
  57. else
  58. av_free(tag->value);
  59. av_free(tag->key);
  60. *tag = m->elems[--m->count];
  61. } else {
  62. AVDictionaryEntry *tmp = av_realloc(m->elems, (m->count+1) * sizeof(*m->elems));
  63. if(tmp) {
  64. m->elems = tmp;
  65. } else
  66. return AVERROR(ENOMEM);
  67. }
  68. if (value) {
  69. if (flags & AV_DICT_DONT_STRDUP_KEY) {
  70. m->elems[m->count].key = key;
  71. } else
  72. m->elems[m->count].key = av_strdup(key );
  73. if (flags & AV_DICT_DONT_STRDUP_VAL) {
  74. m->elems[m->count].value = value;
  75. } else if (oldval && flags & AV_DICT_APPEND) {
  76. int len = strlen(oldval) + strlen(value) + 1;
  77. if (!(oldval = av_realloc(oldval, len)))
  78. return AVERROR(ENOMEM);
  79. av_strlcat(oldval, value, len);
  80. m->elems[m->count].value = oldval;
  81. } else
  82. m->elems[m->count].value = av_strdup(value);
  83. m->count++;
  84. }
  85. if (!m->count) {
  86. av_free(m->elems);
  87. av_freep(pm);
  88. }
  89. return 0;
  90. }
  91. void av_dict_free(AVDictionary **pm)
  92. {
  93. AVDictionary *m = *pm;
  94. if (m) {
  95. while(m->count--) {
  96. av_free(m->elems[m->count].key);
  97. av_free(m->elems[m->count].value);
  98. }
  99. av_free(m->elems);
  100. }
  101. av_freep(pm);
  102. }
  103. void av_dict_copy(AVDictionary **dst, AVDictionary *src, int flags)
  104. {
  105. AVDictionaryEntry *t = NULL;
  106. while ((t = av_dict_get(src, "", t, AV_DICT_IGNORE_SUFFIX)))
  107. av_dict_set(dst, t->key, t->value, flags);
  108. }