Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
A
arpeggio-gm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
backend
arpeggio-gm
Commits
c66bde4b
Commit
c66bde4b
authored
Oct 14, 2014
by
Igor Dejanovic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Optimization. Reduced number of ws and comments matching.
parent
50263e26
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
38 deletions
+38
-38
__init__.py
arpeggio/__init__.py
+38
-38
No files found.
arpeggio/__init__.py
View file @
c66bde4b
...
@@ -181,39 +181,8 @@ class ParsingExpression(object):
...
@@ -181,39 +181,8 @@ class ParsingExpression(object):
processed
.
add
(
node
)
processed
.
add
(
node
)
node
.
clear_cache
(
processed
)
node
.
clear_cache
(
processed
)
def
_parse_intro
(
self
,
parser
):
if
parser
.
debug
:
print
(
">> Entering rule {} in {} at position {} => {}"
.
format
(
self
.
name
,
parser
.
in_rule
,
parser
.
position
,
parser
.
context
()))
parser
.
_in_parse_intro
=
True
# Skip whitespaces and parse comments if we are not
# in the lexical rule
if
not
parser
.
_in_lex_rule
:
parser
.
_skip_ws
()
if
parser
.
comments_model
and
not
parser
.
_in_parse_comment
:
parser
.
_in_parse_comment
=
True
try
:
while
True
:
parser
.
comments
.
append
(
parser
.
comments_model
.
parse
(
parser
))
parser
.
_skip_ws
()
except
NoMatch
:
# NoMatch in comment matching is perfectly
# legal and no action should be taken.
pass
finally
:
parser
.
_in_parse_comment
=
False
parser
.
_in_parse_intro
=
False
def
parse
(
self
,
parser
):
def
parse
(
self
,
parser
):
if
not
parser
.
_in_parse_intro
:
self
.
_parse_intro
(
parser
)
# Current position could change in recursive calls
# Current position could change in recursive calls
# so save it.
# so save it.
c_pos
=
parser
.
position
c_pos
=
parser
.
position
...
@@ -285,7 +254,7 @@ class ParsingExpression(object):
...
@@ -285,7 +254,7 @@ class ParsingExpression(object):
# If the result is not parse tree node it must be a plain list
# If the result is not parse tree node it must be a plain list
# so create a new NonTerminal.
# so create a new NonTerminal.
if
not
isinstance
(
result
,
ParseTreeNode
):
if
not
isinstance
(
result
,
ParseTreeNode
):
result
=
NonTerminal
(
self
,
c_pos
,
result
)
result
=
NonTerminal
(
self
,
result
)
# Result caching for use by memoization.
# Result caching for use by memoization.
self
.
result_cache
[
c_pos
]
=
(
result
,
parser
.
position
)
self
.
result_cache
[
c_pos
]
=
(
result
,
parser
.
position
)
...
@@ -566,8 +535,37 @@ class Match(ParsingExpression):
...
@@ -566,8 +535,37 @@ class Match(ParsingExpression):
else
:
else
:
return
"
%
s(
%
s)"
%
(
self
.
__class__
.
__name__
,
self
.
to_match
)
return
"
%
s(
%
s)"
%
(
self
.
__class__
.
__name__
,
self
.
to_match
)
def
_parse_intro
(
self
,
parser
):
if
parser
.
debug
:
print
(
">> Entering rule {} in {} at position {} => {}"
.
format
(
self
.
name
,
parser
.
in_rule
,
parser
.
position
,
parser
.
context
()))
parser
.
_in_parse_intro
=
True
# Skip whitespaces and parse comments if we are not
# in the lexical rule
if
not
parser
.
_in_lex_rule
:
parser
.
_skip_ws
()
if
parser
.
comments_model
and
not
parser
.
_in_parse_comment
:
parser
.
_in_parse_comment
=
True
try
:
while
True
:
parser
.
comments
.
append
(
parser
.
comments_model
.
parse
(
parser
))
parser
.
_skip_ws
()
except
NoMatch
:
# NoMatch in comment matching is perfectly
# legal and no action should be taken.
pass
finally
:
parser
.
_in_parse_comment
=
False
parser
.
_in_parse_intro
=
False
def
parse
(
self
,
parser
):
def
parse
(
self
,
parser
):
self
.
_parse_intro
(
parser
)
if
not
parser
.
_in_parse_intro
:
self
.
_parse_intro
(
parser
)
try
:
try
:
match
=
self
.
_parse
(
parser
)
match
=
self
.
_parse
(
parser
)
...
@@ -832,8 +830,13 @@ class NonTerminal(ParseTreeNode, list):
...
@@ -832,8 +830,13 @@ class NonTerminal(ParseTreeNode, list):
This is used internally.
This is used internally.
"""
"""
def
__init__
(
self
,
rule
,
position
,
nodes
,
error
=
False
,
_filtered
=
False
):
def
__init__
(
self
,
rule
,
nodes
,
error
=
False
,
_filtered
=
False
):
# Inherit position from the first child node
position
=
nodes
[
0
]
.
position
super
(
NonTerminal
,
self
)
.
__init__
(
rule
,
position
,
error
)
super
(
NonTerminal
,
self
)
.
__init__
(
rule
,
position
,
error
)
self
.
extend
(
flatten
([
nodes
]))
self
.
extend
(
flatten
([
nodes
]))
self
.
_filtered
=
_filtered
self
.
_filtered
=
_filtered
...
@@ -893,10 +896,7 @@ class NonTerminal(ParseTreeNode, list):
...
@@ -893,10 +896,7 @@ class NonTerminal(ParseTreeNode, list):
nodes
.
append
(
n
)
nodes
.
append
(
n
)
rule
=
n
.
rule
rule
=
n
.
rule
# For expression NonTerminals instances position does not have
result
=
NonTerminal
(
rule
=
rule
,
nodes
=
nodes
,
_filtered
=
True
)
# any sense.
result
=
NonTerminal
(
rule
=
rule
,
position
=
None
,
nodes
=
nodes
,
_filtered
=
True
)
self
.
_expr_cache
[
rule_name
]
=
result
self
.
_expr_cache
[
rule_name
]
=
result
return
result
return
result
...
...
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