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
a77e6e59
Commit
a77e6e59
authored
Jun 21, 2020
by
Xavier Thompson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make TreeFragment handle declarators, base types, attributes and typecasts as well
parent
3b21e9e9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
106 additions
and
3 deletions
+106
-3
Cython/Compiler/Tests/TestTreeFragment.py
Cython/Compiler/Tests/TestTreeFragment.py
+76
-0
Cython/Compiler/TreeFragment.py
Cython/Compiler/TreeFragment.py
+30
-3
No files found.
Cython/Compiler/Tests/TestTreeFragment.py
View file @
a77e6e59
from
Cython.TestUtils
import
CythonTest
from
Cython.TestUtils
import
CythonTest
from
Cython.Compiler.TreeFragment
import
*
from
Cython.Compiler.TreeFragment
import
*
from
Cython.Compiler.Nodes
import
*
from
Cython.Compiler.Nodes
import
*
from
Cython.Compiler.ExprNodes
import
*
from
Cython.Compiler.UtilNodes
import
*
from
Cython.Compiler.UtilNodes
import
*
import
Cython.Compiler.Naming
as
Naming
import
Cython.Compiler.Naming
as
Naming
...
@@ -59,6 +60,81 @@ class TestTreeFragments(CythonTest):
...
@@ -59,6 +60,81 @@ class TestTreeFragments(CythonTest):
self
.
assertTrue
(
isinstance
(
s
[
1
].
rhs
,
TempRefNode
))
self
.
assertTrue
(
isinstance
(
s
[
1
].
rhs
,
TempRefNode
))
self
.
assertTrue
(
s
[
0
].
expr
.
handle
is
s
[
1
].
rhs
.
handle
)
self
.
assertTrue
(
s
[
0
].
expr
.
handle
is
s
[
1
].
rhs
.
handle
)
def
test_declarator
(
self
):
F
=
self
.
fragment
(
u"cdef int NAME"
)
declarator
=
CNameDeclaratorNode
(
pos
=
None
,
name
=
"a"
)
T
=
F
.
substitute
({
"NAME"
:
declarator
})
self
.
assertTrue
(
isinstance
(
T
.
stats
[
0
],
CVarDefNode
),
T
)
self
.
assertTrue
(
isinstance
(
T
.
stats
[
0
].
declarators
[
0
],
CNameDeclaratorNode
),
T
)
self
.
assertTrue
(
T
.
stats
[
0
].
declarators
[
0
].
name
==
"a"
,
T
)
def
test_simple_base_type
(
self
):
F
=
self
.
fragment
(
u"cdef TYPE a"
)
base_type
=
CSimpleBaseTypeNode
(
pos
=
None
,
name
=
"int"
,
module_path
=
[],
is_basic_c_type
=
1
,
signed
=
1
,
complex
=
0
,
longness
=
0
,
is_self_arg
=
0
,
templates
=
None
)
T
=
F
.
substitute
({
"TYPE"
:
base_type
})
self
.
assertTrue
(
isinstance
(
T
.
stats
[
0
],
CVarDefNode
),
T
)
self
.
assertTrue
(
isinstance
(
T
.
stats
[
0
].
base_type
,
CSimpleBaseTypeNode
),
T
)
self
.
assertTrue
(
T
.
stats
[
0
].
base_type
.
name
==
"int"
,
T
)
def
test_typecast
(
self
):
F
=
self
.
fragment
(
u"a = <TYPE> b"
)
T1
=
F
.
substitute
({
"TYPE"
:
PyrexTypes
.
c_int_type
})
self
.
assertTrue
(
isinstance
(
T1
.
stats
[
0
],
SingleAssignmentNode
),
T1
)
self
.
assertTrue
(
isinstance
(
T1
.
stats
[
0
].
rhs
,
TypecastNode
),
T1
)
self
.
assertTrue
(
T1
.
stats
[
0
].
rhs
.
type
is
PyrexTypes
.
c_int_type
,
T1
)
self
.
assertTrue
(
isinstance
(
T1
.
stats
[
0
].
rhs
.
operand
,
NameNode
),
T1
)
self
.
assertTrue
(
T1
.
stats
[
0
].
rhs
.
operand
.
name
==
"b"
,
T1
)
base_type
=
CSimpleBaseTypeNode
(
pos
=
None
,
name
=
"int"
,
module_path
=
[],
is_basic_c_type
=
1
,
signed
=
1
,
complex
=
0
,
longness
=
0
,
is_self_arg
=
0
,
templates
=
None
)
T2
=
F
.
substitute
({
"TYPE"
:
base_type
})
self
.
assertTrue
(
isinstance
(
T2
.
stats
[
0
],
SingleAssignmentNode
),
T2
)
self
.
assertTrue
(
isinstance
(
T2
.
stats
[
0
].
rhs
,
TypecastNode
),
T2
)
self
.
assertTrue
(
isinstance
(
T2
.
stats
[
0
].
rhs
.
base_type
,
CSimpleBaseTypeNode
),
T2
)
self
.
assertTrue
(
T2
.
stats
[
0
].
rhs
.
base_type
.
name
==
"int"
,
T2
)
self
.
assertTrue
(
isinstance
(
T2
.
stats
[
0
].
rhs
.
declarator
,
CNameDeclaratorNode
),
T2
)
self
.
assertTrue
(
T2
.
stats
[
0
].
rhs
.
declarator
.
name
==
""
,
T2
)
self
.
assertTrue
(
isinstance
(
T2
.
stats
[
0
].
rhs
.
operand
,
NameNode
),
T2
)
self
.
assertTrue
(
T2
.
stats
[
0
].
rhs
.
operand
.
name
==
"b"
,
T2
)
typecast
=
TypecastNode
(
pos
=
None
,
base_type
=
base_type
,
declarator
=
CNameDeclaratorNode
(
pos
=
None
,
name
=
EncodedString
(
""
),
cname
=
None
),
operand
=
NameNode
(
pos
=
None
,
name
=
"c"
)
)
T3
=
F
.
substitute
({
"TYPE"
:
typecast
})
self
.
assertTrue
(
isinstance
(
T3
.
stats
[
0
],
SingleAssignmentNode
),
T3
)
self
.
assertTrue
(
isinstance
(
T3
.
stats
[
0
].
rhs
,
TypecastNode
),
T3
)
self
.
assertTrue
(
isinstance
(
T3
.
stats
[
0
].
rhs
.
base_type
,
CSimpleBaseTypeNode
),
T3
)
self
.
assertTrue
(
T3
.
stats
[
0
].
rhs
.
base_type
.
name
==
"int"
,
T3
)
self
.
assertTrue
(
isinstance
(
T3
.
stats
[
0
].
rhs
.
declarator
,
CNameDeclaratorNode
),
T3
)
self
.
assertTrue
(
T3
.
stats
[
0
].
rhs
.
declarator
.
name
==
""
,
T3
)
self
.
assertTrue
(
isinstance
(
T3
.
stats
[
0
].
rhs
.
operand
,
NameNode
),
T3
)
self
.
assertTrue
(
T3
.
stats
[
0
].
rhs
.
operand
.
name
==
"c"
,
T3
)
def
test_attribute
(
self
):
F
=
self
.
fragment
(
u"OBJ.ATTR"
)
base_type
=
CSimpleBaseTypeNode
(
pos
=
None
,
name
=
"int"
,
module_path
=
[],
is_basic_c_type
=
1
,
signed
=
1
,
complex
=
0
,
longness
=
0
,
is_self_arg
=
0
,
templates
=
None
)
T
=
F
.
substitute
({
"OBJ"
:
NameNode
(
pos
=
None
,
name
=
"x"
),
"ATTR"
:
"y"
})
self
.
assertTrue
(
isinstance
(
T
.
stats
[
0
],
ExprStatNode
),
T
)
self
.
assertTrue
(
isinstance
(
T
.
stats
[
0
].
expr
,
AttributeNode
),
T
)
self
.
assertTrue
(
isinstance
(
T
.
stats
[
0
].
expr
.
obj
,
NameNode
),
T
)
self
.
assertTrue
(
T
.
stats
[
0
].
expr
.
obj
.
name
==
"x"
,
T
)
self
.
assertTrue
(
T
.
stats
[
0
].
expr
.
attribute
==
"y"
,
T
)
if
__name__
==
"__main__"
:
if
__name__
==
"__main__"
:
import
unittest
import
unittest
unittest
.
main
()
unittest
.
main
()
Cython/Compiler/TreeFragment.py
View file @
a77e6e59
...
@@ -15,9 +15,9 @@ from .Scanning import PyrexScanner, StringSourceDescriptor
...
@@ -15,9 +15,9 @@ from .Scanning import PyrexScanner, StringSourceDescriptor
from
.Symtab
import
ModuleScope
from
.Symtab
import
ModuleScope
from
.
import
PyrexTypes
from
.
import
PyrexTypes
from
.Visitor
import
VisitorTransform
from
.Visitor
import
VisitorTransform
from
.Nodes
import
Node
,
StatListNode
from
.Nodes
import
Node
,
StatListNode
,
CSimpleBaseTypeNode
,
CNameDeclaratorNode
from
.ExprNodes
import
NameNode
from
.ExprNodes
import
NameNode
,
TypecastNode
from
.StringEncoding
import
_unicode
from
.StringEncoding
import
_unicode
,
EncodedString
from
.
import
Parsing
from
.
import
Parsing
from
.
import
Main
from
.
import
Main
from
.
import
UtilNodes
from
.
import
UtilNodes
...
@@ -188,6 +188,33 @@ class TemplateTransform(VisitorTransform):
...
@@ -188,6 +188,33 @@ class TemplateTransform(VisitorTransform):
else
:
else
:
return
self
.
try_substitution
(
node
,
node
.
name
)
return
self
.
try_substitution
(
node
,
node
.
name
)
def
visit_CNameDeclaratorNode
(
self
,
node
):
return
self
.
try_substitution
(
node
,
node
.
name
)
def
visit_CSimpleBaseTypeNode
(
self
,
node
):
return
self
.
try_substitution
(
node
,
node
.
name
)
def
visit_TypecastNode
(
self
,
node
):
ret
=
self
.
visit_Node
(
node
)
sub
=
self
.
substitutions
.
get
(
node
.
base_type
.
name
)
if
isinstance
(
sub
,
TypecastNode
):
return
sub
elif
isinstance
(
sub
,
PyrexTypes
.
BaseType
):
ret
.
type
=
sub
elif
isinstance
(
sub
,
CSimpleBaseTypeNode
):
ret
.
base_type
=
sub
ret
.
declarator
=
CNameDeclaratorNode
(
pos
=
node
.
pos
,
name
=
EncodedString
(
""
),
cname
=
None
)
return
ret
def
visit_AttributeNode
(
self
,
node
):
ret
=
self
.
visit_Node
(
node
)
sub
=
self
.
substitutions
.
get
(
node
.
attribute
)
if
isinstance
(
sub
,
EncodedString
):
ret
.
attribute
=
sub
elif
isinstance
(
sub
,
str
):
ret
.
attribute
=
EncodedString
(
sub
)
return
ret
def
visit_ExprStatNode
(
self
,
node
):
def
visit_ExprStatNode
(
self
,
node
):
# If an expression-as-statement consists of only a replaceable
# If an expression-as-statement consists of only a replaceable
# NameNode, we replace the entire statement, not only the NameNode
# NameNode, we replace the entire statement, not only the NameNode
...
...
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