langtools/src/share/classes/com/sun/tools/javac/parser/ParserFactory.java
author jjg
Tue, 09 Sep 2008 10:40:50 -0700
changeset 1258 1cf37d8837d1
child 1260 a772ba9ba43d
permissions -rw-r--r--
6724118: change JavaCompiler to not use Scanner directly 6736119: refactor Parser and Parser.Factory Reviewed-by: mcimadamore
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1258
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
     1
/*
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
     2
 * Copyright 1999-2008 Sun Microsystems, Inc.  All Rights Reserved.
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
     4
 *
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    10
 *
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    15
 * accompanied this code).
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    16
 *
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    20
 *
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    23
 * have any questions.
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    24
 */
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    25
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    26
package com.sun.tools.javac.parser;
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    27
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    28
import com.sun.tools.javac.code.Source;
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    29
import com.sun.tools.javac.tree.TreeMaker;
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    30
import com.sun.tools.javac.util.Context;
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    31
import com.sun.tools.javac.util.Log;
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    32
import com.sun.tools.javac.util.Name;
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    33
import com.sun.tools.javac.util.Options;
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    34
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    35
/**
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    36
 * A factory for creating parsers.
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    37
 */
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    38
public class ParserFactory {
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    39
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    40
    /** The context key for the parser factory. */
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    41
    protected static final Context.Key<ParserFactory> parserFactoryKey = new Context.Key<ParserFactory>();
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    42
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    43
    public static ParserFactory instance(Context context) {
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    44
        ParserFactory instance = context.get(parserFactoryKey);
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    45
        if (instance == null) {
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    46
            instance = new ParserFactory(context);
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    47
        }
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    48
        return instance;
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    49
    }
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    50
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    51
    final TreeMaker F;
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    52
    final Log log;
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    53
    final Keywords keywords;
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    54
    final Source source;
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    55
    final Name.Table names;
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    56
    final Options options;
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    57
    final Scanner.Factory scannerFactory;
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    58
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    59
    protected ParserFactory(Context context) {
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    60
        super();
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    61
        context.put(parserFactoryKey, this);
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    62
        this.F = TreeMaker.instance(context);
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    63
        this.log = Log.instance(context);
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    64
        this.names = Name.Table.instance(context);
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    65
        this.keywords = Keywords.instance(context);
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    66
        this.source = Source.instance(context);
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    67
        this.options = Options.instance(context);
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    68
        this.scannerFactory = Scanner.Factory.instance(context);
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    69
    }
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    70
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    71
    public Parser newParser(CharSequence input, boolean keepDocComments, boolean keepEndPos, boolean keepLineMap) {
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    72
        Lexer lexer = scannerFactory.newScanner(input);
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    73
        if (keepEndPos) {
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    74
            return new EndPosParser(this, lexer, keepDocComments, keepLineMap);
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    75
        } else {
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    76
            return new JavacParser(this, lexer, keepDocComments, keepLineMap);
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    77
        }
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    78
    }
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    79
}