danicoin/src/BlockchainExplorer/BlockchainExplorer.h

100 lines
3.8 KiB
C
Raw Normal View History

2015-07-15 12:23:00 +00:00
// Copyright (c) 2012-2015, The CryptoNote developers, The Bytecoin developers
//
// This file is part of Bytecoin.
//
// Bytecoin is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Bytecoin 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 Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.
#pragma once
#include <mutex>
#include <atomic>
#include <unordered_set>
#include "IBlockchainExplorer.h"
#include "INode.h"
#include "Common/ObserverManager.h"
#include "BlockchainExplorerErrors.h"
2015-07-30 15:22:07 +00:00
#include "Wallet/WalletAsyncContextCounter.h"
2015-07-15 12:23:00 +00:00
#include "Logging/LoggerRef.h"
namespace CryptoNote {
class BlockchainExplorer : public IBlockchainExplorer, public INodeObserver {
public:
BlockchainExplorer(INode& node, Logging::ILogger& logger);
BlockchainExplorer(const BlockchainExplorer&) = delete;
BlockchainExplorer(BlockchainExplorer&&) = delete;
BlockchainExplorer& operator=(const BlockchainExplorer&) = delete;
BlockchainExplorer& operator=(BlockchainExplorer&&) = delete;
virtual ~BlockchainExplorer();
virtual bool addObserver(IBlockchainObserver* observer) override;
virtual bool removeObserver(IBlockchainObserver* observer) override;
2015-07-30 15:22:07 +00:00
virtual bool getBlocks(const std::vector<uint32_t>& blockHeights, std::vector<std::vector<BlockDetails>>& blocks) override;
virtual bool getBlocks(const std::vector<Crypto::Hash>& blockHashes, std::vector<BlockDetails>& blocks) override;
virtual bool getBlocks(uint64_t timestampBegin, uint64_t timestampEnd, uint32_t blocksNumberLimit, std::vector<BlockDetails>& blocks, uint32_t& blocksNumberWithinTimestamps) override;
2015-07-15 12:23:00 +00:00
virtual bool getBlockchainTop(BlockDetails& topBlock) override;
2015-07-30 15:22:07 +00:00
virtual bool getTransactions(const std::vector<Crypto::Hash>& transactionHashes, std::vector<TransactionDetails>& transactions) override;
virtual bool getTransactionsByPaymentId(const Crypto::Hash& paymentId, std::vector<TransactionDetails>& transactions) override;
virtual bool getPoolTransactions(uint64_t timestampBegin, uint64_t timestampEnd, uint32_t transactionsNumberLimit, std::vector<TransactionDetails>& transactions, uint64_t& transactionsNumberWithinTimestamps) override;
virtual bool getPoolState(const std::vector<Crypto::Hash>& knownPoolTransactionHashes, Crypto::Hash knownBlockchainTop, bool& isBlockchainActual, std::vector<TransactionDetails>& newTransactions, std::vector<Crypto::Hash>& removedTransactions) override;
2015-07-15 12:23:00 +00:00
virtual uint64_t getRewardBlocksWindow() override;
virtual uint64_t getFullRewardMaxBlockSize(uint8_t majorVersion) override;
virtual bool isSynchronized() override;
virtual void init() override;
virtual void shutdown() override;
virtual void poolChanged() override;
2015-07-30 15:22:07 +00:00
virtual void blockchainSynchronized(uint32_t topHeight) override;
virtual void localBlockchainUpdated(uint32_t height) override;
typedef WalletAsyncContextCounter AsyncContextCounter;
2015-07-15 12:23:00 +00:00
private:
enum State {
NOT_INITIALIZED,
INITIALIZED
};
BlockDetails knownBlockchainTop;
2015-07-30 15:22:07 +00:00
uint32_t knownBlockchainTopHeight;
std::unordered_set<Crypto::Hash> knownPoolState;
2015-07-15 12:23:00 +00:00
std::atomic<State> state;
2015-07-30 15:22:07 +00:00
std::atomic<bool> synchronized;
std::atomic<uint32_t> observersCounter;
Tools::ObserverManager<IBlockchainObserver> observerManager;
2015-07-15 12:23:00 +00:00
std::mutex mutex;
INode& node;
Logging::LoggerRef logger;
2015-07-30 15:22:07 +00:00
AsyncContextCounter asyncContextCounter;
2015-07-15 12:23:00 +00:00
};
}