org.apache.camel.tooling.util.CamelVersionHelper Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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
*
* http://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.apache.camel.tooling.util;
/**
* A simple util to test Camel versions.
*
* This implementation only checks the numeric values and disregard SNAPSHOT or any other qualifiers.
*/
public final class CamelVersionHelper {
private CamelVersionHelper() {
// utility class, never constructed
}
/**
* Checks whether other >= base
*
* @param base the base version
* @param other the other version
* @return true if GE, false otherwise
*/
public static boolean isGE(String base, String other) {
return isGE(base, other, false);
}
public static boolean isGE(String base, String other, boolean majorMinorOnly) {
if (base == null || base.isEmpty()) {
throw new IllegalArgumentException("Empty base version");
}
if (other == null || other.isEmpty()) {
throw new IllegalArgumentException("Empty other version");
}
// strip suffix/qualifier as we dont support that
base = base.replaceAll("[^\\d|^\\.]", "");
other = other.replaceAll("[^\\d|^\\.]", "");
if (!base.matches("[0-9]+(\\.[0-9]+)*")) {
throw new IllegalArgumentException("Invalid version format");
}
if (!other.matches("[0-9]+(\\.[0-9]+)*")) {
throw new IllegalArgumentException("Invalid version format");
}
Version ver1 = new Version(base);
Version ver2 = new Version(other);
return ver2.compareTo(ver1) >= 0;
}
/**
* Returns the previous minor version number
*
* @param base the version
* @return the previous minor version, eg 3.3.0 as input, returns 3.2.0 as output
*/
public static String prevMinor(String base) {
if (base == null || base.isEmpty()) {
throw new IllegalArgumentException("Empty base version");
}
// strip suffix/qualifier as we dont support that
base = base.replaceAll("[^\\d|^\\.]", "");
if (!base.matches("[0-9]+(\\.[0-9]+)*")) {
throw new IllegalArgumentException("Invalid version format");
}
Version ver = new Version(base);
return ver.prevMinor();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy