The Battle for Wesnoth  1.19.7+dev
string_utils.hpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2005 - 2024
3  by Guillaume Melquiond <guillaume.melquiond@gmail.com>
4  Copyright (C) 2003 by David White <dave@whitevine.net>
5  Part of the Battle for Wesnoth Project https://www.wesnoth.org/
6 
7  This program is free software; you can redistribute it and/or modify
8  it under the terms of the GNU General Public License as published by
9  the Free Software Foundation; either version 2 of the License, or
10  (at your option) any later version.
11  This program is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY.
13 
14  See the COPYING file for more details.
15 */
16 
17 #pragma once
18 
19 // Need this to get the default GETTEXT_DOMAIN for VGETTEXT/VNGETTEXT
20 #include "gettext.hpp"
21 
23 
24 #include <ctime>
25 #include <string_view>
26 
27 class variable_set;
28 
29 namespace utils {
30 
31  namespace detail {
32  extern std::string(* evaluate_formula)(const std::string& formula);
33  }
34 
35 /**
36  * Determines if a string might contain variables to interpolate.
37  * This can allow one to skip future interpolations (plural -- if there is only
38  * one interpolation, the savings are not worth this check). In this spirit,
39  * precision is sacrificed in the name of efficiency; the check is quick and
40  * allows false positives, but there are no false negatives. (A false negative
41  * would lead to incorrect behavior, whereas a false positive leads to merely
42  * inefficient behavior.) In practice, false positives should be uncommon enough
43  * to not worry about.
44  */
45 inline bool might_contain_variables(const std::string &str)
46 { return str.find('$') != std::string::npos; }
47 
48 /**
49  * Function which will interpolate variables, starting with '$' in the string
50  * 'str' with the equivalent symbols in the given symbol table. If 'symbols'
51  * is nullptr, then game event variables will be used instead.
52  */
53 std::string interpolate_variables_into_string(const std::string &str, const std::map<std::string, t_string> * const symbols);
54 std::string interpolate_variables_into_string(const std::string &str, const std::map<std::string,std::string> * const symbols);
55 std::string interpolate_variables_into_string(const std::string &str, const variable_set& variables);
56 
57 /**
58  * Function that does the same as the above, for t_stringS.
59  * If a change was made, then the t_string's translation is done in this
60  * function, rather than at use. This limitation is due to the use of
61  * create-time interpolation, rather than use-time.
62  */
64 
65 /**
66  * Format a conjunctive list.
67  * @param empty The string to return for an empty list
68  * @param elems The list of entries in the list
69  * @return The elements of the list joined by "and".
70  */
71 std::string format_conjunct_list(const t_string& empty, const std::vector<t_string>& elems);
72 
73 /**
74  * Format a disjunctive list.
75  * @param empty The string to return for an empty list
76  * @param elems The list of entries in the list
77  * @return The elements of the list joined or "and".
78  */
79 std::string format_disjunct_list(const t_string& empty, const std::vector<t_string>& elems);
80 
81 }
82 
83 /**
84  * Implementation functions for the VGETTEXT and VNGETTEXT macros.
85  *
86  * DO NOT USE DIRECTLY unless you really know what you're doing.
87  * See https://github.com/wesnoth/wesnoth/issues/2716 for more info.
88  */
89 
90 std::string vgettext_impl(const char* domain, const char* msgid, const utils::string_map& symbols);
91 
92 std::string vngettext_impl(const char* domain,
93  const char* singular,
94  const char* plural,
95  int count,
96  const utils::string_map& symbols);
97 
98 /**
99  * Handy wrappers around interpolate_variables_into_string and gettext.
100  *
101  * These should cover most usecases. If you're not sure whether you want
102  * these macros or their implementation functions, use these. The only time
103  * you should need to use the implementation functions directly is to pass a
104  * different textdomain than the current value of GETTEXT_DOMAIN.
105  */
106 
107 #define VGETTEXT(msgid, ...) \
108  vgettext_impl(GETTEXT_DOMAIN, msgid, __VA_ARGS__)
109 
110 #define VNGETTEXT(msgid, msgid_plural, count, ...) \
111  vngettext_impl(GETTEXT_DOMAIN, msgid, msgid_plural, count, __VA_ARGS__)
112 
113 /**
114  * @brief Calculate the approximate edit distance of two strings.
115  *
116  * @param str_1 First string to compare.
117  * @param str_2 Second string to compare.
118  *
119  * @returns A score indicating how different the two strings are--the lower the score, the more similar the strings are.
120  *
121  * @note To avoid dynamic allocation, this function limits the number of characters that participate in the comparison.
122  */
123 [[nodiscard]] std::size_t edit_distance_approx(std::string_view str_1, std::string_view str_2) noexcept;
std::string vngettext_impl(const char *domain, const char *singular, const char *plural, int count, const utils::string_map &symbols)
std::string vgettext_impl(const char *domain, const char *msgid, const utils::string_map &symbols)
Implementation functions for the VGETTEXT and VNGETTEXT macros.
std::size_t edit_distance_approx(std::string_view str_1, std::string_view str_2) noexcept
Calculate the approximate edit distance of two strings.
std::string(* evaluate_formula)(const std::string &formula)
std::string interpolate_variables_into_string(const std::string &str, const string_map *const symbols)
Function which will interpolate variables, starting with '$' in the string 'str' with the equivalent ...
t_string interpolate_variables_into_tstring(const t_string &tstr, const variable_set &variables)
Function that does the same as the above, for t_stringS.
std::string format_disjunct_list(const t_string &empty, const std::vector< t_string > &elems)
Format a disjunctive list.
bool might_contain_variables(const std::string &str)
Determines if a string might contain variables to interpolate.
std::string format_conjunct_list(const t_string &empty, const std::vector< t_string > &elems)
Format a conjunctive list.
std::map< std::string, t_string > string_map