FileDocCategorySizeDatePackage
BuildTool.javaAPI DocphoneME MR2 API (J2ME)3899Wed May 02 17:59:48 BST 2007None

BuildTool.java

/*
 *   
 *
 * Copyright  1990-2007 Sun Microsystems, Inc. All Rights Reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER
 * 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License version
 * 2 only, as published by the Free Software Foundation.
 * 
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * General Public License version 2 for more details (a copy is
 * included at /legal/license.txt).
 * 
 * You should have received a copy of the GNU General Public License
 * version 2 along with this work; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA
 * 
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
 * Clara, CA 95054 or visit www.sun.com if you need additional
 * information or have any questions.
 */

import java.io.*;
import java.util.*;

/**
 * This class is the main interface to a collection of build tools
 * that are used during this VM build process. <p>
 * <ul>
 *     <li> config -- generates the jvmconfig.h header file, which
 *                    controls the build options of the VM (e.g., 
 *                    ENABLE_JAVA_DEBUGGER, ENABLE_CLDC11, etc).
 * </ul>
 */
public class BuildTool {
    static void usage() {
        p("Usage: java -jar buildtool.jar <command> <args> ...");
        p("Valid options for <command> are:");
        p("");
        p("help:                                Print this help message");
        p("");
        p("config <inputfile> <outputfile>:     Create jvmconfig.h");
        p("makedep ...:                         Create dependencies files");
        p("mjpp ...:                            Preprocess Java source");
        p("romtestclasses ...:                  Create romtestclasses.zip");
        p("testcases ...:                       Create testcases.make");
        p("testjarentries ...:                  Create test JAR entries");
        System.exit(1);
    }

    // Usage: config <inputfile> <outputfile>
    public static void main(String args[]) {
        String appArgs[] = getAppArgs(args);
        String app = args[0];
        try {
            if ("config".equals(app)) {
                config.Main.main(appArgs);
            }
            else if ("makedep".equals(app)) {
                makedep.Main.main(appArgs);
            }
            else if ("testcases".equals(app)) {
                tests.CollectTestCases.main(appArgs);
            }
            else if ("romtestclasses".equals(app)) {
                tests.CreateRomTestClasses.main(appArgs);
            }
            else if ("testjarentries".equals(app)) {
                tests.CreateTestJarEntries.main(appArgs);
            }
            else if ("mjpp".equals(app)) {
                mjpp.Main.main(appArgs);
            }
            else if ("help".equals(app)) {
                usage();
            }
            else {
                p("Unknown option \"" + app + "\"");
                p("");
                usage();
            }
        } catch (Throwable t) {
            t.printStackTrace();
            System.exit(1);
        }
    }

    /**
     * Get the list of arguments intended for the application (which is
     * specified by args[0] to BuildTool.main()
     */
    static String[] getAppArgs(String args[]) {
        if (args.length < 1) {
            usage();
            return null;
        } else {
            String appArgs[] = new String[args.length - 1];
            for (int i=1; i<args.length; i++) {
                appArgs[i-1] = args[i];
            }
            return appArgs;
        }
    }

    static void p(String s) {
        System.out.println(s);
    }
}