File: OptionsDB.cpp

package info (click to toggle)
freeorion 0.5.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 194,940 kB
  • sloc: cpp: 186,508; python: 40,969; ansic: 1,164; xml: 719; makefile: 32; sh: 7
file content (945 lines) | stat: -rw-r--r-- 40,588 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
#include "OptionsDB.h"

#include "Directories.h"
#include "i18n.h"
#include "Logger.h"
#include "OptionValidators.h"
#include "XMLDoc.h"
#include "ranges.h"

#include <iostream>
#include <iomanip>
#include <stdexcept>
#include <string>
#include <utility>
#if !defined(__cpp_lib_integer_comparison_functions)
namespace std {
    inline auto cmp_greater_equal(auto&& lhs, auto&& rhs) { return lhs < rhs; }
}
#endif

#include <boost/algorithm/string/classification.hpp>
#include <boost/algorithm/string/erase.hpp>
#include <boost/algorithm/string/predicate.hpp>
#include <boost/container/flat_map.hpp>
#include <boost/filesystem.hpp>
#include <boost/range/algorithm_ext/erase.hpp>
#include <boost/tokenizer.hpp>

namespace {
    std::vector<OptionsDBFn>& OptionsRegistry() noexcept {
        static std::vector<OptionsDBFn> options_db_registry;
        return options_db_registry;
    }

    std::string PreviousSectionName(const std::vector<XMLElement*>& elem_stack) {
        std::string retval;
        for (unsigned int i = 1; i < elem_stack.size(); ++i) {
            retval += elem_stack[i]->Tag();
            if (i != elem_stack.size() - 1)
                retval += '.';
        }
        return retval;
    }

    std::string_view StripQuotation(std::string_view str) {
        if (str.size() < 2 || str[0] != '"' || str[str.size() - 1] != '"')
            return str;
        return str.substr(1, str.size() - 2);
    }

    ///< the master list of abbreviated option names, and their corresponding long-form names
    boost::container::flat_map<char, std::string> short_names;

    OptionsDB options_db;
}

/////////////////////////////////////////////
// Free Functions
/////////////////////////////////////////////
bool RegisterOptions(OptionsDBFn function) {
    OptionsRegistry().emplace_back(function);
    return true;
}

OptionsDB& GetOptionsDB() {
    if (!OptionsRegistry().empty()) {
        for (OptionsDBFn fn : OptionsRegistry())
            fn(options_db);
        OptionsRegistry().clear();
    }
    return options_db;
}


/////////////////////////////////////////////
// OptionsDB::Option
/////////////////////////////////////////////
OptionsDB::Option::Option(char short_name_, std::string name_, boost::any value_,
                          boost::any default_value_, std::string description_,
                          std::unique_ptr<ValidatorBase>&& validator_, bool storable_,
                          bool flag_, bool recognized_, std::string section) :
    name(std::move(name_)),
    value(std::move(value_)),
    default_value(std::move(default_value_)),
    description(std::move(description_)),
    validator(std::move(validator_)),
    option_changed_sig(std::make_unique<OptionChangedSignalType>()),
    short_name(short_name_),
    storable(storable_),
    flag(flag_),
    recognized(recognized_)
{
    if (!validator)
        DebugLogger() << "Option " << name << " created with null validator...";

    auto name_it = name.rfind('.');
    if (name_it != std::string::npos)
        sections.insert(name.substr(0, name_it));

    if (short_name_) {
        auto [insertion_it, insertion_succeeded] = short_names.emplace(short_name_, name);
        if (!insertion_succeeded)
            ErrorLogger() << "Tried to insert short name " << short_name << " for option " << name
                          << " but that short name was already assigned to option " << insertion_it->second;
    }

    if (!section.empty())
        sections.insert(std::move(section));
    else if (sections.empty())
        sections.emplace("misc");
}

OptionsDB::Option::~Option() = default;

bool OptionsDB::Option::SetFromString(std::string_view str) {
    bool changed = false;
    boost::any value_;

    if (!flag) {
        if (validator) {
            value_ = validator->Validate(str);
            changed = validator->String(value) != validator->String(value_);
        } else {
            throw std::runtime_error("Option::SetFromString called with no OptionValidator set");
        }
    } else {
        value_ = boost::lexical_cast<bool>(str);    // if a flag, then the str parameter should just indicate true or false with "1" or "0"
        changed = (std::to_string(boost::any_cast<bool>(value))
                   != std::to_string(boost::any_cast<bool>(value_)));
    }

    if (changed) {
        value = std::move(value_);
        (*option_changed_sig)();
    }
    return changed;
}

