mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-08-26 14:01:10 +02:00
qt, refactor: Move FreespaceChecker
class into its own module
This commit is contained in:
@@ -75,6 +75,8 @@ add_library(bitcoinqt STATIC EXCLUDE_FROM_ALL
|
|||||||
clientmodel.h
|
clientmodel.h
|
||||||
csvmodelwriter.cpp
|
csvmodelwriter.cpp
|
||||||
csvmodelwriter.h
|
csvmodelwriter.h
|
||||||
|
freespacechecker.cpp
|
||||||
|
freespacechecker.h
|
||||||
guiutil.cpp
|
guiutil.cpp
|
||||||
guiutil.h
|
guiutil.h
|
||||||
initexecutor.cpp
|
initexecutor.cpp
|
||||||
|
64
src/qt/freespacechecker.cpp
Normal file
64
src/qt/freespacechecker.cpp
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
// Copyright (c) 2011-present The Bitcoin Core developers
|
||||||
|
// Distributed under the MIT software license, see the accompanying
|
||||||
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
|
#include <qt/freespacechecker.h>
|
||||||
|
|
||||||
|
#include <qt/guiutil.h>
|
||||||
|
#include <qt/intro.h>
|
||||||
|
#include <util/fs.h>
|
||||||
|
|
||||||
|
#include <QDir>
|
||||||
|
#include <QString>
|
||||||
|
|
||||||
|
#include <cstdint>
|
||||||
|
|
||||||
|
FreespaceChecker::FreespaceChecker(Intro *_intro)
|
||||||
|
{
|
||||||
|
this->intro = _intro;
|
||||||
|
}
|
||||||
|
|
||||||
|
void FreespaceChecker::check()
|
||||||
|
{
|
||||||
|
QString dataDirStr = intro->getPathToCheck();
|
||||||
|
fs::path dataDir = GUIUtil::QStringToPath(dataDirStr);
|
||||||
|
uint64_t freeBytesAvailable = 0;
|
||||||
|
int replyStatus = ST_OK;
|
||||||
|
QString replyMessage = tr("A new data directory will be created.");
|
||||||
|
|
||||||
|
/* Find first parent that exists, so that fs::space does not fail */
|
||||||
|
fs::path parentDir = dataDir;
|
||||||
|
fs::path parentDirOld = fs::path();
|
||||||
|
while(parentDir.has_parent_path() && !fs::exists(parentDir))
|
||||||
|
{
|
||||||
|
parentDir = parentDir.parent_path();
|
||||||
|
|
||||||
|
/* Check if we make any progress, break if not to prevent an infinite loop here */
|
||||||
|
if (parentDirOld == parentDir)
|
||||||
|
break;
|
||||||
|
|
||||||
|
parentDirOld = parentDir;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
freeBytesAvailable = fs::space(parentDir).available;
|
||||||
|
if(fs::exists(dataDir))
|
||||||
|
{
|
||||||
|
if(fs::is_directory(dataDir))
|
||||||
|
{
|
||||||
|
QString separator = "<code>" + QDir::toNativeSeparators("/") + tr("name") + "</code>";
|
||||||
|
replyStatus = ST_OK;
|
||||||
|
replyMessage = tr("Directory already exists. Add %1 if you intend to create a new directory here.").arg(separator);
|
||||||
|
} else {
|
||||||
|
replyStatus = ST_ERROR;
|
||||||
|
replyMessage = tr("Path already exists, and is not a directory.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (const fs::filesystem_error&)
|
||||||
|
{
|
||||||
|
/* Parent directory does not exist or is not accessible */
|
||||||
|
replyStatus = ST_ERROR;
|
||||||
|
replyMessage = tr("Cannot create data directory here.");
|
||||||
|
}
|
||||||
|
Q_EMIT reply(replyStatus, replyMessage, freeBytesAvailable);
|
||||||
|
}
|
46
src/qt/freespacechecker.h
Normal file
46
src/qt/freespacechecker.h
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
// Copyright (c) 2011-present The Bitcoin Core developers
|
||||||
|
// Distributed under the MIT software license, see the accompanying
|
||||||
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
|
#ifndef BITCOIN_QT_FREESPACECHECKER_H
|
||||||
|
#define BITCOIN_QT_FREESPACECHECKER_H
|
||||||
|
|
||||||
|
#include <QObject>
|
||||||
|
#include <QString>
|
||||||
|
#include <QtGlobal>
|
||||||
|
|
||||||
|
class Intro;
|
||||||
|
|
||||||
|
/* Check free space asynchronously to prevent hanging the UI thread.
|
||||||
|
|
||||||
|
Up to one request to check a path is in flight to this thread; when the check()
|
||||||
|
function runs, the current path is requested from the associated Intro object.
|
||||||
|
The reply is sent back through a signal.
|
||||||
|
|
||||||
|
This ensures that no queue of checking requests is built up while the user is
|
||||||
|
still entering the path, and that always the most recently entered path is checked as
|
||||||
|
soon as the thread becomes available.
|
||||||
|
*/
|
||||||
|
class FreespaceChecker : public QObject
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
explicit FreespaceChecker(Intro *intro);
|
||||||
|
|
||||||
|
enum Status {
|
||||||
|
ST_OK,
|
||||||
|
ST_ERROR
|
||||||
|
};
|
||||||
|
|
||||||
|
public Q_SLOTS:
|
||||||
|
void check();
|
||||||
|
|
||||||
|
Q_SIGNALS:
|
||||||
|
void reply(int status, const QString &message, quint64 available);
|
||||||
|
|
||||||
|
private:
|
||||||
|
Intro *intro;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // BITCOIN_QT_FREESPACECHECKER_H
|
@@ -1,4 +1,4 @@
|
|||||||
// Copyright (c) 2011-2022 The Bitcoin Core developers
|
// Copyright (c) 2011-present The Bitcoin Core developers
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
@@ -10,6 +10,7 @@
|
|||||||
#include <util/chaintype.h>
|
#include <util/chaintype.h>
|
||||||
#include <util/fs.h>
|
#include <util/fs.h>
|
||||||
|
|
||||||
|
#include <qt/freespacechecker.h>
|
||||||
#include <qt/guiconstants.h>
|
#include <qt/guiconstants.h>
|
||||||
#include <qt/guiutil.h>
|
#include <qt/guiutil.h>
|
||||||
#include <qt/optionsmodel.h>
|
#include <qt/optionsmodel.h>
|
||||||
@@ -25,90 +26,6 @@
|
|||||||
|
|
||||||
#include <cmath>
|
#include <cmath>
|
||||||
|
|
||||||
/* Check free space asynchronously to prevent hanging the UI thread.
|
|
||||||
|
|
||||||
Up to one request to check a path is in flight to this thread; when the check()
|
|
||||||
function runs, the current path is requested from the associated Intro object.
|
|
||||||
The reply is sent back through a signal.
|
|
||||||
|
|
||||||
This ensures that no queue of checking requests is built up while the user is
|
|
||||||
still entering the path, and that always the most recently entered path is checked as
|
|
||||||
soon as the thread becomes available.
|
|
||||||
*/
|
|
||||||
class FreespaceChecker : public QObject
|
|
||||||
{
|
|
||||||
Q_OBJECT
|
|
||||||
|
|
||||||
public:
|
|
||||||
explicit FreespaceChecker(Intro *intro);
|
|
||||||
|
|
||||||
enum Status {
|
|
||||||
ST_OK,
|
|
||||||
ST_ERROR
|
|
||||||
};
|
|
||||||
|
|
||||||
public Q_SLOTS:
|
|
||||||
void check();
|
|
||||||
|
|
||||||
Q_SIGNALS:
|
|
||||||
void reply(int status, const QString &message, quint64 available);
|
|
||||||
|
|
||||||
private:
|
|
||||||
Intro *intro;
|
|
||||||
};
|
|
||||||
|
|
||||||
#include <qt/intro.moc>
|
|
||||||
|
|
||||||
FreespaceChecker::FreespaceChecker(Intro *_intro)
|
|
||||||
{
|
|
||||||
this->intro = _intro;
|
|
||||||
}
|
|
||||||
|
|
||||||
void FreespaceChecker::check()
|
|
||||||
{
|
|
||||||
QString dataDirStr = intro->getPathToCheck();
|
|
||||||
fs::path dataDir = GUIUtil::QStringToPath(dataDirStr);
|
|
||||||
uint64_t freeBytesAvailable = 0;
|
|
||||||
int replyStatus = ST_OK;
|
|
||||||
QString replyMessage = tr("A new data directory will be created.");
|
|
||||||
|
|
||||||
/* Find first parent that exists, so that fs::space does not fail */
|
|
||||||
fs::path parentDir = dataDir;
|
|
||||||
fs::path parentDirOld = fs::path();
|
|
||||||
while(parentDir.has_parent_path() && !fs::exists(parentDir))
|
|
||||||
{
|
|
||||||
parentDir = parentDir.parent_path();
|
|
||||||
|
|
||||||
/* Check if we make any progress, break if not to prevent an infinite loop here */
|
|
||||||
if (parentDirOld == parentDir)
|
|
||||||
break;
|
|
||||||
|
|
||||||
parentDirOld = parentDir;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
freeBytesAvailable = fs::space(parentDir).available;
|
|
||||||
if(fs::exists(dataDir))
|
|
||||||
{
|
|
||||||
if(fs::is_directory(dataDir))
|
|
||||||
{
|
|
||||||
QString separator = "<code>" + QDir::toNativeSeparators("/") + tr("name") + "</code>";
|
|
||||||
replyStatus = ST_OK;
|
|
||||||
replyMessage = tr("Directory already exists. Add %1 if you intend to create a new directory here.").arg(separator);
|
|
||||||
} else {
|
|
||||||
replyStatus = ST_ERROR;
|
|
||||||
replyMessage = tr("Path already exists, and is not a directory.");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} catch (const fs::filesystem_error&)
|
|
||||||
{
|
|
||||||
/* Parent directory does not exist or is not accessible */
|
|
||||||
replyStatus = ST_ERROR;
|
|
||||||
replyMessage = tr("Cannot create data directory here.");
|
|
||||||
}
|
|
||||||
Q_EMIT reply(replyStatus, replyMessage, freeBytesAvailable);
|
|
||||||
}
|
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
//! Return pruning size that will be used if automatic pruning is enabled.
|
//! Return pruning size that will be used if automatic pruning is enabled.
|
||||||
int GetPruneTargetGB()
|
int GetPruneTargetGB()
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// Copyright (c) 2011-2021 The Bitcoin Core developers
|
// Copyright (c) 2011-present The Bitcoin Core developers
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
|
@@ -16,6 +16,7 @@ EXPECTED_CIRCULAR_DEPENDENCIES = (
|
|||||||
"node/blockstorage -> validation -> node/blockstorage",
|
"node/blockstorage -> validation -> node/blockstorage",
|
||||||
"node/utxo_snapshot -> validation -> node/utxo_snapshot",
|
"node/utxo_snapshot -> validation -> node/utxo_snapshot",
|
||||||
"qt/addresstablemodel -> qt/walletmodel -> qt/addresstablemodel",
|
"qt/addresstablemodel -> qt/walletmodel -> qt/addresstablemodel",
|
||||||
|
"qt/freespacechecker -> qt/intro -> qt/freespacechecker",
|
||||||
"qt/recentrequeststablemodel -> qt/walletmodel -> qt/recentrequeststablemodel",
|
"qt/recentrequeststablemodel -> qt/walletmodel -> qt/recentrequeststablemodel",
|
||||||
"qt/sendcoinsdialog -> qt/walletmodel -> qt/sendcoinsdialog",
|
"qt/sendcoinsdialog -> qt/walletmodel -> qt/sendcoinsdialog",
|
||||||
"qt/transactiontablemodel -> qt/walletmodel -> qt/transactiontablemodel",
|
"qt/transactiontablemodel -> qt/walletmodel -> qt/transactiontablemodel",
|
||||||
|
Reference in New Issue
Block a user