/******************************************************************************* * Copyright (c) 2000, 2009 QNX Software Systems 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: * QNX Software Systems - Initial API and implementation *******************************************************************************/ package org.eclipse.cdt.internal.core.model; import java.util.HashMap; import java.util.Map; import org.eclipse.cdt.core.model.CModelException; import org.eclipse.cdt.core.model.ICElement; import org.eclipse.cdt.core.model.ICElementDelta; import org.eclipse.cdt.core.model.ICModelStatus; import org.eclipse.cdt.core.model.ICModelStatusConstants; import org.eclipse.cdt.core.model.ITranslationUnit; import org.eclipse.core.resources.IContainer; import org.eclipse.core.resources.IResource; /** * This class is used to perform operations on multiple <code>ICElement</code>. * It is responible for running each operation in turn, collecting * the errors and merging the corresponding <code>CElementDelta</code>s. * <p> * If several errors occured, they are collected in a multi-status * <code>CModelStatus</code>. Otherwise, a simple <code>CModelStatus</code> * is thrown. */ public abstract class MultiOperation extends CModelOperation { /** * The list of renamings supplied to the operation */ protected String[] fRenamingsList= null; /** * Table specifying the new parent for elements being * copied/moved/renamed. * Keyed by elements being processed, and * values are the corresponding destination parent. */ protected Map<ICElement, ICElement> fParentElements; /** * Table specifying insertion positions for elements being * copied/moved/renamed. Keyed by elements being processed, and * values are the corresponding insertion point. * @see #processElements() */ protected Map<ICElement, ICElement> fInsertBeforeElements= new HashMap<ICElement, ICElement>(1); /** * This table presents the data in <code>fRenamingList</code> in a more * convenient way. */ protected Map<ICElement, String> fRenamings; /** * Creates a new <code>MultiOperation</code>. */ protected MultiOperation(ICElement[] elementsToProcess, ICElement[] parentElements, boolean force) { super(elementsToProcess, parentElements, force); fParentElements = new HashMap<ICElement, ICElement>(elementsToProcess.length); if (elementsToProcess.length == parentElements.length) { for (int i = 0; i < elementsToProcess.length; i++) { fParentElements.put(elementsToProcess[i], parentElements[i]); } } else { //same destination for all elements to be moved/copied/renamed for (ICElement elementsToProces : elementsToProcess) { fParentElements.put(elementsToProces, parentElements[0]); } } } /** * Creates a new <code>MultiOperation</code> on <code>elementsToProcess</code>. */ protected MultiOperation(ICElement[] elementsToProcess, boolean force) { super(elementsToProcess, force); } /** * Convenience method to create a <code>CModelException</code> * embending a <code>CModelStatus</code>. */ protected void error(int code, ICElement element) throws CModelException { throw new CModelException(new CModelStatus(code, element)); } /** * Executes the operation. * * @exception CModelException if one or several errors occured during the operation. * If multiple errors occured, the corresponding <code>CModelStatus</code> is a * multi-status. Otherwise, it is a simple one. */ @Override protected void executeOperation() throws CModelException { try { processElements(); } catch (CModelException cme) { throw cme; } finally { mergeDeltas(); } } /** * Returns the parent of the element being copied/moved/renamed. */ protected ICElement getDestinationParent(ICElement child) { return fParentElements.get(child); } /** * Returns the name to be used by the progress monitor. */ protected abstract String getMainTaskName(); /** * Returns the new name for <code>element</code>, or <code>null</code> * if there are no renamings specified. */ protected String getNewNameFor(ICElement element) { if (fRenamings != null) { return fRenamings.get(element); } return null; } /** * Sets up the renamings hashtable - keys are the elements and * values are the new name. */ private void initializeRenamings() { if (fRenamingsList != null && fRenamingsList.length == fElementsToProcess.length) { fRenamings = new HashMap<ICElement, String>(fRenamingsList.length); for (int i = 0; i < fRenamingsList.length; i++) { if (fRenamingsList[i] != null) { fRenamings.put(fElementsToProcess[i], fRenamingsList[i]); } } } } /** * Returns <code>true</code> if this operation represents a move or rename, <code>false</code> * if this operation represents a copy.<br> * Note: a rename is just a move within the same parent with a name change. */ protected boolean isMove() { return false; } /** * Returns <code>true</code> if this operation represents a rename, <code>false</code> * if this operation represents a copy or move. */ protected boolean isRename() { return false; } /** * Process all of the changed deltas generated by these operations. */ protected void mergeDeltas() { if (fDeltas != null) { CElementDelta rootDelta = newCElementDelta(); boolean insertedTree = false; for (ICElementDelta delta : fDeltas) { ICElementDelta[] children = delta.getAffectedChildren(); for (ICElementDelta element : children) { CElementDelta projectDelta = (CElementDelta) element; rootDelta.insertDeltaTree(projectDelta.getElement(), projectDelta); insertedTree = true; } } if (insertedTree) { fDeltas.clear(); fDeltas.add(rootDelta); } else fDeltas = null; } } /** * Subclasses must implement this method to process a given <code>ICElement</code>. */ protected abstract void processElement(ICElement element) throws CModelException; /** * Processes all the <code>ICElement</code>s in turn, collecting errors * and updating the progress monitor. * * @exception CModelException if one or several operation(s) was unable to * be completed. */ protected void processElements() throws CModelException { beginTask(getMainTaskName(), fElementsToProcess.length); ICModelStatus[] errors = new ICModelStatus[3]; int errorsCounter = 0; for (ICElement elementsToProces : fElementsToProcess) { try { verify(elementsToProces); processElement(elementsToProces); } catch (CModelException jme) { if (errorsCounter == errors.length) { // resize System.arraycopy(errors, 0, (errors = new ICModelStatus[errorsCounter*2]), 0, errorsCounter); } errors[errorsCounter++] = jme.getCModelStatus(); } finally { worked(1); } } done(); if (errorsCounter == 1) { throw new CModelException(errors[0]); } else if (errorsCounter > 1) { if (errorsCounter != errors.length) { // resize System.arraycopy(errors, 0, (errors = new ICModelStatus[errorsCounter]), 0, errorsCounter); } throw new CModelException(CModelStatus.newMultiStatus(errors)); } } /** * Sets the insertion position in the new container for the modified element. The element * being modified will be inserted before the specified new sibling. The given sibling * must be a child of the destination container specified for the modified element. * The default is <code>null</code>, which indicates that the element is to be * inserted at the end of the container. */ public void setInsertBefore(ICElement modifiedElement, ICElement newSibling) { fInsertBeforeElements.put(modifiedElement, newSibling); } /** * Sets the new names to use for each element being copied. The renamings * correspond to the elements being processed, and the number of * renamings must match the number of elements being processed. * A <code>null</code> entry in the list indicates that an element * is not to be renamed. * * <p>Note that some renamings may not be used. If both a parent * and a child have been selected for copy/move, only the parent * is changed. Therefore, if a new name is specified for the child, * the child's name will not be changed. */ public void setRenamings(String[] renamings) { fRenamingsList = renamings; initializeRenamings(); } /** * This method is called for each <code>ICElement</code> before * <code>processElement</code>. It should check that this <code>element</code> * can be processed. */ protected abstract void verify(ICElement element) throws CModelException; /** * Verifies that the <code>destination</code> specified for the <code>element</code> is valid for the types of the * <code>element</code> and <code>destination</code>. */ protected void verifyDestination(ICElement element, ICElement destination) throws CModelException { if (destination == null || !destination.exists()) { error(ICModelStatusConstants.ELEMENT_DOES_NOT_EXIST, destination); } else if (element.getElementType() == ICElement.C_UNIT) { IResource res = destination.getResource(); if (!(res instanceof IContainer)) { error(ICModelStatusConstants.INVALID_DESTINATION, element); } ITranslationUnit tu = (ITranslationUnit)element; if (isMove() && tu.isWorkingCopy() /*&& !cu.isPrimary() */) { error(ICModelStatusConstants.INVALID_ELEMENT_TYPES, element); } } } /** * Verify that the new name specified for <code>element</code> is * valid for that type of C element. */ protected void verifyRenaming(ICElement element) throws CModelException { String newName = getNewNameFor(element); boolean isValid = true; // Validate the name here. if (newName.indexOf(' ') != -1) { isValid = false; } if (!isValid) { throw new CModelException(new CModelStatus(ICModelStatusConstants.INVALID_NAME, element, newName)); } } /** * Verifies that the positioning sibling specified for the <code>element</code> is exists and * its parent is the destination container of this <code>element</code>. */ protected void verifySibling(ICElement element, ICElement destination) throws CModelException { ICElement insertBeforeElement = fInsertBeforeElements.get(element); if (insertBeforeElement != null) { if (!insertBeforeElement.exists() || !insertBeforeElement.getParent().equals(destination)) { error(ICModelStatusConstants.INVALID_SIBLING, insertBeforeElement); } } } }