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
|
package bjc.utils.patterns;
import java.util.function.*;
import bjc.functypes.*;
/**
* Represents a pattern matcher against a series of patterns.
*
* @author Ben Culkin
*
* @param <ReturnType> The type returned from matching the patterns.
* @param <InputType> The type to match against.
*/
@FunctionalInterface
public interface IPatternMatcher<ReturnType, InputType> {
/**
* Match an input object against a set of patterns.
*
* @param input The object to match against.
*
* @return The result of matching against the object.
*
* @throws NonExhaustiveMatch If none of the patterns in this set match
*/
ReturnType matchFor(InputType input) throws NonExhaustiveMatch;
/**
* Create a pattern matcher against a static set of patterns.
*
* @param <RetType> The type returned from matching the patterns.
* @param <InpType> The type to match against.
*
* @param patterns The set of patterns to match on.
*
* @return A pattern matcher which matches on the given patterns.
*/
@SafeVarargs
static <RetType, InpType> IPatternMatcher<RetType, InpType> matchingOn(
ComplexPattern<RetType, ?, InpType>... patterns) {
return new PatternMatcher<>(patterns);
}
/**
* Create a pattern matcher from a handler function.
*
* @param <RetType> The type returned by the matcher.
* @param <InpType> The type to match against.
*
* @param handler The handler function.
*
* @return A pattern matcher defined by the given handler.
*/
static <RetType, InpType> IPatternMatcher<RetType, InpType> from(
ThrowFunction<InpType, RetType, NonExhaustiveMatch> handler) {
return new FunctionalPatternMatcher<>(handler);
}
/**
* Create a pattern matcher which applies a transform to its input.
*
* @param <NewInput> The new input type to use.
* @param transformer The function to convert from the new input to the old input.
*
* @return A pattern matcher which takes values of the new type instead.
*/
default <NewInput> IPatternMatcher<ReturnType, NewInput> transformInput(
Function<NewInput, InputType> transformer) {
return from(inp -> matchFor(transformer.apply(inp)));
}
/**
* Create a pattern matcher which applies a transform to its output.
*
* @param <NewOutput> The new output type to use.
*
* @param transformer The function to convert from the new output to the old output.
*
* @return A pattern matcher which takes values of the new type instead.
*/
default <NewOutput> IPatternMatcher<NewOutput, InputType> transformOutput(
Function<ReturnType, NewOutput> transformer) {
return from(inp -> transformer.apply(matchFor(inp)));
}
}
|