Parsing made fun ... using typing.
Project description
flexparser
Why writing another parser? I have asked myself the same question while working in this project. It is clear that there are excellent parsers out there but I wanted to experiment with another way of writing them.
The idea is quite simple. You write a class for every type of content (called here ParsedStatement) you need to parse. Each class should have a from_string constructor. We used extensively the typing module to make the output structure easy to use and less error prone.
For example:
from dataclasses import dataclass
import flexparser as fp
@dataclass(frozen=True)
class Assigment(fp.ParsedStatement):
"""Parses the following `this <- other`
"""
lhs: str
rhs: str
@classmethod
def from_string(cls, s):
lhs, rhs = s.split("<-")
return cls(lhs.strip(), rhs.strip())
(using a frozen dataclass is not necessary but I found it very useful)
In certain cases you might want to signal the parser that his class is not appropriate to parse the statement.
@dataclass(frozen=True)
class Assigment(fp.ParsedStatement):
"""Parses the following `this <- other`
"""
lhs: str
rhs: str
@classmethod
def from_string(cls, s):
if "<-" not in s:
# This means: I do not know how to parse it
# try with another ParsedStatement class.
return None
lhs, rhs = s.split("<-")
return cls(lhs.strip(), rhs.strip())
You might also want to indicate that this is the right ParsedStatement but something is not right:
@dataclass(frozen=True)
class InvalidIdentifier(fp.ParsingError):
value: str
@dataclass(frozen=True)
class Assigment(fp.ParsedStatement):
"""Parses the following `this <- other`
"""
lhs: str
rhs: str
@classmethod
def from_string(cls, s):
if "<-" not in s:
# This means: I do not know how to parse it
# try with another ParsedStatement class.
return None
lhs, rhs = (p.strip() for p in s.split("<-"))
if not str.isidentifier(lhs):
return InvalidIdentifier(lhs)
return cls(lhs, rhs)
Put this into source.txt
one <- other
2two <- new
three <- newvalue
one == three
and then run the following code:
parsed = fp.parse("source.txt", Assigment)
for el in parsed.iter_statements():
print(repr(el))
will produce the following output:
BOS(lineno=0, colno=0)
Assigment(lineno=1, colno=0, lhs='one', rhs='other')
InvalidIdentifier(lineno=2, colno=0, origin='', value='2two')
Assigment(lineno=3, colno=0, lhs='three', rhs='newvalue')
UnknownStatement(lineno=4, colno=0, origin='', statement='one == three')
EOS(lineno=-1, colno=-1)
The result is a collection of ParsedStatement or ParsingError (flanked by BOS and EOS indicating beginning and ending of stream respectively). Notice that there are two correctly parsed statements (Assigment), one error found (InvalidIdentifier) and one unknown (UnknownStatement).
Cool, right? Just writing a from_string method that outputs a datastructure produces a usable structure of parsed objects.
Now what? Let’s say we want to support equality comparison. Simply do:
@dataclass(frozen=True)
class EqualityComparison(fp.ParsedStatement):
"""Parses the following `this == other`
"""
lhs: str
rhs: str
@classmethod
def from_string(cls, s):
if "==" not in s:
return None
lhs, rhs = (p.strip() for p in s.split("=="))
return cls(lhs, rhs)
parsed = fp.parse("source.txt", (Assigment, Equality))
for el in parsed.iter_statements():
print(repr(el))
and run it again:
BOS(lineno=0, colno=0)
Assigment(lineno=1, colno=0, lhs='one', rhs='other')
InvalidIdentifier(lineno=2, colno=0, origin='', value='2two')
Assigment(lineno=3, colno=0, lhs='three', rhs='newvalue')
EqualityComparison(lineno=4, colno=0, lhs='one', rhs='three')
EOS(lineno=-1, colno=-1)
You need to group certain statements together: welcome to Block This construct allows you to group
class Begin(fp.ParsedStatement):
@classmethod
def from_string(cls, s):
if s == "begin":
return cls()
return None
class End(fp.ParsedStatement):
@classmethod
def from_string(cls, s):
if s == "end":
return cls()
return None
AssigmentBlock = fp.Block.build(
Begin,
(Assigment, ),
End,
)
parsed = fp.parse("source.txt", (AssigmentBlock, Equality))
Run the code:
BOS(lineno=0, colno=0)
UnknownStatement(lineno=1, colno=0, origin='', statement='one <- other')
UnknownStatement(lineno=2, colno=0, origin='', statement='2two <- new')
UnknownStatement(lineno=3, colno=0, origin='', statement='three <- newvalue')
Equality(lineno=4, colno=0, lhs='one', rhs='three')
EOS(lineno=-1, colno=-1)
Notice that there are a lot of UnknownStatement now, because we instructed the parser to only look for assignment within a block. So change your text file to:
begin
one <- other
2two <- new
three <- newvalue
end
one == three
and try again:
BOS(lineno=0, colno=0)
Begin(lineno=1, colno=0)
Assigment(lineno=2, colno=0, lhs='one', rhs='other')
InvalidIdentifier(lineno=3, colno=0, origin='', value='2two')
Assigment(lineno=4, colno=0, lhs='three', rhs='newvalue')
End(lineno=5, colno=0)
Equality(lineno=6, colno=0, lhs='one', rhs='three')
EOS(lineno=-1, colno=-1)
Until now we have used parsed.iter_statements to iterate over all parsed statements. But let’s look inside parsed, an object of ParsedProject type. It is a thin wrapper over a dictionary mapping files to parsed content. Because we have provided a single file and this does not contain a link another, our parsed object contains a single element. The key is something like (None, 'source.txt') indicating that the file ‘source.txt’ was loaded from the root location (None). The content is a ParsedSourceFile object with the following attributes:
filename: full path of the source file
mtime: modification file of the source file
content_hash: sha1 hash of the pickled content (this is currently not the same as hashing the file)
config: extra parameters that can be given to the parser (see below).
parse.<locals>.CustomRootBlock(
opening=BOS(lineno=0, colno=0),
body=(
Block.subclass_with.<locals>.CustomBlock(
opening=Begin(lineno=1, colno=0),
body=(
Assigment(lineno=2, colno=0, lhs='one', rhs='other'),
InvalidIdentifier(lineno=3, colno=0, origin='', value='2two'),
Assigment(lineno=4, colno=0, lhs='three', rhs='newvalue')
),
closing=End(lineno=5, colno=0)
),
Equality(lineno=6, colno=0, lhs='one', rhs='three')
),
closing=EOS(lineno=-1, colno=-1)
)
A few things to notice:
We were using a block before without knowing. The RootBlock is a special type of Block that starts and ends automatically with the file.
opening, body, closing are automatically annotated with the possible ParsedStatement (plus ParsingError), therefore autocompletes works in most IDEs.
The same is true for the defined ParsedStatement (we have use dataclass for a reason). This makes using the actual result of the parsing a charm!.
That annoying subclass_with.<locals> is because we have built a class on the fly when we used Block.subclass_with. You can get rid of it (which is actually useful for pickling) by explicit subclassing Block in your code (see below).
Multiple source files
Most projects have more than one source file and you can parse them all in one call. For example:
parsed = fp.parse(["source.txt", "other_source.txt"], , (AssigmentBlock, Equality))
will produce a ParsedProject object with two elements.
But in many cases, a file might refer to another that also need to be parsed (e.g. an #include statement in c). flexparser provides the IncludeStatement base class specially for this purpose.
@dataclass(frozen=True)
class Include(fp.IncludeStatement):
"""A naive implementation of #include "file"
"""
value: str
@classmethod
def from_string(cls, s):
if s.startwith("#include "):
return None
value = s[len("#include "):].strip().strip('"')
return cls(value)
@propery
def target(self):
return self.value
The only difference is that you need to implement a target property that returns the file name or resource that this statement refers to.
Customizing statementization
statementi … what? flexparser works by trying to parse each statement with one of the known classes. So it is fair to ask what is an statement in this context and how can you configure it to your needs. A text file is split into non overlapping strings called statements. Parsing work as follows:
each file is split in lines.
each line is split into statements.
each statement is parsed with the first of the contextually available ParsedStatement or Block subclassed that returns a ParsedStatement or ParsingError
You can customize how to split each line into statements with two arguments:
strip_spaces (bool): indicates that leading and trailing spaces must be removed before attempting to parse. (default: True)
delimiters (dict): indicates how each line must be subsplit. (default: do not divide)
An delimiter example might be {";": (fp.DelimiterMode.SKIP, False)} which tells the statementizer (sorry) that when a “;” is found a new statement should begin. DelimiterMode.SKIP tells that “;” should not be added to the previous statement nor to the next. Other valid values are WITH_PREVIOUS and WITH_NEXT to append or prepend the delimiter character to the previous or next statement. The boolean tells the statementizer (sorry again) if it should stop split the line. If True, the rest of the line will be captured in the next statement. This is useful with comments. For example, {"#": (fp.DelimiterMode.WITH_NEXT, True)} tells the statementizer (it is not funny anymore) that after the first “#” it should stop splitting and capture all. This allows
## This will work as a single statement
# This will work as a single statement #
# This will work as # a single statement #
a = 3 # this will produce two statements (a=3, and the rest)
Explicit Block classes
class AssigmentBlock:
opening: fp.Single[Begin]
body: fp.Multi[Assigment]
closing: fp.Single[End]
class EntryBlock(fp.RootBlock):
body: fp.Multi[typing.Union[AssigmentBlock, Equality]]
parsed = fp.parse("source.txt", EntryBlock)
This project was started as a part of Pint, the python units package.
See AUTHORS for a list of the maintainers.
To review an ordered list of notable changes for each version of a project, see CHANGES
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file flexparser-0.1.tar.gz
.
File metadata
- Download URL: flexparser-0.1.tar.gz
- Upload date:
- Size: 25.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a2913dde5c9cfdfefc78885d8669d9d77d4ff5913b1c05c7e5364dc0280313b |
|
MD5 | a2a91ce3a2b6e2d76ae80e9ed3708553 |
|
BLAKE2b-256 | 9c06a8cacc2ac6b2a8593cd42a7e8f13a99869401540b760489cb29a70836bf6 |