c-ipfs/merkledag/merkledag.c

63 lines
1.7 KiB
C
Raw Normal View History

/**
* A basic storage building block of the IPFS system
*/
2016-12-05 15:50:17 +00:00
#include "ipfs/merkledag/merkledag.h"
/***
* Adds a node to the dagService and blockService
* @param node the node to add
2016-12-05 15:50:17 +00:00
* @param cid the resultant cid that was added
* @returns true(1) on success
*/
2016-12-05 15:50:17 +00:00
int ipfs_merkledag_add(struct Node* node, struct FSRepo* fs_repo) {
// taken from merkledag.go line 59
// protobuf the node
size_t protobuf_len = ipfs_node_protobuf_encode_size(node);
size_t bytes_written = 0;
unsigned char protobuf[protobuf_len];
ipfs_node_protobuf_encode(node, protobuf, protobuf_len, &bytes_written);
2016-12-05 15:50:17 +00:00
// turn the node into a block
struct Block* block;
ipfs_blocks_block_new(protobuf, bytes_written, &block);
2016-12-05 15:50:17 +00:00
int retVal = fs_repo->config->datastore->datastore_put_block(block, fs_repo->config->datastore);
2016-12-05 15:50:17 +00:00
if (retVal == 0) {
ipfs_blocks_block_free(block);
return 0;
}
ipfs_node_set_cached(node, block->cid);
2016-12-05 15:50:17 +00:00
ipfs_blocks_block_free(block);
// TODO: call HasBlock (unsure why as yet)
return 1;
}
/***
* Retrieves a node from the datastore based on the cid
* @param cid the key to look for
* @param node the node to be created
* @param fs_repo the repository
* @returns true(1) on success
*/
int ipfs_merkledag_get(const struct Cid* cid, struct Node** node, const struct FSRepo* fs_repo) {
int retVal = 1;
// look for the block
struct Block* block;
retVal = fs_repo->config->datastore->datastore_get_block(cid, &block, fs_repo->config->datastore);
if (retVal == 0)
return 0;
// we have the block. Fill the node
ipfs_node_protobuf_decode(block->data, block->data_length, node);
ipfs_node_set_cached(*node, cid);
2016-12-07 16:53:17 +00:00
ipfs_blocks_block_free(block);
return retVal;
}