blob: beed244f2d115baef1eefea7e7656a1c68c8e4ea [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2017 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.ui.synchronize.patch;
import org.eclipse.compare.internal.core.patch.DiffProject;
import org.eclipse.compare.internal.core.patch.HunkResult;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.resources.mapping.ResourceMapping;
import org.eclipse.core.resources.mapping.ResourceMappingContext;
import org.eclipse.core.resources.mapping.ResourceTraversal;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.IProgressMonitor;
public class HunkResourceMapping extends ResourceMapping {
private final HunkResult object;
public HunkResourceMapping(HunkResult hunkResult) {
this.object = hunkResult;
}
@Override
public Object getModelObject() {
return object;
}
@Override
public String getModelProviderId() {
return PatchModelProvider.ID;
}
@Override
public IProject[] getProjects() {
DiffProject dp = object.getHunk().getParent().getProject();
IProject p = ResourcesPlugin.getWorkspace().getRoot().getProject(
dp.getName());
return new IProject[] { p };
}
private IResource getResource() {
IPath path = object.getHunk().getParent().getPath(false);
return getProjects()[0].getFile(path);
}
@Override
public ResourceTraversal[] getTraversals(ResourceMappingContext context,
IProgressMonitor monitor) throws CoreException {
return new ResourceTraversal[] { new ResourceTraversal(
new IResource[] { getResource() }, IResource.DEPTH_ZERO,
IResource.NONE) };
}
}