blob: 47cd3a52ab861a107ea025624a27b55d0a2b219b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 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.navigator.resources.internal.actions;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.eclipse.core.runtime.IConfigurationElement;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.ui.WorkbenchException;
import org.eclipse.ui.navigator.internal.extensions.RegistryReader;
import org.eclipse.ui.navigator.resources.internal.plugin.WorkbenchNavigatorPlugin;
/**
* <p>
* This class is experimental and is subject to change.
* </p>
*/
public class CommonWizardRegistry {
public static final String WIZARD_TYPE_NEW = "new"; //$NON-NLS-1$
public static final String WIZARD_TYPE_IMPORT = "import"; //$NON-NLS-1$
public static final String WIZARD_TYPE_EXPORT = "export"; //$NON-NLS-1$
private static final CommonWizardRegistry INSTANCE = new CommonWizardRegistry();
private static boolean isInitialized = false;
private static final String[] NO_DESCRIPTORS = new String[0];
private Map commonWizardDescriptors = new HashMap();
public void init() {
new CommonWizardRegistryReader().readRegistry();
}
/**
*
*/
public static CommonWizardRegistry getInstance() {
if (isInitialized)
return INSTANCE;
synchronized (INSTANCE) {
if (!isInitialized) {
INSTANCE.init();
isInitialized = true;
}
}
return INSTANCE;
}
/**
* @param aDesc
*/
private void addCommonWizardDescriptor(CommonWizardDescriptor aDesc) {
if (aDesc == null)
return;
synchronized (commonWizardDescriptors) {
Set descriptors = (HashSet) commonWizardDescriptors.get(aDesc.getType());
if (descriptors == null) {
descriptors = new HashSet();
commonWizardDescriptors.put(aDesc.getType(), descriptors);
}
if (descriptors.contains(aDesc) == false) {
descriptors.add(aDesc);
}
}
}
/**
*
* Returns all wizard id(s) which enable for the given element.
*
* @param anElement
* the element to return the best content descriptor for
* @return the best content descriptor for the given element.
*/
public String[] getEnabledCommonWizardDescriptorIds(Object anElement, String aType) {
Set commonDescriptors = (Set) commonWizardDescriptors.get(aType);
if (commonDescriptors == null)
return NO_DESCRIPTORS;
/* Find other Common Wizard providers which enable for this object */
List descriptorIds = new ArrayList();
for (Iterator commonWizardDescriptorsItr = commonDescriptors.iterator(); commonWizardDescriptorsItr.hasNext();) {
CommonWizardDescriptor descriptor = (CommonWizardDescriptor) commonWizardDescriptorsItr.next();
if (descriptor.isEnabledFor(anElement))
descriptorIds.add(descriptor.getWizardId());
}
String[] wizardIds = new String[descriptorIds.size()];
return (String[]) descriptorIds.toArray(wizardIds); //Collections.unmodifiableList(descriptors);
}
/**
*
* Returns all content descriptor(s) which enable for the given element.
*
* @param aStructuredSelection
* the element to return the best content descriptor for
* @return the best content descriptor for the given element.
*/
public String[] getEnabledCommonWizardDescriptorIds(IStructuredSelection aStructuredSelection, String aType) {
Set commonDescriptors = (Set) commonWizardDescriptors.get(aType);
if (commonDescriptors == null)
return NO_DESCRIPTORS;
/* Find other Common Wizard providers which enable for this object */
List descriptorIds = new ArrayList();
for (Iterator commonWizardDescriptorsItr = commonDescriptors.iterator(); commonWizardDescriptorsItr.hasNext();) {
CommonWizardDescriptor descriptor = (CommonWizardDescriptor) commonWizardDescriptorsItr.next();
if (descriptor.isEnabledFor(aStructuredSelection))
descriptorIds.add(descriptor.getWizardId());
}
String[] wizardIds = new String[descriptorIds.size()];
return (String[]) descriptorIds.toArray(wizardIds); //Collections.unmodifiableList(descriptors);
}
class CommonWizardRegistryReader extends RegistryReader {
private static final String COMMON_WIZARD = "commonWizard"; //$NON-NLS-1$
CommonWizardRegistryReader() {
super(WorkbenchNavigatorPlugin.PLUGIN_ID, COMMON_WIZARD);
}
/*
* (non-Javadoc)
*
* @see org.eclipse.wst.common.navigator.internal.views.extensions.RegistryReader#readElement(org.eclipse.core.runtime.IConfigurationElement)
*/
protected boolean readElement(IConfigurationElement anElement) {
if (COMMON_WIZARD.equals(anElement.getName())) {
try {
addCommonWizardDescriptor(new CommonWizardDescriptor(anElement));
return true;
} catch (WorkbenchException e) {
// log an error since its not safe to open a dialog here
WorkbenchNavigatorPlugin.log("Unable to create common wizard descriptor.", e.getStatus());//$NON-NLS-1$
}
}
return false;
}
}
}