blob: 28982bfa0c6825d1810b8a8850ec2f777b8e5b19 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 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.core.internal.filebuffers;
import org.eclipse.core.resources.IContainer;
import org.eclipse.core.resources.IFolder;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.IWorkspace;
import org.eclipse.core.resources.IWorkspaceRoot;
import org.eclipse.core.resources.IWorkspaceRunnable;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.OperationCanceledException;
import org.eclipse.core.runtime.Path;
import org.eclipse.core.runtime.Status;
import org.eclipse.core.runtime.SubProgressMonitor;
public class ContainerGenerator {
private IPath fContainerFullPath;
private IContainer fContainer;
private IWorkspace fWorkspace;
public ContainerGenerator(IWorkspace workspace, IPath containerPath) {
fWorkspace= workspace;
fContainerFullPath = containerPath;
}
private IFolder createFolder(IFolder folderHandle, IProgressMonitor monitor) throws CoreException {
folderHandle.create(false, true, monitor);
if (monitor.isCanceled())
throw new OperationCanceledException();
return folderHandle;
}
private IFolder createFolderHandle(IContainer container, String folderName) {
return container.getFolder(new Path(folderName));
}
private IProject createProject(IProject projectHandle, IProgressMonitor monitor) throws CoreException {
monitor.beginTask("", 100);//$NON-NLS-1$
try {
IProgressMonitor subMonitor= new SubProgressMonitor(monitor, 50);
projectHandle.create(subMonitor);
subMonitor.done();
if (monitor.isCanceled())
throw new OperationCanceledException();
subMonitor= new SubProgressMonitor(monitor, 50);
projectHandle.open(subMonitor);
subMonitor.done();
if (monitor.isCanceled())
throw new OperationCanceledException();
} finally {
monitor.done();
}
return projectHandle;
}
private IProject createProjectHandle(IWorkspaceRoot root, String projectName) {
return root.getProject(projectName);
}
public IContainer generateContainer(IProgressMonitor progressMonitor) throws CoreException {
IWorkspaceRunnable runnable= new IWorkspaceRunnable() {
public void run(IProgressMonitor monitor) throws CoreException {
monitor.beginTask(FileBuffersMessages.getString("ContainerGenerator.task.creatingContainer"), fContainerFullPath.segmentCount()); //$NON-NLS-1$
if (fContainer != null)
return;
// Does the container exist already?
IWorkspaceRoot root= fWorkspace.getRoot();
IResource found= root.findMember(fContainerFullPath);
if (found instanceof IContainer) {
fContainer= (IContainer) found;
return;
} else if (found != null) {
// fContainerFullPath specifies a file as directory
throw new CoreException(new Status(IStatus.ERROR, FileBuffersPlugin.PLUGIN_ID, IStatus.OK, FileBuffersMessages.getFormattedString("ContainerGenerator.destinationMustBeAContainer", fContainerFullPath), null)); //$NON-NLS-1$
}
// Create the container for the given path
fContainer= root;
for (int i = 0; i < fContainerFullPath.segmentCount(); i++) {
String currentSegment = fContainerFullPath.segment(i);
IResource resource = fContainer.findMember(currentSegment);
if (resource != null) {
if (resource instanceof IContainer) {
fContainer= (IContainer) resource;
monitor.worked(1);
} else {
// fContainerFullPath specifies a file as directory
throw new CoreException(new Status(IStatus.ERROR, FileBuffersPlugin.PLUGIN_ID, IStatus.OK, FileBuffersMessages.getFormattedString("ContainerGenerator.destinationMustBeAContainer", resource.getFullPath()), null)); //$NON-NLS-1$
}
}
else {
if (i == 0) {
IProject projectHandle= createProjectHandle(root, currentSegment);
IProgressMonitor subMonitor= new SubProgressMonitor(monitor, 1);
fContainer= createProject(projectHandle, subMonitor);
subMonitor.done();
}
else {
IFolder folderHandle= createFolderHandle(fContainer, currentSegment);
IProgressMonitor subMonitor= new SubProgressMonitor(monitor, 1);
fContainer= createFolder(folderHandle, subMonitor);
subMonitor.done();
}
}
}
}
};
// Get scheduling rule
IWorkspaceRoot root= fWorkspace.getRoot();
IPath existingParentPath= fContainerFullPath;
while (!root.exists(existingParentPath))
existingParentPath= existingParentPath.removeLastSegments(1);
IResource schedulingRule= root.findMember(existingParentPath);
fWorkspace.run(runnable, schedulingRule, IWorkspace.AVOID_UPDATE, progressMonitor);
return fContainer;
}
}