org.openrewrite.semver.TildeRange 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;
import static java.lang.Integer.parseInt;
/**
* Allows patch-level changes if a minor version is specified on the comparator. Allows minor-level changes if not.
* Tilde ranges.
*/
public class TildeRange extends LatestRelease {
private static final Pattern TILDE_RANGE_PATTERN = Pattern.compile("~(\\d+)(?:\\.(\\d+))?(?:\\.(\\d+))?(?:\\.(\\d+))?");
private final String upperExclusive;
private final String lower;
private TildeRange(String lower, String upperExclusive, @Nullable String metadataPattern) {
super(metadataPattern);
this.lower = lower;
this.upperExclusive = upperExclusive;
}
@Override
public boolean isValid(@Nullable String currentVersion, String version) {
return super.isValid(currentVersion, version) &&
super.compare(currentVersion, version, upperExclusive) < 0 &&
super.compare(currentVersion, version, lower) >= 0;
}
public static Validated build(String pattern, @Nullable String metadataPattern) {
Matcher matcher = TILDE_RANGE_PATTERN.matcher(pattern);
if (!matcher.matches()) {
return Validated.invalid("tildeRange", pattern, "not a tilde range");
}
String major = matcher.group(1);
String minor = matcher.group(2);
String patch = matcher.group(3);
String micro = matcher.group(4);
String lower;
String upper;
if (minor == null) {
lower = major;
upper = Integer.toString(parseInt(major) + 1);
} else if (patch == null) {
lower = major + "." + minor;
upper = major + "." + (parseInt(minor) + 1);
} else if (micro == null) {
lower = major + "." + minor + "." + patch;
upper = major + "." + (parseInt(minor) + 1);
} else {
lower = major + "." + minor + "." + patch + "." + micro;
upper = major + "." + minor + "." + (parseInt(patch) + 1);
}
return Validated.valid("tildeRange", new TildeRange(lower, upper, metadataPattern));
}
}