-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathResult.h
225 lines (189 loc) · 5.38 KB
/
Result.h
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
#pragma once
#include <scl/utils/Either.h>
#include <scl/utils/Placeholder.h>
#include <scl/exceptions/InvalidResultAccess.h>
#include <functional>
namespace scl{
namespace utils{
namespace details{
/**
* //
*/
struct result_value final{};
struct result_error final{};
}
template <class Value, class Error = Placeholder>
class Result{
public:
using value_type = Value;
using error_type = Error;
using impl_type = Either<value_type, error_type>;
protected:
impl_type alt;
Result() = delete;
template <class T>
Result(details::result_value, T&& value) : alt{impl_type::Left(std::forward<T>(value))} {
}
template <class E>
Result(details::result_error, E&& err) : alt{impl_type::Right(std::forward<E>(err))} {
}
public:
template <class T>
static Result Ok(T&& value){
return Result{
details::result_value{},
std::forward<T>(value)
};
}
template <class T>
static Result ok(T&& value){
return Ok(std::forward<T>(value));
}
template <class... Args>
static Result emplaceOk(Args&&... args){
return Ok(value_type{
std::forward<Args>(args)...
});
}
template <class E>
static Result Err(E&& err){
return Result{
details::result_error{},
std::forward<E>(err)
};
}
template <class E>
static Result err(E&& error){
return Err(std::forward<E>(error));
}
template <class... Args>
static Result emplaceErr(Args&&... args){
return Err(error_type{
std::forward<Args>(args)...
});
}
public:
bool isOk() const{
return this->alt.hasLeft();
}
bool isErr() const{
return !this->isOk();
}
const value_type& value() const{
try {
return this->alt.getLeft();
}catch(scl::exceptions::InvalidEitherAccess& e){
throw scl::exceptions::InvalidResultAccess::okWhenErr();
}
}
const value_type& get() const{
return this->value();
}
const error_type& error() const{
try{
return this->alt.getRight();
}catch(scl::exceptions::InvalidEitherAccess& e){
throw scl::exceptions::InvalidResultAccess::errWhenOk();
}
}
operator bool() const{
return this->isOk();
}
operator const value_type&() const{
return this->value();
}
const value_type& operator*() const{
return this->get();
}
realConst(value_type*) operator->() const{
return &(this->get());
}
public:
Optional<value_type> toOptional() const{
if(this->isOk())
return this->value();
return none;
}
Optional<value_type> asOptional() const{
return this->toOptional();
}
template <class T = value_type>
Result<T, error_type> map(std::function<T(const value_type&)> mapper) const{
return this->isOk()
? Result<T, error_type>::Ok(mapper(this->value()))
: Result<T, error_type>::Err(this->error());
}
template <class T = value_type>
Result<T, error_type> then(std::function<T(const value_type&)> mapper) const{
return this->map(mapper);
}
template <class E = error_type>
Result<value_type, E> mapError(std::function<E(const error_type&)> mapper) const{
return this->isOk()
? Result<value_type, E>::Ok(this->value())
: Result<value_type, E>::Err(mapper(this->error()));
}
template <class T = value_type, class E = error_type>
Result<T, E> mapBoth(std::function<T(const value_type&)> valueMapper, std::function<E(const error_type&)> errorMapper) const{
//return this->map(valueMapper).mapError(errorMapper);
return this->isOk()
? Result<T, E>::Ok(valueMapper(this->value()))
: Result<T, E>::Err(errorMapper(this->error()));
}
template <class T = value_type, class E = error_type>
Result<T, E> flatMap(std::function<Result<T, E>(const value_type&)> mapper) const{
return this->isOk()
? mapper(this->value())
: Result<T, E>::emplaceErr(this->error());
}
template <class T = value_type, class E = error_type>
Result<T, E> andThen(std::function<Result<T, E>(const value_type&)> mapper) const{
return this->flatMap(mapper);
}
template <class T = value_type, class E = error_type>
Result<T, E> flatMapError(std::function<Result<T, E>(const error_type&)> mapper) const{
return this->isOk()
? Result<T, E>::emplaceOk(this->value())
: mapper(this->error());
}
public:
const value_type& okOr(const value_type& value) const{
return this->isOk()
? this->value()
: value;
}
const value_type& okOr(std::function<const value_type&()> factory) const{
return this->isOk()
? this->value()
: factory();
}
const error_type& errOr(const error_type& error) const{
return this->isOk()
? error
: this->error();
}
const error_type& errOr(std::function<const error_type&()> factory) const{
return this->isOk()
? factory()
: this->error();
}
template <class E>
const value_type& okOrThrow(E ex) const{
if(!this->isOk())
throw ex;
return this->value();
}
};
template <class T>
Result<T, std::exception_ptr> wrapInResult(std::function<T()> f){
try{
auto value = f();
return Result<T, std::exception_ptr>::emplaceOk(value);
}catch(...){
return Result<T, std::exception_ptr>::Err(
std::current_exception()
);
}
}
}
}