/* * GeoTools - The Open Source Java GIS Toolkit * http://geotools.org * * (C) 2016, Open Source Geospatial Foundation (OSGeo) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotools.gce.imagemosaic.granulehandler; import java.util.Arrays; import java.util.HashMap; import java.util.Iterator; import java.util.Map; import org.geotools.factory.FactoryCreator; import org.geotools.factory.FactoryRegistry; /** * Access the granule handler factories */ public class GranuleHandlerFactoryFinder { private static FactoryCreator registry; public static synchronized Map<String, GranuleHandlerFactorySPI> getGranuleHandlersSPI() { // get all GranuleHandlerFactorySPI implementations FactoryRegistry serviceRegistry = getServiceRegistry(); serviceRegistry.scanForPlugins(); final Iterator<GranuleHandlerFactorySPI> it = serviceRegistry .getServiceProviders(GranuleHandlerFactorySPI.class, true); Map<String, GranuleHandlerFactorySPI> acceptorFactorySPIMap = new HashMap<>(); while (it.hasNext()) { GranuleHandlerFactorySPI GranuleGeometryHandlerFactorySPI = it.next(); acceptorFactorySPIMap.put(GranuleGeometryHandlerFactorySPI.getClass().getName(), GranuleGeometryHandlerFactorySPI); } return acceptorFactorySPIMap; } /** * Returns the service registry. The registry will be created the first time this method is invoked. */ private static FactoryRegistry getServiceRegistry() { if (registry == null) { registry = new FactoryCreator( Arrays.asList(new Class<?>[] { GranuleHandlerFactorySPI.class })); } return registry; } }