2017-02-22 15:56:11 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-07-24 19:56:30 +00:00
|
|
|
#include "ipfs/blocks/blockstore.h"
|
2017-02-23 20:15:33 +00:00
|
|
|
#include "ipfs/repo/config/identity.h"
|
|
|
|
#include "ipfs/repo/fsrepo/fs_repo.h"
|
2017-04-03 16:55:36 +00:00
|
|
|
#include "ipfs/routing/routing.h"
|
2017-02-23 20:15:33 +00:00
|
|
|
#include "libp2p/peer/peerstore.h"
|
2017-03-19 19:40:16 +00:00
|
|
|
#include "libp2p/peer/providerstore.h"
|
2017-02-23 20:15:33 +00:00
|
|
|
|
2017-02-22 15:56:11 +00:00
|
|
|
enum NodeMode { MODE_OFFLINE, MODE_ONLINE };
|
2016-10-27 18:11:34 +00:00
|
|
|
|
|
|
|
struct IpfsNode {
|
2017-02-22 15:56:11 +00:00
|
|
|
enum NodeMode mode;
|
2017-02-22 16:48:42 +00:00
|
|
|
struct Identity* identity;
|
2017-02-22 15:56:11 +00:00
|
|
|
struct FSRepo* repo;
|
|
|
|
struct Peerstore* peerstore;
|
2017-03-19 19:40:16 +00:00
|
|
|
struct ProviderStore* providerstore;
|
2017-04-03 16:55:36 +00:00
|
|
|
struct IpfsRouting* routing;
|
2017-07-24 19:56:30 +00:00
|
|
|
struct Blockstore* blockstore;
|
2016-10-27 18:11:34 +00:00
|
|
|
//struct Pinner pinning; // an interface
|
|
|
|
//struct Mount** mounts;
|
|
|
|
// TODO: Add more here
|
|
|
|
};
|
2017-04-20 22:56:03 +00:00
|
|
|
|
|
|
|
/***
|
|
|
|
* build an online IpfsNode
|
|
|
|
* @param repo_path where the IPFS repository directory is
|
|
|
|
* @param node the completed IpfsNode struct
|
|
|
|
* @returns true(1) on success
|
|
|
|
*/
|
|
|
|
int ipfs_node_online_new(const char* repo_path, struct IpfsNode** node);
|
|
|
|
/***
|
|
|
|
* Free resources from the creation of an IpfsNode
|
|
|
|
* @param node the node to free
|
|
|
|
* @returns true(1)
|
|
|
|
*/
|
|
|
|
int ipfs_node_free(struct IpfsNode* node);
|