bool OptionsDB::Option::SetToDefault() {
    bool changed = !ValueIsDefault();
    if (changed) {
        value = default_value;
        (*option_changed_sig)();
    }
    return changed;
}

std::string OptionsDB::Option::ValueToString() const {
    if (flag) {
        return std::to_string(boost::any_cast<bool>(value));
    } else if (validator)
        return validator->String(value);
    else
        throw std::runtime_error("Option::ValueToString called with no Validator set");
}

std::string OptionsDB::Option::DefaultValueToString() const {
    if (flag)
        return std::to_string(boost::any_cast<bool>(default_value));
    else if (validator)
        return validator->String(default_value);
    else
        throw std::runtime_error("Option::DefaultValueToString called with no Validator set");
}

bool OptionsDB::Option::ValueIsDefault() const
{ return ValueToString() == DefaultValueToString(); }


/////////////////////////////////////////////
// OptionsDB
/////////////////////////////////////////////
bool OptionsDB::Commit(bool only_if_dirty, bool only_non_default) {
    if (only_if_dirty && !m_dirty)
        return true;
    boost::filesystem::ofstream ofs(GetConfigPath());
    if (ofs) {
        XMLDoc doc;
        GetOptionsDB().GetXML(doc, only_non_default, true);
        doc.WriteDoc(ofs);
        m_dirty = false;
        return true;
    } else {
        std::cerr << UserString("UNABLE_TO_WRITE_CONFIG_XML") << std::endl;
        std::cerr << PathToString(GetConfigPath()) << std::endl;
        ErrorLogger() << UserString("UNABLE_TO_WRITE_CONFIG_XML");
        ErrorLogger() << PathToString(GetConfigPath());
        return false;
    }
}

bool OptionsDB::CommitPersistent() {
    bool retval = false;
    auto config_file = GetPersistentConfigPath();
    XMLDoc doc;
    GetOptionsDB().GetXML(doc, true, false);   // only output non-default options
    try {
        // Remove any previously existing file
        boost::filesystem::remove(config_file);

        boost::filesystem::ofstream ofs(GetPersistentConfigPath());
        if (ofs) {
            doc.WriteDoc(ofs);
            retval = true;
        } else {
            std::string err_msg = UserString("UNABLE_TO_WRITE_PERSISTENT_CONFIG_XML") + " : " + config_file.string();
            ErrorLogger() << err_msg;
            std::cerr << err_msg << std::endl;
        }
    } catch (const boost::filesystem::filesystem_error& ec) {
        ErrorLogger() << "Error during file operations when creating persistent config : " << ec.what();
    } catch (...) {
        std::string err_msg = "Unknown exception during persistent config creation";
        ErrorLogger() << err_msg;
        std::cerr << err_msg << std::endl;
    }

    return retval;
}

void OptionsDB::Validate(std::string_view name, std::string_view value) const {
    auto it = find_option(name);
    if (!OptionExists(it))
        throw std::runtime_error(std::string{"Attempted to validate unknown option \""}.append(name).append("\"."));

    if (it->flag)
        boost::lexical_cast<bool>(value);
    else if (it->validator)
        it->validator->Validate(value);
    else
        throw std::runtime_error("Attempted to validate option with no validator set");
}

std::string OptionsDB::GetValueString(std::string_view option_name) const {
    auto it = find_option(option_name);
    if (!OptionExists(it))
        throw std::runtime_error(std::string{"OptionsDB::GetValueString(): No option called \""}.append(option_name).append("\" could be found."));
    return it->ValueToString();
}

std::string OptionsDB::GetDefaultValueString(std::string_view option_name) const {
    auto it = find_option(option_name);
    if (!OptionExists(it))
        throw std::runtime_error(std::string{"OptionsDB::GetDefaultValueString(): No option called \""}.append(option_name).append("\" could be found."));
    return it->DefaultValueToString();
}

const std::string& OptionsDB::GetDescription(std::string_view option_name) const {
    auto it = find_option(option_name);
    if (!OptionExists(it))
        throw std::runtime_error(std::string{"OptionsDB::GetDescription(): No option called \""}.append(option_name).append("\" could be found."));
    return it->description;
}

const ValidatorBase* OptionsDB::GetValidator(std::string_view option_name) const {
    auto it = find_option(option_name);
    if (!OptionExists(it))
        throw std::runtime_error(std::string{"OptionsDB::GetValidator(): No option called \""}.append(option_name).append("\" could be found."));
    return it->validator.get();
}

