blob: 8882fcd7075863c08f86ebe1194e3c763f2a2ccf [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.internal.navigator.wizards;
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.ui.WorkbenchException;
import org.eclipse.ui.activities.WorkbenchActivityHelper;
import org.eclipse.ui.internal.navigator.NavigatorPlugin;
import org.eclipse.ui.internal.navigator.extensions.NavigatorContentRegistryReader;
import org.eclipse.ui.navigator.INavigatorContentService;
/**
* <p>
* <strong>EXPERIMENTAL</strong>. This class or interface has been added as
* part of a work in progress. There is a guarantee neither that this API will
* work nor that it will remain the same. Please do not use this API without
* consulting with the Platform/UI team.
* </p>
*
* @since 3.2
*/
public class CommonWizardDescriptorManager {
private static final CommonWizardDescriptorManager INSTANCE = new CommonWizardDescriptorManager();
private static boolean isInitialized = false;
private static final String[] NO_DESCRIPTOR_IDS = new String[0];
private static final CommonWizardDescriptor[] NO_DESCRIPTORS = new CommonWizardDescriptor[0];
/**
* Find wizards of type 'new'.
*/
public static final String WIZARD_TYPE_NEW = "new"; //$NON-NLS-1$
private Map commonWizardDescriptors = new HashMap();
/**
* @return the singleton instance of the registry
*/
public static CommonWizardDescriptorManager getInstance() {
if (isInitialized) {
return INSTANCE;
}
synchronized (INSTANCE) {
if (!isInitialized) {
INSTANCE.init();
isInitialized = true;
}
}
return INSTANCE;
}
private void init() {
new CommonWizardRegistry().readRegistry();
}
private void addCommonWizardDescriptor(CommonWizardDescriptor aDesc) {
if (aDesc == null) {
return;
} else if(aDesc.getWizardId() == null) {
NavigatorPlugin.logError(0, "A null wizardId was supplied for a commonWizard in " + aDesc.getNamespace(), null); //$NON-NLS-1$
}
synchronized (commonWizardDescriptors) {
Set descriptors = (Set) commonWizardDescriptors.get(aDesc
.getType());
if (descriptors == null) {
commonWizardDescriptors.put(aDesc.getType(), descriptors = new HashSet());
}
if (!descriptors.contains(aDesc)) {
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
* @param aType
* The type of wizards to locate (e.g. 'new', 'import', or
* 'export' etc).
* @param aContentService
* The content service to use when deciding visibility.
* @return The set of commonWizard ids for the given element
*/
public String[] getEnabledCommonWizardDescriptorIds(Object anElement,
String aType, INavigatorContentService aContentService) {
Set commonDescriptors = (Set) commonWizardDescriptors.get(aType);
if (commonDescriptors == null) {
return NO_DESCRIPTOR_IDS;
}
/* 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 (isVisible(aContentService, descriptor)
&& descriptor.isEnabledFor(anElement)) {
descriptorIds.add(descriptor.getWizardId());
}
}
String[] wizardIds = new String[descriptorIds.size()];
return (String[]) descriptorIds.toArray(wizardIds);
}
/**
*
* Returns all wizard descriptor(s) which enable for the given element.
*
* @param anElement
* the element to return the best content descriptor for
* @param aType
* The type of wizards to locate (e.g. 'new', 'import', or
* 'export' etc).
* @param aContentService
* The content service to use when deciding visibility.
* @return The set of commonWizard descriptors for the element
*/
public CommonWizardDescriptor[] getEnabledCommonWizardDescriptors(Object anElement,
String aType, INavigatorContentService aContentService) {
Set commonDescriptors = (Set) commonWizardDescriptors.get(aType);
if (commonDescriptors == null) {
return NO_DESCRIPTORS;
}
/* Find other Common Wizard providers which enable for this object */
List descriptors = new ArrayList();
for (Iterator commonWizardDescriptorsItr = commonDescriptors.iterator(); commonWizardDescriptorsItr
.hasNext();) {
CommonWizardDescriptor descriptor = (CommonWizardDescriptor) commonWizardDescriptorsItr
.next();
if (isVisible(aContentService, descriptor)
&& descriptor.isEnabledFor(anElement)) {
descriptors.add(descriptor);
}
}
CommonWizardDescriptor[] enabledDescriptors = new CommonWizardDescriptor[descriptors.size()];
return (CommonWizardDescriptor[]) descriptors.toArray(enabledDescriptors);
}
/**
* @param aContentService
* @param descriptor
* @return True if the descriptor is visible to the given content service.
*/
private boolean isVisible(INavigatorContentService aContentService, CommonWizardDescriptor descriptor) {
return !WorkbenchActivityHelper.filterItem(descriptor) &&
(aContentService == null ||
(descriptor.getId() == null ||
( aContentService.isVisible(descriptor.getId()) &&
aContentService.isActive(descriptor.getId())
)
)
);
}
private class CommonWizardRegistry extends NavigatorContentRegistryReader {
protected boolean readElement(IConfigurationElement anElement) {
if (TAG_COMMON_WIZARD.equals(anElement.getName())) {
try {
addCommonWizardDescriptor(new CommonWizardDescriptor(
anElement));
} catch (WorkbenchException e) {
// log an error since its not safe to open a dialog here
NavigatorPlugin
.logError(0, e.getMessage(), e);
return false;
}
return true;
} if(TAG_NAVIGATOR_CONTENT.equals(anElement.getName())) {
IConfigurationElement[] commonWizards = anElement.getChildren(TAG_COMMON_WIZARD);
String contentExtensionId = anElement.getAttribute(ATT_ID);
for (int i = 0; i < commonWizards.length; i++) {
try {
addCommonWizardDescriptor(new CommonWizardDescriptor(
commonWizards[i], contentExtensionId));
} catch (WorkbenchException e) {
// log an error since its not safe to open a dialog here
NavigatorPlugin
.logError(0, e.getMessage(), e);
return false;
}
}
return true;
}
return super.readElement(anElement);
}
}
}