Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
f9b8f893
Commit
f9b8f893
authored
Nov 12, 2008
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed bug in Visitor cache, reduces lxml compile time by ~20%
parent
cac97e27
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
12 deletions
+19
-12
Cython/Compiler/Visitor.py
Cython/Compiler/Visitor.py
+19
-12
No files found.
Cython/Compiler/Visitor.py
View file @
f9b8f893
...
...
@@ -14,26 +14,33 @@ class BasicVisitor(object):
# instance.
def
__init__
(
self
):
self
.
dispatch_table
=
{}
def
visit
(
self
,
obj
):
cls
=
obj
.
__class__
m
=
self
.
dispatch_table
.
get
(
cls
.
__name__
)
if
m
is
None
:
cls
=
type
(
obj
)
try
:
handler_method
=
self
.
dispatch_table
[
cls
]
except
KeyError
:
#print "Cache miss for class %s in visitor %s" % (
# cls.__name__, type(self).__name__)
# Must resolve, try entire hierarchy
pattern
=
"visit_%s"
mro
=
inspect
.
getmro
(
cls
)
for
cls
in
mro
:
m
=
getattr
(
self
,
pattern
%
cls
.
__name__
,
None
)
if
m
is
not
None
:
for
mro_
cls
in
mro
:
try
:
handler_method
=
getattr
(
self
,
pattern
%
mro_cls
.
__name__
)
break
except
AttributeError
:
pass
else
:
print
type
(
self
),
type
(
obj
)
print
self
.
access_path
print
self
.
access_path
[
-
1
][
0
].
pos
print
self
.
access_path
[
-
1
][
0
].
__dict__
if
hasattr
(
self
,
'access_path'
):
print
self
.
access_path
print
self
.
access_path
[
-
1
][
0
].
pos
print
self
.
access_path
[
-
1
][
0
].
__dict__
raise
RuntimeError
(
"Visitor does not accept object: %s"
%
obj
)
self
.
dispatch_table
[
cls
.
__name__
]
=
m
return
m
(
obj
)
#print "Caching " + cls.__name__
self
.
dispatch_table
[
cls
]
=
handler_method
return
handler_method
(
obj
)
class
TreeVisitor
(
BasicVisitor
):
"""
...
...
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