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