Package dap4.core.ce.parser
Class CEParserImpl
- java.lang.Object
-
- dap4.core.ce.parser.CEParserImpl
-
public class CEParserImpl extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static StringbisonSkeletonName of the skeleton that generated this parser.static StringbisonVersionVersion number for the Bison executable that generated this parser.protected CEASTconstraintprotected Map<String,Slice>dimdefsprotected static intglobaldebuglevelprotected DapDatasettemplatestatic intYYABORTReturned by a Bison action in order to stop the parsing process and return failure (false).static intYYACCEPTReturned by a Bison action in order to stop the parsing process and return success (true).static intYYERRORReturned by a Bison action in order to start error recovery without printing an error message.
-
Constructor Summary
Constructors Constructor Description CEParserImpl(DapDataset template)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description CEASTgetCEAST()intgetDebugLevel()Answer the verbosity of the debugging output; 0 means that all kinds of output from the parser are suppressed.PrintStreamgetDebugStream()The PrintStream on which the debugging output is printed.booleangetErrorVerbose()Whether verbose error messages are enabled.intgetNumberOfErrors()The number of syntax errors so far.booleanparse()Parse input from the scanner that was specified at object construction time.booleanparse(String document)booleanrecovering()Whether error recovery is being done.voidsetDebugLevel(int level)Set the verbosity of the debugging output; 0 means that all kinds of output from the parser are suppressed.voidsetDebugStream(PrintStream s)Set the PrintStream on which the debug output is printed.voidsetErrorVerbose(boolean verbose)Set the verbosity of error messages.static voidsetGlobalDebugLevel(int level)protected voidyycdebug(String s)protected voidyycdebugNnl(String s)voidyyerror(String msg)Print an error message via the lexer.
-
-
-
Field Detail
-
globaldebuglevel
protected static int globaldebuglevel
-
template
protected DapDataset template
-
constraint
protected CEAST constraint
-
bisonVersion
public static final String bisonVersion
Version number for the Bison executable that generated this parser.- See Also:
- Constant Field Values
-
bisonSkeleton
public static final String bisonSkeleton
Name of the skeleton that generated this parser.- See Also:
- Constant Field Values
-
YYACCEPT
public static final int YYACCEPT
Returned by a Bison action in order to stop the parsing process and return success (true).- See Also:
- Constant Field Values
-
YYABORT
public static final int YYABORT
Returned by a Bison action in order to stop the parsing process and return failure (false).- See Also:
- Constant Field Values
-
YYERROR
public static final int YYERROR
Returned by a Bison action in order to start error recovery without printing an error message.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
CEParserImpl
public CEParserImpl(DapDataset template) throws ParseException
- Throws:
ParseException
-
-
Method Detail
-
setGlobalDebugLevel
public static void setGlobalDebugLevel(int level)
-
getCEAST
public CEAST getCEAST()
-
parse
public boolean parse(String document) throws ParseException
- Throws:
ParseException
-
getErrorVerbose
public final boolean getErrorVerbose()
Whether verbose error messages are enabled.
-
setErrorVerbose
public final void setErrorVerbose(boolean verbose)
Set the verbosity of error messages.- Parameters:
verbose- True to request verbose error messages.
-
getDebugStream
public final PrintStream getDebugStream()
The PrintStream on which the debugging output is printed.
-
setDebugStream
public final void setDebugStream(PrintStream s)
Set the PrintStream on which the debug output is printed.- Parameters:
s- The stream that is used for debugging output.
-
getDebugLevel
public final int getDebugLevel()
Answer the verbosity of the debugging output; 0 means that all kinds of output from the parser are suppressed.
-
setDebugLevel
public final void setDebugLevel(int level)
Set the verbosity of the debugging output; 0 means that all kinds of output from the parser are suppressed.- Parameters:
level- The verbosity level for debugging output.
-
getNumberOfErrors
public final int getNumberOfErrors()
The number of syntax errors so far.
-
yyerror
public final void yyerror(String msg)
Print an error message via the lexer.- Parameters:
msg- The error message.
-
yycdebugNnl
protected final void yycdebugNnl(String s)
-
yycdebug
protected final void yycdebug(String s)
-
recovering
public final boolean recovering()
Whether error recovery is being done. In this state, the parser reads token until it reaches a known state, and then restarts normal operation.
-
parse
public boolean parse() throws ParseException, ParseExceptionParse input from the scanner that was specified at object construction time. Return whether the end of the input was reached successfully.- Returns:
- true if the parsing succeeds. Note that this does not imply that there were no syntax errors.
- Throws:
ParseException
-
-