use of org.tigris.subversion.subclipse.core.resources.LocalFolder in project subclipse by subclipse.
the class SharingWizard method addPages.
/**
* add pages
*/
public void addPages() {
ImageDescriptor sharingImage = SVNUIPlugin.getPlugin().getImageDescriptor(ISVNUIConstants.IMG_WIZBAN_SHARE);
if (project.getLocation() == null) {
CannotSharePage cannotSharePage = new CannotSharePage("cannotSharePage", Policy.bind("SharingWizard.importTitle"), sharingImage, // $NON-NLS-1$ //$NON-NLS-2$
project);
addPage(cannotSharePage);
} else if (doesSVNDirectoryExist()) {
// if .svn directory exists, we add the autoconnect page
autoconnectPage = new ConfigurationWizardAutoconnectPage("autoconnectPage", Policy.bind("SharingWizard.autoConnectTitle"), sharingImage, // $NON-NLS-1$ //$NON-NLS-2$
projectStatus);
autoconnectPage.setProject(project);
autoconnectPage.setDescription(// $NON-NLS-1$
Policy.bind("SharingWizard.autoConnectTitleDescription"));
addPage(autoconnectPage);
} else {
try {
ISVNLocalFolder localFolder = SVNWorkspaceRoot.getSVNFolderFor(project);
if (localFolder instanceof LocalFolder) {
IFolder[] svnFolders = ((LocalFolder) localFolder).getSVNFolders(null, false);
if (svnFolders.length > 0) {
warningPage = new SvnFoldersExistWarningPage("warningPage", Policy.bind("SharingWizard.importTitle"), sharingImage, // $NON-NLS-1$ //$NON-NLS-2$
svnFolders);
// $NON-NLS-1$
warningPage.setDescription(Policy.bind("SharingWizard.svnFolderExists"));
addPage(warningPage);
// Remember to update getNextPage.
}
}
} catch (SVNException e) {
SVNUIPlugin.openError(getShell(), null, null, e, SVNUIPlugin.PERFORM_SYNC_EXEC);
}
// otherwise we add :
// - the repository selection page
// - any contributed repository source pages
// - the create location page
// - the module selection page
// - the finish page
IRunnableWithProgress runnable = new IRunnableWithProgress() {
public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException {
locations = SVNUIPlugin.getPlugin().getRepositoryManager().getKnownRepositoryLocations(monitor);
}
};
try {
new ProgressMonitorDialog(getShell()).run(true, false, runnable);
} catch (Exception e) {
SVNUIPlugin.openError(getShell(), null, null, e, SVNUIPlugin.LOG_TEAM_EXCEPTIONS);
}
locationPage = new RepositorySelectionPage("importPage", Policy.bind("SharingWizard.importTitle"), // $NON-NLS-1$ //$NON-NLS-2$
sharingImage);
locationPage.setDescription(// $NON-NLS-1$
Policy.bind("SharingWizard.importTitleDescription"));
addPage(locationPage);
ISVNRepositorySourceProvider[] repositorySourceProviders = null;
try {
repositorySourceProviders = SVNUIPlugin.getRepositorySourceProviders();
} catch (Exception e) {
}
if (repositorySourceProviders != null && repositorySourceProviders.length > 0) {
repositorySourceProviderPage = new ConfigurationWizardRepositorySourceProviderPage("source", Policy.bind("NewLocationWizard.heading"), SVNUIPlugin.getPlugin().getImageDescriptor(ISVNUIConstants.IMG_WIZBAN_NEW_LOCATION), // $NON-NLS-1$ //$NON-NLS-2$
repositorySourceProviders);
repositorySourceProviderPage.setDescription(// $NON-NLS-1$
Policy.bind("NewLocationWizard.0"));
addPage(repositorySourceProviderPage);
for (ISVNRepositorySourceProvider repositorySourceProvider : repositorySourceProviders) {
SVNRepositoryProviderWizardPage wizardPage = repositorySourceProvider.getWizardPage();
addPage(wizardPage);
wizardPageMap.put(repositorySourceProvider, wizardPage);
}
}
createLocationPage = new ConfigurationWizardMainPage("createLocationPage", Policy.bind("SharingWizard.enterInformation"), // $NON-NLS-1$ //$NON-NLS-2$
sharingImage);
createLocationPage.setDescription(// $NON-NLS-1$
Policy.bind("SharingWizard.enterInformationDescription"));
addPage(createLocationPage);
createLocationPage.setDialogSettings(getDialogSettings());
ISVNRepositoryLocationProvider repositoryLocationProvider = new ISVNRepositoryLocationProvider() {
public ISVNRepositoryLocation getLocation() throws TeamException {
return SharingWizard.this.getLocation();
}
public IProject getProject() {
return SharingWizard.this.getProject();
}
};
directoryPage = new DirectorySelectionPage("modulePage", Policy.bind("SharingWizard.enterModuleName"), sharingImage, // $NON-NLS-1$ //$NON-NLS-2$
repositoryLocationProvider);
directoryPage.setDescription(// $NON-NLS-1$
Policy.bind("SharingWizard.enterModuleNameDescription"));
addPage(directoryPage);
finishPage = new SharingWizardFinishPage("finishPage", Policy.bind("SharingWizard.readyToFinish"), sharingImage, // $NON-NLS-1$ //$NON-NLS-2$
repositoryLocationProvider);
finishPage.setDescription(// $NON-NLS-1$
Policy.bind("SharingWizard.readyToFinishDescription"));
addPage(finishPage);
}
}
use of org.tigris.subversion.subclipse.core.resources.LocalFolder in project subclipse by subclipse.
the class SVNLocalCompareInput method prepareCompareInput.
/**
* Runs the compare operation and returns the compare result.
*
* @throws InterruptedException
*/
protected ICompareInput prepareCompareInput(IProgressMonitor monitor) throws InterruptedException {
initLabels();
if (resource instanceof LocalFolder) {
try {
if (monitor == null) {
monitor = new NullProgressMonitor();
}
// $NON-NLS-1$
monitor.beginTask(Policy.bind("SVNCompareEditorInput.comparing"), 30);
IProgressMonitor sub = new SubProgressMonitor(monitor, 30);
// $NON-NLS-1$
sub.beginTask(Policy.bind("SVNCompareEditorInput.comparing"), 100);
Object[] result = new Object[] { null };
ArrayList resourceSummaryNodeList = new ArrayList();
ArrayList summaryEditionNodeList = new ArrayList();
ISVNClientAdapter client = null;
if (resources == null) {
resources = new ISVNLocalResource[] { resource };
}
if (remoteFolders == null) {
remoteFolders = new ISVNRemoteFolder[] { (ISVNRemoteFolder) remoteResource };
}
try {
for (int i = 0; i < resources.length; i++) {
ISVNLocalResource resource = resources[i];
ISVNRemoteFolder remoteFolder = remoteFolders[i];
SVNDiffSummary[] diffSummary = null;
client = SVNProviderPlugin.getPlugin().getSVNClientManager().getSVNClient();
File file = new File(resource.getResource().getLocation().toString());
getUnadded(client, resource, file);
IResource[] unaddedResources = new IResource[unaddedList.size()];
unaddedList.toArray(unaddedResources);
SVNWorkspaceRoot workspaceRoot = new SVNWorkspaceRoot(resource.getResource().getProject());
AddResourcesCommand command = new AddResourcesCommand(workspaceRoot, unaddedResources, IResource.DEPTH_INFINITE);
command.run(monitor);
diffSummary = client.diffSummarize(file, remoteFolder.getUrl(), remoteFolder.getRevision(), true);
for (IResource unaddedResource : unaddedResources) {
try {
SVNWorkspaceRoot.getSVNResourceFor(unaddedResource).revert();
} catch (Exception e) {
}
}
SVNProviderPlugin.getPlugin().getSVNClientManager().returnSVNClient(client);
client = null;
if (diffSummary != null && diffSummary.length > 0) {
diffSummary = getDiffSummaryWithSubfolders(diffSummary);
ITypedElement left = new SVNLocalResourceSummaryNode(resource, diffSummary, resource.getResource().getLocation().toString());
SummaryEditionNode right = new SummaryEditionNode(remoteFolder);
right.setName(resource.getFile().getName());
right.setRootFolder((RemoteFolder) remoteFolder);
right.setNodeType(SummaryEditionNode.RIGHT);
right.setRoot(true);
right.setDiffSummary(diffSummary);
String localCharset = Utilities.getCharset(resource.getIResource());
try {
right.setCharset(localCharset);
} catch (CoreException e) {
SVNUIPlugin.log(IStatus.ERROR, e.getMessage(), e);
}
resourceSummaryNodeList.add(left);
summaryEditionNodeList.add(right);
}
}
if (resourceSummaryNodeList.size() == 0) {
result[0] = null;
} else {
Object[] resourceSummaryNodes = new Object[resourceSummaryNodeList.size()];
resourceSummaryNodeList.toArray(resourceSummaryNodes);
Object[] summaryEditionNodes = new Object[summaryEditionNodeList.size()];
summaryEditionNodeList.toArray(summaryEditionNodes);
MultipleSelectionNode left = new MultipleSelectionNode(resourceSummaryNodes);
MultipleSelectionNode right = new MultipleSelectionNode(summaryEditionNodes);
result[0] = new SummaryDifferencer().findDifferences(false, monitor, null, null, left, right);
fRoot = result[0];
}
} finally {
sub.done();
if (client != null) {
SVNProviderPlugin.getPlugin().getSVNClientManager().returnSVNClient(client);
}
}
if (result[0] instanceof DiffNode) {
DiffNode diffNode = (DiffNode) result[0];
if (!diffNode.hasChildren()) {
return null;
}
}
return (ICompareInput) result[0];
} catch (OperationCanceledException e) {
throw new InterruptedException(e.getMessage());
} catch (Exception e) {
SVNUIPlugin.log(IStatus.ERROR, e.getMessage(), e);
return null;
} finally {
monitor.done();
}
} else {
ITypedElement left = new SVNLocalResourceNode(resource);
ResourceEditionNode right = new ResourceEditionNode(remoteResource, pegRevision);
if (left.getType() == ITypedElement.FOLDER_TYPE) {
right.setLocalResource((SVNLocalResourceNode) left);
}
if (right.getType() == ITypedElement.FOLDER_TYPE) {
((SVNLocalResourceNode) left).setRemoteResource((ResourceEditionNode) right);
}
String localCharset = Utilities.getCharset(resource.getIResource());
try {
right.setCharset(localCharset);
} catch (CoreException e) {
SVNUIPlugin.log(IStatus.ERROR, e.getMessage(), e);
}
ICompareInput compareInput;
if (SVNRevision.BASE.equals(remoteRevision)) {
compareInput = (ICompareInput) new StatusAwareDifferencer().findDifferences(false, monitor, null, null, left, right);
} else {
compareInput = (ICompareInput) new RevisionAwareDifferencer((SVNLocalResourceNode) left, right, diffFile, pegRevision).findDifferences(false, monitor, null, null, left, right);
}
return compareInput;
}
}
Aggregations