da2bf9
From cfa7b3d0a1900b725e5489dfec2c39abb8569c29 Mon Sep 17 00:00:00 2001
da2bf9
From: Yu Watanabe <watanabe.yu+github@gmail.com>
da2bf9
Date: Wed, 28 Nov 2018 14:10:04 +0900
da2bf9
Subject: [PATCH] hash-funcs: introduce macro to create typesafe hash_ops
da2bf9
da2bf9
(cherry picked from commit d1005d1c0050d3dc3a24c054bac4c4916073cbba)
da2bf9
da2bf9
Resolves: #2037807
da2bf9
---
da2bf9
 src/basic/hash-funcs.h | 14 ++++++++++++++
da2bf9
 1 file changed, 14 insertions(+)
da2bf9
da2bf9
diff --git a/src/basic/hash-funcs.h b/src/basic/hash-funcs.h
da2bf9
index 5e5989f021..2ff687e5f9 100644
da2bf9
--- a/src/basic/hash-funcs.h
da2bf9
+++ b/src/basic/hash-funcs.h
da2bf9
@@ -13,6 +13,20 @@ struct hash_ops {
da2bf9
         compare_func_t compare;
da2bf9
 };
da2bf9
 
da2bf9
+#define _DEFINE_HASH_OPS(uq, name, type, hash_func, compare_func, scope) \
da2bf9
+        _unused_ static void (* UNIQ_T(static_hash_wrapper, uq))(const type *, struct siphash *) = hash_func; \
da2bf9
+        _unused_ static int (* UNIQ_T(static_compare_wrapper, uq))(const type *, const type *) = compare_func; \
da2bf9
+        scope const struct hash_ops name = {                            \
da2bf9
+                .hash = (hash_func_t) hash_func,                        \
da2bf9
+                .compare = (compare_func_t) compare_func,               \
da2bf9
+        }
da2bf9
+
da2bf9
+#define DEFINE_HASH_OPS(name, type, hash_func, compare_func)            \
da2bf9
+        _DEFINE_HASH_OPS(UNIQ, name, type, hash_func, compare_func,)
da2bf9
+
da2bf9
+#define DEFINE_PRIVATE_HASH_OPS(name, type, hash_func, compare_func)    \
da2bf9
+        _DEFINE_HASH_OPS(UNIQ, name, type, hash_func, compare_func, static)
da2bf9
+
da2bf9
 void string_hash_func(const void *p, struct siphash *state);
da2bf9
 int string_compare_func(const void *a, const void *b) _pure_;
da2bf9
 extern const struct hash_ops string_hash_ops;