/* Copyright 2003-2012 Dmitry Barashev, GanttProject Team This file is part of GanttProject, an opensource project management tool. GanttProject is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. GanttProject 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 General Public License for more details. You should have received a copy of the GNU General Public License along with GanttProject. If not, see <http://www.gnu.org/licenses/>. */ package net.sourceforge.ganttproject.plugins; import java.util.ArrayList; import java.util.List; import net.sourceforge.ganttproject.GPLogger; import net.sourceforge.ganttproject.chart.Chart; import net.sourceforge.ganttproject.export.Exporter; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.IConfigurationElement; import org.eclipse.core.runtime.IExtensionRegistry; import org.eclipse.core.runtime.Platform; /** * Very basic Plugin Manager * * @author bbaranne */ public class PluginManager { private static final String EXTENSION_POINT_ID_CHART = "net.sourceforge.ganttproject.chart"; private static final String EXTENSION_POINT_ID_EXPORTER = "net.sourceforge.ganttproject.exporter"; private static List<Chart> myCharts; private static List<Exporter> myExporters; public static <T> List<T> getExtensions(String extensionPointID, Class<T> extensionPointInterface) { IExtensionRegistry extensionRegistry = Platform.getExtensionRegistry(); ArrayList<T> extensions = new ArrayList<T>(); for (IConfigurationElement configElement : extensionRegistry.getConfigurationElementsFor(extensionPointID)) { try { Object nextExtension = configElement.createExecutableExtension("class"); assert nextExtension != null && extensionPointInterface.isAssignableFrom(nextExtension.getClass()); extensions.add((T) nextExtension); } catch (CoreException e) { if (!GPLogger.logToLogger(e)) { e.printStackTrace(System.err); } } } return extensions; } public static List<Chart> getCharts() { if (myCharts == null) { myCharts = getExtensions(EXTENSION_POINT_ID_CHART, Chart.class); } return myCharts; } public static List<Exporter> getExporters() { if (myExporters == null) { myExporters = getExtensions(EXTENSION_POINT_ID_EXPORTER, Exporter.class); } return myExporters; } }