Search in sources :

Example 1 with Profile

use of org.eclipse.ceylon.langtools.tools.javac.jvm.Profile in project ceylon by eclipse.

the class Main method processArgs.

public Collection<File> processArgs(String[] flags, String[] classNames) {
    // XXX sb protected
    int ac = 0;
    while (ac < flags.length) {
        String flag = flags[ac];
        ac++;
        Option option = null;
        if (flag.length() > 0) {
            // quick hack to speed up file processing:
            // if the option does not begin with '-', there is no need to check
            // most of the compiler options.
            int firstOptionToCheck = flag.charAt(0) == '-' ? 0 : recognizedOptions.length - 1;
            for (int j = firstOptionToCheck; j < recognizedOptions.length; j++) {
                if (recognizedOptions[j].matches(flag)) {
                    option = recognizedOptions[j];
                    break;
                }
            }
        }
        if (option == null) {
            error("err.invalid.flag", flag);
            return null;
        }
        if (option.hasArg()) {
            if (ac == flags.length) {
                error("err.req.arg", flag);
                return null;
            }
            String operand = flags[ac];
            ac++;
            if (option.process(optionHelper, flag, operand))
                return null;
        } else {
            if (option.process(optionHelper, flag))
                return null;
        }
    }
    if (options.get(PROFILE) != null && options.get(BOOTCLASSPATH) != null) {
        error("err.profile.bootclasspath.conflict");
        return null;
    }
    if (this.classnames != null && classNames != null) {
        this.classnames.addAll(Arrays.asList(classNames));
    }
    if (!checkDirectory(D))
        return null;
    if (!checkDirectory(S))
        return null;
    String sourceString = options.get(SOURCE);
    String targetString = options.get(TARGET);
    if (sourceString == null && targetString == null) {
        sourceString = "7";
        options.put(SOURCE, sourceString);
    }
    Source source = (sourceString != null) ? Source.lookup(sourceString) : Source.JDK1_7;
    if (targetString == null) {
        targetString = "7";
        options.put(TARGET, targetString);
    }
    Target target = (targetString != null) ? Target.lookup(targetString) : Target.JDK1_7;
    // prototype.
    if (Character.isDigit(target.name.charAt(0))) {
        if (target.compareTo(source.requiredTarget()) < 0) {
            if (targetString != null) {
                if (sourceString == null) {
                    warning("warn.target.default.source.conflict", targetString, source.requiredTarget().name);
                } else {
                    warning("warn.source.target.conflict", sourceString, source.requiredTarget().name);
                }
                return null;
            } else {
                target = source.requiredTarget();
                options.put("-target", target.name);
            }
        } else {
            if (targetString == null && !source.allowGenerics()) {
                target = Target.JDK1_4;
                options.put("-target", target.name);
            }
        }
    }
    String profileString = options.get(PROFILE);
    if (profileString != null) {
        Profile profile = Profile.lookup(profileString);
        if (!profile.isValid(target)) {
            warning("warn.profile.target.conflict", profileString, target.name);
            return null;
        }
    }
    // handle this here so it works even if no other options given
    String showClass = options.get("showClass");
    if (showClass != null) {
        if (// no value given for option
        showClass.equals("showClass"))
            showClass = "org.eclipse.ceylon.langtools.tools.javac.Main";
        showClass(showClass);
    }
    options.notifyListeners();
    return filenames;
}
Also used : Target(org.eclipse.ceylon.langtools.tools.javac.jvm.Target) Option(org.eclipse.ceylon.langtools.tools.javac.main.Option) Source(org.eclipse.ceylon.langtools.tools.javac.code.Source) Profile(org.eclipse.ceylon.langtools.tools.javac.jvm.Profile)

Aggregations

Source (org.eclipse.ceylon.langtools.tools.javac.code.Source)1 Profile (org.eclipse.ceylon.langtools.tools.javac.jvm.Profile)1 Target (org.eclipse.ceylon.langtools.tools.javac.jvm.Target)1 Option (org.eclipse.ceylon.langtools.tools.javac.main.Option)1