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

org.openstack4j.openstack.identity.functions.ServiceFunctions Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package org.openstack4j.openstack.identity.functions;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

import com.google.common.base.Function;

/**
 * Functions to help resolve specific Services and Versions
 * 
 * @author Jeremy Unruh
 */
public final class ServiceFunctions {

    private static final Pattern VERSION_PATTERN = Pattern.compile("(.*)v(\\d+)");
    
    /**
     * Takes a Service Type or Service Name and strips off any version (if applicable) and returns the 
     * common name.  For example: {@code nova21} would be returned as {@code nova}.
     */
    public static final Function TYPE_WITHOUT_VERSION = new Function() {
        @Override
        public String apply(String serviceType) {
            return matchForVersion(serviceType, false);
        }
    };

    /**
     * Determines the version from a Service Type or Name.  If the current service does not match the pattern
     * then a version 1 is always returned.  For example: {@code nova21} would return {@code 21}, {@code compute} would
     * return {@code 1}
     */
    public static final Function VERSION_FROM_TYPE = new Function() {

        @Override
        public Integer apply(String serviceType) {
            return matchForVersion(serviceType, true);
        }
    };
    
    @SuppressWarnings("unchecked")
    private static  T matchForVersion(String service, boolean returnVersion) {
        Matcher m = VERSION_PATTERN.matcher(service);
        if (m.matches()) {
            if (returnVersion) {
                return (T) Integer.valueOf(m.group(2));
            }
            return (T) m.group(1);
        }
        if (returnVersion) {
            return (T) Integer.valueOf(1);
        }
        return (T) service;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy