danicoin/src/wallet/WalletUserTransactionsCache.cpp

302 lines
10 KiB
C++
Raw Normal View History

2015-05-27 12:08:46 +00:00
// Copyright (c) 2012-2015, The CryptoNote developers, The Bytecoin developers
2014-08-13 10:38:35 +00:00
//
// 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
#include "WalletErrors.h"
2014-06-25 17:21:42 +00:00
#include "WalletUserTransactionsCache.h"
#include "WalletSerialization.h"
#include "WalletUtils.h"
2014-06-25 17:21:42 +00:00
#include "serialization/ISerializer.h"
#include "serialization/SerializationOverloads.h"
2014-06-25 17:21:42 +00:00
#include <algorithm>
namespace CryptoNote {
2015-07-15 12:23:00 +00:00
bool WalletUserTransactionsCache::serialize(CryptoNote::ISerializer& s) {
2015-05-27 12:08:46 +00:00
if (s.type() == CryptoNote::ISerializer::INPUT) {
s(m_transactions, "transactions");
s(m_transfers, "transfers");
s(m_unconfirmedTransactions, "unconfirmed");
updateUnconfirmedTransactions();
} else {
UserTransactions txsToSave;
UserTransfers transfersToSave;
getGoodItems(txsToSave, transfersToSave);
s(txsToSave, "transactions");
s(transfersToSave, "transfers");
s(m_unconfirmedTransactions, "unconfirmed");
}
2015-07-15 12:23:00 +00:00
return true;
2014-06-25 17:21:42 +00:00
}
uint64_t WalletUserTransactionsCache::unconfirmedTransactionsAmount() const {
return m_unconfirmedTransactions.countUnconfirmedTransactionsAmount();
2014-06-25 17:21:42 +00:00
}
uint64_t WalletUserTransactionsCache::unconfrimedOutsAmount() const {
return m_unconfirmedTransactions.countUnconfirmedOutsAmount();
}
2014-06-25 17:21:42 +00:00
size_t WalletUserTransactionsCache::getTransactionCount() const {
2014-06-25 17:21:42 +00:00
return m_transactions.size();
}
size_t WalletUserTransactionsCache::getTransferCount() const {
2014-06-25 17:21:42 +00:00
return m_transfers.size();
}
TransactionId WalletUserTransactionsCache::addNewTransaction(
uint64_t amount, uint64_t fee, const std::string& extra, const std::vector<Transfer>& transfers, uint64_t unlockTime) {
TransactionInfo transaction;
transaction.firstTransferId = insertTransfers(transfers);
transaction.transferCount = transfers.size();
transaction.totalAmount = -static_cast<int64_t>(amount);
transaction.fee = fee;
transaction.sentTime = time(nullptr);
transaction.isCoinbase = false;
transaction.timestamp = 0;
transaction.extra = extra;
transaction.blockHeight = UNCONFIRMED_TRANSACTION_HEIGHT;
transaction.state = TransactionState::Sending;
transaction.unlockTime = unlockTime;
return insertTransaction(std::move(transaction));
}
void WalletUserTransactionsCache::updateTransaction(
2015-05-27 12:08:46 +00:00
TransactionId transactionId, const CryptoNote::Transaction& tx, uint64_t amount, const std::list<TransactionOutputInformation>& usedOutputs) {
// update extra field from created transaction
auto& txInfo = m_transactions.at(transactionId);
txInfo.extra.assign(tx.extra.begin(), tx.extra.end());
m_unconfirmedTransactions.add(tx, transactionId, amount, usedOutputs);
}
void WalletUserTransactionsCache::updateTransactionSendingState(TransactionId transactionId, std::error_code ec) {
auto& txInfo = m_transactions.at(transactionId);
if (ec) {
2015-05-27 12:08:46 +00:00
txInfo.state = ec.value() == error::TX_CANCELLED ? TransactionState::Cancelled : TransactionState::Failed;
m_unconfirmedTransactions.erase(txInfo.hash);
} else {
txInfo.sentTime = time(nullptr); // update sending time
txInfo.state = TransactionState::Active;
}
}
std::shared_ptr<WalletEvent> WalletUserTransactionsCache::onTransactionUpdated(const TransactionInformation& txInfo,
int64_t txBalance) {
std::shared_ptr<WalletEvent> event;
TransactionId id = CryptoNote::INVALID_TRANSACTION_ID;
if (!m_unconfirmedTransactions.findTransactionId(txInfo.transactionHash, id)) {
id = findTransactionByHash(txInfo.transactionHash);
} else {
m_unconfirmedTransactions.erase(txInfo.transactionHash);
}
bool isCoinbase = txInfo.totalAmountIn == 0;
if (id == CryptoNote::INVALID_TRANSACTION_ID) {
TransactionInfo transaction;
transaction.firstTransferId = INVALID_TRANSFER_ID;
transaction.transferCount = 0;
transaction.totalAmount = txBalance;
transaction.fee = isCoinbase ? 0 : txInfo.totalAmountIn - txInfo.totalAmountOut;
transaction.sentTime = 0;
transaction.hash = txInfo.transactionHash;
transaction.blockHeight = txInfo.blockHeight;
transaction.isCoinbase = isCoinbase;
transaction.timestamp = txInfo.timestamp;
transaction.extra.assign(txInfo.extra.begin(), txInfo.extra.end());
transaction.state = TransactionState::Active;
transaction.unlockTime = txInfo.unlockTime;
id = insertTransaction(std::move(transaction));
// notification event
event = std::make_shared<WalletExternalTransactionCreatedEvent>(id);
} else {
TransactionInfo& tr = getTransaction(id);
tr.blockHeight = txInfo.blockHeight;
tr.timestamp = txInfo.timestamp;
tr.state = TransactionState::Active;
// notification event
event = std::make_shared<WalletTransactionUpdatedEvent>(id);
}
return event;
}
std::shared_ptr<WalletEvent> WalletUserTransactionsCache::onTransactionDeleted(const TransactionHash& transactionHash) {
TransactionId id = CryptoNote::INVALID_TRANSACTION_ID;
if (m_unconfirmedTransactions.findTransactionId(transactionHash, id)) {
m_unconfirmedTransactions.erase(transactionHash);
2015-07-15 12:23:00 +00:00
// LOG_ERROR("Unconfirmed transaction is deleted: id = " << id << ", hash = " << transactionHash);
assert(false);
} else {
id = findTransactionByHash(transactionHash);
}
std::shared_ptr<WalletEvent> event;
if (id != CryptoNote::INVALID_TRANSACTION_ID) {
TransactionInfo& tr = getTransaction(id);
tr.blockHeight = UNCONFIRMED_TRANSACTION_HEIGHT;
tr.timestamp = 0;
tr.state = TransactionState::Deleted;
event = std::make_shared<WalletTransactionUpdatedEvent>(id);
} else {
2015-07-15 12:23:00 +00:00
// LOG_ERROR("Transaction wasn't found: " << transactionHash);
assert(false);
}
return event;
}
2014-06-25 17:21:42 +00:00
TransactionId WalletUserTransactionsCache::findTransactionByTransferId(TransferId transferId) const
{
TransactionId id;
for (id = 0; id < m_transactions.size(); ++id) {
2014-08-13 10:51:37 +00:00
const TransactionInfo& tx = m_transactions[id];
2014-06-25 17:21:42 +00:00
if (tx.firstTransferId == INVALID_TRANSFER_ID || tx.transferCount == 0)
continue;
if (transferId >= tx.firstTransferId && transferId < (tx.firstTransferId + tx.transferCount))
break;
}
if (id == m_transactions.size())
return INVALID_TRANSACTION_ID;
return id;
}
2014-08-13 10:51:37 +00:00
bool WalletUserTransactionsCache::getTransaction(TransactionId transactionId, TransactionInfo& transaction) const
2014-06-25 17:21:42 +00:00
{
if (transactionId >= m_transactions.size())
return false;
transaction = m_transactions[transactionId];
return true;
}
bool WalletUserTransactionsCache::getTransfer(TransferId transferId, Transfer& transfer) const
{
if (transferId >= m_transfers.size())
return false;
transfer = m_transfers[transferId];
return true;
}
2014-08-13 10:51:37 +00:00
TransactionId WalletUserTransactionsCache::insertTransaction(TransactionInfo&& Transaction) {
m_transactions.emplace_back(std::move(Transaction));
2014-06-25 17:21:42 +00:00
return m_transactions.size() - 1;
}
TransactionId WalletUserTransactionsCache::findTransactionByHash(const TransactionHash& hash) {
auto it = std::find_if(m_transactions.begin(), m_transactions.end(), [&hash] (const TransactionInfo& tx) { return tx.hash == hash; });
2014-06-25 17:21:42 +00:00
if (it == m_transactions.end())
return CryptoNote::INVALID_TRANSACTION_ID;
return std::distance(m_transactions.begin(), it);
}
bool WalletUserTransactionsCache::isUsed(const TransactionOutputInformation& out) const {
return m_unconfirmedTransactions.isUsed(out);
2014-06-25 17:21:42 +00:00
}
2014-08-13 10:51:37 +00:00
TransactionInfo& WalletUserTransactionsCache::getTransaction(TransactionId transactionId) {
2014-06-25 17:21:42 +00:00
return m_transactions.at(transactionId);
}
void WalletUserTransactionsCache::getGoodItems(UserTransactions& transactions, UserTransfers& transfers) {
2014-06-25 17:21:42 +00:00
size_t offset = 0;
for (size_t txId = 0; txId < m_transactions.size(); ++txId) {
bool isGood =
m_transactions[txId].state != TransactionState::Cancelled &&
m_transactions[txId].state != TransactionState::Failed;
2014-06-25 17:21:42 +00:00
if (isGood) {
getGoodTransaction(txId, offset, transactions, transfers);
} else {
2014-08-13 10:51:37 +00:00
const TransactionInfo& t = m_transactions[txId];
offset += t.firstTransferId != INVALID_TRANSFER_ID ? t.transferCount : 0;
2014-06-25 17:21:42 +00:00
}
}
}
void WalletUserTransactionsCache::getGoodTransaction(TransactionId txId, size_t offset, UserTransactions& transactions, UserTransfers& transfers) {
2014-06-25 17:21:42 +00:00
transactions.push_back(m_transactions[txId]);
2014-08-13 10:51:37 +00:00
TransactionInfo& tx = transactions.back();
2014-06-25 17:21:42 +00:00
if (tx.firstTransferId == INVALID_TRANSFER_ID) {
return;
}
UserTransfers::const_iterator first = m_transfers.begin() + tx.firstTransferId;
UserTransfers::const_iterator last = first + tx.transferCount;
tx.firstTransferId -= offset;
std::copy(first, last, std::back_inserter(transfers));
}
void WalletUserTransactionsCache::getTransfersByTx(TransactionId id, UserTransfers& transfers) {
2014-08-13 10:51:37 +00:00
const TransactionInfo& tx = m_transactions[id];
2014-06-25 17:21:42 +00:00
if (tx.firstTransferId != INVALID_TRANSFER_ID) {
UserTransfers::const_iterator first = m_transfers.begin() + tx.firstTransferId;
UserTransfers::const_iterator last = first + tx.transferCount;
std::copy(first, last, std::back_inserter(transfers));
}
}
TransferId WalletUserTransactionsCache::insertTransfers(const std::vector<Transfer>& transfers) {
std::copy(transfers.begin(), transfers.end(), std::back_inserter(m_transfers));
return m_transfers.size() - transfers.size();
}
void WalletUserTransactionsCache::updateUnconfirmedTransactions() {
for (TransactionId id = 0; id < m_transactions.size(); ++id) {
if (m_transactions[id].blockHeight == UNCONFIRMED_TRANSACTION_HEIGHT) {
m_unconfirmedTransactions.updateTransactionId(m_transactions[id].hash, id);
}
}
}
2014-06-25 17:21:42 +00:00
Transfer& WalletUserTransactionsCache::getTransfer(TransferId transferId) {
return m_transfers.at(transferId);
}
2015-07-09 14:52:47 +00:00
void WalletUserTransactionsCache::reset() {
m_transactions.clear();
m_transfers.clear();
m_unconfirmedTransactions.reset();
}
2014-06-25 17:21:42 +00:00
} //namespace CryptoNote