Package org.locationtech.udig.core.internal

Source Code of org.locationtech.udig.core.internal.ExtensionPointUtil

/*
*    uDig - User Friendly Desktop Internet GIS client
*    http://udig.refractions.net
*    (C) 2004, Refractions Research Inc.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* (http://www.eclipse.org/legal/epl-v10.html), and the Refractions BSD
* License v1.0 (http://udig.refractions.net/files/bsd3-v10.html).
*
*/
package org.locationtech.udig.core.internal;

import java.text.MessageFormat;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

import org.eclipse.core.runtime.IConfigurationElement;
import org.eclipse.core.runtime.IExtension;
import org.eclipse.core.runtime.IExtensionPoint;
import org.eclipse.core.runtime.IExtensionRegistry;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Platform;
import org.eclipse.core.runtime.Plugin;
import org.eclipse.core.runtime.Status;

/**
* A utility class to assist in processing extensions
*
* @see org.locationtech.udig.core.internal.ExtensionPointProcessor
* @author Jesse Eichar
* @version $Revision: 1.9 $
*/
public class ExtensionPointUtil {

    /**
     * Finds all the Extension or the Extension point identified by the xpid method and calls a
     * callback method on the processor class for processing of the extension.
     *
     * @see org.locationtech.udig.core.internal.ExtensionPointProcessor#process(IExtension,
     *      IConfigurationElement)
     * @param xpid The id of the ExtensionPoint for which the extensions are to be processed
     * @param processor The object that wishes to process the extension for the ExtensionPoint
     * @deprecated Please use process( Plugin, String, ExtentionPointProcessor ) - so we can
     */
    public static void process( String xpid, ExtensionPointProcessor processor ) {
        process(CorePlugin.getDefault(), xpid, processor);
    }

    /**
     * Finds all the Extension or the Extension point identified by the xpid method and calls a
     * callback method on the processor class for processing of the extension.
     *
     * @see org.locationtech.udig.core.internal.ExtensionPointProcessor#process(IExtension,
     *      IConfigurationElement)
     * @param plugin plugin processing this extention point
     * @param xpid The id of the ExtensionPoint for which the extensions are to be processed
     * @param processor The object that wishes to process the extension for the ExtensionPoint
     */
    public static void process( Plugin plugin, String xpid, ExtensionPointProcessor processor ) {
        IExtensionRegistry registry = Platform.getExtensionRegistry();
        IExtensionPoint extensionPoint = registry.getExtensionPoint(xpid);
        if (extensionPoint == null)
            return;
        IExtension[] extensions = extensionPoint.getExtensions();

        // For each extension ...
        for( int i = 0; i < extensions.length; i++ ) {
            IExtension extension = extensions[i];
            IConfigurationElement[] elements = extension.getConfigurationElements();

            // For each member of the extension ...
            for( int j = 0; j < elements.length; j++ ) {
                IConfigurationElement element = elements[j];
                try {
                    processor.process(extension, element);
                } catch (Throwable exception) {
                    plugin
                            .getLog()
                            .log(
                                    new Status(
                                            IStatus.WARNING,
                                            element.getNamespaceIdentifier(),
                                            0,
                                            MessageFormat
                                                    .format(
                                                            "Error processing extension {0}", new Object[]{exception}), exception)); //$NON-NLS-1$                   
                }
            }
        }
    }

    /**
     * Process extentionpoint with an itemCreator.
     * <p>
     * Example Use:
     *
     * <pre><code>
     *  List&lt;Thingy&gt; stuff = ExtentionPointUtil.list( new ExtentionPointProcessor2(){
     *     public Object process( IExtention extention, IConfigurationElement element ){
     *         return new Thingy( element );
     *     }
     *  }
     * </code></pre>
     *
     * </p>
     *
     * @param xpid
     * @param itemCreator Used to process extention points into items for a list
     * @return List
     */
    public static List list( String xpid, ExtensionPointItemCreator itemCreator ) {
        IExtensionRegistry registry = Platform.getExtensionRegistry();
        IExtensionPoint extensionPoint = registry.getExtensionPoint(xpid);
        if (extensionPoint == null) {
            return Collections.EMPTY_LIST;
        }
        IExtension[] extensions = extensionPoint.getExtensions();
        List<Object> list = new ArrayList<Object>();
        // For each extension ...
        for( int i = 0; i < extensions.length; i++ ) {
            IExtension extension = extensions[i];
            IConfigurationElement[] elements = extension.getConfigurationElements();

            // For each member of the extension ...
            for( int j = 0; j < elements.length; j++ ) {
                IConfigurationElement element = elements[j];
                try {
                    Object obj = itemCreator.createItem(extension, element);
                    if (obj == null)
                        continue; // warning?

                    list.add(obj);
                } catch (Throwable exception) {
                    CorePlugin
                            .getDefault()
                            .getLog()
                            .log(
                                    new Status(
                                            IStatus.WARNING,
                                            extension.getNamespaceIdentifier(),
                                            0,
                                            MessageFormat
                                                    .format(
                                                            "Error processing extension {0}", new Object[]{exception}), exception)); //$NON-NLS-1$
                }
            }
        }
        return list;
    }
}
TOP

Related Classes of org.locationtech.udig.core.internal.ExtensionPointUtil

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.