namespace {
    constexpr std::size_t TERMINAL_LINE_WIDTH = 80;

    constexpr std::string_view lexical_true_str = "1"; // = std::to_string(true);

    /** Breaks and indents text over multiple lines when it exceeds width limits
     * @param text String to format, tokenized by spaces, tabs, and newlines (newlines retained but potentially indented)
     * @param indents amount of space prior to text. First for initial line, second for any new lines.
     * @param widths width to limit the text to. First for initial line, second for any new lines.
     * @returns string Formatted results of @p text
     */
    std::string SplitText(const std::string& text, std::pair<std::size_t, std::size_t> indents = { 0, 0 },
                          std::pair<std::size_t, std::size_t> widths = {TERMINAL_LINE_WIDTH, TERMINAL_LINE_WIDTH})
    {
        const boost::char_separator<char> separator { " \t", "\n" };
        const boost::tokenizer<boost::char_separator<char>> tokens{text, separator};

        std::vector<std::string> lines{""};
        for (const auto& token : tokens) {
            if (token == "\n") 
                lines.emplace_back();
            else if (widths.second < lines.back().size() + token.size() + indents.second)
                lines.push_back(token + " ");
            else if (!token.empty())
                lines.back().append(token + " ");
        }

        std::stringstream retval;
        retval << std::string(indents.first, ' ') << lines.front() << "\n";
        std::string indent(indents.second, ' ');
        for (const auto& line : lines)
            if (!line.empty())
                retval << indent << line << "\n";

        return retval.str();
    }

    bool OptionNameHasParentSection(std::string_view lhs, std::string_view rhs) {
        auto it = lhs.find_last_of('.');
        if (it == std::string::npos)
            return false;
        return lhs.substr(0, it) == rhs;
    }
}

std::unordered_map<std::string_view, std::set<std::string_view>> OptionsDB::OptionsBySection(bool allow_unrecognized) const {
    // Determine sections after all predicate calls from known options
    boost::container::flat_map<std::string_view, std::vector<std::string_view>> sections_by_option;
    sections_by_option.reserve(m_options.size());

    const auto is_recog_ok = [allow_unrecognized](const auto& o) { return allow_unrecognized || o.recognized; };

    for (const auto& option : m_options | range_filter(is_recog_ok)) {
        auto& sbo = sections_by_option.emplace(std::piecewise_construct,
                                               std::forward_as_tuple(option.name),
                                               std::forward_as_tuple(option.sections.begin(),
                                                                     option.sections.end())).first->second;

        for (const auto& section : m_sections)
            if (section.option_predicate && section.option_predicate(option.name))
                sbo.push_back(section.name);
    }

    // tally the total number of options under each section
    std::unordered_map<std::string_view, std::size_t> total_options_per_section;
    for (const auto option_name : sections_by_option | range_keys) {
        auto dot_it = option_name.find_first_of("."); // TODO: move into range as transform
        // increment count of each containing parent section
        while (dot_it != std::string::npos) {
            total_options_per_section[option_name.substr(0, dot_it)]++;
            dot_it++;
            dot_it = option_name.find_first_of(".", dot_it);
        }
    }

    const auto find_section = [this](const auto section_name) {
        const auto has_section_name = [section_name](const auto& s) { return s.name == section_name; };
        return std::find_if(m_sections.begin(), m_sections.end(), has_section_name);
    };

    // sort options into common sections
    std::unordered_map<std::string_view, std::set<std::string_view>> options_by_section;
    for (const auto& [option_name, sections_set] : sections_by_option) {
        for (std::string_view section_name : sections_set) {
            auto defined_section_it = find_section(section_name);
            bool has_descr = (defined_section_it != m_sections.end()) && !defined_section_it->description.empty();

            // move options from sparse sections to more common parent
            auto section_count = total_options_per_section[section_name];
            auto section_end_it = section_name.find_last_of(".");
            while (!has_descr && section_count < 4 && section_end_it != std::string::npos) {
                auto new_section_name = section_name.substr(0, section_end_it);
                // prevent moving into dense sections
                if (total_options_per_section[new_section_name] > ( 7 - section_count ))
                    break;
                total_options_per_section[section_name]--;
                section_name = new_section_name;
                section_end_it = section_name.find_last_of(".");
                section_count = total_options_per_section[section_name];

                defined_section_it = find_section(section_name);
                if (defined_section_it != m_sections.end())
                    has_descr = !defined_section_it->description.empty();
            }

            options_by_section[section_name].emplace(option_name);
        }
    }

    // define which section are top level sections ("root"), move top level candidates with single option to misc
    for (const auto section_name : total_options_per_section | range_keys) {
        const auto root_name = section_name.substr(0, section_name.find_first_of("."));
        // root_name with no dot element allowed to pass if an option is known, potentially moving to misc section
        const auto total_it = total_options_per_section.find(root_name);
        if (total_it == total_options_per_section.end())
            continue;
        const auto count = total_it->second;
        if (count > 1)
            options_by_section["root"].insert(std::move(root_name));

        else if (section_name != "misc" && section_name != "root") {
            if (find_section(section_name) == m_sections.end()) {
                // no section found with specified name, so move options in section to misc section
                auto section_options_it = options_by_section.find(section_name);
                if (section_options_it == options_by_section.end())
                    continue;
                auto& section_options = section_options_it->second;

                for (auto& option : section_options)
                    options_by_section["misc"].insert(option);
                options_by_section.erase(section_name);
            }
        }
    }

    return options_by_section;
}

