-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpression.hpp
397 lines (344 loc) · 13.1 KB
/
expression.hpp
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
#ifndef EXPRESSION_HPP
#define EXPRESSION_HPP
#include <functional>
#include <type_traits>
#include <utility>
#include <tuple>
#include <memory>
namespace expr
{
template <typename Expr>
constexpr decltype(auto) expressify(Expr&& expr);
template <typename T>
inline constexpr bool is_expression = false;
template <typename Operation>
class expression;
template <typename Operation>
expression<Operation> make_expression(Operation op)
noexcept(std::is_nothrow_copy_constructible_v<Operation>);
template <typename Operation>
class expression
{
public:
explicit constexpr expression(Operation op)
noexcept(std::is_nothrow_copy_constructible_v<Operation>)
: _op(op)
{}
template <typename... Args>
requires std::is_invocable_v<Operation&, Args&...>
constexpr decltype(auto) operator()(Args&&... args)
noexcept(std::is_nothrow_invocable_v<Operation&, Args&...>)
{
return _op(args...);
}
template <typename... Args>
requires std::is_invocable_v<const Operation&, Args&...>
constexpr decltype(auto) operator()(Args&&... args) const
noexcept(std::is_nothrow_invocable_v<const Operation&, Args&...>)
{
return _op(args...);
}
template <typename Rhs>
constexpr auto operator=(Rhs&& rhs) const&
{
return make_expression([op = _op, rhs = expressify(std::forward<Rhs>(rhs))]
(auto&&... args) -> decltype(auto) {
return op(args...) = rhs(args...);
});
}
template <typename Rhs>
constexpr auto operator=(Rhs&& rhs) &&
{
return make_expression([op = std::move(_op), rhs = expressify(std::forward<Rhs>(rhs))]
(auto&&... args) -> decltype(auto) {
return op(args...) = rhs(args...);
});
}
template <typename Index>
constexpr auto operator[](Index&& index) const&
{
return make_expression([op = _op, index = expressify(std::forward<Index>(index))]
(auto&&... args) -> decltype(auto) {
return op[index(args...)];
});
}
template <typename Index>
constexpr auto operator[](Index&& index) &&
{
return make_expression([op = std::move(_op), index = expressify(std::forward<Index>(index))]
(auto&&... args) -> decltype(auto) {
return op[index(args...)];
});
}
private:
Operation _op;
};
template <typename Operation>
inline constexpr bool is_expression<expression<Operation>> = true;
template <typename Operation>
expression<Operation> make_expression(Operation op)
noexcept(std::is_nothrow_copy_constructible_v<Operation>)
{
return expression(op);
}
template <typename Type>
class variable
{
public:
explicit constexpr variable(Type& var)
noexcept
: _var(std::addressof(var))
{}
constexpr variable(const variable& rhs) = default;
template <typename... Args>
constexpr Type& operator()([[maybe_unused]] Args&&... args) const noexcept
{
return *_var;
}
constexpr auto operator=(const variable& rhs) const
{
return operator=<const variable&>(rhs);
}
template <typename Rhs>
constexpr auto operator=(Rhs&& rhs) const
{
return expression([var = _var, rhs = expressify(std::forward<Rhs>(rhs))]
(auto&&... args) -> decltype(auto) {
return *var = rhs(args...);
});
}
template <typename Index>
constexpr auto operator[](Index&& index) const
{
return expression([var = _var, index = expressify(std::forward<Index>(index))]
(auto&&... args) -> decltype(auto) {
return (*var)[index(args...)];
});
}
private:
Type* _var;
};
template <typename Type>
inline constexpr bool is_expression<variable<Type>> = true;
template <typename Type>
class constant
{
public:
explicit constexpr constant(const Type& val)
noexcept(std::is_nothrow_copy_constructible_v<Type>)
requires std::is_copy_constructible_v<Type>
: _val(val)
{}
explicit constexpr constant(Type&& val)
noexcept(std::is_nothrow_move_constructible_v<Type>)
requires std::is_move_constructible_v<Type>
: _val(std::move(val))
{}
constexpr constant(const constant& rhs) = default;
template <typename... Args>
constexpr const Type& operator()([[maybe_unused]] Args&&... args) const noexcept
{
return _val;
}
constexpr auto operator=(const constant& rhs) const
{
return operator=<const constant&>(rhs);
}
template <typename Rhs>
constexpr auto operator=(Rhs&& rhs) const&
{
return expression([val = _val, rhs = expressify(std::forward<Rhs>(rhs))]
(auto&&... args) -> decltype(auto) {
return val = rhs(args...);
});
}
template <typename Rhs>
constexpr auto operator=(Rhs&& rhs) &&
{
return expression([val = std::move(_val), rhs = expressify(std::forward<Rhs>(rhs))]
(auto&&... args) -> decltype(auto) {
return val = rhs(args...);
});
}
template <typename Index>
constexpr auto operator[](Index&& index) const&
{
return expression([val = _val, index = expressify(std::forward<Index>(index))]
(auto&&... args) -> decltype(auto) {
return val[index(args...)];
});
}
template <typename Index>
constexpr auto operator[](Index&& index) &&
{
return expression([val = std::move(_val), index = expressify(std::forward<Index>(index))]
(auto&&... args) -> decltype(auto) {
return val[index(args...)];
});
}
private:
Type _val;
};
template <typename Type>
inline constexpr bool is_expression<constant<Type>> = true;
template <int I>
struct placeholder
{
constexpr placeholder() {}
constexpr placeholder(const placeholder& rhs) = default;
template <typename... Args>
constexpr decltype(auto) operator()(Args&&... args) const noexcept
{
static_assert(I < sizeof...(args), "Placeholder out of range");
return std::get<I>(std::tie(args...));
}
template <typename Member>
requires std::is_member_pointer_v<Member>
constexpr auto operator->*(Member member) const noexcept
{
if constexpr (std::is_member_function_pointer_v<Member>)
return expression([member] (auto&&... params) {
return expression([member, ...params = expressify(std::forward<decltype(params)>(params))]
(auto&&... args) -> decltype(auto) {
static_assert(I < sizeof...(args), "Placeholder out of range");
return std::invoke(member, std::get<I>(std::tie(args...)), params(args...)...);
});
});
else if constexpr (std::is_member_object_pointer_v<Member>)
return expression([member] (auto&&... args) -> decltype(auto) {
static_assert(I < sizeof...(args), "Placeholder out of range");
return std::invoke(member, std::get<I>(std::tie(args...)));
});
}
template <typename Index>
constexpr auto operator[](Index&& index) const
{
return expression([index = expressify(std::forward<Index>(index))]
(auto&&... args) -> decltype(auto) {
static_assert(I < sizeof...(args), "Placeholder out of range");
return std::get<I>(std::tie(args...))[index(args...)];
});
}
constexpr auto operator=(const placeholder& rhs) const
{
return operator=<const placeholder&>(rhs);
}
template <typename Rhs>
constexpr auto operator=(Rhs&& rhs) const
{
return expression([rhs = expressify(std::forward<Rhs>(rhs))]
(auto&&... args) -> decltype(auto) {
static_assert(I < sizeof...(args), "Placeholder out of range");
return std::get<I>(std::tie(args...)) = rhs(args...);
});
}
};
template <int I>
inline constexpr bool is_expression<placeholder<I>> = true;
inline namespace placeholders
{
inline constexpr placeholder<0> _1 = {};
inline constexpr placeholder<1> _2 = {};
inline constexpr placeholder<2> _3 = {};
inline constexpr placeholder<3> _4 = {};
inline constexpr placeholder<4> _5 = {};
inline constexpr placeholder<5> _6 = {};
inline constexpr placeholder<6> _7 = {};
} // namespace placeholders
template <typename Function, typename... Params>
auto bind(Function&& func, Params&&... params)
{
return expression([func = expressify(std::forward<Function>(func)),
...params = expressify(std::forward<Params>(params))]
(auto&&... args) -> decltype(auto) {
return std::invoke(func(args...), params(args...)...);
});
}
template <typename Expr>
constexpr decltype(auto) expressify(Expr&& expr)
{
if constexpr (is_expression<std::decay_t<Expr>>) return std::forward<Expr>(expr);
else if constexpr (std::is_lvalue_reference_v<Expr>) return variable(std::forward<Expr>(expr));
else return constant(std::forward<Expr>(expr));
}
#if (defined EXPR_UN_OP) || (defined EXPR_UN_OP_POST) || (defined EXPR_BIN_OP) || (defined EXPR_COMMA)
#error "Multiple defines!"
#endif
#define EXPR_UN_OP(OP) \
template <typename Rhs> \
requires is_expression<std::decay_t<Rhs>> \
constexpr auto operator OP (Rhs&& rhs) \
{ \
return expression([rhs = expressify(std::forward<Rhs>(rhs))] \
(auto&&... args) -> decltype(auto) { \
return OP rhs(args...); \
}); \
}
#define EXPR_UN_OP_POST(OP) \
template <typename Lhs> \
requires is_expression<std::decay_t<Lhs>> \
constexpr auto operator OP (Lhs&& lhs, [[maybe_unused]] int) \
{ \
return expression([lhs = expressify(std::forward<Lhs>(lhs))] \
(auto&&... args) -> decltype(auto) { \
return lhs(args...) OP; \
}); \
}
#define EXPR_BIN_OP(OP) \
template <typename Lhs, typename Rhs> \
requires is_expression<std::decay_t<Lhs>> \
or is_expression<std::decay_t<Rhs>> \
constexpr auto operator OP (Lhs&& lhs, Rhs&& rhs) \
{ \
return expression([lhs = expressify(std::forward<Lhs>(lhs)), \
rhs = expressify(std::forward<Rhs>(rhs))] \
(auto&&... args) -> decltype(auto) { \
return lhs(args...) OP rhs(args...); \
}); \
}
#define EXPR_COMMA ,
EXPR_UN_OP(+)
EXPR_UN_OP(-)
EXPR_UN_OP(!)
EXPR_UN_OP(~)
EXPR_UN_OP(*)
EXPR_UN_OP(&)
EXPR_UN_OP(++)
EXPR_UN_OP(--)
EXPR_UN_OP_POST(++)
EXPR_UN_OP_POST(--)
EXPR_BIN_OP(+)
EXPR_BIN_OP(-)
EXPR_BIN_OP(*)
EXPR_BIN_OP(/)
EXPR_BIN_OP(%)
EXPR_BIN_OP(EXPR_COMMA)
EXPR_BIN_OP(&)
EXPR_BIN_OP(|)
EXPR_BIN_OP(^)
EXPR_BIN_OP(<<)
EXPR_BIN_OP(>>)
EXPR_BIN_OP(<)
EXPR_BIN_OP(<=)
EXPR_BIN_OP(>)
EXPR_BIN_OP(>=)
EXPR_BIN_OP(==)
EXPR_BIN_OP(!=)
EXPR_BIN_OP(&&)
EXPR_BIN_OP(||)
EXPR_BIN_OP(+=)
EXPR_BIN_OP(-=)
EXPR_BIN_OP(*=)
EXPR_BIN_OP(/=)
EXPR_BIN_OP(%=)
EXPR_BIN_OP(&=)
EXPR_BIN_OP(|=)
EXPR_BIN_OP(^=)
EXPR_BIN_OP(<<=)
EXPR_BIN_OP(>>=)
#undef EXPR_COMMA
#undef EXPR_BIN_OP
#undef EXPR_UN_OP_POST
#undef EXPR_UN_OP
} // namespace expr
#endif // EXPRESSION_HPP