The Battle for Wesnoth  1.19.5+dev
general.hpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2003 - 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 #pragma once
16 
17 #include <algorithm>
18 #include <cctype>
19 #include <string>
20 
21 namespace utils
22 {
23 /**
24  * Equivalent to as @c std::is_same_v except both types are passed through std::decay first.
25  *
26  * @tparam T1 The first type to compare.
27  * @tparam T2 The second type to compare.
28  */
29 template<typename T1, typename T2>
30 inline constexpr bool decayed_is_same = std::is_same_v<std::decay_t<T1>, std::decay_t<T2>>;
31 
32 /**
33  * Workaround for the fact that static_assert(false) is invalid.
34  * See https://devblogs.microsoft.com/oldnewthing/20200311-00/?p=103553
35  */
36 template<typename>
37 inline constexpr bool dependent_false_v = false;
38 
39 namespace detail
40 {
41 /**
42  * A struct that exists to implement a generic wrapper for std::find.
43  * Container should "look like" an STL container of Values.
44  */
45 template<typename Container, typename Value>
47 {
48  static bool eval(const Container& container, const Value& value)
49  {
50  typename Container::const_iterator end = container.end();
51  return std::find(container.begin(), end, value) != end;
52  }
53 };
54 
55 /**
56  * A struct that exists to implement a generic wrapper for the find()
57  * member of associative containers.
58  * Container should "look like" an STL associative container.
59  */
60 template<typename Container>
61 struct contains_impl<Container, typename Container::key_type>
62 {
63  static bool eval(const Container& container, const typename Container::key_type& value)
64  {
65  return container.find(value) != container.end();
66  }
67 };
68 
69 } // namespace detail
70 
71 /**
72  * Returns true iff @a value is found in @a container.
73  *
74  * This should work whenever Container "looks like" an STL container of Values.
75  * Normally this uses std::find(), but a simulated partial template specialization
76  * exists when Value is Container::key_type. In this case, Container is assumed
77  * an associative container, and the member function find() is used.
78  */
79 template<typename Container, typename Value>
80 inline bool contains(const Container& container, const Value& value)
81 {
82  return detail::contains_impl<Container, Value>::eval(container, value);
83 }
84 
85 /**
86  * Utility function for finding the type of thing caught with `catch(...)`.
87  * Not implemented for other compilers at this time.
88  *
89  * @return For the GCC/clang compilers, the unmangled name of an unknown exception that was caught.
90  */
91 std::string get_unknown_exception_type();
92 
93 /**
94  * Convenience wrapper for using std::remove_if on a container.
95  *
96  * todoc++20 use C++20's std::erase_if instead. The C++20 function returns the number of elements
97  * removed; this one could do that but it seems unnecessary to add it unless something is using it.
98  */
99 template<typename Container, typename Predicate>
100 void erase_if(Container& container, const Predicate& predicate)
101 {
102  container.erase(std::remove_if(container.begin(), container.end(), predicate), container.end());
103 }
104 
105 /**
106  * Convenience wrapper for using std::remove on a container.
107  *
108  * @todo C++20: use std::erase
109  */
110 template<typename Container, typename Value>
111 std::size_t erase(Container& container, const Value& value)
112 {
113  auto iter = std::remove(container.begin(), container.end(), value);
114  auto num_removed = container.end() - iter;
115  container.erase(iter, container.end());
116  return num_removed;
117 }
118 
119 /**
120  * Convenience wrapper for using std::sort on a container.
121  *
122  */
123 template<typename Container, typename Predicate>
124 void sort_if(Container& container, const Predicate& predicate)
125 {
126  std::sort(container.begin(), container.end(), predicate);
127 }
128 
129 } // namespace utils
void remove()
Removes a tip.
Definition: tooltip.cpp:94
constexpr bool decayed_is_same
Equivalent to as std::is_same_v except both types are passed through std::decay first.
Definition: general.hpp:30
std::size_t erase(Container &container, const Value &value)
Convenience wrapper for using std::remove on a container.
Definition: general.hpp:111
bool contains(const Container &container, const Value &value)
Returns true iff value is found in container.
Definition: general.hpp:80
std::string get_unknown_exception_type()
Utility function for finding the type of thing caught with catch(...).
Definition: general.cpp:23
void erase_if(Container &container, const Predicate &predicate)
Convenience wrapper for using std::remove_if on a container.
Definition: general.hpp:100
constexpr bool dependent_false_v
Workaround for the fact that static_assert(false) is invalid.
Definition: general.hpp:37
void sort_if(Container &container, const Predicate &predicate)
Convenience wrapper for using std::sort on a container.
Definition: general.hpp:124
static bool eval(const Container &container, const typename Container::key_type &value)
Definition: general.hpp:63
A struct that exists to implement a generic wrapper for std::find.
Definition: general.hpp:47
static bool eval(const Container &container, const Value &value)
Definition: general.hpp:48