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
Gwenaël Samain
cython
Commits
b9eaba7c
Commit
b9eaba7c
authored
Mar 02, 2019
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '0.29.x'
parents
f00cd893
d6341966
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
56 additions
and
49 deletions
+56
-49
Cython/Coverage.py
Cython/Coverage.py
+56
-49
No files found.
Cython/Coverage.py
View file @
b9eaba7c
...
...
@@ -82,7 +82,7 @@ class Plugin(CoveragePlugin):
# is not from the main .pyx file but a file with a different
# name than the .c file (which prevents us from finding the
# .c file)
_
,
code
=
self
.
_
pars
e_lines
(
c_file
,
filename
)
_
,
code
=
self
.
_
read_sourc
e_lines
(
c_file
,
filename
)
if
code
is
None
:
return
None
# no source found
...
...
@@ -104,7 +104,7 @@ class Plugin(CoveragePlugin):
c_file
,
_
=
self
.
_find_source_files
(
filename
)
if
not
c_file
:
return
None
# unknown file
rel_file_path
,
code
=
self
.
_
pars
e_lines
(
c_file
,
filename
)
rel_file_path
,
code
=
self
.
_
read_sourc
e_lines
(
c_file
,
filename
)
if
code
is
None
:
return
None
# no source found
return
CythonModuleReporter
(
c_file
,
filename
,
rel_file_path
,
code
)
...
...
@@ -170,14 +170,14 @@ class Plugin(CoveragePlugin):
for
filename
in
os
.
listdir
(
dir_path
):
ext
=
splitext
(
filename
)[
1
].
lower
()
if
ext
in
C_FILE_EXTENSIONS
:
self
.
_
pars
e_lines
(
os
.
path
.
join
(
dir_path
,
filename
),
source_file
)
self
.
_
read_sourc
e_lines
(
os
.
path
.
join
(
dir_path
,
filename
),
source_file
)
if
source_file
in
self
.
_c_files_map
:
return
# not found? then try one package up
if
is_package_dir
(
dir_path
):
self
.
_find_c_source_files
(
os
.
path
.
dirname
(
dir_path
),
source_file
)
def
_
pars
e_lines
(
self
,
c_file
,
sourcefile
):
def
_
read_sourc
e_lines
(
self
,
c_file
,
sourcefile
):
"""
Parse a Cython generated C/C++ source file and find the executable lines.
Each executable line starts with a comment header that states source file
...
...
@@ -188,51 +188,7 @@ class Plugin(CoveragePlugin):
if
c_file
in
self
.
_parsed_c_files
:
code_lines
=
self
.
_parsed_c_files
[
c_file
]
else
:
match_source_path_line
=
re
.
compile
(
r' */[*] +"(.*)":([0-9]+)$'
).
match
match_current_code_line
=
re
.
compile
(
r' *[*] (.*) # <<<<<<+$'
).
match
match_comment_end
=
re
.
compile
(
r' *[*]/$'
).
match
match_trace_line
=
re
.
compile
(
r' *__Pyx_TraceLine\
(([
0-9]+),'
).
match
not_executable
=
re
.
compile
(
r'\
s*c(?:
type)?def\
s+
'
r'
(
?
:(
?
:
public
|
external
)
\
s
+
)
?
'
r'
(
?
:
struct
|
union
|
enum
|
class
)
'
r'
(
\
s
+
[
^
:]
+|
)
\
s
*
:
'
).match
code_lines = defaultdict(dict)
executable_lines = defaultdict(set)
current_filename = None
with open(c_file) as lines:
lines = iter(lines)
for line in lines:
match = match_source_path_line(line)
if not match:
if '
__Pyx_TraceLine
(
' in line and current_filename is not None:
trace_line = match_trace_line(line)
if trace_line:
executable_lines[current_filename].add(int(trace_line.group(1)))
continue
filename, lineno = match.groups()
current_filename = filename
lineno = int(lineno)
for comment_line in lines:
match = match_current_code_line(comment_line)
if match:
code_line = match.group(1).rstrip()
if not_executable(code_line):
break
code_lines[filename][lineno] = code_line
break
elif match_comment_end(comment_line):
# unexpected comment format - false positive?
break
# Remove lines that generated code but are not traceable.
for filename, lines in code_lines.items():
dead_lines = set(lines).difference(executable_lines.get(filename, ()))
for lineno in dead_lines:
del lines[lineno]
code_lines
=
self
.
_parse_cfile_lines
(
c_file
)
self
.
_parsed_c_files
[
c_file
]
=
code_lines
if
self
.
_c_files_map
is
None
:
...
...
@@ -246,6 +202,57 @@ class Plugin(CoveragePlugin):
return
(
None
,)
*
2
# e.g. shared library file
return
self
.
_c_files_map
[
sourcefile
][
1
:]
def
_parse_cfile_lines
(
self
,
c_file
):
"""
Parse a C file and extract all source file lines that generated executable code.
"""
match_source_path_line
=
re
.
compile
(
r' */[*] +"(.*)":([0-9]+)$'
).
match
match_current_code_line
=
re
.
compile
(
r' *[*] (.*) # <<<<<<+$'
).
match
match_comment_end
=
re
.
compile
(
r' *[*]/$'
).
match
match_trace_line
=
re
.
compile
(
r' *__Pyx_TraceLine\
(([
0-9]+),'
).
match
not_executable
=
re
.
compile
(
r'\
s*c(?:
type)?def\
s+
'
r'
(
?
:(
?
:
public
|
external
)
\
s
+
)
?
'
r'
(
?
:
struct
|
union
|
enum
|
class
)
'
r'
(
\
s
+
[
^
:]
+|
)
\
s
*
:
'
).match
code_lines = defaultdict(dict)
executable_lines = defaultdict(set)
current_filename = None
with open(c_file) as lines:
lines = iter(lines)
for line in lines:
match = match_source_path_line(line)
if not match:
if '
__Pyx_TraceLine
(
' in line and current_filename is not None:
trace_line = match_trace_line(line)
if trace_line:
executable_lines[current_filename].add(int(trace_line.group(1)))
continue
filename, lineno = match.groups()
current_filename = filename
lineno = int(lineno)
for comment_line in lines:
match = match_current_code_line(comment_line)
if match:
code_line = match.group(1).rstrip()
if not_executable(code_line):
break
code_lines[filename][lineno] = code_line
break
elif match_comment_end(comment_line):
# unexpected comment format - false positive?
break
# Remove lines that generated code but are not traceable.
for filename, lines in code_lines.items():
dead_lines = set(lines).difference(executable_lines.get(filename, ()))
for lineno in dead_lines:
del lines[lineno]
return code_lines
class CythonModuleTracer(FileTracer):
"""
...
...
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