langtools/src/share/classes/com/sun/tools/javac/parser/ParserFactory.java
author jjg
Thu, 10 Jun 2010 16:08:01 -0700
changeset 5847 1908176fd6e3
parent 5520 86e4b9a9da40
child 6716 71df48777dd1
permissions -rw-r--r--
6944312: Potential rebranding issues in openjdk/langtools repository sources Reviewed-by: darcy
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
/*
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 3380
diff changeset
     2
 * Copyright (c) 1999, 2008, Oracle and/or its affiliates. All rights reserved.
1258
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
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 3380
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
1258
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 3380
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
1258
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
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 3380
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 3380
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 3380
diff changeset
    23
 * questions.
1258
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;
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1258
diff changeset
    32
import com.sun.tools.javac.util.Names;
1258
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.
3380
a6c2bcab0fec 6865399: some javac files are missing Sun internal API comment
jjg
parents: 1260
diff changeset
    37
 *
5847
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    38
 * <p><b>This is NOT part of any supported API.
3380
a6c2bcab0fec 6865399: some javac files are missing Sun internal API comment
jjg
parents: 1260
diff changeset
    39
 * If you write code that depends on this, you do so at your own risk.
a6c2bcab0fec 6865399: some javac files are missing Sun internal API comment
jjg
parents: 1260
diff changeset
    40
 * This code and its internal interfaces are subject to change or
a6c2bcab0fec 6865399: some javac files are missing Sun internal API comment
jjg
parents: 1260
diff changeset
    41
 * deletion without notice.</b>
1258
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 class ParserFactory {
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    44
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    45
    /** The context key for the parser factory. */
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    46
    protected static final Context.Key<ParserFactory> parserFactoryKey = new Context.Key<ParserFactory>();
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
    public static ParserFactory instance(Context context) {
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    49
        ParserFactory instance = context.get(parserFactoryKey);
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    50
        if (instance == null) {
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    51
            instance = new ParserFactory(context);
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    52
        }
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    53
        return instance;
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    54
    }
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    55
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    56
    final TreeMaker F;
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    57
    final Log log;
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    58
    final Keywords keywords;
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    59
    final Source source;
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1258
diff changeset
    60
    final Names names;
1258
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    61
    final Options options;
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    62
    final Scanner.Factory scannerFactory;
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    63
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    64
    protected ParserFactory(Context context) {
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    65
        super();
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    66
        context.put(parserFactoryKey, this);
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    67
        this.F = TreeMaker.instance(context);
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    68
        this.log = Log.instance(context);
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1258
diff changeset
    69
        this.names = Names.instance(context);
1258
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    70
        this.keywords = Keywords.instance(context);
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    71
        this.source = Source.instance(context);
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    72
        this.options = Options.instance(context);
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    73
        this.scannerFactory = Scanner.Factory.instance(context);
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    74
    }
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    75
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    76
    public Parser newParser(CharSequence input, boolean keepDocComments, boolean keepEndPos, boolean keepLineMap) {
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    77
        Lexer lexer = scannerFactory.newScanner(input);
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    78
        if (keepEndPos) {
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    79
            return new EndPosParser(this, lexer, keepDocComments, keepLineMap);
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    80
        } else {
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    81
            return new JavacParser(this, lexer, keepDocComments, keepLineMap);
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    82
        }
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    83
    }
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents:
diff changeset
    84
}