65 lines
1.7 KiB
C
65 lines
1.7 KiB
C
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#define IPFS_PIN_C
|
|
#include "ipfs/pin/pin.h"
|
|
|
|
#include "ipfs/cid/cid.h"
|
|
#include "ipfs/datastore/key.h"
|
|
#include "ipfs/util/errs.h"
|
|
|
|
// package pin implements structures and methods to keep track of
|
|
// which objects a user wants to keep stored locally.
|
|
|
|
#define PIN_DATASTOREKEY_SIZE 100
|
|
char *pinDatastoreKey = NULL;
|
|
size_t pinDatastoreKeySize = 0;
|
|
|
|
struct Cid *emptyKey = NULL;
|
|
|
|
int ipfs_pin_init ()
|
|
{
|
|
int err;
|
|
unsigned char *empty_hash = (unsigned char*) "QmdfTbBqBPQ7VNxZEYEj14VmRuZBkqFbiwReogJgS1zR1n";
|
|
|
|
if (!pinDatastoreKey) { // initialize just one time.
|
|
pinDatastoreKey = malloc(PIN_DATASTOREKEY_SIZE);
|
|
if (!pinDatastoreKey) {
|
|
return ErrAllocFailed;
|
|
}
|
|
err = ipfs_datastore_key_new("/local/pins", pinDatastoreKey, PIN_DATASTOREKEY_SIZE, &pinDatastoreKeySize);
|
|
if (err) {
|
|
free (pinDatastoreKey);
|
|
pinDatastoreKey = NULL;
|
|
return err;
|
|
}
|
|
|
|
if (!ipfs_cid_protobuf_decode(empty_hash, strlen ((char*)empty_hash), &emptyKey)) {
|
|
return ErrCidDecodeFailed;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
// Return pointer to string or NULL if invalid.
|
|
char *ipfs_pin_mode_to_string (PinMode mode)
|
|
{
|
|
if (mode < 0 || mode >= (sizeof (ipfs_pin_linkmap) / sizeof (void*))) {
|
|
return NULL;
|
|
}
|
|
return (char*)ipfs_pin_linkmap[mode];
|
|
}
|
|
|
|
// Return array index or -1 if fail.
|
|
PinMode ipfs_string_to_pin_mode (char *str)
|
|
{
|
|
PinMode pm;
|
|
|
|
for (pm = 0 ; pm < (sizeof (ipfs_pin_linkmap) / sizeof (void*)) ; pm++) {
|
|
if (strcmp(ipfs_pin_linkmap[pm], str) == 0) {
|
|
return pm;
|
|
}
|
|
}
|
|
return -1; // not found.
|
|
}
|