![]() |
GrammarScope
4.0.0
|
Public Member Functions | |
TreeReader (final StringReader stringReader) | |
AParseTree | readTree () throws IOException |
Static Public Member Functions | |
static AParseTree | make (final String inputString) |
static void | main (final String[] args) |
Private Member Functions | |
AParseTree | getTreeFromInputStream () |
Private Attributes | |
final Tokenizer< String > | tokenizer |
final TreeNormalizer | treeNormalizer |
MutableAParseTree | currentTree |
ArrayList< MutableAParseTree > | stack |
Static Private Attributes | |
static final String | leftParen = "(" |
static final String | rightParen = ")" |
This class implements the TreeReader
interface to read Penn Treebank-style files. The reader is implemented as a pushdown automaton (PDA) that parses the Lisp-style format in which the trees are stored. This reader is compatible with both PTB and PATB trees.
grammarscope.io.read.TreeReader.TreeReader | ( | final StringReader | stringReader | ) |
Constructor
stringReader | string reader |
|
private |
|
static |
|
static |
This gives you a tree from a String representation (as a bracketed Tree, of the kind produced by toString()
, pennPrint()
, or as in the Penn Treebank. It's not the most efficient thing to do for heavy duty usage.
inputString | input string |
AParseTree grammarscope.io.read.TreeReader.readTree | ( | ) | throws IOException |
Reads a single tree in standard Penn Treebank format from the input stream. The method supports additional parentheses around the tree (an unnamed ROOT node) so long as they are balanced. If the token stream ends before the current tree is complete, then the method will throw an IOException
.
Note that the method will skip malformed trees and attempt to read additional trees from the input stream. It is possible, however, that a malformed tree will corrupt the token stream. In this case, an IOException
will eventually be thrown.
null
at end of token stream. IOException | exception |
|
private |
|
staticprivate |
|
staticprivate |
|
private |
|
private |
|
private |