danicoin/src/Transfers/IBlockchainSynchronizer.h

64 lines
2.1 KiB
C
Raw Normal View History

2015-05-27 12:08:46 +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 <cstdint>
#include <system_error>
#include "crypto/crypto.h"
2015-07-30 15:22:07 +00:00
#include "CryptoNoteCore/CryptoNoteBasic.h"
#include "IObservable.h"
#include "IStreamSerializable.h"
#include "ITransfersSynchronizer.h"
namespace CryptoNote {
struct CompleteBlock;
class IBlockchainSynchronizerObserver {
public:
2015-08-27 18:55:14 +00:00
virtual void synchronizationProgressUpdated(uint32_t processedBlockCount, uint32_t totalBlockCount) {}
virtual void synchronizationCompleted(std::error_code result) {}
};
class IBlockchainConsumer {
public:
2015-07-30 15:22:07 +00:00
virtual ~IBlockchainConsumer() {}
virtual SynchronizationStart getSyncStart() = 0;
2015-07-30 15:22:07 +00:00
virtual void getKnownPoolTxIds(std::vector<Crypto::Hash>& ids) = 0;
virtual void onBlockchainDetach(uint32_t height) = 0;
virtual bool onNewBlocks(const CompleteBlock* blocks, uint32_t startHeight, uint32_t count) = 0;
virtual std::error_code onPoolUpdated(const std::vector<std::unique_ptr<ITransactionReader>>& addedTransactions, const std::vector<Crypto::Hash>& deletedTransactions) = 0;
};
class IBlockchainSynchronizer :
public IObservable<IBlockchainSynchronizerObserver>,
public IStreamSerializable {
public:
virtual void addConsumer(IBlockchainConsumer* consumer) = 0;
virtual bool removeConsumer(IBlockchainConsumer* consumer) = 0;
virtual IStreamSerializable* getConsumerState(IBlockchainConsumer* consumer) = 0;
virtual void start() = 0;
virtual void stop() = 0;
};
}