-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
turn
mitmproxy_windows.executable_path
into a method (#115)
now that this is auto-imported to check for missing packages, we don't want dev compiles on every run
- Loading branch information
Showing
2 changed files
with
33 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,34 @@ | ||
from pathlib import Path | ||
|
||
here = Path(__file__).parent.absolute() | ||
executable_path = here / "windows-redirector.exe" | ||
|
||
# Development path: This should never happen with precompiled wheels. | ||
if not executable_path.exists() and (here / "editable.marker").exists(): | ||
import logging | ||
import shutil | ||
import subprocess | ||
|
||
logger = logging.getLogger(__name__) | ||
logger.warning("Development mode: Compiling windows-redirector.exe...") | ||
|
||
# Build Redirector | ||
subprocess.run(["cargo", "build"], cwd=here.parent / "redirector", check=True) | ||
# Copy WinDivert to target/debug/ | ||
target_debug = here.parent.parent / "target/debug" | ||
for f in ["WinDivert.dll", "WinDivert.lib", "WinDivert64.sys"]: | ||
if not (target_debug / f).exists(): | ||
shutil.copy(here / f, target_debug / f) | ||
|
||
logger.warning("Development mode: Using target/debug/windows-redirector.exe...") | ||
executable_path = target_debug / "windows-redirector.exe" | ||
|
||
def executable_path() -> Path: | ||
""" | ||
Return the Path for windows-redirector.exe. | ||
For shipped wheels this is just the file in the package, | ||
for development setups this may invoke cargo to build it. | ||
""" | ||
here = Path(__file__).parent.absolute() | ||
exe = here / "windows-redirector.exe" | ||
|
||
# Development path: This should never happen with precompiled wheels. | ||
if not exe.exists() and (here / "editable.marker").exists(): | ||
import logging | ||
import shutil | ||
import subprocess | ||
|
||
logger = logging.getLogger(__name__) | ||
logger.warning("Development mode: Compiling windows-redirector.exe...") | ||
|
||
# Build Redirector | ||
subprocess.run(["cargo", "build"], cwd=here.parent / "redirector", check=True) | ||
# Copy WinDivert to target/debug/ | ||
target_debug = here.parent.parent / "target/debug" | ||
for f in ["WinDivert.dll", "WinDivert.lib", "WinDivert64.sys"]: | ||
if not (target_debug / f).exists(): | ||
shutil.copy(here / f, target_debug / f) | ||
|
||
logger.warning("Development mode: Using target/debug/windows-redirector.exe...") | ||
exe = target_debug / "windows-redirector.exe" | ||
|
||
return exe |