dogecoin/gui/src/transactiontablemodel.cpp

384 lines
11 KiB
C++
Raw Normal View History

2011-05-12 14:49:42 +02:00
#include "transactiontablemodel.h"
2011-05-27 18:38:30 +02:00
#include "guiutil.h"
#include "transactionrecord.h"
2011-05-28 20:32:19 +02:00
#include "guiconstants.h"
#include "main.h"
2011-05-08 16:30:10 +02:00
2011-05-10 19:03:10 +02:00
#include <QLocale>
2011-05-27 08:20:23 +02:00
#include <QDebug>
#include <QList>
#include <QColor>
2011-05-28 20:32:19 +02:00
#include <QTimer>
2011-05-10 19:03:10 +02:00
const QString TransactionTableModel::Sent = "s";
const QString TransactionTableModel::Received = "r";
2011-05-27 18:38:30 +02:00
const QString TransactionTableModel::Other = "o";
2011-06-01 15:33:33 +02:00
/* Private implementation */
struct TransactionTablePriv
2011-05-27 08:20:23 +02:00
{
2011-05-28 20:32:19 +02:00
/* Local cache of wallet.
* As it is in the same order as the CWallet, by definition
* this is sorted by sha256.
*/
2011-05-27 08:20:23 +02:00
QList<TransactionRecord> cachedWallet;
2011-05-28 20:32:19 +02:00
void refreshWallet()
2011-05-27 08:20:23 +02:00
{
2011-05-28 20:32:19 +02:00
qDebug() << "refreshWallet";
2011-05-27 08:20:23 +02:00
/* Query entire wallet from core.
2011-05-27 08:20:23 +02:00
*/
cachedWallet.clear();
2011-05-27 08:20:23 +02:00
CRITICAL_BLOCK(cs_mapWallet)
{
for(std::map<uint256, CWalletTx>::iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
{
cachedWallet.append(TransactionRecord::decomposeTransaction(it->second));
2011-05-27 08:20:23 +02:00
}
}
}
2011-05-28 20:32:19 +02:00
/* Update our model of the wallet.
Call with list of hashes of transactions that were added, removed or changed.
*/
void updateWallet(const QList<uint256> &updated)
{
/* TODO: update only transactions in updated, and only if
the transactions are really part of the visible wallet.
Update status of the other transactions in the cache just in case,
because this call means that a new block came in.
*/
qDebug() << "updateWallet";
foreach(uint256 hash, updated)
{
qDebug() << " " << QString::fromStdString(hash.ToString());
}
/* beginInsertRows(QModelIndex(), first, last) */
/* endInsertRows */
/* beginRemoveRows(QModelIndex(), first, last) */
/* beginEndRows */
2011-05-28 20:32:19 +02:00
refreshWallet();
}
2011-05-27 08:20:23 +02:00
int size()
{
return cachedWallet.size();
}
TransactionRecord *index(int idx)
{
if(idx >= 0 && idx < cachedWallet.size())
{
return &cachedWallet[idx];
} else {
return 0;
}
}
2011-05-28 20:32:19 +02:00
2011-05-27 08:20:23 +02:00
};
2011-05-08 22:23:31 +02:00
/* Credit and Debit columns are right-aligned as they contain numbers */
2011-05-10 19:03:10 +02:00
static int column_alignments[] = {
Qt::AlignLeft|Qt::AlignVCenter,
Qt::AlignLeft|Qt::AlignVCenter,
Qt::AlignLeft|Qt::AlignVCenter,
Qt::AlignRight|Qt::AlignVCenter,
Qt::AlignRight|Qt::AlignVCenter,
Qt::AlignLeft|Qt::AlignVCenter
2011-05-08 22:23:31 +02:00
};
2011-05-08 16:30:10 +02:00
TransactionTableModel::TransactionTableModel(QObject *parent):
2011-05-27 08:20:23 +02:00
QAbstractTableModel(parent),
2011-06-01 15:33:33 +02:00
priv(new TransactionTablePriv())
2011-05-08 16:30:10 +02:00
{
columns << tr("Status") << tr("Date") << tr("Description") << tr("Debit") << tr("Credit");
2011-05-27 08:20:23 +02:00
2011-06-01 15:33:33 +02:00
priv->refreshWallet();
2011-05-28 20:32:19 +02:00
QTimer *timer = new QTimer(this);
connect(timer, SIGNAL(timeout()), this, SLOT(update()));
timer->start(MODEL_UPDATE_DELAY);
2011-05-27 08:20:23 +02:00
}
TransactionTableModel::~TransactionTableModel()
{
2011-06-01 15:33:33 +02:00
delete priv;
2011-05-08 16:30:10 +02:00
}
2011-05-28 20:32:19 +02:00
void TransactionTableModel::update()
{
2011-05-28 20:32:19 +02:00
QList<uint256> updated;
/* Check if there are changes to wallet map */
TRY_CRITICAL_BLOCK(cs_mapWallet)
{
if(!vWalletUpdated.empty())
{
BOOST_FOREACH(uint256 hash, vWalletUpdated)
{
updated.append(hash);
}
vWalletUpdated.clear();
}
}
if(!updated.empty())
{
/* TODO: improve this, way too brute-force at the moment,
only update transactions that actually changed, and add/remove
transactions that were added/removed.
*/
beginResetModel();
2011-06-01 15:33:33 +02:00
priv->updateWallet(updated);
2011-05-28 20:32:19 +02:00
endResetModel();
}
}
2011-05-27 08:20:23 +02:00
2011-05-08 16:30:10 +02:00
int TransactionTableModel::rowCount(const QModelIndex &parent) const
{
Q_UNUSED(parent);
2011-06-01 15:33:33 +02:00
return priv->size();
2011-05-08 16:30:10 +02:00
}
int TransactionTableModel::columnCount(const QModelIndex &parent) const
{
Q_UNUSED(parent);
return columns.length();
}
2011-05-27 08:20:23 +02:00
QVariant TransactionTableModel::formatTxStatus(const TransactionRecord *wtx) const
{
2011-05-27 18:38:30 +02:00
QString status;
2011-05-27 20:36:58 +02:00
2011-05-27 18:38:30 +02:00
switch(wtx->status.status)
2011-05-27 08:20:23 +02:00
{
2011-05-27 18:38:30 +02:00
case TransactionStatus::OpenUntilBlock:
status = tr("Open for %n block(s)","",wtx->status.open_for);
break;
case TransactionStatus::OpenUntilDate:
status = tr("Open until ") + GUIUtil::DateTimeStr(wtx->status.open_for);
2011-05-27 18:38:30 +02:00
break;
case TransactionStatus::Offline:
status = tr("%1/offline").arg(wtx->status.depth);
break;
case TransactionStatus::Unconfirmed:
status = tr("%1/unconfirmed").arg(wtx->status.depth);
break;
case TransactionStatus::HaveConfirmations:
status = tr("%1 confirmations").arg(wtx->status.depth);
break;
2011-05-27 08:20:23 +02:00
}
2011-05-27 18:38:30 +02:00
return QVariant(status);
2011-05-27 08:20:23 +02:00
}
QVariant TransactionTableModel::formatTxDate(const TransactionRecord *wtx) const
{
2011-05-27 18:38:30 +02:00
if(wtx->time)
{
return QVariant(GUIUtil::DateTimeStr(wtx->time));
2011-05-27 18:38:30 +02:00
} else {
return QVariant();
}
2011-05-27 08:20:23 +02:00
}
2011-05-27 20:36:58 +02:00
/* Look up address in address book, if found return
address[0:12]... (label)
otherwise just return address
*/
std::string lookupAddress(const std::string &address)
{
std::string description;
CRITICAL_BLOCK(cs_mapAddressBook)
{
std::map<std::string, std::string>::iterator mi = mapAddressBook.find(address);
if (mi != mapAddressBook.end() && !(*mi).second.empty())
{
std::string label = (*mi).second;
description += address.substr(0,12) + "... ";
description += "(" + label + ")";
}
else
description += address;
}
return description;
}
2011-05-27 08:20:23 +02:00
QVariant TransactionTableModel::formatTxDescription(const TransactionRecord *wtx) const
{
QString description;
switch(wtx->type)
{
case TransactionRecord::RecvWithAddress:
description = tr("Received with: ") + QString::fromStdString(lookupAddress(wtx->address));
break;
case TransactionRecord::RecvFromIP:
description = tr("Received from IP: ") + QString::fromStdString(wtx->address);
break;
case TransactionRecord::SendToAddress:
description = tr("Sent to: ") + QString::fromStdString(lookupAddress(wtx->address));
break;
case TransactionRecord::SendToIP:
description = tr("Sent to IP: ") + QString::fromStdString(wtx->address);
break;
case TransactionRecord::SendToSelf:
description = tr("Payment to yourself");
break;
case TransactionRecord::Generated:
2011-05-27 22:06:30 +02:00
switch(wtx->status.maturity)
{
case TransactionStatus::Immature:
description = tr("Generated (matures in %n more blocks)", "",
wtx->status.matures_in);
break;
case TransactionStatus::Mature:
description = tr("Generated");
break;
case TransactionStatus::MaturesWarning:
description = tr("Generated - Warning: This block was not received by any other nodes and will probably not be accepted!");
break;
case TransactionStatus::NotAccepted:
description = tr("Generated (not accepted)");
break;
}
break;
}
return QVariant(description);
2011-05-27 08:20:23 +02:00
}
QVariant TransactionTableModel::formatTxDebit(const TransactionRecord *wtx) const
{
2011-05-27 18:38:30 +02:00
if(wtx->debit)
{
QString str = QString::fromStdString(FormatMoney(wtx->debit));
2011-05-28 16:09:23 +02:00
if(!wtx->status.confirmed || wtx->status.maturity != TransactionStatus::Mature)
2011-05-27 18:38:30 +02:00
{
str = QString("[") + str + QString("]");
}
return QVariant(str);
} else {
return QVariant();
}
2011-05-27 08:20:23 +02:00
}
QVariant TransactionTableModel::formatTxCredit(const TransactionRecord *wtx) const
{
2011-05-27 18:38:30 +02:00
if(wtx->credit)
{
QString str = QString::fromStdString(FormatMoney(wtx->credit));
2011-05-28 16:09:23 +02:00
if(!wtx->status.confirmed || wtx->status.maturity != TransactionStatus::Mature)
2011-05-27 18:38:30 +02:00
{
str = QString("[") + str + QString("]");
}
return QVariant(str);
} else {
return QVariant();
}
2011-05-27 08:20:23 +02:00
}
2011-05-08 16:30:10 +02:00
QVariant TransactionTableModel::data(const QModelIndex &index, int role) const
{
if(!index.isValid())
return QVariant();
2011-05-27 08:20:23 +02:00
TransactionRecord *rec = static_cast<TransactionRecord*>(index.internalPointer());
2011-05-08 16:30:10 +02:00
if(role == Qt::DisplayRole)
{
2011-05-28 16:09:23 +02:00
/* Delegate to specific column handlers */
2011-05-27 08:20:23 +02:00
switch(index.column())
{
case Status:
return formatTxStatus(rec);
case Date:
return formatTxDate(rec);
case Description:
return formatTxDescription(rec);
case Debit:
return formatTxDebit(rec);
case Credit:
return formatTxCredit(rec);
}
2011-05-28 20:32:19 +02:00
} else if(role == Qt::EditRole)
{
/* Edit role is used for sorting so return the real values */
switch(index.column())
{
case Status:
return QString::fromStdString(rec->status.sortKey);
case Date:
return rec->time;
case Description:
return formatTxDescription(rec);
case Debit:
return rec->debit;
case Credit:
return rec->credit;
}
2011-05-08 22:23:31 +02:00
} else if (role == Qt::TextAlignmentRole)
{
return column_alignments[index.column()];
} else if (role == Qt::ForegroundRole)
{
2011-05-28 16:09:23 +02:00
/* Non-confirmed transactions are grey */
if(rec->status.confirmed)
{
return QColor(0, 0, 0);
} else {
return QColor(128, 128, 128);
}
} else if (role == TypeRole)
2011-05-10 19:03:10 +02:00
{
2011-05-28 16:09:23 +02:00
/* Role for filtering tabs by type */
switch(rec->type)
2011-05-10 19:03:10 +02:00
{
case TransactionRecord::RecvWithAddress:
case TransactionRecord::RecvFromIP:
return TransactionTableModel::Received;
case TransactionRecord::SendToAddress:
case TransactionRecord::SendToIP:
case TransactionRecord::SendToSelf:
return TransactionTableModel::Sent;
default:
return TransactionTableModel::Other;
2011-05-10 19:03:10 +02:00
}
2011-05-08 16:30:10 +02:00
}
return QVariant();
}
QVariant TransactionTableModel::headerData(int section, Qt::Orientation orientation, int role) const
{
2011-05-28 16:09:23 +02:00
if(orientation == Qt::Horizontal)
2011-05-08 22:23:31 +02:00
{
2011-05-28 16:09:23 +02:00
if(role == Qt::DisplayRole)
2011-05-08 22:23:31 +02:00
{
return columns[section];
2011-05-28 16:09:23 +02:00
} else if (role == Qt::TextAlignmentRole)
{
return column_alignments[section];
2011-05-08 22:23:31 +02:00
}
2011-05-08 16:30:10 +02:00
}
return QVariant();
}
Qt::ItemFlags TransactionTableModel::flags(const QModelIndex &index) const
{
return QAbstractTableModel::flags(index);
}
2011-05-27 08:20:23 +02:00
2011-06-01 15:33:33 +02:00
QModelIndex TransactionTableModel::index(int row, int column, const QModelIndex &parent) const
2011-05-27 08:20:23 +02:00
{
Q_UNUSED(parent);
2011-06-01 15:33:33 +02:00
TransactionRecord *data = priv->index(row);
2011-05-27 08:20:23 +02:00
if(data)
{
2011-06-01 15:33:33 +02:00
return createIndex(row, column, priv->index(row));
2011-05-27 08:20:23 +02:00
} else {
return QModelIndex();
}
}