void OptionsDB::GetUsage(std::ostream& os, std::string_view command_line, bool allow_unrecognized) const {
    // Prevent logger output from garbling console display for low severity messages
    OverrideAllLoggersThresholds(LogLevel::warn);

    auto options_by_section = OptionsBySection(allow_unrecognized);
    if (!command_line.empty() || command_line == "all" || command_line == "raw") {
        // remove the root section if unneeded
        if (options_by_section.contains("root"))
            options_by_section.erase("root");
    }

    if (command_line.empty()) {
        if (UserStringExists("COMMAND_LINE_HELP_GENERAL_DESCRIPTION"))
            os << UserString("COMMAND_LINE_HELP_GENERAL_DESCRIPTION") << "\n";
        else
            os << "\nFreeOrion is a 4X Space Strategy game.\n\n";
    }

    const auto find_section = [this](const auto section_name) {
        const auto has_section_name = [section_name](const auto& s) { return s.name == section_name; };
        return std::find_if(m_sections.begin(), m_sections.end(), has_section_name);
    };

    // print description of command_line arg as section
    if (command_line == "all") {
        os << UserString("OPTIONS_DB_SECTION_ALL") << " ";
    } else if (command_line == "raw") {
        os << UserString("OPTIONS_DB_SECTION_RAW") << " ";
    } else {
        auto command_section_it = find_section(command_line);
        if (command_section_it != m_sections.end() && !command_section_it->description.empty())
            os << UserString(command_section_it->description) << " ";
    }

    bool print_misc_section = command_line.empty();
    std::set<std::string_view> section_list;
    // print option sections
    if (command_line != "all" && command_line != "raw") {
        std::size_t name_col_width = 20;
        if (command_line.empty()) {
            const auto root_it = options_by_section.find("root");
            if (root_it != options_by_section.end()) {
                for (const auto& section : root_it->second)
                    if (section.find_first_of(".") == std::string::npos)
                        if (section_list.emplace(section).second && name_col_width < section.size())
                            name_col_width = section.size();
            }
        } else {
            for (const auto& sec : options_by_section | range_keys) {
                if (OptionNameHasParentSection(sec, command_line))
                    if (section_list.emplace(sec).second && name_col_width < sec.size())
                        name_col_width = sec.size();
            }
        }
        name_col_width += 5;

        if (!section_list.empty())
            os << UserString("COMMAND_LINE_SECTIONS") << ":\n";

        const auto indents = std::pair(2, name_col_width + 4);
        const auto widths = std::pair(TERMINAL_LINE_WIDTH - name_col_width, TERMINAL_LINE_WIDTH);
        for (std::string_view section : section_list) {
            if (section == "misc") {
                print_misc_section = true;
                continue;
            }
            const auto section_it = find_section(section);
            std::string descr = (section_it == m_sections.end()) ? "" : UserString(section_it->description);

            os << std::setw(2) << "" // indent
               << std::setw(name_col_width) << std::left << section // section name
               << SplitText(descr, indents, widths); // section description
        }

        if (print_misc_section) {
            // Add special miscellaneous section to bottom
            os << std::setw(2) << "" << std::setw(name_col_width) << std::left << "misc";
            os << SplitText(UserString("OPTIONS_DB_SECTION_MISC"), indents, widths);
        }

        // add empty line between groups and options
        if (!section_list.empty() && !print_misc_section)
            os << "\n";
    }


    // print options
    if (!command_line.empty()) {
        std::vector<std::string_view> option_list;
        if (command_line == "all" || command_line == "raw") {
            for (const auto& opts : options_by_section | range_values)
                option_list.insert(option_list.end(), opts.begin(), opts.end());
        } else {
            auto option_section_it = options_by_section.find(command_line);
            if (option_section_it != options_by_section.end())
                option_list = {option_section_it->second.begin(), option_section_it->second.end()};
            // allow traversal by node when no other results are found
            if (option_list.empty() && section_list.empty())
                option_list = FindOptions(command_line, allow_unrecognized);
        }

        // insert command_line as option, if it exists
        if (command_line != "all" && command_line != "raw" && find_option(command_line) != m_options.end())
            option_list.push_back(command_line);

        if (!option_list.empty())
            os << UserString("COMMAND_LINE_OPTIONS") << ":\n";

        for (std::string_view option_name : option_list) {
            const auto option_it = find_option(option_name);
            if (option_it == m_options.end() || (!allow_unrecognized && !option_it->recognized))
                continue;
            const auto& option = *option_it;

            if (command_line == "raw") {
                os << option_name << ", " << option.description << ",\n";
                if (option.short_name)
                    os << option.short_name << ", " << option.description << ",\n";
            } else {
                // option name(s)
                if (option.short_name)
                    os << "-" << option.short_name << " | --" << option_name;
                else
                    os << "--" << option_name;

                // option description
                if (!option.description.empty())
                    os << "\n" << SplitText(UserString(option.description), {5, 7});
                else
                    os << "\n";

                // option default value
                if (option.validator) {
                    const auto validator_str = UserString("COMMAND_LINE_DEFAULT") + ": " + option.DefaultValueToString();
                    os << SplitText(validator_str, {5, 7}, {TERMINAL_LINE_WIDTH - validator_str.size(), 77});
                }
                os << "\n";
            }
        }

        if (section_list.empty() && option_list.empty()) {
            os << UserString("COMMAND_LINE_NOT_FOUND") << ": " << command_line << "\n\n";
            os << UserString("COMMAND_LINE_USAGE") << "\n";
        }
    }

    // reset override in case this function is later repurposed
    OverrideAllLoggersThresholds(boost::none);
}

