The Battle for Wesnoth  1.19.0-dev
migrate_version_selection.cpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2008 - 2024
3  Part of the Battle for Wesnoth Project https://www.wesnoth.org/
4 
5  This program is free software; you can redistribute it and/or modify
6  it under the terms of the GNU General Public License as published by
7  the Free Software Foundation; either version 2 of the License, or
8  (at your option) any later version.
9  This program is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY.
11 
12  See the COPYING file for more details.
13 */
14 
15 #define GETTEXT_DOMAIN "wesnoth-lib"
16 
18 
19 #include "addon/manager_ui.hpp"
20 #include "filesystem.hpp"
21 #include "game_version.hpp"
22 #include "gettext.hpp"
24 #include "gui/widgets/listbox.hpp"
25 #include "gui/widgets/window.hpp"
27 #include "preferences/game.hpp"
28 
29 #include <boost/algorithm/string.hpp>
30 
31 static lg::log_domain log_version_migration{"gui/dialogs/migrate_version_selection"};
32 #define ERR_LOG_VERSION_MIGRATION LOG_STREAM(err, log_version_migration)
33 #define WRN_LOG_VERSION_MIGRATION LOG_STREAM(warn, log_version_migration)
34 #define LOG_LOG_VERSION_MIGRATION LOG_STREAM(info, log_version_migration)
35 #define DBG_LOG_VERSION_MIGRATION LOG_STREAM(debug, log_version_migration)
36 
37 namespace gui2::dialogs
38 {
39 REGISTER_DIALOG(migrate_version_selection)
40 
42 {
44  if(mig.versions_.size() > 0) {
45  mig.show();
46  }
47 }
48 
50  : modal_dialog(window_id())
51 {
53  std::string current_version_str = filesystem::get_version_path_suffix();
54 
55  for(unsigned int i = 1; i < current_version.minor_version(); i++) {
56  std::string previous_version_str = std::to_string(current_version.major_version()) + "."
57  + std::to_string(current_version.minor_version() - i);
58  std::string previous_addons_dir
59  = boost::replace_all_copy(filesystem::get_addons_dir(), current_version_str, previous_version_str);
60 
61  if(previous_addons_dir != filesystem::get_addons_dir() && filesystem::file_exists(previous_addons_dir)) {
62  versions_.push_back(previous_version_str);
63  }
64  }
65 }
66 
68 {
69  listbox& version_list = find_widget<listbox>(&window, "versions_listbox", false);
70 
71  for(const auto& version : versions_) {
73  widget_item item_label;
74 
75  item_label["label"] = version;
76  data["version_label"] = item_label;
77 
78  version_list.add_row(data);
79  }
80 }
81 
83 {
84  if(get_retval() == gui2::OK) {
85  std::string current_version_str = filesystem::get_version_path_suffix();
86  listbox& version_list = find_widget<listbox>(&window, "versions_listbox", false);
87  int selected_row = version_list.get_selected_row();
88  std::string selected = versions_.at(selected_row);
89 
90  std::string migrate_addons_dir
91  = boost::replace_all_copy(filesystem::get_addons_dir(), current_version_str, selected);
92  std::string migrate_prefs_file
93  = boost::replace_all_copy(filesystem::get_prefs_file(), current_version_str, selected);
94  std::string migrate_credentials_file
95  = boost::replace_all_copy(filesystem::get_credentials_file(), current_version_str, selected);
96 
97  // given self-compilation and linux distros being able to do whatever they want plus command line options to
98  // alter locations make sure the directories/files are actually different before doing anything with them
99  if(migrate_addons_dir != filesystem::get_addons_dir()) {
100  std::vector<std::string> migrate_addons;
101  filesystem::get_files_in_dir(migrate_addons_dir, nullptr, &migrate_addons);
102  if(migrate_addons.size() > 0) {
103  ad_hoc_addon_fetch_session(migrate_addons);
104  }
105  }
106 
107  if(migrate_prefs_file != filesystem::get_prefs_file() && filesystem::file_exists(migrate_prefs_file)) {
108  filesystem::copy_file(migrate_prefs_file, filesystem::get_prefs_file());
109  }
110 
111  if(migrate_credentials_file != filesystem::get_credentials_file()
112  && filesystem::file_exists(migrate_credentials_file)) {
113  filesystem::copy_file(migrate_credentials_file, filesystem::get_credentials_file());
114  }
115 
116  // reload preferences and credentials
117  // otherwise the copied files won't be used and also will get overwritten/deleted when Wesnoth closes
121  }
122 }
123 } // namespace gui2::dialogs
This shows the dialog to select a previous version of Wesnoth to migrate preferences from and redownl...
virtual void post_show(window &window) override
Actions to be taken after the window has been shown.
virtual void pre_show(window &window) override
Actions to be taken before showing the window.
Abstract base class for all modal dialogs.
bool show(const unsigned auto_close_time=0)
Shows the window.
int get_retval() const
Returns the cached window exit code.
The listbox class.
Definition: listbox.hpp:43
grid & add_row(const widget_item &item, const int index=-1)
When an item in the list is selected by the user we need to update the state.
Definition: listbox.cpp:59
int get_selected_row() const
Returns the first selected row.
Definition: listbox.cpp:268
base class of top level items, the only item which needs to store the final canvases to draw on.
Definition: window.hpp:63
Represents version numbers.
unsigned int minor_version() const
Retrieves the minor version number (x2 in "x1.x2.x3").
unsigned int major_version() const
Retrieves the major version number (x1 in "x1.x2.x3").
Declarations for File-IO.
std::size_t i
Definition: function.cpp:968
Interfaces for manipulating version numbers of engine, add-ons, etc.
This file contains the window object, this object is a top level container which has the event manage...
bool ad_hoc_addon_fetch_session(const std::vector< std::string > &addon_ids)
Conducts an ad-hoc add-ons server connection to download an add-on with a particular id and all it's ...
Definition: manager_ui.cpp:255
static lg::log_domain log_version_migration
void get_files_in_dir(const std::string &dir, std::vector< std::string > *files, std::vector< std::string > *dirs, name_mode mode, filter_mode filter, reorder_mode reorder, file_tree_checksum *checksum)
Get a list of all files and/or directories in a given directory.
Definition: filesystem.cpp:405
void copy_file(const std::string &src, const std::string &dest)
Read a file and then writes it back out.
static bool file_exists(const bfs::path &fpath)
Definition: filesystem.cpp:319
std::string get_prefs_file()
std::string get_credentials_file()
std::string get_addons_dir()
const std::string get_version_path_suffix(const version_info &version)
Definition: filesystem.cpp:569
std::string selected
const version_info wesnoth_version(VERSION)
REGISTER_DIALOG(editor_edit_unit)
std::map< std::string, widget_item > widget_data
Definition: widget.hpp:34
std::map< std::string, t_string > widget_item
Definition: widget.hpp:31
@ OK
Dialog was closed with the OK button.
Definition: retval.hpp:35
void load_base_prefs()
Definition: general.cpp:240
void load_credentials()
void load_game_prefs()
Definition: game.cpp:117
std::string_view data
Definition: picture.cpp:194