libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
utils.hxx
Go to the documentation of this file.
1#pragma once
2
3// C++
4#include <cstddef>
5#include <functional>
6#include <map>
7#include <ostream>
8#include <type_traits>
9#include <variant>
10#include <vector>
11
12namespace cosmos {
13
24
49template <typename _, bool def>
50class NamedBool {
51public:
52 explicit NamedBool(bool val=def) :
53 m_val{val} {}
54
55 operator bool() const { return m_val; }
56
57 void flip() {
58 m_val = !m_val;
59 }
60protected:
61 bool m_val = def;
62};
63
65
70template <typename R>
72public: // types
73
74 using CleanFunc = void (R);
75
76public: // functions
77
78 ResourceGuard(const ResourceGuard &) = delete;
79 ResourceGuard& operator=(const ResourceGuard &) = delete;
80
81 ResourceGuard(R r, std::function<CleanFunc> cleaner) :
82 m_res{r},
83 m_cleaner{cleaner}
84 {}
85
87 if (!m_disarmed) {
88 m_cleaner(m_res);
89 }
90 }
91
92 void disarm() { m_disarmed = true; }
93
94protected: // data
95
96 bool m_disarmed = false;
97 R m_res;
98 std::function<CleanFunc> m_cleaner;
99};
100
101template<typename T>
102struct Identity { using type = T; };
103
104template<typename T>
105using IdentityT = typename Identity<T>::type;
106
108// the stunt with IdentityT is required to avoid deduction problems when e.g.
109// literal integer constants are involved.
110template <typename T1>
111bool in_range(const T1 &v, const IdentityT<T1> &_min, const IdentityT<T1> &_max) {
112 return _min <= v && v <= _max;
113}
114
116template <typename T>
117bool in_list(const T &v, const std::initializer_list<T> &l) {
118 for (const auto &cmp: l) {
119 if (v == cmp)
120 return true;
121 }
122
123 return false;
124}
125
127template <typename T>
128constexpr size_t num_elements(const T &v) {
129 return sizeof(v) / sizeof(v[0]);
130}
131
133template <typename T1, typename T2>
134T1& append(T1 &v1, const T2 &v2) {
135 v1.insert(std::end(v1), std::begin(v2), std::end(v2));
136 return v1;
137}
138
140template<typename ENUM>
141constexpr auto to_integral(const ENUM e) -> typename std::underlying_type<ENUM>::type {
142 return static_cast<typename std::underlying_type<ENUM>::type>(e);
143}
144
146template<typename ENUM>
147auto to_raw_ptr(ENUM *e) {
148 using UT = typename std::underlying_type<ENUM>::type;
149 return reinterpret_cast<UT*>(e);
150}
151
152template <typename VARIANT>
153bool is_empty_variant(const VARIANT &var) {
154 return std::holds_alternative<std::monostate>(var);
155}
156
157template <typename VARIANT>
158bool variant_holds_value(const VARIANT &var) {
159 return !is_empty_variant(var);
160}
161
163
173class Twice {};
174
176public: // functions
177
178 auto& operator++() {
179 m_iterations++;
180 return *this;
181 }
182
183 Twice operator*() {
184 return Twice{};
185 }
186
187 bool operator==(const TwiceIterator o) const {
188 return m_iterations == o.m_iterations;
189 }
190
191 bool operator!=(const TwiceIterator o) const {
192 return !(*this == o);
193 }
194
195public: // data
196 size_t m_iterations = 0;
197};
198
199inline TwiceIterator begin(Twice &) {
200 return TwiceIterator{};
201}
202
203inline TwiceIterator end(Twice &) {
204 return TwiceIterator{2};
205}
206
207} // end ns
208
210template <typename T>
211inline std::ostream& operator<<(std::ostream &o, const std::vector<T> &sv) {
212 for (auto it = sv.begin(); it != sv.end(); it++) {
213 if (it != sv.begin())
214 o << ", ";
215 o << *it;
216 }
217
218 return o;
219}
220
222template <typename K, typename V>
223inline std::ostream& operator<<(std::ostream &o, const std::map<K,V> &m) {
224 for (auto it: m) {
225 o << it.first << ": " << it.second << "\n";
226 }
227
228 return o;
229}
Strong template type to wrap boolean values in a named type.
Definition utils.hxx:50
Helper class to guard arbitrary resources.
Definition utils.hxx:71
Helper for iterating twice over a for loop.
Definition utils.hxx:173
constexpr size_t num_elements(const T &v)
Returns the number of elements in a C style array.
Definition utils.hxx:128
bool in_range(const T1 &v, const IdentityT< T1 > &_min, const IdentityT< T1 > &_max)
Checks whether v is within the given (inclusive) range.
Definition utils.hxx:111
std::ostream & operator<<(std::ostream &o, const std::vector< T > &sv)
Output all the elements of a vector as a comma separated list.
Definition utils.hxx:211
bool in_list(const T &v, const std::initializer_list< T > &l)
Checks whether the value v is found in the given list of values l.
Definition utils.hxx:117
T1 & append(T1 &v1, const T2 &v2)
Append iterable sequence v2 to sequence v1.
Definition utils.hxx:134
auto to_raw_ptr(ENUM *e)
Returns a pointer casted to the underlying type of the given enum.
Definition utils.hxx:147