I'm using pyparsing to ingest the gEDA schematic/symbol file format. Most is straight-forward, but I'm not sure how to match a number of following lines specified by an integer field on the initial line.
A text object has a format like:
(other objects)
T x y color size vis snv angle align num_lines
Text line one
Line two of the text
Finally, the 'num_lines'th line
(other objects)
with num_lines an integer. This style is used for a few other types also.
As a work-around, I define such lines as anything not matching a valid object type. Technically, such object-like lines are allowed in text objects
text_meta = Type("T") + coord + color + size + visibility + show_name_value \
+ angle + alignment + num_lines + EOL
text_data_line = ~obj + LineStart() + SkipTo(LineEnd()) + EOL
text_data = Group(OneOrMore(text_data_line)).setResultsName('text')
text_data = text_data.setParseAction(lambda t: '\n'.join(t[0]))
text = text_meta + text_data
Generating a match rule on the fly like:
def genLineMatcher(n):
return (LineStart() + Skipto(LineEnd()) + EOL)*n
is on the table, but I'm not sure how to specify the rule.