summaryrefslogtreecommitdiff
path: root/louloulibs
diff options
context:
space:
mode:
Diffstat (limited to 'louloulibs')
-rw-r--r--louloulibs/utils/reload.cpp28
-rw-r--r--louloulibs/utils/reload.hpp4
2 files changed, 0 insertions, 32 deletions
diff --git a/louloulibs/utils/reload.cpp b/louloulibs/utils/reload.cpp
deleted file mode 100644
index 7125a75..0000000
--- a/louloulibs/utils/reload.cpp
+++ /dev/null
@@ -1,28 +0,0 @@
-#include <utils/reload.hpp>
-#include <database/database.hpp>
-#include <config/config.hpp>
-#include <utils/xdg.hpp>
-#include <logger/logger.hpp>
-
-void open_database()
-{
- const auto db_filename = Config::get("db_name", xdg_data_path("biboumi.sqlite"));
- log_info("Opening database: ", db_filename);
- Database::open(db_filename);
- log_info("database successfully opened.");
-}
-
-void reload_process()
-{
- Config::read_conf();
- // Destroy the logger instance, to be recreated the next time a log
- // line needs to be written
- Logger::instance().reset();
- log_info("Configuration and logger reloaded.");
- try {
- open_database();
- } catch (const litesql::DatabaseError&) {
- log_warning("Re-using the previous database.");
- }
-}
-
diff --git a/louloulibs/utils/reload.hpp b/louloulibs/utils/reload.hpp
deleted file mode 100644
index 408426a..0000000
--- a/louloulibs/utils/reload.hpp
+++ /dev/null
@@ -1,4 +0,0 @@
-#pragma once
-
-void open_database();
-void reload_process();