-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTryBox.php
110 lines (96 loc) · 2.21 KB
/
TryBox.php
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
<?php
namespace Epic64\PhpBox;
use LogicException;
use Throwable;
/**
* A container that allows chaining transformations and assertions on a value.
* value() will return T|Throwable (must be narrowed manually with error handling).
* rip() will return T, but throws an exception if there is an error.
*
* @template T
* @template E
*/
readonly class TryBox
{
/**
* @template U
* @param U $value
* @return TryBox<U, null>
*/
public static function of($value): TryBox
{
/** @var TryBox<U, null> $box */
$box = new self($value, null);
return $box;
}
/**
* @param T $value
*/
public function __construct(
private mixed $value,
private ?Throwable $error = null
) {
}
/**
* Apply a transformation function to the value.
*
* @template U
* @param callable(T): U $callback
* @return TryBox<U, null>|TryBox<T, Throwable>
*/
public function map(callable $callback): TryBox
{
if ($this->error !== null) {
return $this;
}
return $this->try($callback);
}
/**
* Unbox the value, which might be anything including a throwable.
*
* @return Throwable|T
*/
public function value()
{
return $this->error ?? $this->value;
}
/**
* @param T $default
* @return T
*/
public function getOrElse($default)
{
if ($this->error !== null) {
return $default;
}
return $this->value;
}
/**
* @return T
*
* @throws Throwable
*/
public function get()
{
if ($this->error !== null) {
throw $this->error;
}
return $this->value;
}
/**
* @template U
* @param callable(T):U $callback
* @return TryBox<U, null>|TryBox<T, Throwable>
*/
private function try(callable $callback): TryBox
{
try {
/** @var TryBox<U, null> $result */
$result = new self($callback($this->value), null);
} catch (Throwable $e) {
/** @var TryBox<T, Throwable> $result */
$result = new self($this->value, $e);
}
return $result;
}
}