- added check against statistics
[oweals/gnunet.git] / src / block / plugin_block_test.c
index eb3e200b04d6448cc9ccd8fb98ad8e1ae8a163bc..08d3096dc24bfa8c4668be0345d254aa4f6553d5 100644 (file)
@@ -26,9 +26,9 @@
  */
 
 #include "platform.h"
-#include "plugin_block.h"
+#include "gnunet_block_plugin.h"
 
-#define DEBUG_TEST GNUNET_NO
+#define DEBUG_TEST GNUNET_EXTRA_LOGGING
 
 
 /**
  * @return characterization of result
  */
 static enum GNUNET_BLOCK_EvaluationResult
-block_plugin_test_evaluate (void *cls,
-                          enum GNUNET_BLOCK_Type type,
-                          const GNUNET_HashCode *query,
-                          struct GNUNET_CONTAINER_BloomFilter **bf,
-                          int32_t bf_mutator,
-                          const void *xquery,
-                          size_t xquery_size,
-                          const void *reply_block,
-                          size_t reply_block_size)
+block_plugin_test_evaluate (void *cls, enum GNUNET_BLOCK_Type type,
+                            const GNUNET_HashCode * query,
+                            struct GNUNET_CONTAINER_BloomFilter **bf,
+                            int32_t bf_mutator, const void *xquery,
+                            size_t xquery_size, const void *reply_block,
+                            size_t reply_block_size)
 {
   GNUNET_HashCode chash;
   GNUNET_HashCode mhash;
 
-  if (type != GNUNET_BLOCK_TYPE_TEST)  
+  if (type != GNUNET_BLOCK_TYPE_TEST)
     return GNUNET_BLOCK_EVALUATION_TYPE_NOT_SUPPORTED;
   if (xquery_size != 0)
     return GNUNET_BLOCK_EVALUATION_REQUEST_INVALID;
   if (reply_block_size == 0)
     return GNUNET_BLOCK_EVALUATION_REQUEST_VALID;
 
-  GNUNET_CRYPTO_hash (reply_block,
-                     reply_block_size,
-                     &chash);
-  GNUNET_BLOCK_mingle_hash (&chash, bf_mutator, &mhash);
-  if (NULL != *bf)
+  if (NULL != bf)
+  {
+    GNUNET_CRYPTO_hash (reply_block, reply_block_size, &chash);
+    GNUNET_BLOCK_mingle_hash (&chash, bf_mutator, &mhash);
+    if (NULL != *bf)
     {
-      if (GNUNET_YES == GNUNET_CONTAINER_bloomfilter_test (*bf,
-                                                          &mhash))
-       return GNUNET_BLOCK_EVALUATION_OK_DUPLICATE;
+      if (GNUNET_YES == GNUNET_CONTAINER_bloomfilter_test (*bf, &mhash))
+        return GNUNET_BLOCK_EVALUATION_OK_DUPLICATE;
     }
-  else
+    else
     {
-      *bf = GNUNET_CONTAINER_bloomfilter_init (NULL, 
-                                              8,
-                                              BLOOMFILTER_K);
+      *bf = GNUNET_CONTAINER_bloomfilter_init (NULL, 8, BLOOMFILTER_K);
     }
-  GNUNET_CONTAINER_bloomfilter_add (*bf, &mhash);  
+    GNUNET_CONTAINER_bloomfilter_add (*bf, &mhash);
+  }
   return GNUNET_BLOCK_EVALUATION_OK_MORE;
 }
 
@@ -106,17 +101,15 @@ block_plugin_test_evaluate (void *cls,
  *         (or if extracting a key from a block of this type does not work)
  */
 static int
-block_plugin_test_get_key (void *cls,
-                         enum GNUNET_BLOCK_Type type,
-                         const void *block,
-                         size_t block_size,
-                         GNUNET_HashCode *key)
+block_plugin_test_get_key (void *cls, enum GNUNET_BLOCK_Type type,
+                           const void *block, size_t block_size,
+                           GNUNET_HashCode * key)
 {
   /* always fails since there is no fixed relationship between
-     keys and values for test values */
+   * keys and values for test values */
   return GNUNET_SYSERR;
 }
-                                 
+
 
 /**
  * Entry point for the plugin.
@@ -124,11 +117,11 @@ block_plugin_test_get_key (void *cls,
 void *
 libgnunet_plugin_block_test_init (void *cls)
 {
-  static enum GNUNET_BLOCK_Type types[] = 
-    {
-      GNUNET_BLOCK_TYPE_TEST,
-      GNUNET_BLOCK_TYPE_ANY /* end of list */
-    };
+  static enum GNUNET_BLOCK_Type types[] =
+  {
+    GNUNET_BLOCK_TYPE_TEST,
+    GNUNET_BLOCK_TYPE_ANY       /* end of list */
+  };
   struct GNUNET_BLOCK_PluginFunctions *api;
 
   api = GNUNET_malloc (sizeof (struct GNUNET_BLOCK_PluginFunctions));