commit db7f8d6: [Minor] Add methods to get LRU hash sizes

Vsevolod Stakhov vsevolod at highsecure.ru
Fri Apr 5 15:21:03 UTC 2019


Author: Vsevolod Stakhov
Date: 2019-04-05 16:13:41 +0100
URL: https://github.com/rspamd/rspamd/commit/db7f8d68e4fa77df5e09d94b7bb6587deb838852

[Minor] Add methods to get LRU hash sizes

---
 src/libutil/hash.c | 17 +++++++++++++++++
 src/libutil/hash.h | 12 ++++++++++++
 2 files changed, 29 insertions(+)

diff --git a/src/libutil/hash.c b/src/libutil/hash.c
index b42dc6c51..d4fdfea46 100644
--- a/src/libutil/hash.c
+++ b/src/libutil/hash.c
@@ -697,4 +697,21 @@ rspamd_lru_hash_foreach (rspamd_lru_hash_t *h, int it, gpointer *k,
 	}
 
 	return i;
+}
+
+
+guint
+rspamd_lru_hash_size (rspamd_lru_hash_t *hash)
+{
+	return kh_size (hash);
+}
+
+/**
+ * Returns hash capacity
+ * @param hash hash object
+ */
+guint
+rspamd_lru_hash_capacity (rspamd_lru_hash_t *hash)
+{
+	return hash->n_buckets;
 }
\ No newline at end of file
diff --git a/src/libutil/hash.h b/src/libutil/hash.h
index f983a0be8..bae3cacfa 100644
--- a/src/libutil/hash.h
+++ b/src/libutil/hash.h
@@ -89,4 +89,16 @@ void rspamd_lru_hash_destroy (rspamd_lru_hash_t *hash);
  */
 int rspamd_lru_hash_foreach (rspamd_lru_hash_t *hash, int it, gpointer *k,
 		gpointer *v);
+
+/**
+ * Returns number of elements in a hash
+ * @param hash hash object
+ */
+guint rspamd_lru_hash_size (rspamd_lru_hash_t *hash);
+
+/**
+ * Returns hash capacity
+ * @param hash hash object
+ */
+guint rspamd_lru_hash_capacity (rspamd_lru_hash_t *hash);
 #endif


More information about the Commits mailing list