summaryrefslogtreecommitdiff
path: root/src/lib/state.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-09-26 00:09:04 +0200
committerCarl Hetherington <cth@carlh.net>2021-09-27 11:32:49 +0200
commitccacce39c39d16977ab6c1592fcb6e941b05ddff (patch)
tree47c348ad4841efd64936b01db2a49eead46f67c8 /src/lib/state.cc
parent18cb0e914922cd76e9c205e88962816970b5c0cb (diff)
Add config location versioning (#2090).
Diffstat (limited to 'src/lib/state.cc')
-rw-r--r--src/lib/state.cc59
1 files changed, 48 insertions, 11 deletions
diff --git a/src/lib/state.cc b/src/lib/state.cc
index 5f7e9a701..e22f9e0b9 100644
--- a/src/lib/state.cc
+++ b/src/lib/state.cc
@@ -19,33 +19,70 @@
*/
-#include "state.h"
#include "cross.h"
+#include "state.h"
+#include "util.h"
#include <glib.h>
using std::string;
+using boost::optional;
boost::optional<boost::filesystem::path> State::override_path;
+/* List of config versions to look for in descending order of preference;
+ * i.e. look at the first one, and if that doesn't exist, try the second, etc.
+ */
+static std::vector<std::string> config_versions = { "2.16" };
+
+
+static
+boost::filesystem::path
+config_path_or_override (optional<string> version)
+{
+ if (State::override_path) {
+ auto p = *State::override_path;
+ if (version) {
+ p /= *version;
+ }
+ return p;
+ }
+
+ return config_path (version);
+}
+
+
/** @param file State filename
- * @return Full path to write @file to.
+ * @return Full path to read @file from.
*/
boost::filesystem::path
-State::path (string file, bool create_directories)
+State::read_path (string file)
{
- boost::filesystem::path p;
- if (override_path) {
- p = *override_path;
- } else {
- p = config_path ();
+ using namespace boost::filesystem;
+
+ for (auto i: config_versions) {
+ auto full = config_path_or_override(i) / file;
+ if (exists(full)) {
+ return full;
+ }
}
+
+ return config_path_or_override({}) / file;
+}
+
+
+/** @param file State filename
+ * @return Full path to write @file to.
+ */
+boost::filesystem::path
+State::write_path (string file)
+{
+ boost::filesystem::path p = config_path_or_override(config_versions.front());
boost::system::error_code ec;
- if (create_directories) {
- boost::filesystem::create_directories (p, ec);
- }
+ boost::filesystem::create_directories (p, ec);
p /= file;
return p;
}
+