| |
- simpleparse.baseparser.BaseParser
-
- Parser
class Parser(simpleparse.baseparser.BaseParser) |
|
EBNF-generated Parsers with results-handling
The Parser is a two-stage object:
Passed an EBNF definition during initialisation,
it compiles the definition into a tagging table
(which in turn requires creating a tagging table
for parsing the EBNF).
You then call the parser's parse method to
perform the actual parsing of your data, with the
parser passing the results to your processor object
and then back to you. |
|
Methods defined here:
- __init__(self, declaration, root='root', prebuilts=(), definitionSources=[])
- Initialise the parser, creating the tagging table for it
declaration -- simpleparse ebnf declaration of the language being parsed
root -- root production used for parsing if none explicitly specified
prebuilts -- sequence of (name,value) tuples with prebuilt tables, values
can be either objectgenerator EventToken sub-classes or TextTools
tables
definitionSources -- dictionaries of common constructs for use
in building your grammar
- buildTagger(self, production=None, processor=None)
- Get a particular parsing table for a particular production
Data and non-method functions defined here:
- __doc__ = 'EBNF-generated Parsers with results-handling\n\n\tT...o your processor object\n\t\tand then back to you.\n\t'
- str(object) -> string
Return a nice string representation of the object.
If the argument is a string, the return value is the same object.
- __module__ = 'simpleparse.parser'
- str(object) -> string
Return a nice string representation of the object.
If the argument is a string, the return value is the same object.
Methods inherited from simpleparse.baseparser.BaseParser:
- buildProcessor(self)
- Build default processor object for this parser class
The default implementation returns None. The processor
can either implement the "method source" API (just provides
information about Callouts and the like), or the processor
API and the method-source API. The processor API merely
requires that the object be callable, and have the signature:
object( (success, children, nextPosition), buffer)
(Note: your object can treat the first item as a single tuple
if it likes).
See: simpleparse.processor module for details.
- parse(self, data, production=None, processor=None, start=0, stop=None)
- Parse data with production "production" of this parser
data -- data to be parsed, a Python string, for now
production -- optional string specifying a non-default production to use
for parsing data
processor -- optional pointer to a Processor or MethodSource object for
use in determining reporting format and/or post-processing the results
of the parsing pass. Can be None if neither is desired (default)
start -- starting index for the parsing, default 0
stop -- stoping index for the parsing, default len(data)
- resetBeforeParse(self)
- Called just before the parser's parse method starts working,
Allows you to set up special-purpose structures, such as stacks
or local storage values. There is no base implementation. The
base implementation does nothing.
Data and non-method functions inherited from simpleparse.baseparser.BaseParser:
- _rootProduction = ''
- str(object) -> string
Return a nice string representation of the object.
If the argument is a string, the return value is the same object.
| |