void OptionsDB::GetXML(XMLDoc& doc, bool non_default_only, bool include_version) const {
    doc = XMLDoc();

    std::vector<XMLElement*> elem_stack;
    elem_stack.push_back(&doc.root_node);

    for (const auto& option : m_options) {
        if (!option.storable || !option.recognized)
            continue;

        std::string::size_type last_dot = option.name.find_last_of('.');
        std::string section_name = last_dot == std::string::npos ? "" : option.name.substr(0, last_dot);
        std::string name = option.name.substr(last_dot == std::string::npos ? 0 : last_dot + 1);

        // "version.gl.check.done" is automatically set to true after other logic is performed
        if (option.name == "version.gl.check.done")
            continue;

        // Skip unwanted config options
        // BUG Some windows may be shown as a child of an other window, but not initially visible.
        //   The OptionDB default of "*.visible" in these cases may be false, but setting the option to false
        //   in a config file may prevent such windows from showing when requested.
        if (name == "visible")
            continue;

        // Storing "version.string" in persistent config would render all config options invalid after a new build
        if (!include_version && option.name == "version.string")
            continue;

        // do want to store version string if requested, regardless of whether
        // it is default. for other strings, if storing non-default only,
        // check if option is default and if it is, skip it.
        if (non_default_only && option.name != "version.string") {
            bool is_default_nonflag = !option.flag && IsDefaultValue(find_option(option.name));
            if (is_default_nonflag)
                continue;

            // Default value of flag options will throw bad_any_cast, fortunately they always default to false
            if (option.flag && !boost::any_cast<bool>(option.value))
                continue;
        }


        while (1 < elem_stack.size()) {
            std::string prev_section = PreviousSectionName(elem_stack);
            if (prev_section == section_name) {
                section_name.clear();
                break;
            } else if (section_name.find(prev_section + '.') == 0) {
                section_name = section_name.substr(prev_section.size() + 1);
                break;
            }
            elem_stack.pop_back();
        }
        if (!section_name.empty()) {
            std::string::size_type last_pos = 0;
            std::string::size_type pos = 0;
            while ((pos = section_name.find('.', last_pos)) != std::string::npos) {
                XMLElement temp(section_name.substr(last_pos, pos - last_pos));
                elem_stack.back()->AddChild(temp);
                elem_stack.push_back(&elem_stack.back()->Child(temp.Tag()));
                last_pos = pos + 1;
            }
            XMLElement temp(section_name.substr(last_pos));
            elem_stack.back()->AddChild(temp);
            elem_stack.push_back(&elem_stack.back()->Child(temp.Tag()));
        }

        XMLElement temp(name);
        if (option.validator) {
            temp.SetText(option.ValueToString());
        } else if (option.flag) {
            if (!boost::any_cast<bool>(option.value))
                continue;
        }
        elem_stack.back()->AddChild(temp);
        elem_stack.push_back(&elem_stack.back()->Child(temp.Tag()));
    }
}

