kvlist.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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.h"
  21. struct kvlist {
  22. struct avl_tree avl;
  23. int (*get_len)(struct kvlist *kv, const void *data);
  24. };
  25. struct kvlist_node {
  26. struct avl_node avl;
  27. char data[0] __attribute__((aligned(4)));
  28. };
  29. #define __ptr_to_kv(_ptr) container_of(((char *) (_ptr)), struct kvlist_node, data[0])
  30. #define __avl_list_to_kv(_l) container_of(_l, struct kvlist_node, avl.list)
  31. #define kvlist_for_each(kv, name, value) \
  32. for (value = (void *) __avl_list_to_kv((kv)->avl.list_head.next)->data, \
  33. name = (const char *) __ptr_to_kv(value)->avl.key, (void) name; \
  34. &__ptr_to_kv(value)->avl.list != &(kv)->avl.list_head; \
  35. value = (void *) (__avl_list_to_kv(__ptr_to_kv(value)->avl.list.next))->data, \
  36. name = (const char *) __ptr_to_kv(value)->avl.key)
  37. void kvlist_init(struct kvlist *kv, int (*get_len)(struct kvlist *kv, const void *data));
  38. void kvlist_free(struct kvlist *kv);
  39. void *kvlist_get(struct kvlist *kv, const char *name);
  40. bool kvlist_set(struct kvlist *kv, const char *name, const void *data);
  41. bool kvlist_delete(struct kvlist *kv, const char *name);
  42. int kvlist_strlen(struct kvlist *kv, const void *data);
  43. int kvlist_blob_len(struct kvlist *kv, const void *data);
  44. #endif