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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Xavier Thompson
cython
Commits
1a25a1d7
Commit
1a25a1d7
authored
May 25, 2020
by
Xavier Thompson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WIP method wrapping - join to tree
parent
4d79c492
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
79 additions
and
6 deletions
+79
-6
Cython/Compiler/CypclassWrapper.py
Cython/Compiler/CypclassWrapper.py
+1
-1
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+78
-5
No files found.
Cython/Compiler/CypclassWrapper.py
View file @
1a25a1d7
...
...
@@ -580,7 +580,7 @@ def generate_cyp_class_wrapper_definition(type, wrapper_entry, constructor_entry
# initialise PyObject fields
if
is_new_return_type
and
type
.
wrapper_type
:
code
.
putln
(
"if(self) {"
)
code
.
putln
(
"self->ob_cypyobject = new
CyPyObject(); // for now"
)
code
.
putln
(
"self->ob_cypyobject = new
%s();"
%
type
.
wrapper_type
.
module_name
)
code
.
putln
(
"self->ob_cypyobject->ob_refcnt = 0;"
)
code
.
putln
(
"self->ob_cypyobject->ob_type = %s;"
%
type
.
wrapper_type
.
typeptr_cname
)
code
.
putln
(
"}"
)
...
...
Cython/Compiler/Nodes.py
View file @
1a25a1d7
...
...
@@ -1513,6 +1513,7 @@ class CppClassNode(CStructOrUnionDefNode, BlockNode):
scope
=
None
template_types
=
None
cyp_wrapper
=
None
# child_attrs = ['attributes', 'cyp_wrapper']
def
declare
(
self
,
env
):
if
not
env
.
is_cpp
():
...
...
@@ -1645,7 +1646,13 @@ class CppClassNode(CStructOrUnionDefNode, BlockNode):
# the underlying cyobject must come first thing after PyObject_HEAD in the memory layout
# long term, only the base class will declare the underlying attribute
underlying_cyobject
=
self
.
synthesise_underlying_cyobject_attribute
(
env
)
cclass_body
=
StatListNode
(
pos
=
self
.
pos
,
stats
=
[
underlying_cyobject
])
stats
=
[
underlying_cyobject
]
for
attr
in
self
.
attributes
:
if
isinstance
(
attr
,
CFuncDefNode
):
py_method_wrapper
=
self
.
synthesise_cypclass_method_wrapper
(
attr
)
if
py_method_wrapper
:
stats
.
append
(
py_method_wrapper
)
cclass_body
=
StatListNode
(
pos
=
self
.
pos
,
stats
=
stats
)
else
:
cclass_body
=
None
...
...
@@ -1670,10 +1677,13 @@ class CppClassNode(CStructOrUnionDefNode, BlockNode):
wrapper
.
declare
(
module_scope
)
if
self
.
scope
:
wrapper
.
analyse_declarations
(
module_scope
)
self
.
entry
.
type
.
wrapper_type
=
wrapper
.
entry
.
type
wrapper
.
entry
.
type
.
is_cyp_wrapper
=
1
self
.
cyp_wrapper
=
wrapper
self
.
_cyp_wrapper_analysed
=
1
self
.
cyp_wrapper
=
wrapper
self
.
entry
.
type
.
wrapper_type
=
wrapper
.
entry
.
type
wrapper
.
entry
.
type
.
is_cyp_wrapper
=
1
underlying_name
=
"nogil_cyobject"
def
synthesise_underlying_cyobject_attribute
(
self
,
env
):
nested_path
=
[]
if
env
.
is_module_scope
else
env
.
qualified_name
.
split
(
"."
)
...
...
@@ -1689,7 +1699,7 @@ class CppClassNode(CStructOrUnionDefNode, BlockNode):
templates
=
None
)
underlying_name_declarator
=
CNameDeclaratorNode
(
self
.
pos
,
name
=
"nogil_cyobject"
,
cname
=
None
)
underlying_name_declarator
=
CNameDeclaratorNode
(
self
.
pos
,
name
=
self
.
underlying_name
,
cname
=
None
)
underlying_cyobject
=
CVarDefNode
(
pos
=
self
.
pos
,
...
...
@@ -1704,13 +1714,76 @@ class CppClassNode(CStructOrUnionDefNode, BlockNode):
)
return
underlying_cyobject
# cypclass entries that take on a special name: reverse mapping
cycplass_special_entry_names
=
{
"<init>"
:
"__init__"
}
def
synthesise_cypclass_method_wrapper
(
self
,
cfunc_method
):
if
cfunc_method
.
is_static_method
:
return
# for now skip static methods
cfunc_declarator
=
cfunc_method
.
cfunc_declarator
py_name
=
cfunc_method
.
entry
.
name
# transform e.g. <init> back into __init__
try
:
py_name
=
self
.
cycplass_special_entry_names
[
py_name
]
except
KeyError
:
pass
py_args
=
cfunc_declarator
.
args
py_doc
=
cfunc_method
.
doc
arg_names
=
[
arg
.
name
for
arg
in
py_args
]
# C++ methods have an implict 'this', so the 'self' argument is skipped in the declarator
skipped_self
=
cfunc_method
.
cfunc_declarator
.
skipped_self
if
not
skipped_self
:
print
(
"Non static cypclass method without self argument ... ??"
)
# should not happen
return
from
.
import
ExprNodes
self_name
,
self_type
,
self_pos
,
self_arg
=
skipped_self
type_entry
=
self_type
.
entry
type_arg
=
ExprNodes
.
NameNode
(
self
.
pos
,
name
=
type_entry
.
name
)
type_arg
.
entry
=
type_entry
cfunc
=
ExprNodes
.
AttributeNode
(
cfunc_method
.
pos
,
obj
=
type_arg
,
attribute
=
self
.
underlying_name
)
c_call
=
ExprNodes
.
SimpleCallNode
(
cfunc_method
.
pos
,
function
=
cfunc
,
args
=
[
ExprNodes
.
NameNode
(
cfunc_method
.
pos
,
name
=
n
)
for
n
in
arg_names
]
)
py_body
=
ReturnStatNode
(
pos
=
cfunc_method
.
pos
,
return_type
=
PyrexTypes
.
py_object_type
,
value
=
c_call
)
return
DefNode
(
cfunc_method
.
pos
,
name
=
py_name
,
args
=
py_args
,
star_arg
=
None
,
starstar_arg
=
None
,
doc
=
py_doc
,
body
=
py_body
,
decorators
=
None
,
is_async_def
=
0
,
return_type_annotation
=
None
)
def
analyse_expressions
(
self
,
env
):
self
.
body
=
self
.
body
.
analyse_expressions
(
self
.
entry
.
type
.
scope
)
if
self
.
cyp_wrapper
:
self
.
cyp_wrapper
.
analyse_expressions
(
env
.
global_scope
())
return
self
def
generate_function_definitions
(
self
,
env
,
code
):
self
.
body
.
generate_function_definitions
(
self
.
entry
.
type
.
scope
,
code
)
if
self
.
cyp_wrapper
:
self
.
cyp_wrapper
.
generate_function_definitions
(
env
.
global_scope
(),
code
)
def
generate_execution_code
(
self
,
code
):
self
.
body
.
generate_execution_code
(
code
)
...
...
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