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
886b9e8d
Commit
886b9e8d
authored
May 03, 2018
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix cycache when there are multiple outputs.
This fixes #1399.
parent
c808bec0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
54 additions
and
25 deletions
+54
-25
Cython/Build/Dependencies.py
Cython/Build/Dependencies.py
+38
-24
Cython/Build/Tests/TestCyCache.py
Cython/Build/Tests/TestCyCache.py
+16
-1
No files found.
Cython/Build/Dependencies.py
View file @
886b9e8d
...
...
@@ -14,6 +14,7 @@ from io import open as io_open
from
os.path
import
relpath
as
_relpath
from
distutils.extension
import
Extension
from
distutils.util
import
strtobool
import
zipfile
try
:
import
gzip
...
...
@@ -23,6 +24,12 @@ except ImportError:
gzip_open
=
open
gzip_ext
=
''
try
:
import
zlib
zipfile_compression_mode
=
zipfile
.
ZIP_DEFLATED
except
ImportError
:
zipfile_compression_mode
=
zipfile
.
ZIP_STORED
try
:
import
pythran
import
pythran.config
...
...
@@ -32,7 +39,7 @@ except:
from
..
import
Utils
from
..Utils
import
(
cached_function
,
cached_method
,
path_exists
,
safe_makedirs
,
copy_file_to_dir_if_newer
,
is_package_dir
)
safe_makedirs
,
copy_file_to_dir_if_newer
,
is_package_dir
,
replace_suffix
)
from
..Compiler.Main
import
Context
,
CompilationOptions
,
default_options
join_path
=
cached_function
(
os
.
path
.
join
)
...
...
@@ -1101,21 +1108,24 @@ def cythonize_one(pyx_file, c_file, fingerprint, quiet, options=None,
safe_makedirs
(
options
.
cache
)
# Cython-generated c files are highly compressible.
# (E.g. a compression ratio of about 10 for Sage).
fingerprint_file
=
join_path
(
options
.
cache
,
"%s-%s%s"
%
(
os
.
path
.
basename
(
c_file
),
fingerprint
,
gzip_ext
))
if
os
.
path
.
exists
(
fingerprint_file
):
fingerprint_file_base
=
join_path
(
options
.
cache
,
"%s-%s"
%
(
os
.
path
.
basename
(
c_file
),
fingerprint
))
gz_fingerprint_file
=
fingerprint_file_base
+
gzip_ext
zip_fingerprint_file
=
fingerprint_file_base
+
'.zip'
if
os
.
path
.
exists
(
gz_fingerprint_file
)
or
os
.
path
.
exists
(
zip_fingerprint_file
):
if
not
quiet
:
print
(
"%sFound compiled %s in cache"
%
(
progress
,
pyx_file
))
os
.
utime
(
fingerprint_file
,
None
)
g
=
gzip_open
(
fingerprint_file
,
'rb'
)
try
:
f
=
open
(
c_file
,
'wb'
)
try
:
shutil
.
copyfileobj
(
g
,
f
)
finally
:
f
.
close
()
finally
:
g
.
close
()
if
os
.
path
.
exists
(
gz_fingerprint_file
):
os
.
utime
(
gz_fingerprint_file
,
None
)
with
gzip_open
(
gz_fingerprint_file
,
'rb'
)
as
g
:
with
open
(
c_file
,
'wb'
)
as
f
:
shutil
.
copyfileobj
(
g
,
f
)
else
:
os
.
utime
(
zip_fingerprint_file
,
None
)
dirname
=
os
.
path
.
dirname
(
c_file
)
with
zipfile
.
ZipFile
(
zip_fingerprint_file
)
as
z
:
for
artifact
in
z
.
namelist
():
z
.
extract
(
artifact
,
os
.
path
.
join
(
dirname
,
artifact
))
return
if
not
quiet
:
print
(
"%sCythonizing %s"
%
(
progress
,
pyx_file
))
...
...
@@ -1147,16 +1157,20 @@ def cythonize_one(pyx_file, c_file, fingerprint, quiet, options=None,
elif
os
.
path
.
exists
(
c_file
):
os
.
remove
(
c_file
)
elif
fingerprint
:
f
=
open
(
c_file
,
'rb'
)
try
:
g
=
gzip_open
(
fingerprint_file
+
'.tmp'
,
'wb'
)
try
:
shutil
.
copyfileobj
(
f
,
g
)
finally
:
g
.
close
()
os
.
rename
(
fingerprint_file
+
'.tmp'
,
fingerprint_file
)
finally
:
f
.
close
()
artifacts
=
filter
(
None
,
[
getattr
(
result
,
attr
,
None
)
for
attr
in
(
'c_file'
,
'h_file'
,
'api_file'
,
'i_file'
)])
if
len
(
artifacts
)
==
1
:
fingerprint_file
=
gz_fingerprint_file
with
open
(
c_file
,
'rb'
)
as
f
:
with
gzip_open
(
fingerprint_file
+
'.tmp'
,
'wb'
)
as
g
:
shutil
.
copyfileobj
(
f
,
g
)
else
:
fingerprint_file
=
zip_fingerprint_file
with
zipfile
.
ZipFile
(
fingerprint_file
+
'.tmp'
,
'w'
,
zipfile_compression_mode
)
as
zip
:
for
artifact
in
artifacts
:
zip
.
write
(
artifact
,
os
.
path
.
basename
(
artifact
))
os
.
rename
(
fingerprint_file
+
'.tmp'
,
fingerprint_file
)
def
cythonize_one_helper
(
m
):
...
...
Cython/Build/Tests/TestCyCache.py
View file @
886b9e8d
...
...
@@ -55,7 +55,7 @@ class TestInline(CythonTest):
def
test_cycache_uses_cache
(
self
):
a_pyx
=
os
.
path
.
join
(
self
.
src_dir
,
'a.pyx'
)
a_c
=
a_pyx
[:
-
4
]
+
'.c'
open
(
a_pyx
,
'w'
).
write
(
"pass"
)
open
(
a_pyx
,
'w'
).
write
(
'pass'
)
self
.
fresh_cythonize
(
a_pyx
,
cache
=
self
.
cache_dir
)
a_cache
=
os
.
path
.
join
(
self
.
cache_dir
,
os
.
listdir
(
self
.
cache_dir
)[
0
])
gzip
.
GzipFile
(
a_cache
,
'wb'
).
write
(
'fake stuff'
)
...
...
@@ -63,3 +63,18 @@ class TestInline(CythonTest):
self
.
fresh_cythonize
(
a_pyx
,
cache
=
self
.
cache_dir
)
a_contents
=
open
(
a_c
).
read
()
self
.
assertEqual
(
a_contents
,
'fake stuff'
)
def
test_multi_file_output
(
self
):
a_pyx
=
os
.
path
.
join
(
self
.
src_dir
,
'a.pyx'
)
a_c
=
a_pyx
[:
-
4
]
+
'.c'
a_h
=
a_pyx
[:
-
4
]
+
'.h'
a_api_h
=
a_pyx
[:
-
4
]
+
'_api.h'
open
(
a_pyx
,
'w'
).
write
(
'cdef public api int foo(int x): return x
\
n
'
)
self
.
fresh_cythonize
(
a_pyx
,
cache
=
self
.
cache_dir
)
expected
=
[
a_c
,
a_h
,
a_api_h
]
for
output
in
expected
:
self
.
assertTrue
(
os
.
path
.
exists
(
output
),
output
)
os
.
unlink
(
output
)
self
.
fresh_cythonize
(
a_pyx
,
cache
=
self
.
cache_dir
)
for
output
in
expected
:
self
.
assertTrue
(
os
.
path
.
exists
(
output
),
output
)
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