Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8762f8d545f579d94d1e631b7373f98d04e49ac7 (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
/*******************************************************************************
 * Copyright (c) 2008, 2010 Nokia 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:
 * Nokia - Initial API and implementation
 *******************************************************************************/

package org.eclipse.cdt.debug.internal.core.executables;

import org.eclipse.cdt.core.ISourceFinder;
import org.eclipse.cdt.core.model.IBinary;
import org.eclipse.cdt.debug.core.executables.ISourceFileRemapping;
import org.eclipse.core.runtime.IPath;

public class StandardSourceFileRemapping implements ISourceFileRemapping {

	ISourceFinder srcFinder;

	public StandardSourceFileRemapping(IBinary binary) {
		srcFinder = binary.getAdapter(ISourceFinder.class);
	}
	
	@Override
	public String remapSourceFile(IPath executable, String filePath) {
		if (srcFinder != null) {
			String mappedPath = srcFinder.toLocalPath(filePath);
			if (mappedPath != null) {
				return mappedPath;
			}
		}
		return filePath;
	}
	
	/* (non-Javadoc)
	 * @see java.lang.Object#finalize()
	 */
	@Override
	public void finalize(){
		srcFinder.dispose();
	}
}

Back to the top