Tagged Questions
PLY is an implementation of lex and yacc parsing tools for Python.
4
votes
1answer
129 views
Using PLY to parse SQL statements
I know there are other tools out there to parse SQL statements, but I am rolling out my own for educational purposes. I am getting stuck with my grammar right now.. If you can spot an error real ...
4
votes
1answer
94 views
What is the role of the Empty production for PEGs?
The empty production rule
nonterminal -> epsilon
is useful in lex-yacc LR bottom up parser generators (e.g. PLY).
In what context should one use Empty productions in PEG parsers e.g. pyparsing ...
3
votes
2answers
69 views
Implementing goto in an ast
Background:
As a short project over winter break, I'm trying to implement a programming language called Axe (designed for graphing calculators) using Python and PLY. A brief note: the language allows ...
3
votes
1answer
64 views
ply lexmatch regular expression has different groups than a usual re
I am using ply and have noticed a strange discrepancy between the token re match stored in t.lex.lexmatch, as compared with an sre_pattern defined in the usual way with the re module. The group(x)'s ...
3
votes
2answers
101 views
PLY: quickly parsing long lists of items?
I'm working with a fairly simple parser in PLY, and one of my rules takes on the following form:
def p_things(p):
'''
things : thing things
things : thing
'''
p[0] = [p[1]]
if ...
3
votes
5answers
754 views
Python: How best to parse a simple grammar?
Ok, so I've asked a bunch of smaller questions about this project, but I still don't have much confidence in the designs I'm coming up with, so I'm going to ask a question on a broader scale.
I am ...
3
votes
5answers
123 views
Should I use Lex or a home-brewed solution to parse a formula?
I'm in the process of writing a small, rule-based 'math' engine. I realize this is unclear, so I'll provide a small example.
Let's say you have some variable a, that holds an integer. You also have ...
3
votes
5answers
557 views
Match unicode in ply's regexes
I'm matching identifiers, but now I have a problem: my identifiers are allowed to contain unicode characters. Therefore the old way to do things is not enough:
t_IDENTIFIER = ...
2
votes
2answers
151 views
Is there grammar or lexer and parser for Python (or subset), written in PLY?
Is there grammar or lexer and parser for Python (or subset), written in PLY?
2
votes
1answer
156 views
Python PLY zero or more occurrences of a parsing item
I am using Python with PLY to parse LISP-like S-Expressions and when parsing a function call there can be zero or more arguments. How can I put this into the yacc code. This is my function so far:
...
2
votes
4answers
415 views
How to write a regular expression to match a string literal where the escape is a doubling of the quote character?
I am writing a parser using ply that needs to identify FORTRAN string literals. These are quoted with single quotes with the escape character being doubled single quotes. i.e.
'I don''t understand ...
2
votes
3answers
287 views
several lexers for one parser with PLY?
I'm trying to implement a python parser using PLY for the Kconfig language used to generate the configuration options for the linux kernel.
There's a keyword called source which performs an ...
2
votes
3answers
454 views
PLY: Token shifting problem in C parser
I'm writing a C parser using PLY, and recently ran into a problem.
This code:
typedef int my_type;
my_type x;
Is correct C code, because my_type is defined as a type previously to
being used as ...
1
vote
2answers
52 views
lexer error-handling PLY Python
The t_error() function is used to handle lexing errors that occur when illegal characters are detected. My question is: How can I use this function to get more specific information on errors? Like ...
1
vote
1answer
29 views
EOF error in parser YACC
I am trying to parse a string using the yacc parser provided in the PLY library for Python.
The parser itself is very long, but the problem that i am having is that it always gives me the same error, ...
1
vote
1answer
50 views
Two word token using PLY in Python
I am writing a compiler as part of a lab excercise and have chosen to do it in Python using PLY. I have spent some time trying to work this particular problem out and have reached a dead end as have ...
1
vote
1answer
72 views
Python PLY - something wrong with this grammar?
I am trying to use Python PLY for a simple expression parser, and I can't get it to work. The code is available at bitbucket, but the offending parts are:
First, the definitions:
def ...
1
vote
1answer
127 views
Ply : problem while defining rules for the “c” language
I'm trying to write a parser for the c language which will be able to take care of expressions, assignments, if-else and while loops.
here are my rules :
expression -> expression op expression
...
1
vote
1answer
152 views
Ply Lex parsing problem
I'm using ply as my lex parser. My specifications are the following :
t_WHILE = r'while'
t_THEN = r'then'
t_ID = r'[a-zA-Z_][a-zA-Z0-9_]*'
t_NUMBER = r'\d+'
t_LESSEQUAL = r'<='
t_ASSIGN ...
1
vote
1answer
222 views
yacc fails to reduce (Python Lex-Yacc)
I'm trying to write a fairly simple grammar with PLY (python implementation of yacc), and am having trouble getting yacc to reduce strings of tokens when I want it to.
I want to interpret a series ...
1
vote
0answers
119 views
Is there a Java library for writing out ply files?
I'm looking for a Java library to write out ply files. If there isn't one, I'd like to look into writing one.
1
vote
2answers
106 views
BNF: input going to wrong nonterminal
I'm developing a BNF for chess algebraic notation and ran into an interesting case, input going to the wrong non-terminal.
My start BNF rule is as follows (note that this intentionally doesn't ...
1
vote
0answers
145 views
Python: Trouble with YACC
I'm using PLY to parse sentences like:
"CS 2310 or equivalent experience"
The desired output:
[[("CS", 2310)], ["equivalent experience"]]
YACC tokenizer symbols:
tokens = [
'DEPT_CODE',
...
1
vote
3answers
137 views
How to evaluate a matched number later in a regex? - Lexing FORTRAN 'H' edit descriptor with Ply
I am using Ply to interpret a FORTRAN format string. I am having trouble writing a regex to match the 'H' edit descriptor which is of the form
xHccccc ...
where x specifies the number of characters ...
1
vote
5answers
334 views
md5 module error
I'm using an older version of PLY that uses the md5 module (among others):
import re, types, sys, cStringIO, md5, os.path
... although the script runs but not without this error:
...
1
vote
1answer
598 views
Resolving a shift/reduce conflict in an LALR parser
I've been using PLY to build up a parser for my language, however I've got a shift/reduce conflict that's causing me some trouble. My language has generic types with a syntax ala C++ templates. So ...
1
vote
4answers
349 views
Tokenizing left over data with lex/yacc
Forgive me, I'm completely new to parsing and lex/yacc, and I'm probably in way over my head, but nonetheless:
I'm writing a pretty basic calculator with PLY, but it's input might not always be an ...
0
votes
0answers
66 views
Lexing sum operator and a signed integer with PLY Python
How can I build my raw expression to differentiate between a sum operator and a signed integer? I'm using PLY Python.
This,unfortunately, didn't work:
t_sum=r'\+'
def t_integer(token):
...
0
votes
1answer
26 views
How can I get a YACC-type parser to stop on the shortest matching input?
Here's the context: I have a file (or stream), and I want to process its header, stop, and then deal with the rest of the data differently. That is, suppose I have a stream like BEGIN GOOD GOOD GOOD ...
0
votes
2answers
134 views
Python PLY parser
I've tried to search around for the answer to this question, but can't seem to find one.
I'm trying to write a parser in Python using PLY for a made up language. A simplified version of my BNF looks ...
0
votes
0answers
87 views
Reading binary PLY file generates weird results
My task is to read vertex data from a binary little endian .ply file. Problem is that I cant find a way how to correctly extract data, starting after the end_header line.
PLY file:
ply
format ...
0
votes
3answers
208 views
Parsing .ply files without memory leaks
I downloaded the .ply files in the Stanford 3D scanning repository, and am using Stanford's code from that page (ply.h, plyfile.c) to parse them. However, looking at this code, I see that it's rife ...
0
votes
1answer
608 views
How do I display/draw a .ply object in OpenGL?
I'm trying to make OpenGL draw the figure that I'm loading with OPENFILENAME. What I've got right now is: I can display the comments, vertex, how many faces, etc., but I cannot draw the figure and I'm ...
0
votes
1answer
406 views
Python/YACC: Resolving a shift/reduce conflict
I'm using PLY. Here is one of my states from parser.out:
state 3
(5) course_data -> course .
(6) course_data -> course . course_list_tail
(3) or_phrase -> course . OR_CONJ ...
-2
votes
1answer
263 views
Parsing python with PLY
I'm trying to write a python parser, and in my opiniion it could parse an "if statement" but it doesn't.
It shows me a "syntax error" message.
Can someone tell me what I'm doing wrong?
Thanks in ...