block plugin to test the DHT as a simple key-value store; this plugin simply accepts any (new) response for any key More...
Go to the source code of this file.
Macros | |
#define | BLOOMFILTER_K 16 |
Number of bits we set per entry in the bloomfilter. More... | |
#define | TEST_BF_SIZE 8 |
How big is the BF we use for DHT blocks? More... | |
Functions | |
static struct GNUNET_BLOCK_Group * | block_plugin_test_create_group (void *ctx, enum GNUNET_BLOCK_Type type, const void *raw_data, size_t raw_data_size, va_list va) |
Create a new block group. More... | |
static enum GNUNET_GenericReturnValue | block_plugin_test_check_query (void *cls, enum GNUNET_BLOCK_Type type, const struct GNUNET_HashCode *query, const void *xquery, size_t xquery_size) |
Function called to validate a query. More... | |
static enum GNUNET_GenericReturnValue | block_plugin_test_check_block (void *cls, enum GNUNET_BLOCK_Type type, const void *block, size_t block_size) |
Function called to validate a block for storage. More... | |
static enum GNUNET_BLOCK_ReplyEvaluationResult | block_plugin_test_check_reply (void *cls, enum GNUNET_BLOCK_Type type, struct GNUNET_BLOCK_Group *group, const struct GNUNET_HashCode *query, const void *xquery, size_t xquery_size, const void *reply_block, size_t reply_block_size) |
Function called to validate a reply to a request. More... | |
static enum GNUNET_GenericReturnValue | block_plugin_test_get_key (void *cls, enum GNUNET_BLOCK_Type type, const void *block, size_t block_size, struct GNUNET_HashCode *key) |
Function called to obtain the key for a block. More... | |
void * | libgnunet_plugin_block_test_init (void *cls) |
Entry point for the plugin. More... | |
void * | libgnunet_plugin_block_test_done (void *cls) |
Exit point from the plugin. More... | |
block plugin to test the DHT as a simple key-value store; this plugin simply accepts any (new) response for any key
Definition in file plugin_block_test.c.
#define BLOOMFILTER_K 16 |
Number of bits we set per entry in the bloomfilter.
Do not change!
Definition at line 36 of file plugin_block_test.c.
#define TEST_BF_SIZE 8 |
How big is the BF we use for DHT blocks?
Definition at line 41 of file plugin_block_test.c.
|
static |
Create a new block group.
ctx | block context in which the block group is created |
type | type of the block for which we are creating the group |
raw_data | optional serialized prior state of the group, NULL if unavailable/fresh |
raw_data_size | number of bytes in raw_data, 0 if unavailable/fresh |
va | variable arguments specific to type |
Definition at line 56 of file plugin_block_test.c.
References BLOOMFILTER_K, ctx, GNUNET_BLOCK_GROUP_bf_create(), GNUNET_BLOCK_GROUP_compute_bloomfilter_size(), GNUNET_break, TEST_BF_SIZE, and type.
Referenced by libgnunet_plugin_block_test_init().
|
static |
Function called to validate a query.
cls | closure |
type | block type |
query | original query (hash) |
xquery | extended query data (can be NULL, depending on type) |
xquery_size | number of bytes in xquery |
Definition at line 100 of file plugin_block_test.c.
References GNUNET_BLOCK_TYPE_TEST, GNUNET_break, GNUNET_break_op, GNUNET_NO, GNUNET_OK, GNUNET_SYSERR, and type.
Referenced by libgnunet_plugin_block_test_init().
|
static |
Function called to validate a block for storage.
cls | closure |
type | block type |
block | block data to validate |
block_size | number of bytes in block |
Definition at line 133 of file plugin_block_test.c.
References GNUNET_BLOCK_TYPE_TEST, GNUNET_break, GNUNET_OK, GNUNET_SYSERR, and type.
Referenced by libgnunet_plugin_block_test_init().
|
static |
Function called to validate a reply to a request.
Note that it is assumed that the reply has already been matched to the key (and signatures checked) as it would be done with the GetKeyFunction and the BlockEvaluationFunction.
cls | closure |
type | block type |
group | which block group to use for evaluation |
query | original query (hash) |
xquery | extrended query data (can be NULL, depending on type) |
xquery_size | number of bytes in xquery |
reply_block | response to validate |
reply_block_size | number of bytes in reply_block |
Definition at line 167 of file plugin_block_test.c.
References GNUNET_BLOCK_GROUP_bf_test_and_set(), GNUNET_BLOCK_REPLY_OK_DUPLICATE, GNUNET_BLOCK_REPLY_OK_MORE, GNUNET_BLOCK_REPLY_TYPE_NOT_SUPPORTED, GNUNET_BLOCK_TYPE_TEST, GNUNET_break, GNUNET_CRYPTO_hash(), GNUNET_YES, and type.
Referenced by libgnunet_plugin_block_test_init().
|
static |
Function called to obtain the key for a block.
cls | closure |
type | block type |
block | block to get the key for |
block_size | number of bytes in block |
key | set to the key (query) for the given block |
Definition at line 209 of file plugin_block_test.c.
References GNUNET_BLOCK_TYPE_TEST, GNUNET_break, GNUNET_NO, GNUNET_SYSERR, key, and type.
Referenced by libgnunet_plugin_block_test_init().
void * libgnunet_plugin_block_test_init | ( | void * | cls | ) |
Entry point for the plugin.
cls | NULL |
Definition at line 237 of file plugin_block_test.c.
References block_plugin_test_check_block(), block_plugin_test_check_query(), block_plugin_test_check_reply(), block_plugin_test_create_group(), block_plugin_test_get_key(), GNUNET_BLOCK_PluginFunctions::check_block, GNUNET_BLOCK_PluginFunctions::check_query, GNUNET_BLOCK_PluginFunctions::check_reply, GNUNET_BLOCK_PluginFunctions::create_group, GNUNET_BLOCK_PluginFunctions::get_key, GNUNET_BLOCK_TYPE_ANY, GNUNET_BLOCK_TYPE_TEST, GNUNET_new, and GNUNET_BLOCK_PluginFunctions::types.
void * libgnunet_plugin_block_test_done | ( | void * | cls | ) |
Exit point from the plugin.
cls | the return value from libgnunet_plugin_block_test_init |
Definition at line 265 of file plugin_block_test.c.
References GNUNET_BLOCK_PluginFunctions::cls, and GNUNET_free.