This is an ongoing series of commits that are reformatting our Python code. This catches the last of the python files to reformat. Since they where so few I bunched them together. Reformatting is done with `black`. If you end up having problems merging this commit because you have made changes to a python file, the best way to handle that is to run git checkout --ours <yourfile> and then reformat it with black. If you run into any problems, post to discourse about it and we will try to help. RFC Thread below: https://discourse.llvm.org/t/rfc-document-and-standardize-python-code-style Reviewed By: jhenderson, #libc, Mordante, sivachandra Differential Revision: https://reviews.llvm.org/D150784
53 lines
1.2 KiB
Python
53 lines
1.2 KiB
Python
import os, sys, subprocess, tempfile
|
|
import time
|
|
|
|
ANDROID_TMPDIR = "/data/local/tmp/Output"
|
|
ADB = os.environ.get("ADB", "adb")
|
|
|
|
verbose = False
|
|
if os.environ.get("ANDROID_RUN_VERBOSE") == "1":
|
|
verbose = True
|
|
|
|
|
|
def host_to_device_path(path):
|
|
rel = os.path.relpath(path, "/")
|
|
dev = os.path.join(ANDROID_TMPDIR, rel)
|
|
return dev
|
|
|
|
|
|
def adb(args, attempts=1, timeout_sec=600):
|
|
if verbose:
|
|
print(args)
|
|
tmpname = tempfile.mktemp()
|
|
out = open(tmpname, "w")
|
|
ret = 255
|
|
while attempts > 0 and ret != 0:
|
|
attempts -= 1
|
|
ret = subprocess.call(
|
|
["timeout", str(timeout_sec), ADB] + args,
|
|
stdout=out,
|
|
stderr=subprocess.STDOUT,
|
|
)
|
|
if ret != 0:
|
|
print("adb command failed", args)
|
|
print(tmpname)
|
|
out.close()
|
|
out = open(tmpname, "r")
|
|
print(out.read())
|
|
out.close()
|
|
os.unlink(tmpname)
|
|
return ret
|
|
|
|
|
|
def pull_from_device(path):
|
|
tmp = tempfile.mktemp()
|
|
adb(["pull", path, tmp], 5, 60)
|
|
text = open(tmp, "r").read()
|
|
os.unlink(tmp)
|
|
return text
|
|
|
|
|
|
def push_to_device(path):
|
|
dst_path = host_to_device_path(path)
|
|
adb(["push", path, dst_path], 5, 60)
|