Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b8e0bb3aee6e78bc18ce7130cfb414a1507b59ee (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
/*******************************************************************************
 * Copyright (c) 2006, 2013 IBM Corporation 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:
 *     IBM Corporation - initial API and implementation
 *     Bjorn Freeman-Benson - initial API and implementation
 *******************************************************************************/
package org.eclipse.core.internal.variables;

import java.net.URL;

import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.Path;
import org.eclipse.core.runtime.Platform;
import org.eclipse.core.variables.IDynamicVariable;
import org.eclipse.core.variables.IDynamicVariableResolver;
import org.eclipse.osgi.service.datalocation.Location;

/**
 * Resolver for ${eclipse_home}
 *
 * @since 3.2
 */
public class EclipseHomeVariableResolver implements IDynamicVariableResolver {

	@Override
	public String resolveValue(IDynamicVariable variable, String argument) throws CoreException {
        Location installLocation = Platform.getInstallLocation();
        if (installLocation != null) {
            URL url = installLocation.getURL();
            if (url != null) {

				// Try to convert the URL to an OS string, to be consistent with
				// how other variables, like ${workspace_loc} resolve. See
				// ResourceResolver.translateToValue(). [bugzilla 263535]
            	String file = url.getFile();
            	IPath path = Path.fromOSString(file);
            	String osstr = path.toOSString();
            	if (osstr.length() != 0) {
            		return osstr;
            	}

                if (file.length() != 0) {
                    return file;
                }
            }
        }
        return null;
    }

}

Back to the top