kvlist.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * kvlist - simple key/value store
  3. *
  4. * Copyright (C) 2014 Felix Fietkau <nbd@openwrt.org>
  5. *
  6. * Permission to use, copy, modify, and/or distribute this software for any
  7. * purpose with or without fee is hereby granted, provided that the above
  8. * copyright notice and this permission notice appear in all copies.
  9. *
  10. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  11. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  12. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  13. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  14. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  15. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  16. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. #ifndef __LIBUBOX_KVLIST_H
  19. #define __LIBUBOX_KVLIST_H
  20. #include "avl-cmp.h"
  21. #include "avl.h"
  22. struct kvlist {
  23. struct avl_tree avl;
  24. int (*get_len)(struct kvlist *kv, const void *data);
  25. };
  26. struct kvlist_node {
  27. struct avl_node avl;
  28. char data[0] __attribute__((aligned(4)));
  29. };
  30. #define KVLIST_INIT(_name, _get_len) \
  31. { \
  32. .avl = AVL_TREE_INIT(_name.avl, avl_strcmp, false, NULL), \
  33. .get_len = _get_len \
  34. }
  35. #define KVLIST(_name, _get_len) \
  36. struct kvlist _name = KVLIST_INIT(_name, _get_len)
  37. #define __ptr_to_kv(_ptr) container_of(((char *) (_ptr)), struct kvlist_node, data[0])
  38. #define __avl_list_to_kv(_l) container_of(_l, struct kvlist_node, avl.list)
  39. #define kvlist_for_each(kv, name, value) \
  40. for (value = (void *) __avl_list_to_kv((kv)->avl.list_head.next)->data, \
  41. name = (const char *) __ptr_to_kv(value)->avl.key, (void) name; \
  42. &__ptr_to_kv(value)->avl.list != &(kv)->avl.list_head; \
  43. value = (void *) (__avl_list_to_kv(__ptr_to_kv(value)->avl.list.next))->data, \
  44. name = (const char *) __ptr_to_kv(value)->avl.key)
  45. void kvlist_init(struct kvlist *kv, int (*get_len)(struct kvlist *kv, const void *data));
  46. void kvlist_free(struct kvlist *kv);
  47. void *kvlist_get(struct kvlist *kv, const char *name);
  48. bool kvlist_set(struct kvlist *kv, const char *name, const void *data);
  49. bool kvlist_delete(struct kvlist *kv, const char *name);
  50. int kvlist_strlen(struct kvlist *kv, const void *data);
  51. int kvlist_blob_len(struct kvlist *kv, const void *data);
  52. #endif