mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-02-26 17:19:29 +01:00
59 lines
1.9 KiB
C++
59 lines
1.9 KiB
C++
// 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 <util/fs.h>
|
|
|
|
#include <QDir>
|
|
#include <QString>
|
|
|
|
#include <cstdint>
|
|
|
|
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);
|
|
}
|