Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c42d1100706cc51d94d10fabe0f69751641f7d64 (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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/*******************************************************************************
 * Copyright (c) 2006, 2010 QNX Software Systems 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:
 *     QNX Software Systems - Initial API and implementation
 *******************************************************************************/

package org.eclipse.cdt.managedbuilder.gnu.mingw;

import java.io.File;

import org.eclipse.cdt.managedbuilder.core.IConfiguration;
import org.eclipse.cdt.managedbuilder.envvar.IBuildEnvironmentVariable;
import org.eclipse.cdt.managedbuilder.envvar.IConfigurationEnvironmentVariableSupplier;
import org.eclipse.cdt.managedbuilder.envvar.IEnvironmentVariableProvider;
import org.eclipse.cdt.utils.WindowsRegistry;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.Path;
import org.eclipse.core.runtime.Platform;

/**
 * @author Doug Schaefer
 *
 * @noextend This class is not intended to be subclassed by clients.
 */
public class MingwEnvironmentVariableSupplier implements
		IConfigurationEnvironmentVariableSupplier {
	
	private static boolean checked = false;
	private static IPath binDir = null;

	private static class MingwBuildEnvironmentVariable implements IBuildEnvironmentVariable {
		private final String name;
		private final String value;
		private final int operation;
		
		public MingwBuildEnvironmentVariable(String name, String value, int operation) {
			this.name = name;
			this.value = value;
			this.operation = operation;
		}
		
		public String getName() {
			return name;
		}
		
		public String getValue() {
			return value;
		}
		
		public int getOperation() {
			return operation;
		}
		
		public String getDelimiter() {
			return ";"; //$NON-NLS-1$
		}
	}
	
	private IBuildEnvironmentVariable path;
	
	public static IPath getBinDir() {
		if (!checked) 
			findBinDir();
		return binDir;
	}

	private static void findBinDir() {
		// 1. Try the mingw directory in the platform install directory
		// CDT distributions like Wascana may distribute MinGW like that
		IPath subPath = new Path("mingw\\bin"); //$NON-NLS-1$
		IPath installPath = new Path(Platform.getInstallLocation().getURL().getFile());
		IPath binPathTemp = installPath.append(subPath);
		if (binPathTemp.toFile().isDirectory())
			binDir = binPathTemp;
		
		// 2. Try the directory above the install dir (another possible distribution)
		if (binDir == null) {
			binPathTemp = installPath.removeLastSegments(1).append(subPath);
			if (binPathTemp.toFile().isDirectory()) {
				binDir = binPathTemp;
			}
		}
		
		// 3. Look in PATH values. Look for mingw32-gcc.exe
		if (binDir == null) {
			String pathVariable = System.getenv("PATH"); //$NON-NLS-1$
			String[] paths = pathVariable.split(";"); //$NON-NLS-1$
			for (String pathStr : paths) {
				// If there is a trailing / or \, remove it
				if ((pathStr.endsWith("\\") || pathStr.endsWith("/")) && pathStr.length() > 1) //$NON-NLS-1$ //$NON-NLS-2$
					pathStr = pathStr.substring(0, pathStr.length() - 1);
				
				File pathFile = new File(pathStr + "\\mingw32-gcc.exe"); //$NON-NLS-1$
				if (pathFile.exists()) {
					binDir = new Path(pathStr);
					break;
				}
			}
		}
		
		// 4. Try looking if the mingw installer ran
		if (binDir == null) {
			WindowsRegistry registry = WindowsRegistry.getRegistry();
			if (registry != null) {
				String mingwPath = registry.getLocalMachineValue(
						"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MinGW", //$NON-NLS-1$
						"InstallLocation"); //$NON-NLS-1$
				if (mingwPath != null) {
					binPathTemp = new Path(mingwPath).append("bin"); //$NON-NLS-1$
					if (binPathTemp.toFile().isDirectory())
						binDir = binPathTemp;
				}
			}
		}
		
		// 5. Try the default MinGW install dir
		if (binDir == null) {
			binPathTemp = new Path("C:\\MinGW\\bin"); //$NON-NLS-1$
			if (binPathTemp.toFile().isDirectory())
				binDir = binPathTemp;
		}
		
		checked = true;
	}
	
	public static IPath getMsysBinDir() {
		// Just look in the install location parent dir
		IPath installPath = new Path(Platform.getInstallLocation().getURL().getFile());
		IPath msysBinPath = installPath.append("msys\\bin"); //$NON-NLS-1$
		return msysBinPath.toFile().isDirectory() ? msysBinPath : null;
	}
	
	public MingwEnvironmentVariableSupplier() {
		IPath binPath = getBinDir();
		if (binPath != null) {
			String pathStr = binPath.toOSString();
			IPath msysBinPath = getMsysBinDir();
			if (msysBinPath != null)
				pathStr += ';' + msysBinPath.toOSString();
			
			path = new MingwBuildEnvironmentVariable("PATH", pathStr, IBuildEnvironmentVariable.ENVVAR_PREPEND); //$NON-NLS-1$
		}
	}
	
	public IBuildEnvironmentVariable getVariable(String variableName,
			IConfiguration configuration, IEnvironmentVariableProvider provider) {
		if (path != null && variableName.equals(path.getName()))
			return path;
		else
			return null;
	}

	public IBuildEnvironmentVariable[] getVariables(
			IConfiguration configuration, IEnvironmentVariableProvider provider) {
		return path != null
			? new IBuildEnvironmentVariable[] { path }
			: new IBuildEnvironmentVariable[0];
	}

}

Back to the top