From d592ee191e8aedc84c670e6d818fcf97c0bd7a92 Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Wed, 17 Jan 2018 13:32:13 +0100 Subject: Configuration creates missing items based on defaults --- src/browser.cpp | 5 ++++- src/main.cpp | 35 ++++++++++------------------------- 2 files changed, 14 insertions(+), 26 deletions(-) (limited to 'src') diff --git a/src/browser.cpp b/src/browser.cpp index 43cee5f..1e07a95 100644 --- a/src/browser.cpp +++ b/src/browser.cpp @@ -25,7 +25,10 @@ Browser::Browser(int &argc, char *argv[]) Browser::~Browser() { if(m_config) { - QtConcurrent::run(QThreadPool::globalInstance(), m_config.get(), &Configuration::writeIfNeeded); + //QtConcurrent::run(QThreadPool::globalInstance(), m_config.get(), &Configuration::writeIfNeeded); + QtConcurrent::run([c = m_config.get()]() { + qDebug("Writing configuration: %s", c->writeIfNeeded() ? "ok" : "failed"); + }); } if(m_bookmarksManager) { QtConcurrent::run(QThreadPool::globalInstance(), m_bookmarksManager.get(), &BookmarksWidget::save); diff --git a/src/main.cpp b/src/main.cpp index fb80b7e..0452fdd 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -36,35 +36,18 @@ void bootstrapUserConfig(const std::string &path, Configuration &config) // set firstRun to false so we don't re-init on every run config.setValue("browser.firstRun", false); - // The .path's need to be overriden because ~ doesn't translate to home - const QString &home = QStandardPaths::writableLocation(QStandardPaths::HomeLocation); - - // filter.path - std::string filterPath = config.value("filter.path").value(); - config.setValue("filter.path", patchHome(filterPath, home.toStdString())); - - // profile.path - std::string profilePath = config.value("profile.path").value(); - config.setValue("profile.path", patchHome(profilePath, home.toStdString())); - - // bookmarks.path - std::string bookmarksPath = config.value("bookmarks.path").value(); - config.setValue("bookmarks.path", patchHome(bookmarksPath, home.toStdString())); - - // downloads.path - std::string downloadsPath = config.value("downloads.path").value(); - config.setValue("downloads.path", patchHome(downloadsPath, home.toStdString())); + config.resetValue("filter.path"); + config.resetValue("profile.path"); + config.resetValue("bookmarks.path"); + config.resetValue("downloads.path"); + config.resetValue("plugins.path"); } int main(int argc, char *argv[]) { // Create application object Browser instance(argc, argv); -#ifdef SMOLBOTE_VERSION instance.setApplicationVersion(SMOLBOTE_VERSION); -#else - instance.setApplicationVersion("1.0.0"); -#endif #ifdef QT_DEBUG QElapsedTimer timer; @@ -122,8 +105,10 @@ int main(int argc, char *argv[]) return 0; } - std::shared_ptr config = std::make_shared(); - config->readUserConfiguration(parser.value(configOption).toStdString()); + std::shared_ptr config = std::make_shared( + parser.value(configOption).toStdString(), + QStandardPaths::writableLocation(QStandardPaths::HomeLocation).toStdString()); + config->read(); config->parseDefaultConfiguration(readConfig(parser.value(defaultConfigOption))); // check if first run @@ -151,7 +136,7 @@ int main(int argc, char *argv[]) // patch paths bootstrapUserConfig(path.toStdString(), *config); - std::cout << "Generating config to: " << qUtf8Printable(path) << (config->writeUserConfiguration(path.toStdString()) ? " ok" : " failed") << std::endl; + std::cout << "Writing configuration: " << (config->writeIfNeeded(path.toStdString()) ? "ok" : "failed") << std::endl; // exit if this is the only thing we needed to do if(parser.isSet(generateUserConfigOption)) { -- cgit v1.2.1