-
Notifications
You must be signed in to change notification settings - Fork 6.1k
/
Copy pathcmdline_helpers.py
85 lines (69 loc) · 2.32 KB
/
cmdline_helpers.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import os
import subprocess
from pathlib import Path
from shutil import rmtree
from tempfile import mkdtemp
from textwrap import dedent
from typing import List
from typing import Optional
from bytecodecompare.prepare_report import FileReport
from bytecodecompare.prepare_report import parse_cli_output
DEFAULT_PREAMBLE = dedent(
"""
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.0;
"""
)
def inside_temporary_dir(prefix):
"""
Creates a temporary directory, enters the directory and executes the function inside it.
Restores the previous working directory after executing the function.
"""
def tmp_dir_decorator(fn):
previous_dir = os.getcwd()
def f(*args, **kwargs):
try:
tmp_dir = mkdtemp(prefix=prefix)
os.chdir(tmp_dir)
result = fn(*args, **kwargs)
rmtree(tmp_dir)
return result
finally:
os.chdir(previous_dir)
return f
return tmp_dir_decorator
def solc_bin_report(
solc_binary: str,
input_files: List[Path],
via_ir: bool,
optimize: bool = False,
yul_optimizations: Optional[str] = None,
) -> FileReport:
"""
Runs the solidity compiler binary
"""
output = subprocess.check_output(
[solc_binary, "--bin"]
+ input_files
+ (["--via-ir"] if via_ir else [])
+ (["--optimize"] if optimize else [])
+ (["--yul-optimizations", yul_optimizations] if yul_optimizations else []),
encoding="utf8",
)
return parse_cli_output("", output, 0)
def save_bytecode(
bytecode_path: Path, reports: FileReport, contract: Optional[str] = None
):
with open(bytecode_path, "w", encoding="utf8") as f:
for report in reports.contract_reports:
if contract is None or report.contract_name == contract:
bytecode = (
report.bytecode if report.bytecode is not None else "<NO BYTECODE>"
)
f.write(f"{report.contract_name}: {bytecode}\n")
def add_preamble(source_path: Path, preamble: str = DEFAULT_PREAMBLE):
for source in source_path.glob("**/*.sol"):
with open(source, "r+", encoding="utf8") as f:
content = f.read()
f.seek(0, 0)
f.write(preamble + content)