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
387d6f1f
Commit
387d6f1f
authored
Jul 10, 2020
by
Xavier Thompson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enforce 'no overloads with implicit conversions' rule for cypclass methods
parent
ad11826d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
66 additions
and
39 deletions
+66
-39
Cython/Compiler/PyrexTypes.py
Cython/Compiler/PyrexTypes.py
+19
-0
Cython/Compiler/Symtab.py
Cython/Compiler/Symtab.py
+47
-39
No files found.
Cython/Compiler/PyrexTypes.py
View file @
387d6f1f
...
...
@@ -2958,6 +2958,25 @@ class CFuncType(CType):
return
0
return
1
def
convertible_arguments_with
(
self
,
other_type
):
return
self
.
convertible_arguments_with_resolved_type
(
other_type
.
resolve
())
def
convertible_arguments_with_resolved_type
(
self
,
other_type
):
if
other_type
is
error_type
:
return
1
if
not
other_type
.
is_cfunction
:
return
0
if
len
(
self
.
args
)
-
self
.
optional_arg_count
!=
len
(
other_type
.
args
)
-
other_type
.
optional_arg_count
:
return
0
if
self
.
has_varargs
!=
other_type
.
has_varargs
:
return
0
arg_type_pairs
=
((
arg
.
type
,
other_arg
.
type
)
for
arg
,
other_arg
in
zip
(
self
.
args
,
other_type
.
args
))
if
(
all
((
arg
.
assignable_from
(
other
)
for
arg
,
other
in
arg_type_pairs
))
or
all
((
other
.
assignable_from
(
arg
)
for
arg
,
other
in
arg_type_pairs
))):
return
1
return
0
def
compatible_arguments_with
(
self
,
other_type
,
as_cmethod
=
0
):
return
self
.
compatible_arguments_with_resolved_type
(
other_type
.
resolve
(),
as_cmethod
)
...
...
Cython/Compiler/Symtab.py
View file @
387d6f1f
...
...
@@ -526,7 +526,7 @@ class Scope(object):
entries
=
self
.
entries
# The indices of a
n overridable
overloaded alternatives that this declaration will hide.
# The indices of a
ll previous
overloaded alternatives that this declaration will hide.
previous_alternative_indices
=
[]
if
name
and
name
in
entries
and
not
shadow
:
...
...
@@ -535,58 +535,66 @@ class Scope(object):
cpp_override_allowed
=
False
if
type
.
is_cfunction
and
old_entry
.
type
.
is_cfunction
and
self
.
is_cpp
():
cpp_override_allowed
=
True
for
index
,
alt_entry
in
enumerate
(
old_entry
.
all_alternatives
()):
# in a cypclass, a method can hide a method inherited from a different class
# based only on their argument types
if
self
.
is_cyp_class_scope
:
might_redeclare_or_override
=
type
.
compatible_arguments_with
else
:
might_redeclare_or_override
=
type
.
compatible_signature_with
if
might_redeclare_or_override
(
alt_entry
.
type
):
if
self
.
is_cyp_class_scope
:
for
index
,
alt_entry
in
enumerate
(
old_entry
.
all_alternatives
()):
alt_type
=
alt_entry
.
type
cpp_override_allowed
=
False
if
type
.
convertible_arguments_with
(
alt_type
):
cpp_override_allowed
=
False
if
self
.
is_cyp_class_scope
:
# allow default constructor or __alloc__ to be redeclared by user
if
alt_entry
.
is_default
:
previous_alternative_indices
.
append
(
index
)
cpp_override_allowed
=
True
continue
# Any inherited method is visible
# until overloaded by a method with the same signature
if
alt_entry
.
is_inherited
:
if
self
.
is_cyp_class_scope
:
# in a cypclass, if the arguments are compatible, then the new method must actually
# override the inherited method: the whole signature must be identical
old_declarator
=
alt_entry
.
type
.
declarator_code
(
name
,
for_display
=
1
).
strip
()
new_declarator
=
type
.
declarator_code
(
name
,
for_display
=
1
).
strip
()
if
not
new_declarator
==
old_declarator
:
comparison_message
=
" ---> %s
\
n
vs -> %s"
%
(
new_declarator
,
old_declarator
)
error
(
pos
,
"Cypclass method with compatible arguments but incompatible signature:
\
n
%s"
%
comparison_message
)
if
alt_entry
.
pos
is
not
None
:
error
(
alt_entry
.
pos
,
"Conflicting method is defined here"
)
# also, the return type must be covariant
elif
not
type
.
return_type
.
subtype_of_resolved_type
(
alt_entry
.
type
.
return_type
):
# enforce cypclass overloading rules
alt_declarator_str
=
alt_type
.
declarator_code
(
name
,
for_display
=
1
).
strip
()
new_declarator_str
=
type
.
declarator_code
(
name
,
for_display
=
1
).
strip
()
if
new_declarator_str
!=
alt_declarator_str
:
error
(
pos
,
(
"Cypclass methods have conflicting signatures:
\
n
"
"Cypclass method
\
n
"
">> %s
\
n
"
"has implicitly convertible arguments from or to:
\
n
"
">> %s
\
n
"
"but their signatures are not exactly the same"
%
(
type
.
declaration_code
(
name
,
for_display
=
1
).
strip
(),
alt_type
.
declaration_code
(
name
,
for_display
=
1
).
strip
()))
)
if
alt_entry
.
pos
is
not
None
:
error
(
alt_entry
.
pos
,
"Conflicting method is defined here"
)
elif
alt_entry
.
is_inherited
:
# the return type must be covariant
if
not
type
.
return_type
.
subtype_of_resolved_type
(
alt_type
.
return_type
):
error
(
pos
,
"Cypclass method overrides another with incompatible return type"
)
if
alt_entry
.
pos
is
not
None
:
error
(
alt_entry
.
pos
,
"Conflicting method is defined here"
)
previous_alternative_indices
.
append
(
index
)
cpp_override_allowed
=
True
continue
previous_alternative_indices
.
append
(
index
)
cpp_override_allowed
=
True
continue
# stop if cpp_override_allowed is False for the current alternative
break
# normal cpp case
else
:
for
index
,
alt_entry
in
enumerate
(
old_entry
.
all_alternatives
()):
if
type
.
compatible_signature_with
(
alt_entry
.
type
):
cpp_override_allowed
=
False
if
alt_entry
.
is_inherited
:
previous_alternative_indices
.
append
(
index
)
cpp_override_allowed
=
True
continue
elif
self
.
is_cyp_class_scope
:
if
(
type
.
narrower_arguments_than
(
alt_entry
.
type
)
or
alt_entry
.
type
.
narrower_arguments_than
(
type
)):
error
(
pos
,
"Cypclass overloaded method with narrower arguments"
)
if
alt_entry
.
pos
is
not
None
:
error
(
alt_entry
.
pos
,
"Conflicting method is defined here"
)
# stop if cpp_override_allowed is False for the current alternative
break
if
cpp_override_allowed
:
# C++ function/method overrides with different signatures are ok.
...
...
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