annotate src/share/tools/ProjectCreator/WinGammaPlatform.java @ 11981:530fe88b3b2c hs25-b44

Merge
author amurillo
date Fri, 02 Aug 2013 02:54:47 -0700
parents 6b748c9e1845
children b9a918201d47 31f3b1e1c5e5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
6842
b9a9ed0f8eeb 7197424: update copyright year to match last edit in jdk8 hotspot repository
mikael
parents: 6801
diff changeset
2 * Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
25 import java.io.File;
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
26 import java.io.IOException;
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
27 import java.io.PrintWriter;
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
28 import java.util.Enumeration;
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
29 import java.util.Hashtable;
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
30 import java.util.Iterator;
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
31 import java.util.List;
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
32 import java.util.Stack;
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
33 import java.util.TreeSet;
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
34 import java.util.Vector;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36 abstract class HsArgHandler extends ArgHandler {
a61af66fc99e Initial load
duke
parents:
diff changeset
37 static final int STRING = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 static final int VECTOR = 2;
a61af66fc99e Initial load
duke
parents:
diff changeset
39 static final int HASH = 3;
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 boolean nextNotKey(ArgIterator it) {
a61af66fc99e Initial load
duke
parents:
diff changeset
42 if (it.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
43 String s = it.get();
a61af66fc99e Initial load
duke
parents:
diff changeset
44 return (s.length() == 0) || (s.charAt(0) != '-');
a61af66fc99e Initial load
duke
parents:
diff changeset
45 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
46 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
47 }
a61af66fc99e Initial load
duke
parents:
diff changeset
48 }
a61af66fc99e Initial load
duke
parents:
diff changeset
49
a61af66fc99e Initial load
duke
parents:
diff changeset
50 void empty(String key, String message) {
a61af66fc99e Initial load
duke
parents:
diff changeset
51 if (key != null) {
a61af66fc99e Initial load
duke
parents:
diff changeset
52 System.err.println("** Error: empty " + key);
a61af66fc99e Initial load
duke
parents:
diff changeset
53 }
a61af66fc99e Initial load
duke
parents:
diff changeset
54 if (message != null) {
a61af66fc99e Initial load
duke
parents:
diff changeset
55 System.err.println(message);
a61af66fc99e Initial load
duke
parents:
diff changeset
56 }
a61af66fc99e Initial load
duke
parents:
diff changeset
57 WinGammaPlatform.usage();
a61af66fc99e Initial load
duke
parents:
diff changeset
58 }
a61af66fc99e Initial load
duke
parents:
diff changeset
59
a61af66fc99e Initial load
duke
parents:
diff changeset
60 static String getCfg(String val) {
a61af66fc99e Initial load
duke
parents:
diff changeset
61 int under = val.indexOf('_');
a61af66fc99e Initial load
duke
parents:
diff changeset
62 int len = val.length();
a61af66fc99e Initial load
duke
parents:
diff changeset
63 if (under != -1 && under < len - 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
64 return val.substring(under+1, len);
a61af66fc99e Initial load
duke
parents:
diff changeset
65 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
66 return null;
a61af66fc99e Initial load
duke
parents:
diff changeset
67 }
a61af66fc99e Initial load
duke
parents:
diff changeset
68 }
a61af66fc99e Initial load
duke
parents:
diff changeset
69 }
a61af66fc99e Initial load
duke
parents:
diff changeset
70
a61af66fc99e Initial load
duke
parents:
diff changeset
71 class ArgRuleSpecific extends ArgRule {
a61af66fc99e Initial load
duke
parents:
diff changeset
72 ArgRuleSpecific(String arg, ArgHandler handler) {
a61af66fc99e Initial load
duke
parents:
diff changeset
73 super(arg, handler);
a61af66fc99e Initial load
duke
parents:
diff changeset
74 }
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 boolean match(String rulePattern, String arg) {
a61af66fc99e Initial load
duke
parents:
diff changeset
77 return rulePattern.startsWith(arg);
a61af66fc99e Initial load
duke
parents:
diff changeset
78 }
a61af66fc99e Initial load
duke
parents:
diff changeset
79 }
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 class SpecificHsArgHandler extends HsArgHandler {
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84 String message, argKey, valKey;
a61af66fc99e Initial load
duke
parents:
diff changeset
85 int type;
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87 public void handle(ArgIterator it) {
a61af66fc99e Initial load
duke
parents:
diff changeset
88 String cfg = getCfg(it.get());
a61af66fc99e Initial load
duke
parents:
diff changeset
89 if (nextNotKey(it)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
90 String val = it.get();
a61af66fc99e Initial load
duke
parents:
diff changeset
91 switch (type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
92 case VECTOR:
a61af66fc99e Initial load
duke
parents:
diff changeset
93 BuildConfig.addFieldVector(cfg, valKey, val);
a61af66fc99e Initial load
duke
parents:
diff changeset
94 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
95 case HASH:
a61af66fc99e Initial load
duke
parents:
diff changeset
96 BuildConfig.putFieldHash(cfg, valKey, val, "1");
a61af66fc99e Initial load
duke
parents:
diff changeset
97 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
98 case STRING:
a61af66fc99e Initial load
duke
parents:
diff changeset
99 BuildConfig.putField(cfg, valKey, val);
a61af66fc99e Initial load
duke
parents:
diff changeset
100 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
101 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
102 empty(valKey, "Unknown type: "+type);
a61af66fc99e Initial load
duke
parents:
diff changeset
103 }
a61af66fc99e Initial load
duke
parents:
diff changeset
104 it.next();
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
107 empty(argKey, message);
a61af66fc99e Initial load
duke
parents:
diff changeset
108 }
a61af66fc99e Initial load
duke
parents:
diff changeset
109 }
a61af66fc99e Initial load
duke
parents:
diff changeset
110
a61af66fc99e Initial load
duke
parents:
diff changeset
111 SpecificHsArgHandler(String argKey, String valKey, String message, int type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
112 this.argKey = argKey;
a61af66fc99e Initial load
duke
parents:
diff changeset
113 this.valKey = valKey;
a61af66fc99e Initial load
duke
parents:
diff changeset
114 this.message = message;
a61af66fc99e Initial load
duke
parents:
diff changeset
115 this.type = type;
a61af66fc99e Initial load
duke
parents:
diff changeset
116 }
a61af66fc99e Initial load
duke
parents:
diff changeset
117 }
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 class HsArgRule extends ArgRuleSpecific {
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 HsArgRule(String argKey, String valKey, String message, int type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
123 super(argKey, new SpecificHsArgHandler(argKey, valKey, message, type));
a61af66fc99e Initial load
duke
parents:
diff changeset
124 }
a61af66fc99e Initial load
duke
parents:
diff changeset
125
a61af66fc99e Initial load
duke
parents:
diff changeset
126 }
a61af66fc99e Initial load
duke
parents:
diff changeset
127
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
128 public abstract class WinGammaPlatform {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
129
a61af66fc99e Initial load
duke
parents:
diff changeset
130 public boolean fileNameStringEquality(String s1, String s2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
131 return s1.equalsIgnoreCase(s2);
a61af66fc99e Initial load
duke
parents:
diff changeset
132 }
a61af66fc99e Initial load
duke
parents:
diff changeset
133
a61af66fc99e Initial load
duke
parents:
diff changeset
134 static void usage() throws IllegalArgumentException {
a61af66fc99e Initial load
duke
parents:
diff changeset
135 System.err.println("WinGammaPlatform platform-specific options:");
a61af66fc99e Initial load
duke
parents:
diff changeset
136 System.err.println(" -sourceBase <path to directory (workspace) " +
a61af66fc99e Initial load
duke
parents:
diff changeset
137 "containing source files; no trailing slash>");
a61af66fc99e Initial load
duke
parents:
diff changeset
138 System.err.println(" -projectFileName <full pathname to which project file " +
a61af66fc99e Initial load
duke
parents:
diff changeset
139 "will be written; all parent directories must " +
a61af66fc99e Initial load
duke
parents:
diff changeset
140 "already exist>");
a61af66fc99e Initial load
duke
parents:
diff changeset
141 System.err.println(" If any of the above are specified, "+
a61af66fc99e Initial load
duke
parents:
diff changeset
142 "they must all be.");
a61af66fc99e Initial load
duke
parents:
diff changeset
143 System.err.println(" Additional, optional arguments, which can be " +
a61af66fc99e Initial load
duke
parents:
diff changeset
144 "specified multiple times:");
a61af66fc99e Initial load
duke
parents:
diff changeset
145 System.err.println(" -absoluteInclude <string containing absolute " +
a61af66fc99e Initial load
duke
parents:
diff changeset
146 "path to include directory>");
a61af66fc99e Initial load
duke
parents:
diff changeset
147 System.err.println(" -relativeInclude <string containing include " +
a61af66fc99e Initial load
duke
parents:
diff changeset
148 "directory relative to -sourceBase>");
a61af66fc99e Initial load
duke
parents:
diff changeset
149 System.err.println(" -define <preprocessor flag to be #defined " +
a61af66fc99e Initial load
duke
parents:
diff changeset
150 "(note: doesn't yet support " +
a61af66fc99e Initial load
duke
parents:
diff changeset
151 "#define (flag) (value))>");
a61af66fc99e Initial load
duke
parents:
diff changeset
152 System.err.println(" -startAt <subdir of sourceBase>");
a61af66fc99e Initial load
duke
parents:
diff changeset
153 System.err.println(" -additionalFile <file not in database but " +
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
154 "which should show up in project file>");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
155 System.err.println(" -additionalGeneratedFile <absolute path to " +
a61af66fc99e Initial load
duke
parents:
diff changeset
156 "directory containing file; no trailing slash> " +
a61af66fc99e Initial load
duke
parents:
diff changeset
157 "<name of file generated later in the build process>");
a61af66fc99e Initial load
duke
parents:
diff changeset
158 throw new IllegalArgumentException();
a61af66fc99e Initial load
duke
parents:
diff changeset
159 }
a61af66fc99e Initial load
duke
parents:
diff changeset
160
a61af66fc99e Initial load
duke
parents:
diff changeset
161
a61af66fc99e Initial load
duke
parents:
diff changeset
162 public void addPerFileLine(Hashtable table,
a61af66fc99e Initial load
duke
parents:
diff changeset
163 String fileName,
a61af66fc99e Initial load
duke
parents:
diff changeset
164 String line) {
a61af66fc99e Initial load
duke
parents:
diff changeset
165 Vector v = (Vector) table.get(fileName);
a61af66fc99e Initial load
duke
parents:
diff changeset
166 if (v != null) {
a61af66fc99e Initial load
duke
parents:
diff changeset
167 v.add(line);
a61af66fc99e Initial load
duke
parents:
diff changeset
168 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
169 v = new Vector();
a61af66fc99e Initial load
duke
parents:
diff changeset
170 v.add(line);
a61af66fc99e Initial load
duke
parents:
diff changeset
171 table.put(fileName, v);
a61af66fc99e Initial load
duke
parents:
diff changeset
172 }
a61af66fc99e Initial load
duke
parents:
diff changeset
173 }
a61af66fc99e Initial load
duke
parents:
diff changeset
174
a61af66fc99e Initial load
duke
parents:
diff changeset
175 protected static class PerFileCondData {
a61af66fc99e Initial load
duke
parents:
diff changeset
176 public String releaseString;
a61af66fc99e Initial load
duke
parents:
diff changeset
177 public String debugString;
a61af66fc99e Initial load
duke
parents:
diff changeset
178 }
a61af66fc99e Initial load
duke
parents:
diff changeset
179
a61af66fc99e Initial load
duke
parents:
diff changeset
180 protected void addConditionalPerFileLine(Hashtable table,
a61af66fc99e Initial load
duke
parents:
diff changeset
181 String fileName,
a61af66fc99e Initial load
duke
parents:
diff changeset
182 String releaseLine,
a61af66fc99e Initial load
duke
parents:
diff changeset
183 String debugLine) {
a61af66fc99e Initial load
duke
parents:
diff changeset
184 PerFileCondData data = new PerFileCondData();
a61af66fc99e Initial load
duke
parents:
diff changeset
185 data.releaseString = releaseLine;
a61af66fc99e Initial load
duke
parents:
diff changeset
186 data.debugString = debugLine;
a61af66fc99e Initial load
duke
parents:
diff changeset
187 Vector v = (Vector) table.get(fileName);
a61af66fc99e Initial load
duke
parents:
diff changeset
188 if (v != null) {
a61af66fc99e Initial load
duke
parents:
diff changeset
189 v.add(data);
a61af66fc99e Initial load
duke
parents:
diff changeset
190 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
191 v = new Vector();
a61af66fc99e Initial load
duke
parents:
diff changeset
192 v.add(data);
a61af66fc99e Initial load
duke
parents:
diff changeset
193 table.put(fileName, v);
a61af66fc99e Initial load
duke
parents:
diff changeset
194 }
a61af66fc99e Initial load
duke
parents:
diff changeset
195 }
a61af66fc99e Initial load
duke
parents:
diff changeset
196
a61af66fc99e Initial load
duke
parents:
diff changeset
197 protected static class PrelinkCommandData {
a61af66fc99e Initial load
duke
parents:
diff changeset
198 String description;
a61af66fc99e Initial load
duke
parents:
diff changeset
199 String commands;
a61af66fc99e Initial load
duke
parents:
diff changeset
200 }
a61af66fc99e Initial load
duke
parents:
diff changeset
201
a61af66fc99e Initial load
duke
parents:
diff changeset
202 protected void addPrelinkCommand(Hashtable table,
a61af66fc99e Initial load
duke
parents:
diff changeset
203 String build,
a61af66fc99e Initial load
duke
parents:
diff changeset
204 String description,
a61af66fc99e Initial load
duke
parents:
diff changeset
205 String commands) {
a61af66fc99e Initial load
duke
parents:
diff changeset
206 PrelinkCommandData data = new PrelinkCommandData();
a61af66fc99e Initial load
duke
parents:
diff changeset
207 data.description = description;
a61af66fc99e Initial load
duke
parents:
diff changeset
208 data.commands = commands;
a61af66fc99e Initial load
duke
parents:
diff changeset
209 table.put(build, data);
a61af66fc99e Initial load
duke
parents:
diff changeset
210 }
a61af66fc99e Initial load
duke
parents:
diff changeset
211
a61af66fc99e Initial load
duke
parents:
diff changeset
212 public boolean findString(Vector v, String s) {
a61af66fc99e Initial load
duke
parents:
diff changeset
213 for (Iterator iter = v.iterator(); iter.hasNext(); ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
214 if (((String) iter.next()).equals(s)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
215 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
216 }
a61af66fc99e Initial load
duke
parents:
diff changeset
217 }
a61af66fc99e Initial load
duke
parents:
diff changeset
218
a61af66fc99e Initial load
duke
parents:
diff changeset
219 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
220 }
a61af66fc99e Initial load
duke
parents:
diff changeset
221
a61af66fc99e Initial load
duke
parents:
diff changeset
222 String getProjectName(String fullPath, String extension)
a61af66fc99e Initial load
duke
parents:
diff changeset
223 throws IllegalArgumentException, IOException {
a61af66fc99e Initial load
duke
parents:
diff changeset
224 File file = new File(fullPath).getCanonicalFile();
a61af66fc99e Initial load
duke
parents:
diff changeset
225 fullPath = file.getCanonicalPath();
a61af66fc99e Initial load
duke
parents:
diff changeset
226 String parent = file.getParent();
a61af66fc99e Initial load
duke
parents:
diff changeset
227
a61af66fc99e Initial load
duke
parents:
diff changeset
228 if (!fullPath.endsWith(extension)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
229 throw new IllegalArgumentException("project file name \"" +
a61af66fc99e Initial load
duke
parents:
diff changeset
230 fullPath +
a61af66fc99e Initial load
duke
parents:
diff changeset
231 "\" does not end in "+extension);
a61af66fc99e Initial load
duke
parents:
diff changeset
232 }
a61af66fc99e Initial load
duke
parents:
diff changeset
233
a61af66fc99e Initial load
duke
parents:
diff changeset
234 if ((parent != null) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
235 (!fullPath.startsWith(parent))) {
a61af66fc99e Initial load
duke
parents:
diff changeset
236 throw new RuntimeException(
a61af66fc99e Initial load
duke
parents:
diff changeset
237 "Internal error: parent of file name \"" + parent +
a61af66fc99e Initial load
duke
parents:
diff changeset
238 "\" does not match file name \"" + fullPath + "\""
a61af66fc99e Initial load
duke
parents:
diff changeset
239 );
a61af66fc99e Initial load
duke
parents:
diff changeset
240 }
a61af66fc99e Initial load
duke
parents:
diff changeset
241
a61af66fc99e Initial load
duke
parents:
diff changeset
242 int len = parent.length();
a61af66fc99e Initial load
duke
parents:
diff changeset
243 if (!parent.endsWith(Util.sep)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
244 len += Util.sep.length();
a61af66fc99e Initial load
duke
parents:
diff changeset
245 }
a61af66fc99e Initial load
duke
parents:
diff changeset
246
a61af66fc99e Initial load
duke
parents:
diff changeset
247 int end = fullPath.length() - extension.length();
a61af66fc99e Initial load
duke
parents:
diff changeset
248
a61af66fc99e Initial load
duke
parents:
diff changeset
249 if (len == end) {
a61af66fc99e Initial load
duke
parents:
diff changeset
250 throw new RuntimeException(
a61af66fc99e Initial load
duke
parents:
diff changeset
251 "Internal error: file name was empty"
a61af66fc99e Initial load
duke
parents:
diff changeset
252 );
a61af66fc99e Initial load
duke
parents:
diff changeset
253 }
a61af66fc99e Initial load
duke
parents:
diff changeset
254
a61af66fc99e Initial load
duke
parents:
diff changeset
255 return fullPath.substring(len, end);
a61af66fc99e Initial load
duke
parents:
diff changeset
256 }
a61af66fc99e Initial load
duke
parents:
diff changeset
257
a61af66fc99e Initial load
duke
parents:
diff changeset
258 protected abstract String getProjectExt();
a61af66fc99e Initial load
duke
parents:
diff changeset
259
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
260 public void createVcproj(String[] args)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
261 throws IllegalArgumentException, IOException {
a61af66fc99e Initial load
duke
parents:
diff changeset
262
a61af66fc99e Initial load
duke
parents:
diff changeset
263 parseArguments(args);
a61af66fc99e Initial load
duke
parents:
diff changeset
264
a61af66fc99e Initial load
duke
parents:
diff changeset
265 String projectFileName = BuildConfig.getFieldString(null, "ProjectFileName");
a61af66fc99e Initial load
duke
parents:
diff changeset
266 String ext = getProjectExt();
a61af66fc99e Initial load
duke
parents:
diff changeset
267
a61af66fc99e Initial load
duke
parents:
diff changeset
268 String projectName = getProjectName(projectFileName, ext);
a61af66fc99e Initial load
duke
parents:
diff changeset
269
2233
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
270 writeProjectFile(projectFileName, projectName, createAllConfigs(BuildConfig.getFieldString(null, "PlatformName")));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
271 }
a61af66fc99e Initial load
duke
parents:
diff changeset
272
a61af66fc99e Initial load
duke
parents:
diff changeset
273 protected void writePrologue(String[] args) {
a61af66fc99e Initial load
duke
parents:
diff changeset
274 System.err.println("WinGammaPlatform platform-specific arguments:");
a61af66fc99e Initial load
duke
parents:
diff changeset
275 for (int i = 0; i < args.length; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
276 System.err.print(args[i] + " ");
a61af66fc99e Initial load
duke
parents:
diff changeset
277 }
a61af66fc99e Initial load
duke
parents:
diff changeset
278 System.err.println();
a61af66fc99e Initial load
duke
parents:
diff changeset
279 }
a61af66fc99e Initial load
duke
parents:
diff changeset
280
a61af66fc99e Initial load
duke
parents:
diff changeset
281
a61af66fc99e Initial load
duke
parents:
diff changeset
282 void parseArguments(String[] args) {
a61af66fc99e Initial load
duke
parents:
diff changeset
283 new ArgsParser(args,
a61af66fc99e Initial load
duke
parents:
diff changeset
284 new ArgRule[]
a61af66fc99e Initial load
duke
parents:
diff changeset
285 {
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
286 new ArgRule("-sourceBase",
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
287 new HsArgHandler() {
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
288 public void handle(ArgIterator it) {
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
289 String cfg = getCfg(it.get());
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
290 if (nextNotKey(it)) {
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
291 String sb = (String) it.get();
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
292 if (sb.endsWith(Util.sep)) {
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
293 sb = sb.substring(0, sb.length() - 1);
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
294 }
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
295 BuildConfig.putField(cfg, "SourceBase", sb);
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
296 it.next();
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
297 } else {
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
298 empty("-sourceBase", null);
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
299 }
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
300 }
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
301 }
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
302 ),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
303
a61af66fc99e Initial load
duke
parents:
diff changeset
304 new HsArgRule("-buildBase",
a61af66fc99e Initial load
duke
parents:
diff changeset
305 "BuildBase",
a61af66fc99e Initial load
duke
parents:
diff changeset
306 " (Did you set the HotSpotBuildSpace environment variable?)",
a61af66fc99e Initial load
duke
parents:
diff changeset
307 HsArgHandler.STRING
a61af66fc99e Initial load
duke
parents:
diff changeset
308 ),
a61af66fc99e Initial load
duke
parents:
diff changeset
309
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
310 new HsArgRule("-buildSpace",
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
311 "BuildSpace",
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
312 null,
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
313 HsArgHandler.STRING
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
314 ),
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
315
2233
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
316 new HsArgRule("-platformName",
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
317 "PlatformName",
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
318 null,
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
319 HsArgHandler.STRING
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
320 ),
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
321
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
322 new HsArgRule("-projectFileName",
0
a61af66fc99e Initial load
duke
parents:
diff changeset
323 "ProjectFileName",
a61af66fc99e Initial load
duke
parents:
diff changeset
324 null,
a61af66fc99e Initial load
duke
parents:
diff changeset
325 HsArgHandler.STRING
a61af66fc99e Initial load
duke
parents:
diff changeset
326 ),
a61af66fc99e Initial load
duke
parents:
diff changeset
327
a61af66fc99e Initial load
duke
parents:
diff changeset
328 new HsArgRule("-jdkTargetRoot",
a61af66fc99e Initial load
duke
parents:
diff changeset
329 "JdkTargetRoot",
a61af66fc99e Initial load
duke
parents:
diff changeset
330 " (Did you set the HotSpotJDKDist environment variable?)",
a61af66fc99e Initial load
duke
parents:
diff changeset
331 HsArgHandler.STRING
a61af66fc99e Initial load
duke
parents:
diff changeset
332 ),
a61af66fc99e Initial load
duke
parents:
diff changeset
333
a61af66fc99e Initial load
duke
parents:
diff changeset
334 new HsArgRule("-compiler",
a61af66fc99e Initial load
duke
parents:
diff changeset
335 "CompilerVersion",
a61af66fc99e Initial load
duke
parents:
diff changeset
336 " (Did you set the VcVersion correctly?)",
a61af66fc99e Initial load
duke
parents:
diff changeset
337 HsArgHandler.STRING
a61af66fc99e Initial load
duke
parents:
diff changeset
338 ),
a61af66fc99e Initial load
duke
parents:
diff changeset
339
a61af66fc99e Initial load
duke
parents:
diff changeset
340 new HsArgRule("-absoluteInclude",
a61af66fc99e Initial load
duke
parents:
diff changeset
341 "AbsoluteInclude",
a61af66fc99e Initial load
duke
parents:
diff changeset
342 null,
a61af66fc99e Initial load
duke
parents:
diff changeset
343 HsArgHandler.VECTOR
a61af66fc99e Initial load
duke
parents:
diff changeset
344 ),
a61af66fc99e Initial load
duke
parents:
diff changeset
345
a61af66fc99e Initial load
duke
parents:
diff changeset
346 new HsArgRule("-relativeInclude",
a61af66fc99e Initial load
duke
parents:
diff changeset
347 "RelativeInclude",
a61af66fc99e Initial load
duke
parents:
diff changeset
348 null,
a61af66fc99e Initial load
duke
parents:
diff changeset
349 HsArgHandler.VECTOR
a61af66fc99e Initial load
duke
parents:
diff changeset
350 ),
a61af66fc99e Initial load
duke
parents:
diff changeset
351
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
352 new HsArgRule("-absoluteSrcInclude",
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
353 "AbsoluteSrcInclude",
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
354 null,
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
355 HsArgHandler.VECTOR
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
356 ),
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
357
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
358 new HsArgRule("-relativeSrcInclude",
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
359 "RelativeSrcInclude",
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
360 null,
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
361 HsArgHandler.VECTOR
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
362 ),
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
363
0
a61af66fc99e Initial load
duke
parents:
diff changeset
364 new HsArgRule("-define",
a61af66fc99e Initial load
duke
parents:
diff changeset
365 "Define",
a61af66fc99e Initial load
duke
parents:
diff changeset
366 null,
a61af66fc99e Initial load
duke
parents:
diff changeset
367 HsArgHandler.VECTOR
a61af66fc99e Initial load
duke
parents:
diff changeset
368 ),
a61af66fc99e Initial load
duke
parents:
diff changeset
369
a61af66fc99e Initial load
duke
parents:
diff changeset
370 new HsArgRule("-useToGeneratePch",
a61af66fc99e Initial load
duke
parents:
diff changeset
371 "UseToGeneratePch",
a61af66fc99e Initial load
duke
parents:
diff changeset
372 null,
a61af66fc99e Initial load
duke
parents:
diff changeset
373 HsArgHandler.STRING
a61af66fc99e Initial load
duke
parents:
diff changeset
374 ),
a61af66fc99e Initial load
duke
parents:
diff changeset
375
a61af66fc99e Initial load
duke
parents:
diff changeset
376 new ArgRuleSpecific("-perFileLine",
a61af66fc99e Initial load
duke
parents:
diff changeset
377 new HsArgHandler() {
a61af66fc99e Initial load
duke
parents:
diff changeset
378 public void handle(ArgIterator it) {
a61af66fc99e Initial load
duke
parents:
diff changeset
379 String cfg = getCfg(it.get());
a61af66fc99e Initial load
duke
parents:
diff changeset
380 if (nextNotKey(it)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
381 String fileName = it.get();
a61af66fc99e Initial load
duke
parents:
diff changeset
382 if (nextNotKey(it)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
383 String line = it.get();
a61af66fc99e Initial load
duke
parents:
diff changeset
384 BuildConfig.putFieldHash(cfg, "PerFileLine", fileName, line);
a61af66fc99e Initial load
duke
parents:
diff changeset
385 it.next();
a61af66fc99e Initial load
duke
parents:
diff changeset
386 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
387 }
a61af66fc99e Initial load
duke
parents:
diff changeset
388 }
a61af66fc99e Initial load
duke
parents:
diff changeset
389 empty(null, "** Error: wrong number of args to -perFileLine");
a61af66fc99e Initial load
duke
parents:
diff changeset
390 }
a61af66fc99e Initial load
duke
parents:
diff changeset
391 }
a61af66fc99e Initial load
duke
parents:
diff changeset
392 ),
a61af66fc99e Initial load
duke
parents:
diff changeset
393
a61af66fc99e Initial load
duke
parents:
diff changeset
394 new ArgRuleSpecific("-conditionalPerFileLine",
a61af66fc99e Initial load
duke
parents:
diff changeset
395 new HsArgHandler() {
a61af66fc99e Initial load
duke
parents:
diff changeset
396 public void handle(ArgIterator it) {
a61af66fc99e Initial load
duke
parents:
diff changeset
397 String cfg = getCfg(it.get());
a61af66fc99e Initial load
duke
parents:
diff changeset
398 if (nextNotKey(it)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
399 String fileName = it.get();
a61af66fc99e Initial load
duke
parents:
diff changeset
400 if (nextNotKey(it)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
401 String productLine = it.get();
a61af66fc99e Initial load
duke
parents:
diff changeset
402 if (nextNotKey(it)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
403 String debugLine = it.get();
a61af66fc99e Initial load
duke
parents:
diff changeset
404 BuildConfig.putFieldHash(cfg+"_debug", "CondPerFileLine",
a61af66fc99e Initial load
duke
parents:
diff changeset
405 fileName, debugLine);
a61af66fc99e Initial load
duke
parents:
diff changeset
406 BuildConfig.putFieldHash(cfg+"_product", "CondPerFileLine",
a61af66fc99e Initial load
duke
parents:
diff changeset
407 fileName, productLine);
a61af66fc99e Initial load
duke
parents:
diff changeset
408 it.next();
a61af66fc99e Initial load
duke
parents:
diff changeset
409 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
410 }
a61af66fc99e Initial load
duke
parents:
diff changeset
411 }
a61af66fc99e Initial load
duke
parents:
diff changeset
412 }
a61af66fc99e Initial load
duke
parents:
diff changeset
413
a61af66fc99e Initial load
duke
parents:
diff changeset
414 empty(null, "** Error: wrong number of args to -conditionalPerFileLine");
a61af66fc99e Initial load
duke
parents:
diff changeset
415 }
a61af66fc99e Initial load
duke
parents:
diff changeset
416 }
a61af66fc99e Initial load
duke
parents:
diff changeset
417 ),
a61af66fc99e Initial load
duke
parents:
diff changeset
418
a61af66fc99e Initial load
duke
parents:
diff changeset
419 new HsArgRule("-disablePch",
a61af66fc99e Initial load
duke
parents:
diff changeset
420 "DisablePch",
a61af66fc99e Initial load
duke
parents:
diff changeset
421 null,
a61af66fc99e Initial load
duke
parents:
diff changeset
422 HsArgHandler.HASH
a61af66fc99e Initial load
duke
parents:
diff changeset
423 ),
a61af66fc99e Initial load
duke
parents:
diff changeset
424
a61af66fc99e Initial load
duke
parents:
diff changeset
425 new ArgRule("-startAt",
a61af66fc99e Initial load
duke
parents:
diff changeset
426 new HsArgHandler() {
a61af66fc99e Initial load
duke
parents:
diff changeset
427 public void handle(ArgIterator it) {
a61af66fc99e Initial load
duke
parents:
diff changeset
428 if (BuildConfig.getField(null, "StartAt") != null) {
a61af66fc99e Initial load
duke
parents:
diff changeset
429 empty(null, "** Error: multiple -startAt");
a61af66fc99e Initial load
duke
parents:
diff changeset
430 }
a61af66fc99e Initial load
duke
parents:
diff changeset
431 if (nextNotKey(it)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
432 BuildConfig.putField(null, "StartAt", it.get());
a61af66fc99e Initial load
duke
parents:
diff changeset
433 it.next();
a61af66fc99e Initial load
duke
parents:
diff changeset
434 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
435 empty("-startAt", null);
a61af66fc99e Initial load
duke
parents:
diff changeset
436 }
a61af66fc99e Initial load
duke
parents:
diff changeset
437 }
a61af66fc99e Initial load
duke
parents:
diff changeset
438 }
a61af66fc99e Initial load
duke
parents:
diff changeset
439 ),
a61af66fc99e Initial load
duke
parents:
diff changeset
440
a61af66fc99e Initial load
duke
parents:
diff changeset
441 new HsArgRule("-ignoreFile",
a61af66fc99e Initial load
duke
parents:
diff changeset
442 "IgnoreFile",
a61af66fc99e Initial load
duke
parents:
diff changeset
443 null,
a61af66fc99e Initial load
duke
parents:
diff changeset
444 HsArgHandler.HASH
a61af66fc99e Initial load
duke
parents:
diff changeset
445 ),
a61af66fc99e Initial load
duke
parents:
diff changeset
446
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
447 new HsArgRule("-ignorePath",
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
448 "IgnorePath",
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
449 null,
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
450 HsArgHandler.VECTOR
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
451 ),
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
452
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
453 new HsArgRule("-hidePath",
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
454 "HidePath",
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
455 null,
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
456 HsArgHandler.VECTOR
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
457 ),
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
458
0
a61af66fc99e Initial load
duke
parents:
diff changeset
459 new HsArgRule("-additionalFile",
a61af66fc99e Initial load
duke
parents:
diff changeset
460 "AdditionalFile",
a61af66fc99e Initial load
duke
parents:
diff changeset
461 null,
a61af66fc99e Initial load
duke
parents:
diff changeset
462 HsArgHandler.VECTOR
a61af66fc99e Initial load
duke
parents:
diff changeset
463 ),
a61af66fc99e Initial load
duke
parents:
diff changeset
464
a61af66fc99e Initial load
duke
parents:
diff changeset
465 new ArgRuleSpecific("-additionalGeneratedFile",
a61af66fc99e Initial load
duke
parents:
diff changeset
466 new HsArgHandler() {
a61af66fc99e Initial load
duke
parents:
diff changeset
467 public void handle(ArgIterator it) {
a61af66fc99e Initial load
duke
parents:
diff changeset
468 String cfg = getCfg(it.get());
a61af66fc99e Initial load
duke
parents:
diff changeset
469 if (nextNotKey(it)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
470 String dir = it.get();
a61af66fc99e Initial load
duke
parents:
diff changeset
471 if (nextNotKey(it)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
472 String fileName = it.get();
a61af66fc99e Initial load
duke
parents:
diff changeset
473 BuildConfig.putFieldHash(cfg, "AdditionalGeneratedFile",
a61af66fc99e Initial load
duke
parents:
diff changeset
474 Util.normalize(dir + Util.sep + fileName),
a61af66fc99e Initial load
duke
parents:
diff changeset
475 fileName);
a61af66fc99e Initial load
duke
parents:
diff changeset
476 it.next();
a61af66fc99e Initial load
duke
parents:
diff changeset
477 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
478 }
a61af66fc99e Initial load
duke
parents:
diff changeset
479 }
a61af66fc99e Initial load
duke
parents:
diff changeset
480 empty(null, "** Error: wrong number of args to -additionalGeneratedFile");
a61af66fc99e Initial load
duke
parents:
diff changeset
481 }
a61af66fc99e Initial load
duke
parents:
diff changeset
482 }
a61af66fc99e Initial load
duke
parents:
diff changeset
483 ),
a61af66fc99e Initial load
duke
parents:
diff changeset
484
a61af66fc99e Initial load
duke
parents:
diff changeset
485 new ArgRule("-prelink",
a61af66fc99e Initial load
duke
parents:
diff changeset
486 new HsArgHandler() {
a61af66fc99e Initial load
duke
parents:
diff changeset
487 public void handle(ArgIterator it) {
a61af66fc99e Initial load
duke
parents:
diff changeset
488 if (nextNotKey(it)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
489 if (nextNotKey(it)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
490 String description = it.get();
a61af66fc99e Initial load
duke
parents:
diff changeset
491 if (nextNotKey(it)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
492 String command = it.get();
a61af66fc99e Initial load
duke
parents:
diff changeset
493 BuildConfig.putField(null, "PrelinkDescription", description);
a61af66fc99e Initial load
duke
parents:
diff changeset
494 BuildConfig.putField(null, "PrelinkCommand", command);
a61af66fc99e Initial load
duke
parents:
diff changeset
495 it.next();
a61af66fc99e Initial load
duke
parents:
diff changeset
496 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
497 }
a61af66fc99e Initial load
duke
parents:
diff changeset
498 }
a61af66fc99e Initial load
duke
parents:
diff changeset
499 }
a61af66fc99e Initial load
duke
parents:
diff changeset
500
a61af66fc99e Initial load
duke
parents:
diff changeset
501 empty(null, "** Error: wrong number of args to -prelink");
a61af66fc99e Initial load
duke
parents:
diff changeset
502 }
a61af66fc99e Initial load
duke
parents:
diff changeset
503 }
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
504 ),
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
505
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
506 new ArgRule("-postbuild",
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
507 new HsArgHandler() {
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
508 public void handle(ArgIterator it) {
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
509 if (nextNotKey(it)) {
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
510 if (nextNotKey(it)) {
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
511 String description = it.get();
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
512 if (nextNotKey(it)) {
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
513 String command = it.get();
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
514 BuildConfig.putField(null, "PostbuildDescription", description);
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
515 BuildConfig.putField(null, "PostbuildCommand", command);
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
516 it.next();
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
517 return;
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
518 }
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
519 }
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
520 }
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
521
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
522 empty(null, "** Error: wrong number of args to -postbuild");
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
523 }
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
524 }
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
525 ),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
526 },
a61af66fc99e Initial load
duke
parents:
diff changeset
527 new ArgHandler() {
a61af66fc99e Initial load
duke
parents:
diff changeset
528 public void handle(ArgIterator it) {
a61af66fc99e Initial load
duke
parents:
diff changeset
529
a61af66fc99e Initial load
duke
parents:
diff changeset
530 throw new RuntimeException("Arg Parser: unrecognized option "+it.get());
a61af66fc99e Initial load
duke
parents:
diff changeset
531 }
a61af66fc99e Initial load
duke
parents:
diff changeset
532 }
a61af66fc99e Initial load
duke
parents:
diff changeset
533 );
a61af66fc99e Initial load
duke
parents:
diff changeset
534 if (BuildConfig.getField(null, "SourceBase") == null ||
a61af66fc99e Initial load
duke
parents:
diff changeset
535 BuildConfig.getField(null, "BuildBase") == null ||
a61af66fc99e Initial load
duke
parents:
diff changeset
536 BuildConfig.getField(null, "ProjectFileName") == null ||
a61af66fc99e Initial load
duke
parents:
diff changeset
537 BuildConfig.getField(null, "CompilerVersion") == null) {
a61af66fc99e Initial load
duke
parents:
diff changeset
538 usage();
a61af66fc99e Initial load
duke
parents:
diff changeset
539 }
a61af66fc99e Initial load
duke
parents:
diff changeset
540
a61af66fc99e Initial load
duke
parents:
diff changeset
541 if (BuildConfig.getField(null, "UseToGeneratePch") == null) {
a61af66fc99e Initial load
duke
parents:
diff changeset
542 throw new RuntimeException("ERROR: need to specify one file to compute PCH, with -useToGeneratePch flag");
a61af66fc99e Initial load
duke
parents:
diff changeset
543 }
a61af66fc99e Initial load
duke
parents:
diff changeset
544
a61af66fc99e Initial load
duke
parents:
diff changeset
545 BuildConfig.putField(null, "PlatformObject", this);
a61af66fc99e Initial load
duke
parents:
diff changeset
546 }
a61af66fc99e Initial load
duke
parents:
diff changeset
547
2233
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
548 Vector createAllConfigs(String platform) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
549 Vector allConfigs = new Vector();
a61af66fc99e Initial load
duke
parents:
diff changeset
550
a61af66fc99e Initial load
duke
parents:
diff changeset
551 allConfigs.add(new C1DebugConfig());
2233
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
552 allConfigs.add(new C1FastDebugConfig());
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
553 allConfigs.add(new C1ProductConfig());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
554
2233
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
555 allConfigs.add(new C2DebugConfig());
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
556 allConfigs.add(new C2FastDebugConfig());
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
557 allConfigs.add(new C2ProductConfig());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
558
2233
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
559 allConfigs.add(new TieredDebugConfig());
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
560 allConfigs.add(new TieredFastDebugConfig());
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
561 allConfigs.add(new TieredProductConfig());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
562
2233
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
563 allConfigs.add(new CoreDebugConfig());
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
564 allConfigs.add(new CoreFastDebugConfig());
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
565 allConfigs.add(new CoreProductConfig());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
566
a61af66fc99e Initial load
duke
parents:
diff changeset
567 return allConfigs;
a61af66fc99e Initial load
duke
parents:
diff changeset
568 }
a61af66fc99e Initial load
duke
parents:
diff changeset
569
a61af66fc99e Initial load
duke
parents:
diff changeset
570 PrintWriter printWriter;
a61af66fc99e Initial load
duke
parents:
diff changeset
571
a61af66fc99e Initial load
duke
parents:
diff changeset
572 public void writeProjectFile(String projectFileName, String projectName,
2393
74e790c48cd4 7031571: Generate native VS2010 project files
sla
parents: 2233
diff changeset
573 Vector<BuildConfig> allConfigs) throws IOException {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
574 throw new RuntimeException("use compiler version specific version");
a61af66fc99e Initial load
duke
parents:
diff changeset
575 }
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
576
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
577 int indent;
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
578 private Stack<String> tagStack = new Stack<String>();
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
579
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
580 private void startTagPrim(String name, String[] attrs, boolean close) {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
581 startTagPrim(name, attrs, close, true);
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
582 }
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
583
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
584 private void startTagPrim(String name, String[] attrs, boolean close,
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
585 boolean newline) {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
586 doIndent();
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
587 printWriter.print("<" + name);
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
588 indent++;
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
589
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
590 if (attrs != null && attrs.length > 0) {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
591 for (int i = 0; i < attrs.length; i += 2) {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
592 printWriter.print(" " + attrs[i] + "=\"" + attrs[i + 1] + "\"");
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
593 if (i < attrs.length - 2) {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
594 }
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
595 }
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
596 }
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
597
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
598 if (close) {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
599 indent--;
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
600 printWriter.print(" />");
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
601 } else {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
602 // TODO push tag name, and change endTag to pop and print.
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
603 tagStack.push(name);
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
604 printWriter.print(">");
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
605 }
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
606 if (newline) {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
607 printWriter.println();
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
608 }
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
609 }
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
610
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
611 void startTag(String name, String... attrs) {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
612 startTagPrim(name, attrs, false);
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
613 }
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
614
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
615 void startTagV(String name, Vector attrs) {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
616 String s[] = new String[attrs.size()];
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
617 for (int i = 0; i < attrs.size(); i++) {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
618 s[i] = (String) attrs.elementAt(i);
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
619 }
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
620 startTagPrim(name, s, false);
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
621 }
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
622
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
623 void endTag() {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
624 String name = tagStack.pop();
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
625 indent--;
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
626 doIndent();
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
627 printWriter.println("</" + name + ">");
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
628 }
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
629
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
630 private void endTagNoIndent() {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
631 String name = tagStack.pop();
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
632 indent--;
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
633 printWriter.println("</" + name + ">");
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
634 }
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
635
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
636 void tag(String name, String... attrs) {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
637 startTagPrim(name, attrs, true);
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
638 }
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
639
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
640 void tagData(String name, String data) {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
641 startTagPrim(name, null, false, false);
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
642 printWriter.print(data);
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
643 endTagNoIndent();
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
644 }
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
645
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
646 void tagData(String name, String data, String... attrs) {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
647 startTagPrim(name, attrs, false, false);
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
648 printWriter.print(data);
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
649 endTagNoIndent();
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
650 }
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
651
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
652 void tagV(String name, Vector attrs) {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
653 String s[] = new String[attrs.size()];
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
654 for (int i = 0; i < attrs.size(); i++) {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
655 s[i] = (String) attrs.elementAt(i);
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
656 }
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
657 startTagPrim(name, s, true);
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
658 }
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
659
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
660 void doIndent() {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
661 for (int i = 0; i < indent; i++) {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
662 printWriter.print(" ");
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
663 }
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
664 }
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
665
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 2393
diff changeset
666
0
a61af66fc99e Initial load
duke
parents:
diff changeset
667 }