gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnunet] branch master updated: cleanup


From: gnunet
Subject: [gnunet] branch master updated: cleanup
Date: Sat, 03 Apr 2021 07:49:48 +0200

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository gnunet.

The following commit(s) were added to refs/heads/master by this push:
     new 13be4dfd6 cleanup
13be4dfd6 is described below

commit 13be4dfd696492007a0ae776d96757d17f62cfd4
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Sat Apr 3 07:47:54 2021 +0200

    cleanup
---
 src/setu/ibf.c | 68 ++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 42 insertions(+), 26 deletions(-)

diff --git a/src/setu/ibf.c b/src/setu/ibf.c
index 79b4f28db..1beba9065 100644
--- a/src/setu/ibf.c
+++ b/src/setu/ibf.c
@@ -20,7 +20,7 @@
 
 /**
  * @file set/ibf.c
- * @brief implementation of the invertible bloom filter
+ * @brief implementation of the invertible Bloom filter
  * @author Florian Dold
  */
 
@@ -58,12 +58,11 @@ ibf_hashcode_from_key (struct IBF_Key key,
                        struct GNUNET_HashCode *dst)
 {
   struct IBF_Key *p;
-  unsigned int i;
   const unsigned int keys_per_hashcode = sizeof(struct GNUNET_HashCode)
                                          / sizeof(struct IBF_Key);
 
   p = (struct IBF_Key *) dst;
-  for (i = 0; i < keys_per_hashcode; i++)
+  for (unsigned int i = 0; i < keys_per_hashcode; i++)
     *p++ = key;
 }
 
@@ -76,12 +75,12 @@ ibf_hashcode_from_key (struct IBF_Key key,
  * @return the newly created invertible bloom filter, NULL on error
  */
 struct InvertibleBloomFilter *
-ibf_create (uint32_t size, uint8_t hash_num)
+ibf_create (uint32_t size,
+            uint8_t hash_num)
 {
   struct InvertibleBloomFilter *ibf;
 
   GNUNET_assert (0 != size);
-
   ibf = GNUNET_new (struct InvertibleBloomFilter);
   ibf->count = GNUNET_malloc_large (size * sizeof(uint8_t));
   if (NULL == ibf->count)
@@ -106,7 +105,6 @@ ibf_create (uint32_t size, uint8_t hash_num)
   }
   ibf->size = size;
   ibf->hash_num = hash_num;
-
   return ibf;
 }
 
@@ -123,7 +121,8 @@ ibf_get_indices (const struct InvertibleBloomFilter *ibf,
   uint32_t i;
   uint32_t bucket;
 
-  bucket = GNUNET_CRYPTO_crc32_n (&key, sizeof key);
+  bucket = GNUNET_CRYPTO_crc32_n (&key,
+                                  sizeof (key));
   for (i = 0, filled = 0; filled < ibf->hash_num; i++)
   {
     uint64_t x;
@@ -134,7 +133,8 @@ ibf_get_indices (const struct InvertibleBloomFilter *ibf,
     dst[filled++] = bucket % ibf->size;
 try_next:
     x = ((uint64_t) bucket << 32) | i;
-    bucket = GNUNET_CRYPTO_crc32_n (&x, sizeof x);
+    bucket = GNUNET_CRYPTO_crc32_n (&x,
+                                    sizeof (x));
   }
 }
 
@@ -170,8 +170,13 @@ ibf_insert (struct InvertibleBloomFilter *ibf,
   int buckets[ibf->hash_num];
 
   GNUNET_assert (ibf->hash_num <= ibf->size);
-  ibf_get_indices (ibf, key, buckets);
-  ibf_insert_into (ibf, key, buckets, 1);
+  ibf_get_indices (ibf,
+                   key,
+                   buckets);
+  ibf_insert_into (ibf,
+                   key,
+                   buckets,
+                   1);
 }
 
 
@@ -188,8 +193,13 @@ ibf_remove (struct InvertibleBloomFilter *ibf,
   int buckets[ibf->hash_num];
 
   GNUNET_assert (ibf->hash_num <= ibf->size);
-  ibf_get_indices (ibf, key, buckets);
-  ibf_insert_into (ibf, key, buckets, -1);
+  ibf_get_indices (ibf,
+                   key,
+                   buckets);
+  ibf_insert_into (ibf,
+                   key,
+                   buckets,
+                   -1);
 }
 
 
@@ -234,8 +244,6 @@ ibf_decode (struct InvertibleBloomFilter *ibf,
 
   for (uint32_t i = 0; i < ibf->size; i++)
   {
-    int hit;
-
     /* we can only decode from pure buckets */
     if ( (1 != ibf->count[i].count_val) &&
          (-1 != ibf->count[i].count_val) )
@@ -249,23 +257,30 @@ ibf_decode (struct InvertibleBloomFilter *ibf,
 
     /* test if key in bucket hits its own location,
      * if not, the key hash was subject to collision */
-    hit = GNUNET_NO;
-    ibf_get_indices (ibf, ibf->key_sum[i], buckets);
-    for (int j = 0; j < ibf->hash_num; j++)
-      if (buckets[j] == i)
-        hit = GNUNET_YES;
-
-    if (GNUNET_NO == hit)
-      continue;
-
+    {
+      bool hit = false;
+
+      ibf_get_indices (ibf,
+                       ibf->key_sum[i],
+                       buckets);
+      for (int j = 0; j < ibf->hash_num; j++)
+        if (buckets[j] == i)
+        {
+          hit = true;
+          break;
+        }
+      if (! hit)
+        continue;
+    }
     if (NULL != ret_side)
       *ret_side = ibf->count[i].count_val;
     if (NULL != ret_id)
       *ret_id = ibf->key_sum[i];
 
     /* insert on the opposite side, effectively removing the element */
-    ibf_insert_into (ibf, ibf->key_sum[i], buckets, -ibf->count[i].count_val);
-
+    ibf_insert_into (ibf,
+                     ibf->key_sum[i], buckets,
+                     -ibf->count[i].count_val);
     return GNUNET_YES;
   }
 
@@ -287,7 +302,8 @@ ibf_decode (struct InvertibleBloomFilter *ibf,
 void
 ibf_write_slice (const struct InvertibleBloomFilter *ibf,
                  uint32_t start,
-                 uint32_t count, void *buf)
+                 uint32_t count,
+                 void *buf)
 {
   struct IBF_Key *key_dst;
   struct IBF_KeyHash *key_hash_dst;

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]