2013-11-04 15:20:43 +00:00
|
|
|
// Copyright (c) 2011-2013 The Bitcoin developers
|
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2011-05-22 15:19:43 +00:00
|
|
|
#ifndef CLIENTMODEL_H
|
|
|
|
#define CLIENTMODEL_H
|
|
|
|
|
|
|
|
#include <QObject>
|
2011-06-03 19:03:20 +00:00
|
|
|
|
|
|
|
class AddressTableModel;
|
2013-04-13 05:13:08 +00:00
|
|
|
class OptionsModel;
|
2011-06-05 14:03:29 +00:00
|
|
|
class TransactionTableModel;
|
2013-04-13 05:13:08 +00:00
|
|
|
|
2011-06-26 17:23:24 +00:00
|
|
|
class CWallet;
|
2011-05-22 15:19:43 +00:00
|
|
|
|
2011-07-08 16:05:10 +00:00
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class QDateTime;
|
2012-05-05 14:07:14 +00:00
|
|
|
class QTimer;
|
2011-07-08 16:05:10 +00:00
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
2012-10-21 19:23:13 +00:00
|
|
|
enum BlockSource {
|
|
|
|
BLOCK_SOURCE_NONE,
|
2013-04-10 13:45:49 +00:00
|
|
|
BLOCK_SOURCE_REINDEX,
|
2012-10-21 19:23:13 +00:00
|
|
|
BLOCK_SOURCE_DISK,
|
2013-04-10 13:45:49 +00:00
|
|
|
BLOCK_SOURCE_NETWORK
|
2012-10-21 19:23:13 +00:00
|
|
|
};
|
|
|
|
|
2011-11-13 12:19:52 +00:00
|
|
|
/** Model for Bitcoin network client. */
|
2011-05-22 15:19:43 +00:00
|
|
|
class ClientModel : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2013-01-23 20:51:02 +00:00
|
|
|
|
2011-05-22 15:19:43 +00:00
|
|
|
public:
|
2011-07-29 12:36:35 +00:00
|
|
|
explicit ClientModel(OptionsModel *optionsModel, QObject *parent = 0);
|
2012-05-06 17:40:58 +00:00
|
|
|
~ClientModel();
|
2011-05-22 15:19:43 +00:00
|
|
|
|
2011-05-31 20:24:53 +00:00
|
|
|
OptionsModel *getOptionsModel();
|
|
|
|
|
2011-06-18 11:13:48 +00:00
|
|
|
int getNumConnections() const;
|
|
|
|
int getNumBlocks() const;
|
2011-09-10 09:43:45 +00:00
|
|
|
int getNumBlocksAtStartup();
|
2011-06-18 11:13:48 +00:00
|
|
|
|
2013-08-22 16:09:32 +00:00
|
|
|
quint64 getTotalBytesRecv() const;
|
|
|
|
quint64 getTotalBytesSent() const;
|
|
|
|
|
2013-02-10 18:46:42 +00:00
|
|
|
double getVerificationProgress() const;
|
2011-07-08 16:05:10 +00:00
|
|
|
QDateTime getLastBlockDate() const;
|
|
|
|
|
2013-12-18 08:45:36 +00:00
|
|
|
//! Return network (main, testnet3, regtest)
|
|
|
|
QString getNetworkName() const;
|
2011-11-13 12:19:52 +00:00
|
|
|
//! Return true if core is doing initial block download
|
2011-06-18 11:13:48 +00:00
|
|
|
bool inInitialBlockDownload() const;
|
2012-09-13 12:33:52 +00:00
|
|
|
//! Return true if core is importing blocks
|
2012-10-21 19:23:13 +00:00
|
|
|
enum BlockSource getBlockSource() const;
|
2011-11-13 12:19:52 +00:00
|
|
|
//! Return conservative estimate of total number of blocks, or 0 if unknown
|
2011-09-11 08:49:30 +00:00
|
|
|
int getNumBlocksOfPeers() const;
|
2011-12-13 19:00:21 +00:00
|
|
|
//! Return warnings to be displayed in status bar
|
|
|
|
QString getStatusBarWarnings() const;
|
2011-05-22 15:19:43 +00:00
|
|
|
|
2011-07-01 15:06:36 +00:00
|
|
|
QString formatFullVersion() const;
|
2012-04-07 00:06:53 +00:00
|
|
|
QString formatBuildDate() const;
|
2012-10-24 19:47:07 +00:00
|
|
|
bool isReleaseVersion() const;
|
2012-04-09 19:07:25 +00:00
|
|
|
QString clientName() const;
|
2012-05-21 21:05:54 +00:00
|
|
|
QString formatClientStartupTime() const;
|
2011-07-01 15:06:36 +00:00
|
|
|
|
2011-05-31 20:24:53 +00:00
|
|
|
private:
|
2011-06-03 19:03:20 +00:00
|
|
|
OptionsModel *optionsModel;
|
2011-05-30 18:20:12 +00:00
|
|
|
|
2011-07-17 12:06:43 +00:00
|
|
|
int cachedNumBlocks;
|
2012-05-05 14:07:14 +00:00
|
|
|
int cachedNumBlocksOfPeers;
|
2013-09-04 09:52:45 +00:00
|
|
|
bool cachedReindexing;
|
|
|
|
bool cachedImporting;
|
2011-07-17 12:06:43 +00:00
|
|
|
|
2011-09-10 09:43:45 +00:00
|
|
|
int numBlocksAtStartup;
|
|
|
|
|
2012-05-05 14:07:14 +00:00
|
|
|
QTimer *pollTimer;
|
|
|
|
|
2012-05-06 17:40:58 +00:00
|
|
|
void subscribeToCoreSignals();
|
|
|
|
void unsubscribeFromCoreSignals();
|
2013-01-23 20:51:02 +00:00
|
|
|
|
2011-05-22 15:19:43 +00:00
|
|
|
signals:
|
|
|
|
void numConnectionsChanged(int count);
|
2012-05-05 14:07:14 +00:00
|
|
|
void numBlocksChanged(int count, int countOfPeers);
|
2012-10-24 19:47:07 +00:00
|
|
|
void alertsChanged(const QString &warnings);
|
2013-08-22 16:09:32 +00:00
|
|
|
void bytesChanged(quint64 totalBytesIn, quint64 totalBytesOut);
|
2011-06-30 16:05:29 +00:00
|
|
|
|
2013-12-03 08:25:24 +00:00
|
|
|
//! Fired when a message should be reported to the user
|
2012-12-03 12:24:42 +00:00
|
|
|
void message(const QString &title, const QString &message, unsigned int style);
|
2011-05-22 15:19:43 +00:00
|
|
|
|
|
|
|
public slots:
|
2012-05-05 14:07:14 +00:00
|
|
|
void updateTimer();
|
|
|
|
void updateNumConnections(int numConnections);
|
|
|
|
void updateAlert(const QString &hash, int status);
|
2011-05-22 15:19:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CLIENTMODEL_H
|