All Downloads are FREE. Search and download functionalities are using the official Maven repository.

keycloakjar.org.springframework.web.util.pattern.PathPatternParser Maven / Gradle / Ivy

There is a newer version: 2.2.3
Show newest version
/*
 * Copyright 2002-2020 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.web.util.pattern;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import org.springframework.http.server.PathContainer;

/**
 * Parser for URI path patterns producing {@link PathPattern} instances that can
 * then be matched to requests.
 *
 * 

The {@link PathPatternParser} and {@link PathPattern} are specifically * designed for use with HTTP URL paths in web applications where a large number * of URI path patterns, continuously matched against incoming requests, * motivates the need for efficient matching. * *

For details of the path pattern syntax see {@link PathPattern}. * * @author Andy Clement * @since 5.0 */ public class PathPatternParser { private static final Log logger = LogFactory.getLog(PathPatternParser.class); private boolean matchOptionalTrailingSeparator = true; private boolean caseSensitive = true; private PathContainer.Options pathOptions = PathContainer.Options.HTTP_PATH; /** * Whether a {@link PathPattern} produced by this parser should * automatically match request paths with a trailing slash. * *

If set to {@code true} a {@code PathPattern} without a trailing slash * will also match request paths with a trailing slash. If set to * {@code false} a {@code PathPattern} will only match request paths with * a trailing slash. * *

The default is {@code true}. */ public void setMatchOptionalTrailingSeparator(boolean matchOptionalTrailingSeparator) { this.matchOptionalTrailingSeparator = matchOptionalTrailingSeparator; } /** * Whether optional trailing slashing match is enabled. */ public boolean isMatchOptionalTrailingSeparator() { return this.matchOptionalTrailingSeparator; } /** * Whether path pattern matching should be case-sensitive. *

The default is {@code true}. */ public void setCaseSensitive(boolean caseSensitive) { this.caseSensitive = caseSensitive; } /** * Whether case-sensitive pattern matching is enabled. */ public boolean isCaseSensitive() { return this.caseSensitive; } /** * Set options for parsing patterns. These should be the same as the * options used to parse input paths. *

{@link org.springframework.http.server.PathContainer.Options#HTTP_PATH} * is used by default. * @since 5.2 */ public void setPathOptions(PathContainer.Options pathOptions) { this.pathOptions = pathOptions; } /** * Return the {@link #setPathOptions configured} pattern parsing options. * @since 5.2 */ public PathContainer.Options getPathOptions() { return this.pathOptions; } /** * Process the path pattern content, a character at a time, breaking it into * path elements around separator boundaries and verifying the structure at each * stage. Produces a PathPattern object that can be used for fast matching * against paths. Each invocation of this method delegates to a new instance of * the {@link InternalPathPatternParser} because that class is not thread-safe. * @param pathPattern the input path pattern, e.g. /project/{name} * @return a PathPattern for quickly matching paths against request paths * @throws PatternParseException in case of parse errors */ public PathPattern parse(String pathPattern) throws PatternParseException { int wildcardIndex = pathPattern.indexOf("**" + this.pathOptions.separator()); if (wildcardIndex != -1 && wildcardIndex != pathPattern.length() - 3) { logger.warn("'**' patterns are not supported in the middle of patterns and will be rejected in the future. " + "Consider using '*' instead for matching a single path segment."); } return new InternalPathPatternParser(this).parse(pathPattern); } /** * Shared, read-only instance of {@code PathPatternParser}. Uses default settings: *

    *
  • {@code matchOptionalTrailingSeparator=true} *
  • {@code caseSensitivetrue} *
  • {@code pathOptions=PathContainer.Options.HTTP_PATH} *
*/ public final static PathPatternParser defaultInstance = new PathPatternParser() { @Override public void setMatchOptionalTrailingSeparator(boolean matchOptionalTrailingSeparator) { raiseError(); } @Override public void setCaseSensitive(boolean caseSensitive) { raiseError(); } @Override public void setPathOptions(PathContainer.Options pathOptions) { raiseError(); } private void raiseError() { throw new UnsupportedOperationException( "This is a read-only, shared instance that cannot be modified"); } }; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy