blob: 305007b88122c6cb116e91cf5a77bb97cc39aecf [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2010 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.ide.undo;
import java.net.URI;
import org.eclipse.core.resources.IFolder;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.IWorkspaceRoot;
import org.eclipse.core.runtime.Assert;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.OperationCanceledException;
import org.eclipse.core.runtime.SubProgressMonitor;
/**
* FolderDescription is a lightweight description that describes a folder to be
* created.
*
* This class is not intended to be instantiated or used by clients.
*
* @since 3.3
*
*/
public class FolderDescription extends ContainerDescription {
private boolean virtual = false;
/**
* Create a FolderDescription from the specified folder handle. Typically
* used when the folder handle represents a resource that actually exists,
* although it will not fail if the resource is non-existent.
*
* @param folder
* the folder to be described
* @param virtual
* the folder is a virtual folder
*/
public FolderDescription(IFolder folder, boolean virtual) {
super(folder);
this.virtual = virtual;
}
/**
* Create a FolderDescription from the specified folder handle. If the
* folder to be created should be linked to a different location, specify
* the location.
*
* @param folder
* the folder to be described
* @param linkLocation
* the location to which the folder is linked, or
* <code>null</code> if it is not linked
*/
public FolderDescription(IFolder folder, URI linkLocation) {
super(folder);
this.name = folder.getName();
this.location = linkLocation;
}
@Override
public IResource createResourceHandle() {
IWorkspaceRoot workspaceRoot = getWorkspace().getRoot();
IPath folderPath = parent.getFullPath().append(name);
return workspaceRoot.getFolder(folderPath);
}
@Override
public void createExistentResourceFromHandle(IResource resource,
IProgressMonitor monitor) throws CoreException {
Assert.isLegal(resource instanceof IFolder);
if (resource.exists()) {
return;
}
IFolder folderHandle = (IFolder) resource;
try {
monitor.beginTask("", 200); //$NON-NLS-1$
monitor.setTaskName(UndoMessages.FolderDescription_NewFolderProgress);
if (monitor.isCanceled()) {
throw new OperationCanceledException();
}
if (filters != null) {
for (int i = 0; i < filters.length; i++) {
folderHandle.createFilter(filters[i].getType(), filters[i].getFileInfoMatcherDescription(), 0, new SubProgressMonitor(
monitor, 100));
}
}
if (location != null) {
folderHandle.createLink(location,
IResource.ALLOW_MISSING_LOCAL, new SubProgressMonitor(
monitor, 100));
} else {
folderHandle.create(virtual ? IResource.VIRTUAL:0, true, new SubProgressMonitor(
monitor, 100));
}
if (monitor.isCanceled()) {
throw new OperationCanceledException();
}
createChildResources(folderHandle, monitor, 100);
} finally {
monitor.done();
}
}
}