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

io.yawp.commons.utils.ServiceLookup Maven / Gradle / Ivy

There is a newer version: 2.08alpha
Show newest version
package io.yawp.commons.utils;

import java.io.IOException;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class ServiceLookup {

    public static final String SERVICES_PATH = "META-INF/services/";

    public static Map, Class> cache = new HashMap<>();

    private ServiceLookup() {
    }

    public static  T lookup(Class clazz) {
        try {
            Class serviceClazz;
            if (!cache.containsKey(clazz)) {
                serviceClazz = findServiceClazz(clazz);
                cache.put(clazz, serviceClazz);
            } else {
                serviceClazz = cache.get(clazz);
            }
            return (T) serviceClazz.newInstance();
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }

    private static  Class findServiceClazz(Class clazz) throws IOException, ClassNotFoundException {
        ResourceFinder finder = new ResourceFinder(SERVICES_PATH);
        List clazzes = finder.findAllImplementations(clazz);

        if (clazzes.size() == 0) {
            throw new RuntimeException(String.format("No service implementation for %s.", clazz.getSimpleName()));
        }

        return clazzes.get(0);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy