org.openrewrite.semver.XRange Maven / Gradle / Ivy
Show all versions of rewrite-core Show documentation
/*
* Copyright 2021 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.openrewrite.semver;
import org.jspecify.annotations.Nullable;
import org.openrewrite.Validated;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* Any of X, x, or * may be used to "stand in" for one of the numeric values in the [major, minor, patch] tuple.
* X-Ranges.
*/
public class XRange extends LatestRelease {
private static final Pattern X_RANGE_PATTERN = Pattern.compile("([*xX]|\\d+)(?:\\.([*xX]|\\d+)(?:\\.([*xX]|\\d+))?(?:\\.([*xX]|\\d+))?)?");
private final String major;
private final String minor;
private final String patch;
private final String micro;
XRange(String major, String minor, String patch, String micro, @Nullable String metadataPattern) {
super(metadataPattern);
this.major = major;
this.minor = minor;
this.patch = patch;
this.micro = micro;
}
@SuppressWarnings("ResultOfMethodCallIgnored")
@Override
public boolean isValid(@Nullable String currentVersion, String version) {
if (!super.isValid(currentVersion, version)) {
return false;
}
if ("*".equals(major)) {
return true;
}
Matcher gav = VersionComparator.RELEASE_PATTERN.matcher(normalizeVersion(version));
gav.matches();
if (!gav.group(1).equals(major)) {
return false;
}
if ("*".equals(minor)) {
return true;
} else if (gav.group(2) == null || !gav.group(2).equals(minor)) {
return false;
}
if ("*".equals(patch)) {
return true;
} else if (gav.group(3) == null || !gav.group(3).equals(patch)) {
return false;
}
return gav.group(4) == null || !gav.group(4).equals(micro);
}
public static Validated build(String pattern, @Nullable String metadataPattern) {
Matcher matcher = X_RANGE_PATTERN.matcher(pattern);
if (!matcher.matches() || !(pattern.contains("x") || pattern.contains("X") || pattern.contains("*"))) {
return Validated.invalid("xRange", pattern, "not an x-range");
}
String major = normalizeWildcard(matcher.group(1));
String minor = normalizeWildcard(matcher.group(2) == null ? "0" : matcher.group(2));
String patch = normalizeWildcard(matcher.group(3) == null ? "0" : matcher.group(3));
String micro = normalizeWildcard(matcher.group(4) == null ? "0" : matcher.group(4));
if ("*".equals(major) && (matcher.group(2) != null || matcher.group(3) != null || matcher.group(4) != null)) {
return Validated.invalid("xRange", pattern, "not an x-range: nothing can follow a wildcard");
} else if ("*".equals(minor) && (matcher.group(3) != null || matcher.group(4) != null)) {
return Validated.invalid("xRange", pattern, "not an x-range: nothing can follow a wildcard");
} else if ("*".equals(patch) && matcher.group(4) != null) {
return Validated.invalid("xRange", pattern, "not an x-range: nothing can follow a wildcard");
}
return Validated.valid("xRange", new XRange(major, minor, patch, micro, metadataPattern));
}
private static String normalizeWildcard(String part) {
return "*".equals(part) || "x".equals(part) || "X".equals(part) ? "*" : part;
}
}