Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pybison
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Taddeüs Kroes
pybison
Commits
260359e3
Commit
260359e3
authored
Dec 08, 2011
by
Sander Mathijs van Veen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improved exception handling and moved bisonToParser to own file.
parent
2331ecff
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
530 additions
and
443 deletions
+530
-443
src/pyrex/bison_.pyx
src/pyrex/bison_.pyx
+55
-19
src/python/bison.py
src/python/bison.py
+85
-397
src/python/convert.py
src/python/convert.py
+378
-0
utils/bison2py.py
utils/bison2py.py
+12
-27
No files found.
src/pyrex/bison_.pyx
View file @
260359e3
...
...
@@ -82,26 +82,24 @@ cdef public object py_callback(object parser, char *target, int option, \
cdef
void
*
val
cdef
char
*
termname
#if parser.verbose:
# print 'py_callback: called with nargs=%d' % nargs
names
=
PyList_New
(
nargs
)
values
=
PyList_New
(
nargs
)
Py_INCREF
(
names
)
Py_INCREF
(
values
)
#for i in range(nargs):
# print 'i=%d' % i , <char*>va_arg(ap, str_type), \
# hex(<int>va_arg(ap, str_type))
for
i
in
range
(
nargs
):
termname
=
<
char
*>
va_arg
(
ap
,
str_type
)
PyList_SetItem
(
names
,
i
,
termname
)
Py_INCREF
(
termname
)
val
=
<
void
*>
va_arg
(
ap
,
void_type
)
valobj
=
<
object
>
val
if
val
:
valobj
=
<
object
>
val
else
:
valobj
=
None
PyList_SetItem
(
values
,
i
,
valobj
)
Py_INCREF
(
valobj
)
...
...
@@ -114,6 +112,8 @@ cdef public object py_callback(object parser, char *target, int option, \
#signal.signal(signal.SIGALRM, parser.handle_timeout)
#signal.alarm(parser.timeout)
va_end
(
ap
)
res
=
parser
.
_handle
(
target
,
option
,
names
,
values
)
#signal.alarm(0)
...
...
@@ -121,8 +121,6 @@ cdef public object py_callback(object parser, char *target, int option, \
#if parser.verbose:
# print 'py_callback: handler returned:', res
va_end
(
ap
)
return
res
# callback routine for reading input
...
...
@@ -140,6 +138,12 @@ cdef public void py_input(object parser, char *buf, int *result, int max_size):
if
parser
.
verbose
:
print
'
\
n
py_input: got %s bytes'
%
buflen
if
buflen
==
0
and
parser
.
file
:
# Marks the Python file object as being closed from Python's point of
# view. This does not close the associated C stream (which is not
# necessary here, otherwise use "os.close(0)").
parser
.
file
.
close
()
import
sys
,
os
,
sha
,
re
,
imp
,
traceback
import
shutil
...
...
@@ -269,6 +273,42 @@ cdef class ParserEngine:
if
parser
.
verbose
:
print
'Successfully loaded library'
def
generate_exception_handler
(
self
):
s
=
''
#s = s + ' if ($$ && $$ != Py_None && PyObject_HasAttrString($$, "_pyBisonError"))\n'
#s = s + ' {\n'
#s = s + ' yyerror(PyString_AsString(PyObject_GetAttrString(py_parser, "lasterror")));\n'
#s = s + ' Py_INCREF(Py_None);\n'
#s = s + ' YYERROR;\n'
#s = s + ' }\n'
s
+=
' if ($$ && $$ != Py_None)
\
n
'
s
+=
' {
\
n
'
s
+=
' if (PyObject_HasAttrString($$, "_pyBisonError"))
\
n
'
s
+=
' {
\
n
'
s
+=
' //PyObject* lasterror = PyObject_GetAttrString(py_parser, "lasterror");
\
n
'
s
+=
' //if (lasterror && PyString_Check(lasterror))
\
n
'
s
+=
' // yyerror(PyString_AsString(lasterror));
\
n
'
s
+=
' //else
\
n
'
s
+=
' // yyerror("No
\
\
"lasterror
\
\
" attribute set in BisonError or not a string");
\
n
'
s
+=
' Py_INCREF(Py_None);
\
n
'
s
+=
' YYERROR;
\
n
'
s
+=
' }
\
n
'
s
+=
' }
\
n
'
#s += ' else\n'
#s += ' {\n'
#s += ' PyObject* obj = PyErr_Occurred();\n'
#s += ' if (obj)\n'
#s += ' {\n'
#s += ' fprintf(stderr, "exception caught in bison_:\\n");\n'
#s += ' PyErr_Print();\n'
#s += ' YYERROR;\n'
#s += ' }\n'
#s += ' }\n'
return
s
def
buildLib
(
self
):
"""
Creates the parser engine lib
...
...
@@ -322,7 +362,6 @@ cdef class ParserEngine:
"%{"
,
''
,
'#include "Python.h"'
,
"#include <stdio.h>"
,
"extern FILE *yyin;"
,
"extern int yylineno;"
"extern char *yytext;"
,
...
...
@@ -415,7 +454,7 @@ cdef class ParserEngine:
# now, we have the correct terms count
action = action % (i + 1)
# assemble the full rule + action, ad to list
# assemble the full rule + action, ad
d
to list
action = action + "
,
\
n
"
action = action + "
,
\
n
".join(args) + "
\
n
);
\
n
"
...
...
@@ -424,13 +463,10 @@ cdef class ParserEngine:
action
=
action
+
" Py_INCREF(Py_None);
\
n
"
action
=
action
+
" yyclearin;
\
n
"
action
=
action
+
" if ($$ && $$ != Py_None && PyObject_HasAttrString($$,
\
"
_pyBisonError
\
"
))
\
n
"
action
=
action
+
" {
\
n
"
action
=
action
+
" yyerror(PyString_AsString(PyObject_GetAttrString(py_parser,
\
"
lasterror
\
"
)));
\
n
"
action
=
action
+
" Py_INCREF(Py_None);
\
n
"
action
=
action
+
" YYERROR;
\
n
"
action
=
action
+
" }
\
n
"
action
=
action
+
" }
\
n
"
action
=
action
+
self
.
generate_exception_handler
()
action
=
action
+
' }
\
n
'
options
.
append
(
" "
.
join
(
option
)
+
action
)
idx
=
idx
+
1
write
(
" | "
.
join
(
options
)
+
" ;
\
n
\
n
"
)
...
...
src/python/bison.py
View file @
260359e3
This diff is collapsed.
Click to expand it.
src/python/convert.py
0 → 100644
View file @
260359e3
This diff is collapsed.
Click to expand it.
utils/bison2py.py
View file @
260359e3
#@+leo-ver=4
#@+node:@file utils/bison2py.py
#@@language python
#!/usr/bin/env python
"""
Utility which creates a boilerplate pybison-compatible
python file from a yacc file and lex file
...
...
@@ -9,27 +6,20 @@ python file from a yacc file and lex file
Run it with 2 arguments - filename.y and filename.l
Output is filename.py
"""
#@+others
#@+node:imports
import
sys
,
os
,
re
,
getopt
import
sys
from
bison
import
bisonToPython
#@-node:imports
#@+node:globals
argv
=
sys
.
argv
argc
=
len
(
argv
)
progname
=
argv
[
0
]
reSpaces
=
re
.
compile
(
"
\
\
s+"
)
#@-node:globals
#@+node:usage
def
usage
(
s
=
None
):
"""
Display usage info and exit
"""
progname
=
sys
.
argv
[
0
]
if
s
:
print
progname
+
": "
+
s
print
"
\
n
"
.
join
([
"Usage: %s [-c] basefilename"
%
progname
,
" or: %s [-c] grammarfile.y lexfile.l pyfile.py"
%
progname
,
...
...
@@ -42,16 +32,16 @@ def usage(s=None):
'The "-c" argument causes the creation of a unique node class'
,
'for each parse target - highly recommended for complex grammars'
,
])
sys
.
exit
(
1
)
#@-node:usage
#@+node:main
def
main
():
"""
Command-line interface for bison2py
"""
global
argc
,
argv
argv
=
sys
.
argv
argc
=
len
(
argv
)
if
'-c'
in
argv
:
generateClasses
=
1
...
...
@@ -69,14 +59,9 @@ def main():
bisonfile
,
lexfile
,
pyfile
=
argv
[
1
:
4
]
else
:
usage
(
"Bad argument count"
)
bisonToPython
(
bisonfile
,
lexfile
,
pyfile
,
generateClasses
)
#@-node:main
#@+node:MAINLINE
if
__name__
==
'__main__'
:
main
()
#@-node:MAINLINE
#@-others
#@-node:@file utils/bison2py.py
#@-leo
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment