地质所 沉降监测网建设项目
zmk
2024-05-15 9e3afc6d0fa514f986d3fea40fa23124e6fb5070
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
package com.javaweb.framework.interceptor.path;
 
import java.util.Comparator;
import java.util.Map;
 
/**
 * Strategy interface for {@code String}-based path matching.
 *
 * <p>The default implementation is {@link com.makbro.core.framework.interceptor.path.impl.AntPathMatcher}, supporting the Ant-style pattern syntax.        (borrowed from spring)
 */
public interface PathMatcher {
 
    /**
     * Does the given {@code path} represent a pattern that can be matched by an implementation of this interface?
     *
     * <p>If the return value is {@code false}, then the {@link #match}
     * method does not have to be used because direct equality comparisons
     * on the static path Strings will lead to the same result.
     *
     * @param path the path String to check
     * @return {@code true} if the given {@code path} represents a pattern
     */
    boolean isPattern(String path);
 
    /**
     * Match the given {@code path} against the given {@code pattern}, according to this PathMatcher's matching strategy.
     *
     * @param pattern the pattern to match against
     * @param path the path String to test
     * @return {@code true} if the supplied {@code path} matched,
     * {@code false} if it didn't
     */
    boolean match(String pattern, String path);
 
    /**
     * Match the given {@code path} against the corresponding part of the given {@code pattern}, according to this PathMatcher's matching strategy.
     *
     * <p>Determines whether the pattern at least matches as far as the given base path goes, assuming that a full path may then match as well.
     *
     * @param pattern the pattern to match against
     * @param path the path String to test
     * @return {@code true} if the supplied {@code path} matched,
     * {@code false} if it didn't
     */
    boolean matchStart(String pattern, String path);
 
    /**
     * Given a pattern and a full path, determine the pattern-mapped part.
     *
     * <p>This method is supposed to find out which part of the path is matched dynamically through an actual pattern,
     * that is, it strips off a statically defined leading path from the given full path,
     * returning only the actually pattern-matched part of the path.
     *
     * <p>For example: For "myroot/*.html" as pattern and "myroot/myfile.html" as full path, this method should return "myfile.html".
     * The detailed determination rules are specified to this PathMatcher's matching strategy.
     *
     * <p>A simple implementation may return the given full path as-is in case of an actual pattern,
     * and the empty String in case of the pattern not containing any dynamic parts (i.e. the {@code pattern} parameter being
     * a static path that wouldn't qualify as an actual {@link #isPattern pattern}).
     * A sophisticated implementation will differentiate between the static parts and the dynamic parts of the given path pattern.
     *
     * @param pattern the path pattern
     * @param path the full path to introspect
     * @return the pattern-mapped part of the given {@code path}
     * (never {@code null})
     */
    String extractPathWithinPattern(String pattern, String path);
 
    /**
     * Given a pattern and a full path, extract the URI template variables. URI template variables are expressed through curly brackets ('{' and '}').
     *
     * <p>For example: For pattern "/hotels/{hotel}" and path "/hotels/1", this method will return a map containing "hotel"->"1".
     *
     * @param pattern the path pattern, possibly containing URI templates
     * @param path the full path to extract template variables from
     * @return a map, containing variable names as keys; variables values as values
     */
    Map<String, String> extractUriTemplateVariables(String pattern, String path);
 
    /**
     * Given a full path, returns a {@link Comparator} suitable for sorting patterns in order of explicitness for that path.
     *
     * <p>The full algorithm used depends on the underlying implementation, but generally,
     * the returned {@code Comparator} will {@linkplain java.util.Collections#sort(java.util.List, Comparator) sort}
     * a list so that more specific patterns come before generic patterns.
     *
     * @param path the full path to use for comparison
     * @return a comparator capable of sorting patterns in order of explicitness
     */
    Comparator<String> getPatternComparator(String path);
 
    /**
     * Combines two patterns into a new pattern that is returned.
     *
     * <p>The full algorithm used for combining the two pattern depends on the underlying implementation.
     *
     * @param pattern1 the first pattern
     * @param pattern2 the second pattern
     * @return the combination of the two patterns
     * @throws IllegalArgumentException when the two patterns cannot be combined
     */
    String combine(String pattern1, String pattern2);
 
}