-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathembedded_python_tools.py
59 lines (48 loc) · 1.98 KB
/
embedded_python_tools.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import os
import shutil
import pathlib
from conan.tools.files import copy
def _symlink_compat(conanfile, src, dst):
"""On Windows, symlinks require admin privileges, so we use a directory junction instead"""
if conanfile.settings.os == "Windows":
import _winapi
_winapi.CreateJunction(str(src), str(dst))
else:
os.symlink(src, dst)
def symlink_import(conanfile, dst="bin/python/interpreter", bin="bin"):
"""Copying the entire embedded Python environment is extremely slow, so we just symlink it
Usage:
```python
def imports(self):
import embedded_python_tools
embedded_python_tools.symlink_import(self, dst="bin/python/interpreter")
```
The symlink points to the Conan package location. We still want to copy in `python*.dll` and
`python*.zip` right next to the executable so that they can be found, but the rest of
the Python environment is in a subfolder:
bin
|- python/interpreter
| |- Lib
| \- ...
|- <main>.exe
|- python*.dll
|- python*.zip
\- ...
"""
dst = pathlib.Path(dst).absolute()
if not dst.parent.exists():
dst.parent.mkdir(parents=True)
# Clean the `dst` path if it already exists
# Note: we use `os.path.lexists` here specifically to also detect and clean up old broken symlinks
if os.path.lexists(dst):
try: # to remove any existing junction/symlink
os.remove(dst)
except: # this seems to be the only way to find out this is not a junction
shutil.rmtree(dst)
src = pathlib.Path(conanfile.deps_cpp_info["embedded_python"].rootpath) / "embedded_python"
_symlink_compat(conanfile, src, dst)
bin = pathlib.Path(bin).absolute()
copy(conanfile, "python*.dll", src, bin, keep_path=False)
copy(conanfile, "libpython*.so*", src / "lib", bin, keep_path=False)
copy(conanfile, "libpython*.dylib", src / "lib", bin, keep_path=False)
copy(conanfile, "python*.zip", src, bin, keep_path=False)