OptionsDB::OptionChangedSignalType& OptionsDB::OptionChangedSignal(std::string_view option) {
    //DebugLogger() << "getting option changed signal for string" << option;
    auto it = find_option(option);
    if (it == m_options.end())
        throw std::runtime_error(std::string{"OptionsDB::OptionChangedSignal() : Attempted to get signal for nonexistent option \""}
                                 .append(option).append("\"."));
    return *it->option_changed_sig;
}

void OptionsDB::Remove(std::string_view name) {
    const auto it = find_option(name);
    if (it == m_options.end())
        return;
    short_names.erase(it->short_name);
    m_options.erase(it);
    m_dirty = true;
}

void OptionsDB::RemoveUnrecognized(std::string_view prefix) {
    // const auto prefixed_not_recognized = [prefix](const Option& o) { return !o.recognized && o.name.starts_with(prefix); };
    const auto recognized_or_not_prefixed = [prefix](const Option& o) { return o.recognized || !o.name.starts_with(prefix); };
    // put not-to-be-removed stuff first
    const auto it = std::stable_partition(m_options.begin(), m_options.end(), recognized_or_not_prefixed);
    const auto remove_count = std::distance(it, m_options.end());
    if (remove_count < 1)
        return;
    for (auto short_it = it; short_it != m_options.end(); ++short_it)
        short_names.erase(short_it->short_name);
    m_options.erase(it, m_options.end());
    m_dirty = true;
}

std::vector<std::string_view> OptionsDB::FindOptions(std::string_view prefix, bool allow_unrecognized) const {
    std::vector<std::string_view> ret;
    ret.reserve(m_options.size());
    for (const auto& option : m_options)
        if ((option.recognized || allow_unrecognized) && option.name.find(prefix) == 0)
            ret.push_back(option.name);
    return ret;
}

void OptionsDB::SetToDefault(std::string_view name) {
    auto it = find_option(name);
    if (!OptionExists(it))
        throw std::runtime_error("Attempted to reset value of nonexistent option \"" + std::string{name});
    it->value = it->default_value;
}

