/******************************************************************************* * Copyright (c) 2000, 2015 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.wst.jsdt.internal.ui.wizards.buildpaths; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.HashMap; import java.util.HashSet; import java.util.List; import java.util.Set; import org.eclipse.core.resources.IProject; import org.eclipse.core.resources.IWorkspaceRoot; import org.eclipse.core.resources.ResourcesPlugin; import org.eclipse.core.runtime.IPath; import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.Path; import org.eclipse.jface.dialogs.Dialog; import org.eclipse.swt.SWT; import org.eclipse.swt.widgets.Composite; import org.eclipse.ui.dialogs.PreferencesUtil; import org.eclipse.wst.jsdt.core.IJsGlobalScopeContainer; import org.eclipse.wst.jsdt.core.IIncludePathEntry; import org.eclipse.wst.jsdt.core.IJavaScriptProject; import org.eclipse.wst.jsdt.core.JavaScriptCore; import org.eclipse.wst.jsdt.core.JavaScriptModelException; import org.eclipse.wst.jsdt.internal.corext.util.Messages; import org.eclipse.wst.jsdt.internal.ui.JavaScriptPlugin; import org.eclipse.wst.jsdt.internal.ui.JavaPluginImages; import org.eclipse.wst.jsdt.internal.ui.dialogs.StatusInfo; import org.eclipse.wst.jsdt.internal.ui.preferences.UserLibraryPreferencePage; import org.eclipse.wst.jsdt.internal.ui.wizards.NewWizardMessages; import org.eclipse.wst.jsdt.internal.ui.wizards.dialogfields.CheckedListDialogField; import org.eclipse.wst.jsdt.internal.ui.wizards.dialogfields.DialogField; import org.eclipse.wst.jsdt.internal.ui.wizards.dialogfields.IDialogFieldListener; import org.eclipse.wst.jsdt.internal.ui.wizards.dialogfields.IListAdapter; import org.eclipse.wst.jsdt.internal.ui.wizards.dialogfields.LayoutUtil; import org.eclipse.wst.jsdt.internal.ui.wizards.dialogfields.ListDialogField; import org.eclipse.wst.jsdt.ui.wizards.IJsGlobalScopeContainerPage; import org.eclipse.wst.jsdt.ui.wizards.IJsGlobalScopeContainerPageExtension; import org.eclipse.wst.jsdt.ui.wizards.IJsGlobalScopeContainerPageExtension2; import org.eclipse.wst.jsdt.ui.wizards.NewElementWizardPage; import com.ibm.icu.text.Collator; /** * */ public class UserLibraryWizardPage extends NewElementWizardPage implements IJsGlobalScopeContainerPage, IJsGlobalScopeContainerPageExtension, IJsGlobalScopeContainerPageExtension2 { private IJavaScriptProject fProject; private CheckedListDialogField fLibrarySelector; private CPUserLibraryElement fEditResult; private Set fUsedPaths; private boolean fIsEditMode; private boolean fIsExported; public UserLibraryWizardPage() { super("UserLibraryWizardPage"); //$NON-NLS-1$ setTitle(NewWizardMessages.UserLibraryWizardPage_title); setImageDescriptor(JavaPluginImages.DESC_WIZBAN_ADD_LIBRARY); updateDescription(null); fUsedPaths= new HashSet(); fProject= createPlaceholderProject(); LibraryListAdapter adapter= new LibraryListAdapter(); String[] buttonLabels= new String[] { NewWizardMessages.UserLibraryWizardPage_list_config_button }; fLibrarySelector= new CheckedListDialogField(adapter, buttonLabels, new CPListLabelProvider()); fLibrarySelector.setDialogFieldListener(adapter); fLibrarySelector.setLabelText(NewWizardMessages.UserLibraryWizardPage_list_label); fEditResult= null; updateStatus(validateSetting(Collections.EMPTY_LIST)); } private static IJavaScriptProject createPlaceholderProject() { StringBuilder name= new StringBuilder("####internal"); //$NON-NLS-1$ IWorkspaceRoot root= ResourcesPlugin.getWorkspace().getRoot(); while (true) { IProject project= root.getProject(name.toString()); if (!project.exists()) { return JavaScriptCore.create(project); } name.append('1'); } } private void updateDescription(IIncludePathEntry containerEntry) { if (containerEntry == null || containerEntry.getPath().segmentCount() != 2) { setDescription(NewWizardMessages.UserLibraryWizardPage_description_new); } else { setDescription(Messages.format(NewWizardMessages.UserLibraryWizardPage_description_edit, containerEntry.getPath().segment(1))); } } private List updateLibraryList() { HashSet oldNames= new HashSet(); HashSet oldCheckedNames= new HashSet(); List oldElements= fLibrarySelector.getElements(); for (int i= 0; i < oldElements.size(); i++) { CPUserLibraryElement curr= (CPUserLibraryElement) oldElements.get(i); oldNames.add(curr.getName()); if (fLibrarySelector.isChecked(curr)) { oldCheckedNames.add(curr.getName()); } } ArrayList entriesToCheck= new ArrayList(); String[] names= JavaScriptCore.getUserLibraryNames(); Arrays.sort(names, Collator.getInstance()); ArrayList elements= new ArrayList(names.length); for (int i= 0; i < names.length; i++) { String curr= names[i]; IPath path= new Path(JavaScriptCore.USER_LIBRARY_CONTAINER_ID).append(curr); try { IJsGlobalScopeContainer container= JavaScriptCore.getJsGlobalScopeContainer(path, fProject); CPUserLibraryElement elem= new CPUserLibraryElement(curr, container, fProject); elements.add(elem); if (!oldCheckedNames.isEmpty()) { if (oldCheckedNames.contains(curr)) { entriesToCheck.add(elem); } } else { if (!oldNames.contains(curr)) { entriesToCheck.add(elem); } } } catch (JavaScriptModelException e) { JavaScriptPlugin.log(e); // ignore } } fLibrarySelector.setElements(elements); return entriesToCheck; } private void doDialogFieldChanged(DialogField field) { if (field == fLibrarySelector) { List list= fLibrarySelector.getCheckedElements(); if (fIsEditMode) { if (list.size() > 1) { if (fEditResult != null && list.remove(fEditResult)) { fLibrarySelector.setCheckedWithoutUpdate(fEditResult, false); } fEditResult= (CPUserLibraryElement) list.get(0); // take the first for (int i= 1; i < list.size(); i++) { // uncheck the rest fLibrarySelector.setCheckedWithoutUpdate(list.get(i), false); } } else if (list.size() == 1) { fEditResult= (CPUserLibraryElement) list.get(0); } } updateStatus(validateSetting(list)); } } private IStatus validateSetting(List selected) { int nSelected= selected.size(); if (nSelected == 0) { return new StatusInfo(IStatus.ERROR, NewWizardMessages.UserLibraryWizardPage_error_selectentry); } else if (fIsEditMode && nSelected > 1) { return new StatusInfo(IStatus.ERROR, NewWizardMessages.UserLibraryWizardPage_error_selectonlyone); } for (int i= 0; i < selected.size(); i++) { CPUserLibraryElement curr= (CPUserLibraryElement) selected.get(i); if (fUsedPaths.contains(curr.getPath())) { return new StatusInfo(IStatus.ERROR, NewWizardMessages.UserLibraryWizardPage_error_alreadyoncp); } } return new StatusInfo(); } private void doButtonPressed(int index) { if (index == 0) { HashMap data= new HashMap(3); if (fEditResult != null) { data.put(UserLibraryPreferencePage.DATA_LIBRARY_TO_SELECT, fEditResult.getName()); } String id= UserLibraryPreferencePage.ID; PreferencesUtil.createPreferenceDialogOn(getShell(), id, new String[] { id }, data).open(); List newEntries= updateLibraryList(); if (newEntries.size() > 0) { if (fIsEditMode) { fLibrarySelector.setChecked(newEntries.get(0), true); } else { fLibrarySelector.setCheckedElements(newEntries); } } } else { fLibrarySelector.setCheckedElements(fLibrarySelector.getSelectedElements()); } } private void doDoubleClicked(ListDialogField field) { List list= fLibrarySelector.getSelectedElements(); if (list.size() == 1) { Object elem= list.get(0); boolean state= fLibrarySelector.isChecked(elem); if (!state || !fIsEditMode) { fLibrarySelector.setChecked(elem, !state); } } } /* (non-Javadoc) * @see org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite) */ public void createControl(Composite parent) { Composite composite= new Composite(parent, SWT.NONE); composite.setFont(parent.getFont()); LayoutUtil.doDefaultLayout(composite, new DialogField[] { fLibrarySelector }, true, SWT.DEFAULT, SWT.DEFAULT); LayoutUtil.setHorizontalGrabbing(fLibrarySelector.getListControl(null)); Dialog.applyDialogFont(composite); setControl(composite); } /* (non-Javadoc) * @see org.eclipse.wst.jsdt.ui.wizards.IJsGlobalScopeContainerPage#finish() */ public boolean finish() { return true; } /* (non-Javadoc) * @see org.eclipse.wst.jsdt.ui.wizards.IJsGlobalScopeContainerPage#getSelection() */ public IIncludePathEntry getSelection() { if (fEditResult != null) { return JavaScriptCore.newContainerEntry(fEditResult.getPath(), fIsExported); } return null; } /* (non-Javadoc) * @see org.eclipse.wst.jsdt.ui.wizards.IJsGlobalScopeContainerPageExtension2#getNewContainers() */ public IIncludePathEntry[] getNewContainers() { List selected= fLibrarySelector.getCheckedElements(); IIncludePathEntry[] res= new IIncludePathEntry[selected.size()]; for (int i= 0; i < res.length; i++) { CPUserLibraryElement curr= (CPUserLibraryElement) selected.get(i); res[i]= JavaScriptCore.newContainerEntry(curr.getPath(), fIsExported); } return res; } /* (non-Javadoc) * @see org.eclipse.wst.jsdt.ui.wizards.IJsGlobalScopeContainerPage#setSelection(org.eclipse.wst.jsdt.core.IIncludePathEntry) */ public void setSelection(IIncludePathEntry containerEntry) { fIsExported= containerEntry != null && containerEntry.isExported(); updateDescription(containerEntry); fIsEditMode= (containerEntry != null); if (fIsEditMode) { fUsedPaths.remove(containerEntry.getPath()); } String selected= null; if (containerEntry != null && containerEntry.getPath().segmentCount() == 2) { selected= containerEntry.getPath().segment(1); } else { // get from dialog store } updateLibraryList(); if (selected != null) { List elements= fLibrarySelector.getElements(); for (int i= 0; i < elements.size(); i++) { CPUserLibraryElement curr= (CPUserLibraryElement) elements.get(i); if (curr.getName().equals(selected)) { fLibrarySelector.setChecked(curr, true); return; } } } } private class LibraryListAdapter implements IListAdapter, IDialogFieldListener { public LibraryListAdapter() { } public void dialogFieldChanged(DialogField field) { doDialogFieldChanged(field); } public void customButtonPressed(ListDialogField field, int index) { doButtonPressed(index); } public void selectionChanged(ListDialogField field) { } public void doubleClicked(ListDialogField field) { doDoubleClicked(field); } } /* (non-Javadoc) * @see org.eclipse.wst.jsdt.ui.wizards.IJsGlobalScopeContainerPageExtension#initialize(org.eclipse.wst.jsdt.core.IJavaScriptProject, org.eclipse.wst.jsdt.core.IIncludePathEntry[]) */ public void initialize(IJavaScriptProject project, IIncludePathEntry[] currentEntries) { for (int i= 0; i < currentEntries.length; i++) { IIncludePathEntry curr= currentEntries[i]; if (curr.getEntryKind() == IIncludePathEntry.CPE_CONTAINER) { fUsedPaths.add(curr.getPath()); } } } }