blob: 8cd692eace78b4b3887e0806d72c7db5d8cc506a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.internal.texteditor.quickdiff;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import org.eclipse.core.runtime.IConfigurationElement;
import org.eclipse.core.runtime.IExtensionRegistry;
import org.eclipse.core.runtime.Platform;
import org.eclipse.ui.internal.texteditor.TextEditorPlugin;
import org.eclipse.ui.texteditor.quickdiff.ReferenceProviderDescriptor;
/**
* Access class for the quick diff reference provider extension point.
*
* @since 3.0
*/
public class QuickDiffExtensionsRegistry {
/** The default reference provider's descriptor. */
private ReferenceProviderDescriptor fDefaultDescriptor;
/** The list returned to callers of <code>getExtensions</code>. */
private List fDescriptors;
/**
* Creates a new instance.
*/
public QuickDiffExtensionsRegistry() {
}
/**
* Returns the first descriptor with the <code>default</code> attribute set to <code>true</code>.
*
* @return the descriptor of the default reference provider.
*/
public synchronized ReferenceProviderDescriptor getDefaultProvider() {
ensureRegistered();
return fDefaultDescriptor;
}
/**
* Returns a non-modifiable list of <code>ReferenceProviderDescriptor</code> describing all extension
* to the <code>quickDiffReferenceProvider</code> extension point.
*
* @return the list of extensions to the <code>quickDiffReferenceProvider</code> extension point.
*/
public synchronized List getReferenceProviderDescriptors() {
ensureRegistered();
return fDescriptors;
}
/**
* Ensures that the extensions are read and stored in <code>fDescriptors</code>.
*/
private void ensureRegistered() {
if (fDescriptors == null)
reloadExtensions();
}
/**
* Reads all extensions.
* <p>
* This method can be called more than once in
* order to reload from a changed extension registry.
* </p>
*/
public synchronized void reloadExtensions() {
fDefaultDescriptor= null;
IExtensionRegistry registry= Platform.getExtensionRegistry();
List list= new ArrayList();
IConfigurationElement[] elements= registry.getConfigurationElementsFor(TextEditorPlugin.PLUGIN_ID, TextEditorPlugin.REFERENCE_PROVIDER_EXTENSION_POINT);
for (int i= 0; i < elements.length; i++) {
ReferenceProviderDescriptor desc= new ReferenceProviderDescriptor(elements[i]);
if (fDefaultDescriptor == null && desc.getDefault())
fDefaultDescriptor= desc;
list.add(desc);
}
fDescriptors= Collections.unmodifiableList(list);
}
}