2011-06-30 18:05:29 +02:00
|
|
|
#include "walletmodel.h"
|
|
|
|
#include "guiconstants.h"
|
|
|
|
#include "optionsmodel.h"
|
|
|
|
#include "addresstablemodel.h"
|
|
|
|
#include "transactiontablemodel.h"
|
|
|
|
|
2012-04-16 14:56:45 +02:00
|
|
|
#include "ui_interface.h"
|
2012-04-15 22:10:54 +02:00
|
|
|
#include "wallet.h"
|
2012-04-15 23:39:49 +02:00
|
|
|
#include "walletdb.h" // for BackupWallet
|
2012-05-14 23:44:52 +02:00
|
|
|
#include "base58.h"
|
2011-06-30 18:05:29 +02:00
|
|
|
|
2011-07-16 19:01:05 +02:00
|
|
|
#include <QSet>
|
2012-07-05 17:43:28 +02:00
|
|
|
#include <QTimer>
|
2011-06-30 18:05:29 +02:00
|
|
|
|
2011-07-29 14:36:35 +02:00
|
|
|
WalletModel::WalletModel(CWallet *wallet, OptionsModel *optionsModel, QObject *parent) :
|
|
|
|
QObject(parent), wallet(wallet), optionsModel(optionsModel), addressTableModel(0),
|
2011-07-17 14:06:43 +02:00
|
|
|
transactionTableModel(0),
|
2012-02-14 12:08:00 +01:00
|
|
|
cachedBalance(0), cachedUnconfirmedBalance(0), cachedImmatureBalance(0),
|
|
|
|
cachedNumTransactions(0),
|
2012-07-05 17:43:28 +02:00
|
|
|
cachedEncryptionStatus(Unencrypted),
|
|
|
|
cachedNumBlocks(0)
|
2011-06-30 18:05:29 +02:00
|
|
|
{
|
|
|
|
addressTableModel = new AddressTableModel(wallet, this);
|
|
|
|
transactionTableModel = new TransactionTableModel(wallet, this);
|
2012-05-06 19:40:58 +02:00
|
|
|
|
2012-07-10 15:19:57 +02:00
|
|
|
// This timer will be fired repeatedly to update the balance
|
2012-07-05 17:43:28 +02:00
|
|
|
pollTimer = new QTimer(this);
|
|
|
|
connect(pollTimer, SIGNAL(timeout()), this, SLOT(pollBalanceChanged()));
|
2012-07-10 15:19:57 +02:00
|
|
|
pollTimer->start(MODEL_UPDATE_DELAY);
|
2012-07-05 17:43:28 +02:00
|
|
|
|
2012-05-06 19:40:58 +02:00
|
|
|
subscribeToCoreSignals();
|
|
|
|
}
|
|
|
|
|
|
|
|
WalletModel::~WalletModel()
|
|
|
|
{
|
|
|
|
unsubscribeFromCoreSignals();
|
2011-06-30 18:05:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
qint64 WalletModel::getBalance() const
|
|
|
|
{
|
|
|
|
return wallet->GetBalance();
|
|
|
|
}
|
|
|
|
|
2011-07-11 20:42:10 +02:00
|
|
|
qint64 WalletModel::getUnconfirmedBalance() const
|
|
|
|
{
|
|
|
|
return wallet->GetUnconfirmedBalance();
|
|
|
|
}
|
|
|
|
|
2012-02-14 12:08:00 +01:00
|
|
|
qint64 WalletModel::getImmatureBalance() const
|
|
|
|
{
|
|
|
|
return wallet->GetImmatureBalance();
|
|
|
|
}
|
|
|
|
|
2011-06-30 18:05:29 +02:00
|
|
|
int WalletModel::getNumTransactions() const
|
|
|
|
{
|
|
|
|
int numTransactions = 0;
|
|
|
|
{
|
2012-04-06 18:39:12 +02:00
|
|
|
LOCK(wallet->cs_wallet);
|
2013-04-01 14:43:50 +02:00
|
|
|
// the size of mapWallet contains the number of unique transaction IDs
|
|
|
|
// (e.g. payments to yourself generate 2 transactions, but both share the same transaction ID)
|
2011-06-30 18:05:29 +02:00
|
|
|
numTransactions = wallet->mapWallet.size();
|
|
|
|
}
|
|
|
|
return numTransactions;
|
|
|
|
}
|
|
|
|
|
2012-05-05 16:07:14 +02:00
|
|
|
void WalletModel::updateStatus()
|
2011-06-30 18:05:29 +02:00
|
|
|
{
|
2012-05-05 16:07:14 +02:00
|
|
|
EncryptionStatus newEncryptionStatus = getEncryptionStatus();
|
|
|
|
|
|
|
|
if(cachedEncryptionStatus != newEncryptionStatus)
|
|
|
|
emit encryptionStatusChanged(newEncryptionStatus);
|
|
|
|
}
|
|
|
|
|
2012-07-05 17:43:28 +02:00
|
|
|
void WalletModel::pollBalanceChanged()
|
2012-05-05 16:07:14 +02:00
|
|
|
{
|
2012-07-10 15:19:57 +02:00
|
|
|
if(nBestHeight != cachedNumBlocks)
|
|
|
|
{
|
|
|
|
// Balance and number of transactions might have changed
|
2012-07-05 17:43:28 +02:00
|
|
|
cachedNumBlocks = nBestHeight;
|
|
|
|
checkBalanceChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void WalletModel::checkBalanceChanged()
|
|
|
|
{
|
2011-07-17 14:06:43 +02:00
|
|
|
qint64 newBalance = getBalance();
|
|
|
|
qint64 newUnconfirmedBalance = getUnconfirmedBalance();
|
2012-02-14 12:08:00 +01:00
|
|
|
qint64 newImmatureBalance = getImmatureBalance();
|
2011-07-17 14:06:43 +02:00
|
|
|
|
2012-07-10 15:19:57 +02:00
|
|
|
if(cachedBalance != newBalance || cachedUnconfirmedBalance != newUnconfirmedBalance || cachedImmatureBalance != newImmatureBalance)
|
|
|
|
{
|
2012-07-05 17:43:28 +02:00
|
|
|
cachedBalance = newBalance;
|
|
|
|
cachedUnconfirmedBalance = newUnconfirmedBalance;
|
|
|
|
cachedImmatureBalance = newImmatureBalance;
|
2012-02-14 12:08:00 +01:00
|
|
|
emit balanceChanged(newBalance, newUnconfirmedBalance, newImmatureBalance);
|
2012-07-05 17:43:28 +02:00
|
|
|
}
|
|
|
|
}
|
2012-02-14 12:08:00 +01:00
|
|
|
|
2012-07-05 17:43:28 +02:00
|
|
|
void WalletModel::updateTransaction(const QString &hash, int status)
|
|
|
|
{
|
|
|
|
if(transactionTableModel)
|
|
|
|
transactionTableModel->updateTransaction(hash, status);
|
2011-07-17 14:06:43 +02:00
|
|
|
|
2012-07-05 17:43:28 +02:00
|
|
|
// Balance and number of transactions might have changed
|
|
|
|
checkBalanceChanged();
|
|
|
|
|
|
|
|
int newNumTransactions = getNumTransactions();
|
2012-07-10 15:19:57 +02:00
|
|
|
if(cachedNumTransactions != newNumTransactions)
|
|
|
|
{
|
2012-07-05 17:43:28 +02:00
|
|
|
cachedNumTransactions = newNumTransactions;
|
2012-07-10 15:19:57 +02:00
|
|
|
emit numTransactionsChanged(newNumTransactions);
|
2012-07-05 17:43:28 +02:00
|
|
|
}
|
2011-06-30 18:05:29 +02:00
|
|
|
}
|
|
|
|
|
2012-05-06 22:41:35 +02:00
|
|
|
void WalletModel::updateAddressBook(const QString &address, const QString &label, bool isMine, int status)
|
2012-03-24 18:48:18 +01:00
|
|
|
{
|
2012-05-05 16:07:14 +02:00
|
|
|
if(addressTableModel)
|
2012-05-06 22:41:35 +02:00
|
|
|
addressTableModel->updateEntry(address, label, isMine, status);
|
2012-03-24 18:48:18 +01:00
|
|
|
}
|
|
|
|
|
2011-07-16 19:01:05 +02:00
|
|
|
bool WalletModel::validateAddress(const QString &address)
|
2011-06-30 18:05:29 +02:00
|
|
|
{
|
2011-07-26 15:38:31 +02:00
|
|
|
CBitcoinAddress addressParsed(address.toStdString());
|
|
|
|
return addressParsed.IsValid();
|
2011-07-16 19:01:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
WalletModel::SendCoinsReturn WalletModel::sendCoins(const QList<SendCoinsRecipient> &recipients)
|
|
|
|
{
|
|
|
|
qint64 total = 0;
|
|
|
|
QSet<QString> setAddress;
|
|
|
|
QString hex;
|
|
|
|
|
|
|
|
if(recipients.empty())
|
2011-06-30 18:05:29 +02:00
|
|
|
{
|
2011-07-16 19:01:05 +02:00
|
|
|
return OK;
|
2011-06-30 18:05:29 +02:00
|
|
|
}
|
|
|
|
|
2011-07-16 19:01:05 +02:00
|
|
|
// Pre-check input data for validity
|
|
|
|
foreach(const SendCoinsRecipient &rcp, recipients)
|
2011-06-30 18:05:29 +02:00
|
|
|
{
|
2011-07-26 15:38:31 +02:00
|
|
|
if(!validateAddress(rcp.address))
|
2011-07-16 19:01:05 +02:00
|
|
|
{
|
|
|
|
return InvalidAddress;
|
|
|
|
}
|
|
|
|
setAddress.insert(rcp.address);
|
|
|
|
|
|
|
|
if(rcp.amount <= 0)
|
|
|
|
{
|
|
|
|
return InvalidAmount;
|
|
|
|
}
|
|
|
|
total += rcp.amount;
|
2011-06-30 18:05:29 +02:00
|
|
|
}
|
|
|
|
|
2011-07-16 19:01:05 +02:00
|
|
|
if(recipients.size() > setAddress.size())
|
|
|
|
{
|
|
|
|
return DuplicateAddress;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(total > getBalance())
|
2011-06-30 18:05:29 +02:00
|
|
|
{
|
|
|
|
return AmountExceedsBalance;
|
|
|
|
}
|
|
|
|
|
2011-07-16 19:01:05 +02:00
|
|
|
if((total + nTransactionFee) > getBalance())
|
2011-06-30 18:05:29 +02:00
|
|
|
{
|
2011-07-16 19:01:05 +02:00
|
|
|
return SendCoinsReturn(AmountWithFeeExceedsBalance, nTransactionFee);
|
2011-06-30 18:05:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2012-04-06 18:39:12 +02:00
|
|
|
LOCK2(cs_main, wallet->cs_wallet);
|
|
|
|
|
2011-07-16 19:01:05 +02:00
|
|
|
// Sendmany
|
2011-12-21 22:33:19 +01:00
|
|
|
std::vector<std::pair<CScript, int64> > vecSend;
|
2011-07-16 19:01:05 +02:00
|
|
|
foreach(const SendCoinsRecipient &rcp, recipients)
|
|
|
|
{
|
|
|
|
CScript scriptPubKey;
|
2012-05-14 23:44:52 +02:00
|
|
|
scriptPubKey.SetDestination(CBitcoinAddress(rcp.address.toStdString()).Get());
|
2011-07-16 19:01:05 +02:00
|
|
|
vecSend.push_back(make_pair(scriptPubKey, rcp.amount));
|
|
|
|
}
|
|
|
|
|
2011-06-30 18:05:29 +02:00
|
|
|
CWalletTx wtx;
|
2011-07-16 19:01:05 +02:00
|
|
|
CReserveKey keyChange(wallet);
|
2011-12-21 22:33:19 +01:00
|
|
|
int64 nFeeRequired = 0;
|
2013-04-25 23:31:22 +02:00
|
|
|
std::string strFailReason;
|
|
|
|
bool fCreated = wallet->CreateTransaction(vecSend, wtx, keyChange, nFeeRequired, strFailReason);
|
2011-06-30 18:05:29 +02:00
|
|
|
|
2011-07-16 19:01:05 +02:00
|
|
|
if(!fCreated)
|
2011-06-30 18:05:29 +02:00
|
|
|
{
|
2011-07-16 19:01:05 +02:00
|
|
|
if((total + nFeeRequired) > wallet->GetBalance())
|
|
|
|
{
|
|
|
|
return SendCoinsReturn(AmountWithFeeExceedsBalance, nFeeRequired);
|
|
|
|
}
|
2013-04-25 23:31:22 +02:00
|
|
|
emit message(tr("Send Coins"), QString::fromStdString(strFailReason),
|
|
|
|
CClientUIInterface::MSG_ERROR);
|
2011-07-16 19:01:05 +02:00
|
|
|
return TransactionCreationFailed;
|
2011-06-30 18:05:29 +02:00
|
|
|
}
|
2012-12-03 13:51:58 +01:00
|
|
|
if(!uiInterface.ThreadSafeAskFee(nFeeRequired))
|
2011-06-30 18:05:29 +02:00
|
|
|
{
|
|
|
|
return Aborted;
|
|
|
|
}
|
2011-07-16 19:01:05 +02:00
|
|
|
if(!wallet->CommitTransaction(wtx, keyChange))
|
2011-06-30 18:05:29 +02:00
|
|
|
{
|
2011-07-16 19:01:05 +02:00
|
|
|
return TransactionCommitFailed;
|
2011-06-30 18:05:29 +02:00
|
|
|
}
|
2011-07-16 19:01:05 +02:00
|
|
|
hex = QString::fromStdString(wtx.GetHash().GetHex());
|
2011-06-30 18:05:29 +02:00
|
|
|
}
|
|
|
|
|
2012-05-03 14:52:15 +02:00
|
|
|
// Add addresses / update labels that we've sent to to the address book
|
2011-07-16 19:01:05 +02:00
|
|
|
foreach(const SendCoinsRecipient &rcp, recipients)
|
2011-06-30 18:05:29 +02:00
|
|
|
{
|
2011-07-16 19:01:05 +02:00
|
|
|
std::string strAddress = rcp.address.toStdString();
|
2012-05-14 23:44:52 +02:00
|
|
|
CTxDestination dest = CBitcoinAddress(strAddress).Get();
|
2012-05-03 14:52:15 +02:00
|
|
|
std::string strLabel = rcp.label.toStdString();
|
2011-07-16 19:01:05 +02:00
|
|
|
{
|
2012-04-06 18:39:12 +02:00
|
|
|
LOCK(wallet->cs_wallet);
|
2012-05-03 14:52:15 +02:00
|
|
|
|
2013-07-15 07:20:50 +02:00
|
|
|
std::map<CTxDestination, CAddressBookData>::iterator mi = wallet->mapAddressBook.find(dest);
|
2012-05-03 14:52:15 +02:00
|
|
|
|
|
|
|
// Check if we have a new address or an updated label
|
2013-07-15 07:20:50 +02:00
|
|
|
if (mi == wallet->mapAddressBook.end() || mi->second.name != strLabel)
|
2012-05-03 14:52:15 +02:00
|
|
|
{
|
2012-05-14 23:44:52 +02:00
|
|
|
wallet->SetAddressBookName(dest, strLabel);
|
2012-05-03 14:52:15 +02:00
|
|
|
}
|
2011-07-16 19:01:05 +02:00
|
|
|
}
|
2011-06-30 18:05:29 +02:00
|
|
|
}
|
2011-07-30 19:28:41 +02:00
|
|
|
|
2011-07-16 19:01:05 +02:00
|
|
|
return SendCoinsReturn(OK, 0, hex);
|
2011-06-30 18:05:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
OptionsModel *WalletModel::getOptionsModel()
|
|
|
|
{
|
|
|
|
return optionsModel;
|
|
|
|
}
|
|
|
|
|
|
|
|
AddressTableModel *WalletModel::getAddressTableModel()
|
|
|
|
{
|
|
|
|
return addressTableModel;
|
|
|
|
}
|
|
|
|
|
|
|
|
TransactionTableModel *WalletModel::getTransactionTableModel()
|
|
|
|
{
|
|
|
|
return transactionTableModel;
|
|
|
|
}
|
2011-07-02 13:45:59 +02:00
|
|
|
|
2011-08-23 20:08:42 +02:00
|
|
|
WalletModel::EncryptionStatus WalletModel::getEncryptionStatus() const
|
|
|
|
{
|
|
|
|
if(!wallet->IsCrypted())
|
|
|
|
{
|
|
|
|
return Unencrypted;
|
|
|
|
}
|
|
|
|
else if(wallet->IsLocked())
|
|
|
|
{
|
|
|
|
return Locked;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return Unlocked;
|
|
|
|
}
|
|
|
|
}
|
2011-08-24 22:07:26 +02:00
|
|
|
|
2011-11-26 07:02:04 +01:00
|
|
|
bool WalletModel::setWalletEncrypted(bool encrypted, const SecureString &passphrase)
|
2011-08-24 22:07:26 +02:00
|
|
|
{
|
|
|
|
if(encrypted)
|
|
|
|
{
|
|
|
|
// Encrypt
|
|
|
|
return wallet->EncryptWallet(passphrase);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Decrypt -- TODO; not supported yet
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-26 07:02:04 +01:00
|
|
|
bool WalletModel::setWalletLocked(bool locked, const SecureString &passPhrase)
|
2011-08-24 22:07:26 +02:00
|
|
|
{
|
|
|
|
if(locked)
|
|
|
|
{
|
|
|
|
// Lock
|
|
|
|
return wallet->Lock();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Unlock
|
|
|
|
return wallet->Unlock(passPhrase);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-26 07:02:04 +01:00
|
|
|
bool WalletModel::changePassphrase(const SecureString &oldPass, const SecureString &newPass)
|
2011-08-24 22:07:26 +02:00
|
|
|
{
|
|
|
|
bool retval;
|
|
|
|
{
|
2012-04-06 18:39:12 +02:00
|
|
|
LOCK(wallet->cs_wallet);
|
2011-08-24 22:07:26 +02:00
|
|
|
wallet->Lock(); // Make sure wallet is locked before attempting pass change
|
|
|
|
retval = wallet->ChangeWalletPassphrase(oldPass, newPass);
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2012-02-14 13:14:43 +01:00
|
|
|
bool WalletModel::backupWallet(const QString &filename)
|
|
|
|
{
|
|
|
|
return BackupWallet(*wallet, filename.toLocal8Bit().data());
|
|
|
|
}
|
|
|
|
|
2012-05-06 19:40:58 +02:00
|
|
|
// Handlers for core signals
|
|
|
|
static void NotifyKeyStoreStatusChanged(WalletModel *walletmodel, CCryptoKeyStore *wallet)
|
|
|
|
{
|
|
|
|
OutputDebugStringF("NotifyKeyStoreStatusChanged\n");
|
|
|
|
QMetaObject::invokeMethod(walletmodel, "updateStatus", Qt::QueuedConnection);
|
|
|
|
}
|
|
|
|
|
2012-05-14 23:44:52 +02:00
|
|
|
static void NotifyAddressBookChanged(WalletModel *walletmodel, CWallet *wallet, const CTxDestination &address, const std::string &label, bool isMine, ChangeType status)
|
2012-05-06 19:40:58 +02:00
|
|
|
{
|
2012-05-14 23:44:52 +02:00
|
|
|
OutputDebugStringF("NotifyAddressBookChanged %s %s isMine=%i status=%i\n", CBitcoinAddress(address).ToString().c_str(), label.c_str(), isMine, status);
|
2012-05-06 19:40:58 +02:00
|
|
|
QMetaObject::invokeMethod(walletmodel, "updateAddressBook", Qt::QueuedConnection,
|
2012-05-14 23:44:52 +02:00
|
|
|
Q_ARG(QString, QString::fromStdString(CBitcoinAddress(address).ToString())),
|
2012-05-06 19:40:58 +02:00
|
|
|
Q_ARG(QString, QString::fromStdString(label)),
|
2012-05-06 22:41:35 +02:00
|
|
|
Q_ARG(bool, isMine),
|
2012-05-06 19:40:58 +02:00
|
|
|
Q_ARG(int, status));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void NotifyTransactionChanged(WalletModel *walletmodel, CWallet *wallet, const uint256 &hash, ChangeType status)
|
|
|
|
{
|
|
|
|
OutputDebugStringF("NotifyTransactionChanged %s status=%i\n", hash.GetHex().c_str(), status);
|
|
|
|
QMetaObject::invokeMethod(walletmodel, "updateTransaction", Qt::QueuedConnection,
|
|
|
|
Q_ARG(QString, QString::fromStdString(hash.GetHex())),
|
|
|
|
Q_ARG(int, status));
|
|
|
|
}
|
|
|
|
|
|
|
|
void WalletModel::subscribeToCoreSignals()
|
|
|
|
{
|
|
|
|
// Connect signals to wallet
|
|
|
|
wallet->NotifyStatusChanged.connect(boost::bind(&NotifyKeyStoreStatusChanged, this, _1));
|
2012-05-06 22:41:35 +02:00
|
|
|
wallet->NotifyAddressBookChanged.connect(boost::bind(NotifyAddressBookChanged, this, _1, _2, _3, _4, _5));
|
2012-05-06 19:40:58 +02:00
|
|
|
wallet->NotifyTransactionChanged.connect(boost::bind(NotifyTransactionChanged, this, _1, _2, _3));
|
|
|
|
}
|
|
|
|
|
|
|
|
void WalletModel::unsubscribeFromCoreSignals()
|
|
|
|
{
|
|
|
|
// Disconnect signals from wallet
|
|
|
|
wallet->NotifyStatusChanged.disconnect(boost::bind(&NotifyKeyStoreStatusChanged, this, _1));
|
2012-05-06 22:41:35 +02:00
|
|
|
wallet->NotifyAddressBookChanged.disconnect(boost::bind(NotifyAddressBookChanged, this, _1, _2, _3, _4, _5));
|
2012-05-06 19:40:58 +02:00
|
|
|
wallet->NotifyTransactionChanged.disconnect(boost::bind(NotifyTransactionChanged, this, _1, _2, _3));
|
|
|
|
}
|
|
|
|
|
2011-08-24 22:07:26 +02:00
|
|
|
// WalletModel::UnlockContext implementation
|
|
|
|
WalletModel::UnlockContext WalletModel::requestUnlock()
|
|
|
|
{
|
|
|
|
bool was_locked = getEncryptionStatus() == Locked;
|
|
|
|
if(was_locked)
|
|
|
|
{
|
|
|
|
// Request UI to unlock wallet
|
|
|
|
emit requireUnlock();
|
|
|
|
}
|
|
|
|
// If wallet is still locked, unlock was failed or cancelled, mark context as invalid
|
|
|
|
bool valid = getEncryptionStatus() != Locked;
|
|
|
|
|
|
|
|
return UnlockContext(this, valid, was_locked);
|
|
|
|
}
|
|
|
|
|
|
|
|
WalletModel::UnlockContext::UnlockContext(WalletModel *wallet, bool valid, bool relock):
|
|
|
|
wallet(wallet),
|
|
|
|
valid(valid),
|
|
|
|
relock(relock)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
WalletModel::UnlockContext::~UnlockContext()
|
|
|
|
{
|
|
|
|
if(valid && relock)
|
|
|
|
{
|
|
|
|
wallet->setWalletLocked(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void WalletModel::UnlockContext::CopyFrom(const UnlockContext& rhs)
|
|
|
|
{
|
|
|
|
// Transfer context; old object no longer relocks wallet
|
|
|
|
*this = rhs;
|
|
|
|
rhs.relock = false;
|
|
|
|
}
|