void OptionsDB::SetFromCommandLine(const std::vector<std::string>& args) {
    for (std::size_t i = 1u; i < args.size(); ++i) {
        std::string_view current_token{args[i]};

        if (current_token.find("--") == 0) {
            std::string option_name{current_token.substr(2)}; // need a string here as there is no unordered_map heterogeneous lookup :(

            if (option_name.empty())
                throw std::runtime_error("A \'--\' was given with no option name.");

            auto it = find_option(option_name);

            if (it == m_options.end() || !it->recognized) {
                // unrecognized option: may be registered later on so we'll store it for now
                // Check for more parameters (if this is the last one, assume that it is a flag).
                std::string_view value_str{"-"};
                if ((i + 1) < static_cast<unsigned int>(args.size()))
                    value_str = StripQuotation(args[i + 1u]);

                if (value_str.front() == '-') {
                    // this is either the last parameter or the next parameter is another option, assume this one is a flag
                    m_options.emplace_back(static_cast<char>(0), option_name, true, false, "",
                                           std::make_unique<Validator<bool>>(), false, true, false);
                } else {
                    // the next parameter is the value, store it as a string to be parsed later, but
                    // don't attempt to store options that have only been specified on the command line
                    m_options.emplace_back(static_cast<char>(0), option_name, value_str, value_str, "",
                                           std::make_unique<Validator<std::string>>(), false, false, false);
                }

                WarnLogger() << "Option \"" << option_name << "\", was specified on the command line but was not recognized."
                             << " It may not be registered yet or could be a typo.";


            } else {
                // recognized option
                Option& option = *it;
                if (option.value.empty())
                    throw std::runtime_error("The value member of option \"--" + option.name + "\" is undefined.");

                if (!option.flag) { // non-flag
                    try {
                        // check if parameter exists...
                        if (std::cmp_greater_equal(i + 1, args.size())) {
                            m_dirty |= option.SetFromString("");
                            continue;
                        }
                        // get parameter value
                        std::string_view value_str = StripQuotation(args[++i]);

                        // ensure parameter is actually a parameter, and not the next option name (which would indicate
                        // that the option was specified without a parameter value, as if it was a flag)
                        if (!value_str.empty() && value_str.front() == '-')
                            throw std::runtime_error("the option \"" + option.name +
                                                     "\" was followed by the parameter \"" + std::string{value_str} +
                                                     "\", which appears to be an option flag, not a parameter value, because it begins with a \"-\" character.");
                        m_dirty |= option.SetFromString(value_str);
                    } catch (const std::exception& e) {
                        throw std::runtime_error("OptionsDB::SetFromCommandLine() : the following exception was caught when attempting to set option \"" + option.name + "\": " + e.what() + "\n\n");
                    }
                } else { // flag
                    option.value = true;
                }
            }

        } else if (current_token.find('-') == 0
#ifdef FREEORION_MACOSX
                && current_token.find("-psn") != 0 // Mac OS X passes a process serial number to all applications using Carbon or Cocoa, it should be ignored here
#endif
            )
        {
            auto single_char_options = current_token.substr(1);

            if (single_char_options.empty())
                throw std::runtime_error("A \'-\' was given with no options.");

            for (unsigned int j = 0; j < single_char_options.size(); ++j) {
                auto short_name_it = short_names.find(single_char_options[j]);

                if (short_name_it == short_names.end())
                    throw std::runtime_error(std::string("Unknown option \"-") + single_char_options[j] + "\" was given.");

                auto name_it = find_option(short_name_it->second);

                if (name_it == m_options.end())
                    throw std::runtime_error("Option \"--" + short_name_it->second + "\", abbreviated as \"-" + short_name_it->first + "\", could not be found.");

                Option& option = *name_it;
                if (option.value.empty())
                    throw std::runtime_error("The value member of option \"--" + option.name + "\" is undefined.");

                if (!option.flag) {
                    if (j < single_char_options.size() - 1) {
                        throw std::runtime_error(std::string("Option \"-") + single_char_options[j] + "\" was given with no parameter.");
                    } else {
                        if (std::cmp_greater_equal(i + 1, args.size()))
                            m_dirty |= option.SetFromString("");
                        else
                            m_dirty |= option.SetFromString(args[++i]);
                    }
                } else {
                    option.value = true;
                }
            }
        }
    }
}

void OptionsDB::SetFromFile(const boost::filesystem::path& file_path, std::string_view version) {
    XMLDoc doc;
    try {
        boost::filesystem::ifstream ifs(file_path);
        if (ifs) {
            doc.ReadDoc(ifs);
            if (version.empty() || (doc.root_node.ContainsChild("version") &&
                                    doc.root_node.Child("version").ContainsChild("string") &&
                                    version == doc.root_node.Child("version").Child("string").Text()))
            { GetOptionsDB().SetFromXML(doc); }
        }
    } catch (...) {
        std::cerr << UserString("UNABLE_TO_READ_CONFIG_XML")  << ": "
                  << file_path << std::endl;
    }
}

void OptionsDB::SetFromXML(const XMLDoc& doc) {
    for (const XMLElement& child : doc.root_node.Children())
        SetFromXMLRecursive(child, "");
}

