2014-08-13 10:38:35 +00:00
|
|
|
// Copyright (c) 2012-2014, 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/>.
|
2014-06-25 17:21:42 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <vector>
|
2015-04-06 16:13:07 +00:00
|
|
|
#include <unordered_map>
|
2014-06-25 17:21:42 +00:00
|
|
|
|
|
|
|
#include "INode.h"
|
|
|
|
#include "cryptonote_core/cryptonote_basic.h"
|
|
|
|
#include "TestBlockchainGenerator.h"
|
2015-04-06 16:13:07 +00:00
|
|
|
#include "common/ObserverManager.h"
|
|
|
|
#include "wallet/WalletAsyncContextCounter.h"
|
|
|
|
|
2014-06-25 17:21:42 +00:00
|
|
|
|
|
|
|
class INodeDummyStub : public CryptoNote::INode
|
|
|
|
{
|
|
|
|
public:
|
2015-04-06 16:13:07 +00:00
|
|
|
virtual bool addObserver(CryptoNote::INodeObserver* observer) override;
|
|
|
|
virtual bool removeObserver(CryptoNote::INodeObserver* observer) override;
|
2014-06-25 17:21:42 +00:00
|
|
|
|
|
|
|
virtual void init(const CryptoNote::INode::Callback& callback) {callback(std::error_code());};
|
|
|
|
virtual bool shutdown() { return true; };
|
|
|
|
|
|
|
|
virtual size_t getPeerCount() const { return 0; };
|
|
|
|
virtual uint64_t getLastLocalBlockHeight() const { return 0; };
|
|
|
|
virtual uint64_t getLastKnownBlockHeight() const { return 0; };
|
2015-04-06 16:13:07 +00:00
|
|
|
virtual uint64_t getLastLocalBlockTimestamp() const override { return 0; }
|
2014-06-25 17:21:42 +00:00
|
|
|
|
|
|
|
virtual void getNewBlocks(std::list<crypto::hash>&& knownBlockIds, std::list<cryptonote::block_complete_entry>& newBlocks, uint64_t& startHeight, const Callback& callback) {callback(std::error_code());};
|
|
|
|
|
2014-08-13 10:51:37 +00:00
|
|
|
virtual void relayTransaction(const cryptonote::Transaction& transaction, const Callback& callback) {callback(std::error_code());};
|
2014-06-25 17:21:42 +00:00
|
|
|
virtual void getRandomOutsByAmounts(std::vector<uint64_t>&& amounts, uint64_t outsCount, std::vector<cryptonote::COMMAND_RPC_GET_RANDOM_OUTPUTS_FOR_AMOUNTS::outs_for_amount>& result, const Callback& callback) {callback(std::error_code());};
|
|
|
|
virtual void getTransactionOutsGlobalIndices(const crypto::hash& transactionHash, std::vector<uint64_t>& outsGlobalIndices, const Callback& callback) { callback(std::error_code()); };
|
2015-04-06 16:13:07 +00:00
|
|
|
virtual void getPoolSymmetricDifference(std::vector<crypto::hash>&& known_pool_tx_ids, crypto::hash known_block_id, bool& is_bc_actual, std::vector<cryptonote::Transaction>& new_txs, std::vector<crypto::hash>& deleted_tx_ids, const Callback& callback) override { is_bc_actual = true; callback(std::error_code()); };
|
|
|
|
virtual void queryBlocks(std::list<crypto::hash>&& knownBlockIds, uint64_t timestamp, std::list<CryptoNote::BlockCompleteEntry>& newBlocks, uint64_t& startHeight, const Callback& callback) { callback(std::error_code()); };
|
|
|
|
|
|
|
|
void updateObservers();
|
|
|
|
|
|
|
|
tools::ObserverManager<CryptoNote::INodeObserver> observerManager;
|
|
|
|
|
2014-06-25 17:21:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class INodeTrivialRefreshStub : public INodeDummyStub
|
|
|
|
{
|
|
|
|
public:
|
2015-04-06 16:13:07 +00:00
|
|
|
INodeTrivialRefreshStub(TestBlockchainGenerator& generator) :
|
|
|
|
m_lastHeight(1), m_blockchainGenerator(generator), m_nextTxError(false), m_getMaxBlocks(std::numeric_limits<size_t>::max()), m_nextTxToPool(false) {};
|
|
|
|
|
|
|
|
void setGetNewBlocksLimit(size_t maxBlocks) { m_getMaxBlocks = maxBlocks; }
|
2014-06-25 17:21:42 +00:00
|
|
|
|
|
|
|
virtual uint64_t getLastLocalBlockHeight() const { return m_blockchainGenerator.getBlockchain().size() - 1; };
|
|
|
|
virtual uint64_t getLastKnownBlockHeight() const { return m_blockchainGenerator.getBlockchain().size() - 1; };
|
|
|
|
|
|
|
|
virtual void getNewBlocks(std::list<crypto::hash>&& knownBlockIds, std::list<cryptonote::block_complete_entry>& newBlocks, uint64_t& startHeight, const Callback& callback);
|
|
|
|
|
2014-08-13 10:51:37 +00:00
|
|
|
virtual void relayTransaction(const cryptonote::Transaction& transaction, const Callback& callback);
|
2014-06-25 17:21:42 +00:00
|
|
|
virtual void getRandomOutsByAmounts(std::vector<uint64_t>&& amounts, uint64_t outsCount, std::vector<cryptonote::COMMAND_RPC_GET_RANDOM_OUTPUTS_FOR_AMOUNTS::outs_for_amount>& result, const Callback& callback);
|
|
|
|
virtual void getTransactionOutsGlobalIndices(const crypto::hash& transactionHash, std::vector<uint64_t>& outsGlobalIndices, const Callback& callback);
|
2015-04-06 16:13:07 +00:00
|
|
|
virtual void queryBlocks(std::list<crypto::hash>&& knownBlockIds, uint64_t timestamp, std::list<CryptoNote::BlockCompleteEntry>& newBlocks, uint64_t& startHeight, const Callback& callback) override;
|
|
|
|
virtual void getPoolSymmetricDifference(std::vector<crypto::hash>&& known_pool_tx_ids, crypto::hash known_block_id, bool& is_bc_actual,
|
|
|
|
std::vector<cryptonote::Transaction>& new_txs, std::vector<crypto::hash>& deleted_tx_ids, const Callback& callback) override;
|
2014-06-25 17:21:42 +00:00
|
|
|
|
|
|
|
virtual void startAlternativeChain(uint64_t height);
|
2015-04-06 16:13:07 +00:00
|
|
|
void setNextTransactionError();
|
|
|
|
void setNextTransactionToPool();
|
|
|
|
void includeTransactionsFromPoolToBlock();
|
|
|
|
|
|
|
|
std::vector<crypto::hash> calls_getTransactionOutsGlobalIndices;
|
|
|
|
|
|
|
|
virtual ~INodeTrivialRefreshStub();
|
2014-06-25 17:21:42 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void doGetNewBlocks(std::list<crypto::hash> knownBlockIds, std::list<cryptonote::block_complete_entry>& newBlocks, uint64_t& startHeight, const Callback& callback);
|
|
|
|
void doGetTransactionOutsGlobalIndices(const crypto::hash& transactionHash, std::vector<uint64_t>& outsGlobalIndices, const Callback& callback);
|
2014-08-13 10:51:37 +00:00
|
|
|
void doRelayTransaction(const cryptonote::Transaction& transaction, const Callback& callback);
|
2014-06-25 17:21:42 +00:00
|
|
|
void doGetRandomOutsByAmounts(std::vector<uint64_t> amounts, uint64_t outsCount, std::vector<cryptonote::COMMAND_RPC_GET_RANDOM_OUTPUTS_FOR_AMOUNTS::outs_for_amount>& result, const Callback& callback);
|
2015-04-06 16:13:07 +00:00
|
|
|
void doGetPoolSymmetricDifference(std::vector<crypto::hash>& known_pool_tx_ids, crypto::hash known_block_id, bool& is_bc_actual,
|
|
|
|
std::vector<cryptonote::Transaction>& new_txs, std::vector<crypto::hash>& deleted_tx_ids, const Callback& callback);
|
2014-06-25 17:21:42 +00:00
|
|
|
|
2015-04-06 16:13:07 +00:00
|
|
|
size_t m_getMaxBlocks;
|
2014-06-25 17:21:42 +00:00
|
|
|
uint64_t m_lastHeight;
|
|
|
|
TestBlockchainGenerator& m_blockchainGenerator;
|
|
|
|
bool m_nextTxError;
|
2015-04-06 16:13:07 +00:00
|
|
|
bool m_nextTxToPool;
|
|
|
|
std::mutex m_multiWalletLock;
|
|
|
|
CryptoNote::WalletAsyncContextCounter m_asyncCounter;
|
2014-06-25 17:21:42 +00:00
|
|
|
};
|