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

org.springframework.aot.hint.ResourcePatternHint Maven / Gradle / Ivy

There is a newer version: 6.1.6
Show newest version
/*
 * Copyright 2002-2023 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.aot.hint;

import java.util.Arrays;
import java.util.Objects;
import java.util.regex.Pattern;
import java.util.stream.Collectors;

import org.springframework.lang.Nullable;
import org.springframework.util.Assert;

/**
 * A hint that describes resources that should be made available at runtime.
 *
 * 

Each pattern may be a simple path which has a one-to-one mapping to a * resource on the classpath, or alternatively may contain the special * {@code *} character to indicate a wildcard match. For example: *

    *
  • {@code file.properties}: matches just the {@code file.properties} * file at the root of the classpath.
  • *
  • {@code com/example/file.properties}: matches just the * {@code file.properties} file in {@code com/example/}.
  • *
  • {@code *.properties}: matches all the files with a {@code .properties} * extension anywhere in the classpath.
  • *
  • {@code com/example/*.properties}: matches all the files with a {@code .properties} * extension in {@code com/example/} and its child directories at any depth.
  • *
  • {@code com/example/*}: matches all the files in {@code com/example/} * and its child directories at any depth.
  • *
* *

A resource pattern must not start with a slash ({@code /}) unless it is the * root directory. * * @author Stephane Nicoll * @author Brian Clozel * @author Sebastien Deleuze * @author Sam Brannen * @since 6.0 */ public final class ResourcePatternHint implements ConditionalHint { private final String pattern; @Nullable private final TypeReference reachableType; ResourcePatternHint(String pattern, @Nullable TypeReference reachableType) { Assert.isTrue(("/".equals(pattern) || !pattern.startsWith("/")), () -> "Resource pattern [%s] must not start with a '/' unless it is the root directory" .formatted(pattern)); this.pattern = pattern; this.reachableType = reachableType; } /** * Return the pattern to use for identifying the resources to match. * @return the pattern */ public String getPattern() { return this.pattern; } /** * Return the regex {@link Pattern} to use for identifying the resources to match. * @return the regex pattern */ public Pattern toRegex() { String prefix = (this.pattern.startsWith("*") ? ".*" : ""); String suffix = (this.pattern.endsWith("*") ? ".*" : ""); String regex = Arrays.stream(this.pattern.split("\\*")) .filter(s -> !s.isEmpty()) .map(Pattern::quote) .collect(Collectors.joining(".*", prefix, suffix)); return Pattern.compile(regex); } @Nullable @Override public TypeReference getReachableType() { return this.reachableType; } @Override public boolean equals(@Nullable Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ResourcePatternHint that = (ResourcePatternHint) o; return this.pattern.equals(that.pattern) && Objects.equals(this.reachableType, that.reachableType); } @Override public int hashCode() { return Objects.hash(this.pattern, this.reachableType); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy