// Copyright (c) 2011-2016 The Cryptonote developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #pragma once #include "crypto/hash.h" #include "IWalletLegacy.h" #include "ITransfersContainer.h" #include "WalletLegacy/WalletLegacyEvent.h" #include "WalletLegacy/WalletUnconfirmedTransactions.h" namespace CryptoNote { class ISerializer; } namespace CryptoNote { class WalletUserTransactionsCache { public: explicit WalletUserTransactionsCache(uint64_t mempoolTxLiveTime = 60 * 60 * 24); bool serialize(CryptoNote::ISerializer& serializer); uint64_t unconfirmedTransactionsAmount() const; uint64_t unconfrimedOutsAmount() const; size_t getTransactionCount() const; size_t getTransferCount() const; TransactionId addNewTransaction(uint64_t amount, uint64_t fee, const std::string& extra, const std::vector& transfers, uint64_t unlockTime); void updateTransaction(TransactionId transactionId, const CryptoNote::Transaction& tx, uint64_t amount, const std::list& usedOutputs); void updateTransactionSendingState(TransactionId transactionId, std::error_code ec); std::shared_ptr onTransactionUpdated(const TransactionInformation& txInfo, int64_t txBalance); std::shared_ptr onTransactionDeleted(const Crypto::Hash& transactionHash); TransactionId findTransactionByTransferId(TransferId transferId) const; bool getTransaction(TransactionId transactionId, WalletLegacyTransaction& transaction) const; WalletLegacyTransaction& getTransaction(TransactionId transactionId); bool getTransfer(TransferId transferId, WalletLegacyTransfer& transfer) const; WalletLegacyTransfer& getTransfer(TransferId transferId); bool isUsed(const TransactionOutputInformation& out) const; void reset(); std::vector deleteOutdatedTransactions(); private: TransactionId findTransactionByHash(const Crypto::Hash& hash); TransactionId insertTransaction(WalletLegacyTransaction&& Transaction); TransferId insertTransfers(const std::vector& transfers); void updateUnconfirmedTransactions(); typedef std::vector UserTransfers; typedef std::vector UserTransactions; void getGoodItems(UserTransactions& transactions, UserTransfers& transfers); void getGoodTransaction(TransactionId txId, size_t offset, UserTransactions& transactions, UserTransfers& transfers); void getTransfersByTx(TransactionId id, UserTransfers& transfers); UserTransactions m_transactions; UserTransfers m_transfers; WalletUnconfirmedTransactions m_unconfirmedTransactions; }; } //namespace CryptoNote