5#include <bitcoin-build-config.h>
7#include <chainparams.h>
9#include <qt/forms/ui_intro.h>
23#include <validation.h>
42Intro::Intro(QWidget *parent, int64_t blockchain_size_gb, int64_t chain_state_size_gb) :
45 m_blockchain_size_gb(blockchain_size_gb),
46 m_chain_state_size_gb(chain_state_size_gb),
47 m_prune_target_gb{GetPruneTargetGB()}
50 ui->welcomeLabel->setText(
ui->welcomeLabel->text().arg(CLIENT_NAME));
51 ui->storageLabel->setText(
ui->storageLabel->text().arg(CLIENT_NAME));
53 ui->lblExplanation1->setText(
ui->lblExplanation1->text()
59 ui->lblExplanation2->setText(
ui->lblExplanation2->text().arg(CLIENT_NAME));
62 ui->pruneGB->setRange(min_prune_target_GB, std::numeric_limits<int>::max());
65 ui->prune->setChecked(*arg >= 1);
66 ui->prune->setEnabled(
false);
69 ui->pruneGB->setToolTip(
ui->prune->toolTip());
70 ui->lblPruneSuffix->setToolTip(
ui->prune->toolTip());
73 connect(
ui->prune, &QCheckBox::toggled, [
this](
bool prune_checked) {
74 m_prune_checkbox_is_default = false;
75 UpdatePruneLabels(prune_checked);
76 UpdateFreeSpaceLabel();
78 connect(
ui->pruneGB, qOverload<int>(&QSpinBox::valueChanged), [
this](
int prune_GB) {
79 m_prune_target_gb = prune_GB;
80 UpdatePruneLabels(ui->prune->isChecked());
81 UpdateFreeSpaceLabel();
97 return ui->dataDirectory->text();
102 ui->dataDirectory->setText(dataDir);
105 ui->dataDirDefault->setChecked(
true);
106 ui->dataDirectory->setEnabled(
false);
107 ui->ellipsisButton->setEnabled(
false);
109 ui->dataDirCustom->setChecked(
true);
110 ui->dataDirectory->setEnabled(
true);
111 ui->ellipsisButton->setEnabled(
true);
117 switch (
ui->prune->checkState()) {
120 case Qt::Unchecked:
default:
127 did_show_intro =
false;
137 dataDir = settings.value(
"strDataDir", dataDir).toString();
144 }
catch (
const std::exception& e) {
146 QMessageBox::critical(
nullptr, CLIENT_NAME, QObject::tr(
"Error: %1").arg(QString(e.what())));
147 std::exit(EXIT_FAILURE);
151 Intro intro(
nullptr,
Params().AssumedBlockchainSize(),
Params().AssumedChainStateSize());
153 intro.setWindowIcon(QIcon(
":icons/bitcoin"));
154 did_show_intro =
true;
170 }
catch (
const fs::filesystem_error&) {
171 QMessageBox::critical(
nullptr, CLIENT_NAME,
172 tr(
"Error: Specified data directory \"%1\" cannot be created.").arg(dataDir));
180 settings.setValue(
"strDataDir", dataDir);
181 settings.setValue(
"fReset",
false);
198 ui->errorMessage->setText(message);
199 ui->errorMessage->setStyleSheet(
"");
202 ui->errorMessage->setText(tr(
"Error") +
": " + message);
203 ui->errorMessage->setStyleSheet(
"QLabel { color: #800000 }");
209 ui->freeSpace->setText(
"");
226 ui->freeSpace->setStyleSheet(
"QLabel { color: #800000 }");
229 ui->freeSpace->setStyleSheet(
"QLabel { color: #999900 }");
231 ui->freeSpace->setStyleSheet(
"");
233 ui->freeSpace->setText(freeString +
".");
239 ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(
false);
245 QString dir = QDir::toNativeSeparators(QFileDialog::getExistingDirectory(
nullptr, tr(
"Choose data directory"),
ui->dataDirectory->text()));
247 ui->dataDirectory->setText(dir);
257 ui->dataDirectory->setEnabled(
true);
258 ui->ellipsisButton->setEnabled(
true);
263 thread =
new QThread(
this);
265 executor->moveToThread(
thread);
270 connect(
thread, &QThread::finished, executor, &QObject::deleteLater);
300 QString storageRequiresMsg = tr(
"At least %1 GB of data will be stored in this directory, and it will grow over time.");
303 storageRequiresMsg = tr(
"Approximately %1 GB of data will be stored in this directory.");
305 ui->lblExplanation3->setVisible(prune_checked);
306 ui->pruneGB->setEnabled(prune_checked);
307 static constexpr uint64_t nPowTargetSpacing = 10 * 60;
308 static constexpr uint32_t expected_block_data_size = 2250000;
309 const uint64_t expected_backup_days =
m_prune_target_gb * 1e9 / (uint64_t(expected_block_data_size) * 86400 / nPowTargetSpacing);
310 ui->lblPruneSuffix->setText(
312 tr(
"(sufficient to restore backups %n day(s) old)",
"", expected_backup_days));
313 ui->sizeWarningLabel->setText(
314 tr(
"%1 will download and store a copy of the Bitcoin block chain.").arg(CLIENT_NAME) +
" " +
316 tr(
"The wallet will also be stored in this directory.")
void SelectParams(const ChainType chain)
Sets the params returned by Params() to those for the given chain type.
const CChainParams & Params()
Return the currently selected parameters.
ChainType GetChainType() const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Returns the appropriate chain type from the program arguments.
bool SoftSetArg(const std::string &strArg, const std::string &strValue) EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Set an argument if it doesn't already have a value.
std::string GetArg(const std::string &strArg, const std::string &strDefault) const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Return string argument or default value.
int64_t GetIntArg(const std::string &strArg, int64_t nDefault) const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
bool GetBoolArg(const std::string &strArg, bool fDefault) const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Return boolean argument or default value.
void reply(int status, const QString &message, quint64 available)
Introduction screen (pre-GUI startup).
void setStatus(int status, const QString &message, quint64 bytesAvailable)
void on_ellipsisButton_clicked()
void UpdatePruneLabels(bool prune_checked)
const int64_t m_blockchain_size_gb
void setDataDirectory(const QString &dataDir)
int64_t m_prune_target_gb
bool m_prune_checkbox_is_default
uint64_t m_bytes_available
friend class FreespaceChecker
void on_dataDirectory_textChanged(const QString &arg1)
int64_t m_required_space_gb
Total required space (in GB) depending on user choice (prune or not prune).
void UpdateFreeSpaceLabel()
int64_t getPruneMiB() const
static bool showIfNeeded(bool &did_show_intro, int64_t &prune_MiB)
Determine data directory.
Intro(QWidget *parent=nullptr, int64_t blockchain_size_gb=0, int64_t chain_state_size_gb=0)
const int64_t m_chain_state_size_gb
QString getDataDirectory()
void checkPath(const QString &dataDir)
QString getPathToCheck() override
void on_dataDirDefault_clicked()
void on_dataDirCustom_clicked()
static bool exists(const path &p)
static std::string PathToString(const path &path)
Convert path object to a byte string.
bool TryCreateDirectories(const fs::path &p)
Ignores exceptions thrown by create_directories if the requested directory exists.
static constexpr int DEFAULT_PRUNE_TARGET_GB
static constexpr uint64_t GB_BYTES
bool InitError(const bilingual_str &str)
Show error message.
static const bool DEFAULT_CHOOSE_DATADIR
Utility functions used by the Bitcoin Qt UI.
QString getDefaultDataDirectory()
Determine default data directory for operating system.
constexpr auto dialog_flags
fs::path QStringToPath(const QString &path)
Convert QString to OS specific boost path through UTF-8.
static int PruneMiBtoGB(int64_t mib)
Convert configured prune target MiB to displayed GB.
static int64_t PruneGBtoMiB(int gb)
Convert displayed prune target GB to configured MiB.
bilingual_str Untranslated(std::string original)
Mark a bilingual_str as untranslated.
static const uint64_t MIN_DISK_SPACE_FOR_BLOCK_FILES