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
46c33960
Commit
46c33960
authored
Jun 13, 2019
by
gsamain
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleaner interface injection and code generation completion
parent
b69018ce
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
167 additions
and
77 deletions
+167
-77
Cython/Compiler/ModuleNode.py
Cython/Compiler/ModuleNode.py
+32
-19
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+8
-0
Cython/Compiler/Symtab.py
Cython/Compiler/Symtab.py
+91
-58
Cython/Utility/CyObjects.cpp
Cython/Utility/CyObjects.cpp
+36
-0
No files found.
Cython/Compiler/ModuleNode.py
View file @
46c33960
...
...
@@ -836,14 +836,6 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
for
wrapper_entry
in
wrapper
.
all_alternatives
():
if
wrapper_entry
.
used
or
entry
.
type
.
templates
:
self
.
generate_cyp_class_wrapper_definition
(
entry
.
type
,
wrapper_entry
,
constructor
,
new
,
alloc
,
code
)
self
.
generate_acthon_hacks
(
entry
,
code
)
def
generate_acthon_hacks
(
self
,
entry
,
code
):
# HACK !!!
if
entry
.
name
==
"ActhonResultInterface"
:
code
.
putln
(
"ActhonResultInterface::operator int() {"
)
code
.
putln
(
"return this->getIntResult();"
)
code
.
putln
(
"}"
)
def
generate_gcc33_hack
(
self
,
env
,
code
):
# Workaround for spurious warning generation in gcc 3.3
...
...
@@ -938,7 +930,7 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
code
.
put
(
"struct %s"
%
type
.
cname
)
if
type
.
base_classes
:
base_class_list
=
[
base_class
.
empty_declaration_code
()
for
base_class
in
type
.
base_classes
]
if
type
.
is_cyp_class
and
type
.
base_classes
[
-
1
]
is
cy_object_type
:
if
type
.
is_cyp_class
and
(
type
.
base_classes
[
-
1
]
is
cy_object_type
or
type
.
base_classes
[
-
1
].
name
==
"ActhonActivableClass"
)
:
base_class_list
[
-
1
]
=
"virtual "
+
base_class_list
[
-
1
]
base_class_decl
=
", public "
.
join
(
base_class_list
)
code
.
put
(
" : public %s"
%
base_class_decl
)
...
...
@@ -1110,6 +1102,7 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
code
.
putln
(
"}"
)
def
generate_cyp_class_activated_class
(
self
,
entry
,
code
):
result_interface_entry
=
entry
.
scope
.
lookup_here
(
"ActhonResultInterface"
)
# TODO: handle inheritance
code
.
putln
(
"struct %s::Activated : public CyObject {"
%
entry
.
type
.
empty_declaration_code
())
code
.
putln
(
"%s * _passive_self;"
%
entry
.
type
.
empty_declaration_code
())
...
...
@@ -1121,12 +1114,12 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
arg_cname_list
=
[
arg
.
cname
for
arg
in
reified_function_entry
.
type
.
args
]
args_code
=
", "
.
join
([
arg
.
type
.
declaration_code
(
arg
.
cname
)
for
arg
in
reified_function_entry
.
type
.
args
])
]
+
[
"ActhonSyncInterface* sync_object"
]
)
function_header
=
reified_function_entry
.
type
.
function_header_code
(
reified_function_entry
.
cname
,
args_code
)
function_code
=
PyrexTypes
.
c_void_type
.
declaration_code
(
function_header
)
# FIXME: it should return a ResultInterface
function_code
=
result_interface_entry
.
type
.
declaration_code
(
function_header
)
code
.
putln
(
"%s {"
%
function_code
)
message_constructor_args_list
=
[
"_passive_self"
]
+
arg_cname_list
code
.
putln
(
"%s = this->_passive_self->_active_result_class();"
%
result_interface_entry
.
type
.
declaration_code
(
"result_object"
))
message_constructor_args_list
=
[
"this->_passive_self"
,
"sync_object"
,
"result_object"
]
+
arg_cname_list
message_constructor_args_code
=
", "
.
join
(
message_constructor_args_list
)
code
.
putln
(
"%s = new %s(%s);"
%
(
reifying_class_entry
.
type
.
declaration_code
(
"message"
),
...
...
@@ -1134,6 +1127,13 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
message_constructor_args_code
))
code
.
putln
(
"/* Push message in the queue */"
)
code
.
putln
(
"if (this->_passive_self->_active_queue_class != NULL) {"
)
code
.
putln
(
"this->_passive_self->_active_queue_class->push(message);"
)
code
.
putln
(
"} else {"
)
code
.
putln
(
"/* We should definitely shout here */"
)
code
.
putln
(
"}"
)
code
.
putln
(
"/* Return result object */"
)
code
.
putln
(
"return result_object;"
)
code
.
putln
(
"}"
)
code
.
putln
(
"};"
)
...
...
@@ -1147,11 +1147,10 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
reified_function_entry
=
reifying_class_entry
.
reified_entry
reifying_class_full_name
=
reifying_class_entry
.
type
.
empty_declaration_code
()
constructor_name
=
reifying_class_full_name
.
split
(
'::'
)[
-
1
]
# FIXME: it should not inherit from CyObject but from MessageInterface
code
.
putln
(
"struct %s : public CyObject {"
%
reifying_class_full_name
)
code
.
putln
(
"struct %s : public ActhonMessageInterface {"
%
reifying_class_full_name
)
# Declaring target object & reified method arguments
code
.
putln
(
"%s;"
%
target_object_code
)
arg_codes
=
[
target_object_argument_code
]
arg_codes
=
[
target_object_argument_code
,
"ActhonSyncInterface* sync_method"
,
"ActhonResultInterface* result_object"
]
arg_names
=
[
"target_object"
]
arg_cnames
=
[
target_object_cname
]
for
arg
in
reified_function_entry
.
type
.
args
:
...
...
@@ -1166,14 +1165,23 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
initializer_list
=
[
"%s(%s)"
%
(
cname
,
name
)
for
name
,
cname
in
zip
(
arg_names
,
arg_cnames
)]
constructor_initializer_list_declaration
=
", "
.
join
(
initializer_list
)
code
.
putln
(
"%s(%s) : %s {
}
"
%
(
code
.
putln
(
"%s(%s) : %s {"
%
(
constructor_name
,
constructor_args_declaration
,
constructor_initializer_list_declaration
))
code
.
putln
(
"void activate() {"
)
# FIXME: it would be cleaner to be able to have a bare C++ two-args constructor for ActhonMessageInterface
code
.
putln
(
"this->_sync_method = sync_method;"
)
code
.
putln
(
"this->_result = result_object;"
)
code
.
putln
(
"}"
)
code
.
putln
(
"int activate() {"
)
code
.
putln
(
"/* Activate only if its sync object agrees to do so */"
)
code
.
putln
(
"if (this->_sync_method != NULL and !this->_sync_method->isActivable()) {"
)
code
.
putln
(
"return 0;"
)
code
.
putln
(
"}"
)
result_assignment
=
""
if
reified_function_entry
.
type
.
return_type
is
not
PyrexTypes
.
c_void_type
:
does_return
=
reified_function_entry
.
type
.
return_type
is
not
PyrexTypes
.
c_void_type
if
does_return
:
result_assignment
=
"%s ="
%
reified_function_entry
.
type
.
return_type
.
declaration_code
(
"result"
)
code
.
putln
(
"%s this->%s->%s(%s);"
%
(
result_assignment
,
...
...
@@ -1183,6 +1191,11 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
)
)
code
.
putln
(
"/* Push result in the result object */"
)
if
reified_function_entry
.
type
.
return_type
is
PyrexTypes
.
c_int_type
:
code
.
putln
(
"this->_result->pushIntResult(result);"
)
elif
does_return
:
code
.
putln
(
"this->_result->pushVoidStarResult((void*)result);"
)
code
.
putln
(
"return 1;"
)
code
.
putln
(
"}"
)
code
.
putln
(
"};"
)
...
...
Cython/Compiler/Nodes.py
View file @
46c33960
...
...
@@ -1541,6 +1541,14 @@ class CppClassNode(CStructOrUnionDefNode, BlockNode):
error
(
self
.
pos
,
"Base class '%s' not a struct or class."
%
base_class
)
base_types_list
=
[
b
.
analyse
(
scope
or
env
)
for
b
in
self
.
base_classes
]
if
self
.
cypclass
:
if
self
.
activable
:
activable_base
=
False
for
base_type
in
base_types_list
:
activable_base
=
activable_base
or
base_type
.
activable
if
not
activable_base
:
activable_base_entry
=
env
.
lookup_here
(
"ActhonActivableClass"
)
base_types_list
.
append
(
activable_base_entry
.
type
)
cyobject_base
=
False
for
base_type
in
base_types_list
:
cyobject_base
=
cyobject_base
or
base_type
.
is_cyp_class
...
...
Cython/Compiler/Symtab.py
View file @
46c33960
This diff is collapsed.
Click to expand it.
Cython/Utility/CyObjects.cpp
View file @
46c33960
...
...
@@ -73,6 +73,42 @@
int
CyObject_TRYWLOCK
();
};
/* All this is made available by member injection inside the module scope */
struct
ActhonResultInterface
:
CyObject
{
virtual
void
pushVoidStarResult
(
void
*
result
)
=
0
;
virtual
void
*
getVoidStarResult
()
=
0
;
virtual
void
pushIntResult
(
int
result
)
=
0
;
virtual
int
getIntResult
()
=
0
;
operator
int
()
{
return
this
->
getIntResult
();
}
};
struct
ActhonMessageInterface
;
struct
ActhonSyncInterface
:
CyObject
{
virtual
int
isActivable
()
=
0
;
virtual
int
isCompleted
()
=
0
;
virtual
void
insertActivity
(
ActhonMessageInterface
*
msg
)
=
0
;
virtual
void
removeActivity
(
ActhonMessageInterface
*
msg
)
=
0
;
};
struct
ActhonMessageInterface
:
CyObject
{
ActhonSyncInterface
*
_sync_method
;
ActhonResultInterface
*
_result
;
virtual
int
activate
()
=
0
;
};
struct
ActhonQueueInterface
:
CyObject
{
virtual
void
push
(
ActhonMessageInterface
*
message
)
=
0
;
virtual
int
activate
()
=
0
;
};
struct
ActhonActivableClass
:
public
CyObject
{
ActhonResultInterface
*
(
*
_active_result_class
)(
void
);
ActhonQueueInterface
*
_active_queue_class
=
NULL
;
virtual
~
ActhonActivableClass
()
{}
};
static
inline
int
_Cy_DECREF
(
CyObject
*
op
)
{
return
op
->
CyObject_DECREF
();
}
...
...
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