dict.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. /*
  2. *
  3. * This file is part of FFmpeg.
  4. *
  5. * FFmpeg is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2.1 of the License, or (at your option) any later version.
  9. *
  10. * FFmpeg is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with FFmpeg; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  18. */
  19. /**
  20. * @file
  21. * Public dictionary API.
  22. * @deprecated
  23. * AVDictionary is provided for compatibility with libav. It is both in
  24. * implementation as well as API inefficient. It does not scale and is
  25. * extremely slow with large dictionaries.
  26. * It is recommended that new code uses our tree container from tree.c/h
  27. * where applicable, which uses AVL trees to achieve O(log n) performance.
  28. */
  29. #ifndef AVUTIL_DICT_H
  30. #define AVUTIL_DICT_H
  31. #include "version.h"
  32. /**
  33. * @addtogroup lavu_dict AVDictionary
  34. * @ingroup lavu_data
  35. *
  36. * @brief Simple key:value store
  37. *
  38. * @{
  39. * Dictionaries are used for storing key:value pairs. To create
  40. * an AVDictionary, simply pass an address of a NULL pointer to
  41. * av_dict_set(). NULL can be used as an empty dictionary wherever
  42. * a pointer to an AVDictionary is required.
  43. * Use av_dict_get() to retrieve an entry or iterate over all
  44. * entries and finally av_dict_free() to free the dictionary
  45. * and all its contents.
  46. *
  47. @code
  48. AVDictionary *d = NULL; // "create" an empty dictionary
  49. AVDictionaryEntry *t = NULL;
  50. av_dict_set(&d, "foo", "bar", 0); // add an entry
  51. char *k = av_strdup("key"); // if your strings are already allocated,
  52. char *v = av_strdup("value"); // you can avoid copying them like this
  53. av_dict_set(&d, k, v, AV_DICT_DONT_STRDUP_KEY | AV_DICT_DONT_STRDUP_VAL);
  54. while (t = av_dict_get(d, "", t, AV_DICT_IGNORE_SUFFIX)) {
  55. <....> // iterate over all entries in d
  56. }
  57. av_dict_free(&d);
  58. @endcode
  59. *
  60. */
  61. #define AV_DICT_MATCH_CASE 1 /**< Only get an entry with exact-case key match. Only relevant in av_dict_get(). */
  62. #define AV_DICT_IGNORE_SUFFIX 2 /**< Return first entry in a dictionary whose first part corresponds to the search key,
  63. ignoring the suffix of the found key string. Only relevant in av_dict_get(). */
  64. #define AV_DICT_DONT_STRDUP_KEY 4 /**< Take ownership of a key that's been
  65. allocated with av_malloc() or another memory allocation function. */
  66. #define AV_DICT_DONT_STRDUP_VAL 8 /**< Take ownership of a value that's been
  67. allocated with av_malloc() or another memory allocation function. */
  68. #define AV_DICT_DONT_OVERWRITE 16 ///< Don't overwrite existing entries.
  69. #define AV_DICT_APPEND 32 /**< If the entry already exists, append to it. Note that no
  70. delimiter is added, the strings are simply concatenated. */
  71. typedef struct AVDictionaryEntry {
  72. char *key;
  73. char *value;
  74. } AVDictionaryEntry;
  75. typedef struct AVDictionary AVDictionary;
  76. /**
  77. * Get a dictionary entry with matching key.
  78. *
  79. * The returned entry key or value must not be changed, or it will
  80. * cause undefined behavior.
  81. *
  82. * To iterate through all the dictionary entries, you can set the matching key
  83. * to the null string "" and set the AV_DICT_IGNORE_SUFFIX flag.
  84. *
  85. * @param prev Set to the previous matching element to find the next.
  86. * If set to NULL the first matching element is returned.
  87. * @param key matching key
  88. * @param flags a collection of AV_DICT_* flags controlling how the entry is retrieved
  89. * @return found entry or NULL in case no matching entry was found in the dictionary
  90. */
  91. AVDictionaryEntry *av_dict_get(FF_CONST_AVUTIL53 AVDictionary *m, const char *key,
  92. const AVDictionaryEntry *prev, int flags);
  93. /**
  94. * Get number of entries in dictionary.
  95. *
  96. * @param m dictionary
  97. * @return number of entries in dictionary
  98. */
  99. int av_dict_count(const AVDictionary *m);
  100. /**
  101. * Set the given entry in *pm, overwriting an existing entry.
  102. *
  103. * @param pm pointer to a pointer to a dictionary struct. If *pm is NULL
  104. * a dictionary struct is allocated and put in *pm.
  105. * @param key entry key to add to *pm (will be av_strduped depending on flags)
  106. * @param value entry value to add to *pm (will be av_strduped depending on flags).
  107. * Passing a NULL value will cause an existing entry to be deleted.
  108. * @return >= 0 on success otherwise an error code <0
  109. */
  110. int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags);
  111. /**
  112. * Parse the key/value pairs list and add the parsed entries to a dictionary.
  113. *
  114. * In case of failure, all the successfully set entries are stored in
  115. * *pm. You may need to manually free the created dictionary.
  116. *
  117. * @param key_val_sep a 0-terminated list of characters used to separate
  118. * key from value
  119. * @param pairs_sep a 0-terminated list of characters used to separate
  120. * two pairs from each other
  121. * @param flags flags to use when adding to dictionary.
  122. * AV_DICT_DONT_STRDUP_KEY and AV_DICT_DONT_STRDUP_VAL
  123. * are ignored since the key/value tokens will always
  124. * be duplicated.
  125. * @return 0 on success, negative AVERROR code on failure
  126. */
  127. int av_dict_parse_string(AVDictionary **pm, const char *str,
  128. const char *key_val_sep, const char *pairs_sep,
  129. int flags);
  130. /**
  131. * Copy entries from one AVDictionary struct into another.
  132. * @param dst pointer to a pointer to a AVDictionary struct. If *dst is NULL,
  133. * this function will allocate a struct for you and put it in *dst
  134. * @param src pointer to source AVDictionary struct
  135. * @param flags flags to use when setting entries in *dst
  136. * @note metadata is read using the AV_DICT_IGNORE_SUFFIX flag
  137. */
  138. void av_dict_copy(AVDictionary **dst, FF_CONST_AVUTIL53 AVDictionary *src, int flags);
  139. /**
  140. * Free all the memory allocated for an AVDictionary struct
  141. * and all keys and values.
  142. */
  143. void av_dict_free(AVDictionary **m);
  144. /**
  145. * @}
  146. */
  147. #endif /* AVUTIL_DICT_H */