Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 839ada0e8e87b3727e313c2eda4a6d67b19adaab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/*******************************************************************************
 * Copyright (c) 2000, 2006 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.team.internal.ccvs.ui.actions;

import java.lang.reflect.InvocationTargetException;
import java.util.*;

import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.mapping.ResourceMapping;
import org.eclipse.core.resources.mapping.ResourceTraversal;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.jface.action.IAction;
import org.eclipse.team.core.subscribers.SubscriberResourceMappingContext;
import org.eclipse.team.internal.ccvs.core.CVSProviderPlugin;
import org.eclipse.team.internal.ccvs.ui.CVSUIPlugin;
import org.eclipse.team.internal.ccvs.ui.ICVSUIConstants;
import org.eclipse.team.internal.ccvs.ui.wizards.GenerateDiffFileWizard;
import org.eclipse.ui.PlatformUI;

/**
 * Action to generate a patch file using the CVS diff command.
 * 
 * NOTE: This is a temporary action and should eventually be replaced
 * by a create patch command in the compare viewer.
 */
public class GenerateDiffFileAction extends WorkspaceTraversalAction{
	
	@Override
	public void execute(IAction action) {

		try {
			final IResource [][] resources = new IResource[][] { null };
			PlatformUI.getWorkbench().getProgressService().busyCursorWhile(monitor -> {
				try {
					resources[0] = getDeepResourcesToPatch(monitor);
				} catch (CoreException e) {
					throw new InvocationTargetException(e);
				}
			});
			GenerateDiffFileWizard.run(getTargetPart(), resources[0]);
		} catch (InvocationTargetException e) {
			CVSUIPlugin.openError(getShell(), null, null, e, CVSUIPlugin.LOG_NONTEAM_EXCEPTIONS);
		} catch (InterruptedException e) {
			// Ignore
		}
	}

	private IResource[] getDeepResourcesToPatch(IProgressMonitor monitor) throws CoreException {
		ResourceMapping[] mappings = getCVSResourceMappings();
		List<IResource> roots = new ArrayList<>();
		for (int i = 0; i < mappings.length; i++) {
			ResourceMapping mapping = mappings[i];
			ResourceTraversal[] traversals = mapping.getTraversals(
					SubscriberResourceMappingContext.createContext(CVSProviderPlugin.getPlugin().getCVSWorkspaceSubscriber()), 
					monitor);
			for (int j = 0; j < traversals.length; j++) {
				ResourceTraversal traversal = traversals[j];
				IResource[] resources = traversal.getResources();
				if (traversal.getDepth() == IResource.DEPTH_INFINITE) {
					roots.addAll(Arrays.asList(resources));
				} else if (traversal.getDepth() == IResource.DEPTH_ZERO) {
					collectShallowFiles(resources, roots);
				} else if (traversal.getDepth() == IResource.DEPTH_ONE) {
					collectShallowFiles(resources, roots);
					for (int k = 0; k < resources.length; k++) {
						IResource resource = resources[k];
						if (resource.getType() != IResource.FILE) {
							collectShallowFiles(members(resource), roots);
						}
					}
				}
			}
		}
		return roots.toArray(new IResource[roots.size()]);
	}
	
	private void collectShallowFiles(IResource[] resources, List<IResource> roots) {
		for (int k = 0; k < resources.length; k++) {
			IResource resource = resources[k];
			if (resource.getType() == IResource.FILE)
				roots.add(resource);
		}
	}
	
	private IResource[] members(IResource resource) throws CoreException {
		return CVSProviderPlugin.getPlugin().getCVSWorkspaceSubscriber().members(resource);
	}
	@Override
	protected boolean isEnabledForMultipleResources() {
			return true;
	}

	@Override
	protected boolean isEnabledForUnmanagedResources() {
		return true;
	}

	
	@Override
	public String getId() {
		return ICVSUIConstants.CMD_CREATEPATCH;
	}
}

Back to the top