2016-01-18 15:33:29 +00:00
|
|
|
// Copyright (c) 2011-2016 The Cryptonote developers
|
2015-09-18 11:55:31 +00:00
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2014-06-25 17:21:42 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-07-30 15:22:07 +00:00
|
|
|
#include "IWalletLegacy.h"
|
2015-04-06 16:13:07 +00:00
|
|
|
#include "ITransfersContainer.h"
|
2014-06-25 17:21:42 +00:00
|
|
|
|
2015-04-06 16:13:07 +00:00
|
|
|
#include <unordered_map>
|
2015-07-30 15:22:07 +00:00
|
|
|
#include <unordered_set>
|
2014-06-25 17:21:42 +00:00
|
|
|
#include <time.h>
|
2015-04-06 16:13:07 +00:00
|
|
|
#include <boost/functional/hash.hpp>
|
2014-06-25 17:21:42 +00:00
|
|
|
|
2015-07-30 15:22:07 +00:00
|
|
|
#include "CryptoNoteCore/CryptoNoteBasic.h"
|
|
|
|
#include "crypto/crypto.h"
|
2014-06-25 17:21:42 +00:00
|
|
|
|
2015-05-27 12:08:46 +00:00
|
|
|
namespace CryptoNote {
|
2015-04-06 16:13:07 +00:00
|
|
|
class ISerializer;
|
2015-07-30 15:22:07 +00:00
|
|
|
|
|
|
|
typedef std::pair<Crypto::PublicKey, size_t> TransactionOutputId;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace std {
|
|
|
|
|
|
|
|
template<>
|
|
|
|
struct hash<CryptoNote::TransactionOutputId> {
|
|
|
|
size_t operator()(const CryptoNote::TransactionOutputId &_v) const {
|
|
|
|
return hash<Crypto::PublicKey>()(_v.first) ^ _v.second;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-04-06 16:13:07 +00:00
|
|
|
}
|
|
|
|
|
2014-06-25 17:21:42 +00:00
|
|
|
namespace CryptoNote {
|
|
|
|
|
2015-04-06 16:13:07 +00:00
|
|
|
|
|
|
|
struct UnconfirmedTransferDetails {
|
|
|
|
|
|
|
|
UnconfirmedTransferDetails() :
|
2015-07-30 15:22:07 +00:00
|
|
|
amount(0), sentTime(0), transactionId(WALLET_LEGACY_INVALID_TRANSACTION_ID) {}
|
2015-04-06 16:13:07 +00:00
|
|
|
|
2015-05-27 12:08:46 +00:00
|
|
|
CryptoNote::Transaction tx;
|
2015-04-06 16:13:07 +00:00
|
|
|
uint64_t amount;
|
|
|
|
uint64_t outsAmount;
|
2014-06-25 17:21:42 +00:00
|
|
|
time_t sentTime;
|
|
|
|
TransactionId transactionId;
|
2015-04-06 16:13:07 +00:00
|
|
|
std::vector<TransactionOutputId> usedOutputs;
|
2014-06-25 17:21:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class WalletUnconfirmedTransactions
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2015-08-05 13:09:05 +00:00
|
|
|
explicit WalletUnconfirmedTransactions(uint64_t uncofirmedTransactionsLiveTime);
|
|
|
|
|
2015-07-15 12:23:00 +00:00
|
|
|
bool serialize(CryptoNote::ISerializer& s);
|
2014-06-25 17:21:42 +00:00
|
|
|
|
2015-07-30 15:22:07 +00:00
|
|
|
bool findTransactionId(const Crypto::Hash& hash, TransactionId& id);
|
|
|
|
void erase(const Crypto::Hash& hash);
|
2015-05-27 12:08:46 +00:00
|
|
|
void add(const CryptoNote::Transaction& tx, TransactionId transactionId,
|
2015-04-06 16:13:07 +00:00
|
|
|
uint64_t amount, const std::list<TransactionOutputInformation>& usedOutputs);
|
2015-07-30 15:22:07 +00:00
|
|
|
void updateTransactionId(const Crypto::Hash& hash, TransactionId id);
|
2014-06-25 17:21:42 +00:00
|
|
|
|
2015-04-06 16:13:07 +00:00
|
|
|
uint64_t countUnconfirmedOutsAmount() const;
|
|
|
|
uint64_t countUnconfirmedTransactionsAmount() const;
|
|
|
|
bool isUsed(const TransactionOutputInformation& out) const;
|
2015-07-09 14:52:47 +00:00
|
|
|
void reset();
|
2014-06-25 17:21:42 +00:00
|
|
|
|
2015-08-05 13:09:05 +00:00
|
|
|
std::vector<TransactionId> deleteOutdatedTransactions();
|
|
|
|
|
2014-06-25 17:21:42 +00:00
|
|
|
private:
|
|
|
|
|
2015-04-06 16:13:07 +00:00
|
|
|
void collectUsedOutputs();
|
2015-08-05 13:09:05 +00:00
|
|
|
void deleteUsedOutputs(const std::vector<TransactionOutputId>& usedOutputs);
|
2014-06-25 17:21:42 +00:00
|
|
|
|
2015-07-30 15:22:07 +00:00
|
|
|
typedef std::unordered_map<Crypto::Hash, UnconfirmedTransferDetails, boost::hash<Crypto::Hash>> UnconfirmedTxsContainer;
|
|
|
|
typedef std::unordered_set<TransactionOutputId> UsedOutputsContainer;
|
2015-04-06 16:13:07 +00:00
|
|
|
|
|
|
|
UnconfirmedTxsContainer m_unconfirmedTxs;
|
|
|
|
UsedOutputsContainer m_usedOutputs;
|
2015-08-05 13:09:05 +00:00
|
|
|
uint64_t m_uncofirmedTransactionsLiveTime;
|
2015-04-06 16:13:07 +00:00
|
|
|
};
|
2014-06-25 17:21:42 +00:00
|
|
|
|
|
|
|
} // namespace CryptoNote
|