public class ParsingPathMatcher extends java.lang.Object implements PathMatcher
PathMatcher
implementation for path patterns parsed
as PathPatternParser
and compiled as PathPattern
s.
Once parsed, PathPattern
s are tailored for fast matching
and quick comparison.
PathPattern
Modifier and Type | Class and Description |
---|---|
(package private) class |
ParsingPathMatcher.PathPatternStringComparatorConsideringPath |
Modifier and Type | Field and Description |
---|---|
private java.util.concurrent.ConcurrentMap<java.lang.String,PathPattern> |
cache |
private PathPatternParser |
parser |
Constructor and Description |
---|
ParsingPathMatcher() |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
combine(java.lang.String pattern1,
java.lang.String pattern2)
Combines two patterns into a new pattern that is returned.
|
java.lang.String |
extractPathWithinPattern(java.lang.String pattern,
java.lang.String path)
Given a pattern and a full path, determine the pattern-mapped part.
|
java.util.Map<java.lang.String,java.lang.String> |
extractUriTemplateVariables(java.lang.String pattern,
java.lang.String path)
Given a pattern and a full path, extract the URI template variables.
|
private PathPattern |
getPathPattern(java.lang.String pattern) |
java.util.Comparator<java.lang.String> |
getPatternComparator(java.lang.String path)
Given a full path, returns a
Comparator suitable for sorting patterns
in order of explicitness for that path. |
boolean |
isPattern(java.lang.String path)
Does the given
path represent a pattern that can be matched
by an implementation of this interface? |
boolean |
match(java.lang.String pattern,
java.lang.String path)
Match the given
path against the given pattern ,
according to this PathMatcher's matching strategy. |
boolean |
matchStart(java.lang.String pattern,
java.lang.String path)
Match the given
path against the corresponding part of the given
pattern , according to this PathMatcher's matching strategy. |
private final java.util.concurrent.ConcurrentMap<java.lang.String,PathPattern> cache
private final PathPatternParser parser
public boolean match(java.lang.String pattern, java.lang.String path)
PathMatcher
path
against the given pattern
,
according to this PathMatcher's matching strategy.match
in interface PathMatcher
pattern
- the pattern to match againstpath
- the path String to testtrue
if the supplied path
matched,
false
if it didn'tpublic boolean matchStart(java.lang.String pattern, java.lang.String path)
PathMatcher
path
against the corresponding part of the given
pattern
, according to this PathMatcher's matching strategy.
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.
matchStart
in interface PathMatcher
pattern
- the pattern to match againstpath
- the path String to testtrue
if the supplied path
matched,
false
if it didn'tpublic java.lang.String extractPathWithinPattern(java.lang.String pattern, java.lang.String path)
PathMatcher
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.
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.
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 pattern
parameter being
a static path that wouldn't qualify as an actual pattern
).
A sophisticated implementation will differentiate between the static parts
and the dynamic parts of the given path pattern.
extractPathWithinPattern
in interface PathMatcher
pattern
- the path patternpath
- the full path to introspectpath
(never null
)public java.util.Map<java.lang.String,java.lang.String> extractUriTemplateVariables(java.lang.String pattern, java.lang.String path)
PathMatcher
For example: For pattern "/hotels/{hotel}" and path "/hotels/1", this method will return a map containing "hotel"->"1".
extractUriTemplateVariables
in interface PathMatcher
pattern
- the path pattern, possibly containing URI templatespath
- the full path to extract template variables frompublic java.lang.String combine(java.lang.String pattern1, java.lang.String pattern2)
PathMatcher
The full algorithm used for combining the two pattern depends on the underlying implementation.
combine
in interface PathMatcher
pattern1
- the first patternpattern2
- the second patternpublic java.util.Comparator<java.lang.String> getPatternComparator(java.lang.String path)
PathMatcher
Comparator
suitable for sorting patterns
in order of explicitness for that path.
The full algorithm used depends on the underlying implementation, but generally,
the returned Comparator
will
sort
a list so that more specific patterns come before generic patterns.
getPatternComparator
in interface PathMatcher
path
- the full path to use for comparisonpublic boolean isPattern(java.lang.String path)
PathMatcher
path
represent a pattern that can be matched
by an implementation of this interface?
If the return value is false
, then the PathMatcher.match(java.lang.String, java.lang.String)
method does not have to be used because direct equality comparisons
on the static path Strings will lead to the same result.
isPattern
in interface PathMatcher
path
- the path String to checktrue
if the given path
represents a patternprivate PathPattern getPathPattern(java.lang.String pattern)