Skip to content
Snippets Groups Projects
dap_chain.h 2.26 KiB
Newer Older
Dmitriy Gerasimov's avatar
Dmitriy Gerasimov committed
/*
 * Authors:
 * Dmitriy A. Gearasimov <gerasimov.dmitriy@demlabs.net>
 * DeM Labs Inc.   https://demlabs.net
 * Kelvin Project https://github.com/kelvinblockchain
 * Copyright  (c) 2017-2018
 * All rights reserved.
Dmitriy Gerasimov's avatar
Dmitriy Gerasimov committed

 This file is part of DAP (Deus Applications Prototypes) the open source project

    DAP (Deus Applicaions Prototypes) is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    DAP is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with any DAP based project.  If not, see <http://www.gnu.org/licenses/>.
*/
Dmitriy Gerasimov's avatar
Dmitriy Gerasimov committed
#pragma once
#include "dap_chain_block.h"
#include "dap_chain_block_cache.h"
Dmitriy Gerasimov's avatar
Dmitriy Gerasimov committed
typedef struct dap_chain{
    dap_chain_id_t id;
    dap_chain_block_cache_t * block_cache_first; // Mapped area start
    dap_chain_block_cache_t * block_cache_last; // Last block in mapped area
    uint64_t blocks_count;
    uint64_t difficulty;
Dmitriy Gerasimov's avatar
Dmitriy Gerasimov committed
    void * _internal;
    void * _inhertor;
} dap_chain_t;
int dap_chain_init();
void dap_chain_deinit();
Anton's avatar
Anton committed
//dap_chain_t * dap_chain_open(const char * a_file_storage,const char * a_file_cache);
int dap_chain_prepare_env();
void dap_chain_remap(dap_chain_t * a_chain, size_t a_offset);
void dap_chain_save(dap_chain_t * a_chain);
void dap_chain_info_dump_log(dap_chain_t * a_chain);

Anton's avatar
Anton committed
int dap_chain_files_open();
void dap_chain_block_write   (dap_chain_block_cache_t *l_block_cache);
void dap_chain_update       (dap_chain_block_cache_t *l_block_cache);
Maxim Krasylnikov's avatar
Maxim Krasylnikov committed
void dap_chain_mine_stop();
Anton's avatar
Anton committed
void dap_chain_set_default(bool a_is_gold);
Maxim Krasylnikov's avatar
Maxim Krasylnikov committed
void dap_chain_count_new_block(dap_chain_block_cache_t *l_block_cache);
void dap_chain_show_hash_blocks_file(FILE *a_hash_blocks_file);

dap_chain_block_t* dap_chain_get_last_mined_block(bool a_is_gold);
int dap_chain_get_mined_block_count(bool a_is_gold);
dap_chain_block_cache_t* dap_chain_allocate_next_block(dap_chain_t * a_chain);


void dap_chain_close(dap_chain_t * a_chain);