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
80e6eced
Commit
80e6eced
authored
Jun 27, 2020
by
Xavier Thompson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Let cclass wrapper tp_new build the underlying cypclass
parent
8535c379
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
33 additions
and
4 deletions
+33
-4
Cython/Compiler/ModuleNode.py
Cython/Compiler/ModuleNode.py
+23
-0
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+3
-0
Cython/Compiler/PyrexTypes.py
Cython/Compiler/PyrexTypes.py
+2
-0
Cython/Compiler/TypeSlots.py
Cython/Compiler/TypeSlots.py
+2
-1
Cython/Utility/CyObjects.cpp
Cython/Utility/CyObjects.cpp
+3
-3
No files found.
Cython/Compiler/ModuleNode.py
View file @
80e6eced
...
@@ -1557,6 +1557,29 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
...
@@ -1557,6 +1557,29 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
"static PyObject *%s(PyTypeObject *t, %sPyObject *a, %sPyObject *k) {"
%
(
"static PyObject *%s(PyTypeObject *t, %sPyObject *a, %sPyObject *k) {"
%
(
slot_func
,
unused_marker
,
unused_marker
))
slot_func
,
unused_marker
,
unused_marker
))
# for cyp wrappers, just allocate the cyobject and return the wrapper
# let the wrapped __init__ handle initialisation
if
type
.
is_cyp_wrapper
:
from
.CypclassWrapper
import
generate_cypclass_wrapper_allocation
code
.
putln
(
"if (t != %s) {"
%
type
.
typeptr_cname
)
code
.
putln
(
"PyErr_SetString(PyExc_TypeError,
\
"
Cannot build a subtype of %s with %s.__new__
\
"
);"
%
(
scope
.
qualified_name
,
scope
.
qualified_name
)
)
code
.
putln
(
"return NULL;"
)
code
.
putln
(
"}"
)
code
.
putln
(
"CyObject * self = %s();"
%
type
.
wrapped_alloc
)
generate_cypclass_wrapper_allocation
(
code
,
type
)
code
.
putln
(
"PyObject* wrapper = reinterpret_cast<PyObject *>(static_cast<%s *>(self));"
%
Naming
.
cypclass_wrapper_layout_type
)
code
.
putln
(
"Py_INCREF(wrapper);"
)
code
.
putln
(
"return wrapper;"
)
code
.
putln
(
"}"
)
return
need_self_cast
=
(
type
.
vtabslot_cname
or
need_self_cast
=
(
type
.
vtabslot_cname
or
(
py_buffers
or
memoryview_slices
or
py_attrs
)
or
(
py_buffers
or
memoryview_slices
or
py_attrs
)
or
cpp_class_attrs
or
cyp_class_attrs
)
cpp_class_attrs
or
cyp_class_attrs
)
...
...
Cython/Compiler/Nodes.py
View file @
80e6eced
...
@@ -5557,6 +5557,9 @@ class CypclassWrapperDefNode(CClassDefNode):
...
@@ -5557,6 +5557,9 @@ class CypclassWrapperDefNode(CClassDefNode):
self
.
wrapped_cypclass
.
entry
.
type
.
wrapper_type
=
self
.
entry
.
type
self
.
wrapped_cypclass
.
entry
.
type
.
wrapper_type
=
self
.
entry
.
type
# > remember the declaration of the wrapped type
# > remember the declaration of the wrapped type
self
.
entry
.
type
.
wrapped_cname
=
self
.
wrapped_cypclass
.
entry
.
type
.
empty_declaration_code
()
self
.
entry
.
type
.
wrapped_cname
=
self
.
wrapped_cypclass
.
entry
.
type
.
empty_declaration_code
()
# > remember the cname of the wrapped type allocation function
alloc_entry
=
self
.
wrapped_cypclass
.
entry
.
type
.
scope
.
lookup_here
(
"<alloc>"
)
self
.
entry
.
type
.
wrapped_alloc
=
alloc_entry
.
func_cname
class
PropertyNode
(
StatNode
):
class
PropertyNode
(
StatNode
):
...
...
Cython/Compiler/PyrexTypes.py
View file @
80e6eced
...
@@ -1500,12 +1500,14 @@ class PyExtensionType(PyObjectType):
...
@@ -1500,12 +1500,14 @@ class PyExtensionType(PyObjectType):
# defered_declarations [thunk] Used to declare class hierarchies in order
# defered_declarations [thunk] Used to declare class hierarchies in order
# check_size 'warn', 'error', 'ignore' What to do if tp_basicsize does not match
# check_size 'warn', 'error', 'ignore' What to do if tp_basicsize does not match
# wrapped_cname string or None The full namespace declaration of the wrapped type when this is a cyp_wrapper
# wrapped_cname string or None The full namespace declaration of the wrapped type when this is a cyp_wrapper
# wrapped_alloc string or None The cname of the wrapped type allocation function when this is a cyp_wrapper
is_extension_type
=
1
is_extension_type
=
1
has_attributes
=
1
has_attributes
=
1
early_init
=
1
early_init
=
1
wrapper_cname
=
None
wrapper_cname
=
None
wrapped_alloc
=
None
objtypedef_cname
=
None
objtypedef_cname
=
None
...
...
Cython/Compiler/TypeSlots.py
View file @
80e6eced
...
@@ -432,7 +432,8 @@ class ConstructorSlot(InternalMethodSlot):
...
@@ -432,7 +432,8 @@ class ConstructorSlot(InternalMethodSlot):
and
not
scope
.
has_pyobject_attrs
and
not
scope
.
has_pyobject_attrs
and
not
scope
.
has_memoryview_attrs
and
not
scope
.
has_memoryview_attrs
and
not
scope
.
has_cpp_class_attrs
and
not
scope
.
has_cpp_class_attrs
and
not
(
self
.
slot_name
==
'tp_new'
and
scope
.
parent_type
.
vtabslot_cname
)):
and
not
(
self
.
slot_name
==
'tp_new'
and
scope
.
parent_type
.
vtabslot_cname
)
and
not
(
self
.
slot_name
==
'tp_new'
and
scope
.
parent_type
.
is_cyp_wrapper
)):
entry
=
scope
.
lookup_here
(
self
.
method
)
if
self
.
method
else
None
entry
=
scope
.
lookup_here
(
self
.
method
)
if
self
.
method
else
None
if
not
(
entry
and
entry
.
is_special
):
if
not
(
entry
and
entry
.
is_special
):
return
False
return
False
...
...
Cython/Utility/CyObjects.cpp
View file @
80e6eced
...
@@ -209,16 +209,16 @@
...
@@ -209,16 +209,16 @@
static
inline
U
*
__Pyx_PyObject_AsCyObject
(
PyObject
*
ob
,
PyTypeObject
*
type
)
{
static
inline
U
*
__Pyx_PyObject_AsCyObject
(
PyObject
*
ob
,
PyTypeObject
*
type
)
{
// the PyObject is not of the expected type
// the PyObject is not of the expected type
if
(
ob
->
ob_type
!=
type
)
{
if
(
ob
->
ob_type
!=
type
)
{
PyErr_
SetString
(
PyExc_TypeError
,
"Conversion Error: Could not convert to CyObject"
);
PyErr_
Format
(
PyExc_TypeError
,
"Cannot convert PyObject %s to CyObject %s"
,
ob
->
ob_type
->
tp_name
,
type
->
tp_name
);
return
NULL
;
return
NULL
;
}
}
CyPyObject
*
wrapper
=
(
CyPyObject
*
)
ob
;
CyPyObject
*
wrapper
=
(
CyPyObject
*
)
ob
;
U
*
underlying
=
dynamic_cast
<
U
*>
(
static_cast
<
CyObject
*>
(
wrapper
));
U
*
underlying
=
dynamic_cast
<
U
*>
(
static_cast
<
CyObject
*>
(
wrapper
));
//
no underlying cyobject: shouldn't happen, playing it safe for now
//
failed dynamic cast: should not happen
if
(
underlying
==
NULL
)
{
if
(
underlying
==
NULL
)
{
PyErr_
SetString
(
PyExc_TypeError
,
"Conversion Error: CyObject wrapper has no underlying CyObject"
);
PyErr_
Format
(
PyExc_TypeError
,
"Could not convert %s PyObject wrapper to its underlying CyObject"
,
type
->
tp_name
);
return
NULL
;
return
NULL
;
}
}
...
...
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