void OptionsDB::SetFromXMLRecursive(const XMLElement& elem, std::string_view section_name) {
    std::string option_name = std::string{section_name}.append(section_name.empty() ? "" : ".").append(elem.Tag());
    if (option_name == "version.string")
        return;

    if (!elem.Children().empty()) {
        for (const XMLElement& child : elem.Children())
            SetFromXMLRecursive(child, option_name);
    }

    auto it = find_option(option_name);

    if (it == m_options.end() || !it->recognized) {

        TraceLogger() << "Option \"" << option_name << "\", was in config.xml but was not recognized."
                      << " It may not be registered yet or you may need to delete your config.xml if it is out of date.";

        if (elem.Text().length() == 0) {
            // do not retain empty XML options
            return;
        } else {
            // Store unrecognized option to be parsed later if this options is added.
            m_options.emplace_back(static_cast<char>(0), option_name, elem.Text(), elem.Text(), "",
                                   std::make_unique<Validator<std::string>>(), true, false, false,
                                   std::string{section_name});
        }

        m_dirty = true;
        return;
    }

    Option& option = *it;
    //if (!option.flag && option.value.empty()) {
    //    ErrorLogger() << "The value member of option \"" << option.name << "\" in config.xml is undefined.";
    //    return;
    //}

    if (option.flag) {
        option.value = static_cast<bool>(elem.Text() == lexical_true_str);
    } else {
        try {
            m_dirty |= option.SetFromString(elem.Text());
        } catch (const std::exception& e) {
            ErrorLogger() << "OptionsDB::SetFromXMLRecursive() : while processing config.xml the following exception was caught when attempting to set option \""
                          << option_name << "\" to \"" << elem.Text() << "\": " << e.what();
        }
    }
}

void OptionsDB::AddSection(const char* name, std::string description,
                           std::function<bool (const std::string&)> option_predicate)
{
    auto it = std::find_if(m_sections.begin(), m_sections.end(),
                           [sec_name{std::string_view{name}}](const auto& sec) { return sec.name == sec_name; });
    if (it != m_sections.end()) {
        // if previously existing section, update description/predicate if empty/null
        if (!description.empty() && it->description.empty())
            it->description = std::move(description);
        if (option_predicate && !it->option_predicate)
            it->option_predicate = std::move(option_predicate);
        return;
    }

    // add new section
    m_sections.emplace_back(name, std::move(description), std::move(option_predicate));
}

template <>
std::vector<std::string> OptionsDB::Get<std::vector<std::string>>(std::string_view name) const
{
    auto it = find_option(name);
    if (!OptionExists(it))
        throw std::runtime_error(std::string{"OptionsDB::Get<std::vector<std::string>>() : Attempted to get nonexistent option: "}.append(name));
    try {
        return boost::any_cast<std::vector<std::string>>(it->value);
    } catch (const boost::bad_any_cast&) {
        ErrorLogger() << "bad any cast converting value option named: " << name << ". Returning default value instead";
        try {
            return boost::any_cast<std::vector<std::string>>(it->default_value);
        } catch (const boost::bad_any_cast&) {
            ErrorLogger() << "bad any cast converting default value of std::vector<std::string> option named: " << name << ". Returning empty vector instead";
            return std::vector<std::string>();
        }
    }
}

std::string ListToString(std::vector<std::string> input_list) {
    // list input strings in comma-separated-value format
    std::string retval;
    retval.reserve(20*input_list.size()); // guesstimate
    unsigned int count = 0;
    for (auto& input_string : input_list) {
        if (count++ > 0)
            retval += ",";

        // remove XML protected characters and a few other semi-randomly chosen
        // characters to avoid corrupting enclosing XML document structure
        boost::remove_erase_if(input_string, boost::is_any_of("<&>'\",[]|\a\b\f\n\r\t\b"));
        retval.append(input_string);
    }
    return retval;
}

std::vector<std::string> StringToList(std::string_view input_string) {
    std::vector<std::string> retval;
    retval.reserve(5); // guesstimate
    static constexpr std::string_view separator{","};

    // adapted from https://github.com/fenbf/StringViewTests/blob/7e2e4c4f17dda2ed4569cca409fa2f02e0ef77ad/StringViewTest.cpp#L151
    std::string_view::const_pointer first = input_string.data();
    std::string_view::const_pointer second = nullptr;
    std::string_view::const_pointer last = first + input_string.size();
    // some tokens,delimited by commas,as an example
    // f                                            l

    for (; second != last && first != last; first = second + 1) {
        // some tokens,delimited by commas,as an example
        //            sf                                l
        second = std::find_first_of(
            first, last, std::cbegin(separator), std::cend(separator));
        // some tokens,delimited by commas,as an example
        //             f                  s             l
        if (first != second)
            retval.emplace_back(first, second - first);
    }

    return retval;
}

std::vector<std::string> StringToList(const char* input_string)
{ return StringToList(std::string_view{input_string}); }

std::vector<std::string> StringToList(const std::string& input_string) {
    using Tokenizer = boost::tokenizer<boost::char_separator<char>>;
    static const boost::char_separator<char> separator{","};
    Tokenizer tokens{input_string, separator};
    return {tokens.begin(), tokens.end()};
}