-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathqt-android-runner.py
205 lines (170 loc) · 7.18 KB
/
qt-android-runner.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
#!/usr/bin/env python3
# Copyright (C) 2024 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
import os
import subprocess
import sys
import base64
import time
import signal
import argparse
from datetime import datetime
def status(msg):
print(f"\n-- {msg}")
def error(msg):
print(f"Error: {msg}", file=sys.stderr)
def die(msg):
error(msg)
sys.exit(1)
# Define and parse arguments
parser = argparse.ArgumentParser(description="Qt for Android app runner.",
epilog=f'''
This is a helper script to run Qt for Android apps directly from the terminal.
It supports starting apps with parameters and forwards environment variables to
the device. It prints live logcat messages as the app is running. The script exits
once the app has exited on the device and terminates the app on the device if the
script is terminated.
If an APK path is provided, it will first be installed to the device only if the
--install parameter is passed.
Use --serial parameter or adb's ANDROID_SERIAL environment variable to specify an
Android target serial number (obtained from "adb devices" command) on which to run
the app or test.
''', formatter_class=argparse.RawTextHelpFormatter)
parser.add_argument('-a', '--adb', metavar='path', type=str, help='Path to adb executable.')
parser.add_argument('-b', '--build-path', metavar='path', type=str,
help='Path to the Android build directory.')
parser.add_argument('-i', '--install', action='store_true', help='Install the APK.')
parser.add_argument('-s', '--serial', type=str, metavar='serial',
help='Android device serial (override $ANDROID_SERIAL).')
parser.add_argument('-p', '--apk', type=str, metavar='path', help='Path to the APK file.')
args, remaining_args = parser.parse_known_args()
# Validate required arguments
if not args.build_path:
die("App build path is not provided")
adb = args.adb
if not adb:
adb = 'adb'
null_dev = subprocess.DEVNULL
if subprocess.call(['command', '-v', adb], stdout=null_dev, stderr=null_dev) != 0:
die("adb tool path is not provided and is not found in PATH")
try:
devices = []
output = subprocess.check_output(f"{adb} devices", shell=True).decode().strip()
for line in output.splitlines():
if '\tdevice' in line:
serial = line.split('\t')[0]
devices.append(serial)
if not devices:
die(f"No devices are connected.")
if args.serial and not args.serial in devices:
die(f"No connected devices with the specified serial number.")
except Exception as e:
die(f"Failed to check for running devices, received error: {e}")
if args.serial:
adb = f"{adb} -s {args.serial}"
if args.build_path is None:
die("App build path is not provided")
if args.apk and args.install:
status(f"Installing the app APK {args.apk}")
try:
subprocess.run(f"{adb} install \"{args.apk}\"", check=True, shell=True)
except Exception as e:
error(f"Failed to install the APK, received error: {e}")
def get_package_name(build_path):
try:
manifest_file = os.path.join(args.build_path, "AndroidManifest.xml")
if os.path.isfile(manifest_file):
with open(manifest_file) as f:
for line in f:
if 'package="' in line:
return line.split('package="')[1].split('"')[0]
gradle_file = os.path.join(args.build_path, "build.gradle")
if os.path.isfile(gradle_file):
with open(gradle_file) as f:
for line in f:
if line.strip().startswith("namespace"):
return line.split('=')[1].strip().strip('"')
properties_file = os.path.join(args.build_path, "gradle.properties")
if os.path.isfile(properties_file):
with open(properties_file) as f:
for line in f:
if line.startswith("androidPackageName="):
return line.split('=')[1].strip()
except Exception as e:
error(f"Failed to retrieve the app's package name, received error: {e}")
return None
# Get app details
package_name = get_package_name(args.build_path)
if not package_name:
die("Failed to retrieve the package name of the app")
activity_name = "org.qtproject.qt.android.bindings.QtActivity"
start_cmd = f"{adb} shell am start -n {package_name}/{activity_name}"
# Get environment variables
env_vars = " ".join(f"{key}={value}" for key, value in os.environ.items())
encoded_env_vars = base64.b64encode(env_vars.encode()).decode()
start_cmd += f" -e extraenvvars \"{encoded_env_vars}\""
# Get app arguments
if remaining_args:
start_cmd += f" -e applicationArguments \"{' '.join(remaining_args)}\""
# Get formatted time from device
start_timestamp = ""
try:
start_timestamp = subprocess.check_output(f"{adb} shell \"date +'%Y-%m-%d %H:%M:%S.%3N'\"",
shell=True).decode().strip()
except Exception as e:
die(f"Failed to get formatted time from the device, received error: {e}")
try:
subprocess.run(start_cmd, check=True, shell=True)
except Exception as e:
die(f"Failed to start the app {package_name}, received error: {e}")
# Wait for the app to start and retrieve its pid
start_timeout = 5
time_limit = time.time() + start_timeout
pid = None
while pid is None:
if time.time() > time_limit:
die(f"Couldn't retrieve the app's PID within {start_timeout} seconds")
time.sleep(0.5)
try:
pidof_output = subprocess.check_output(f"{adb} shell pidof {package_name}", shell=True)
pid = pidof_output.decode().strip().split()[0]
except subprocess.CalledProcessError:
continue
# Add a signal handler to stop the app if the script is terminated
interrupted = False
def terminate_app(signum, frame):
global interrupted
interrupted = True
signal.signal(signal.SIGINT, terminate_app)
# Show app's logs
try:
format_arg = "-v brief -v color"
time_arg = f"-T '{start_timestamp}'"
# escape char and color followed with fatal tag
fatal_regex = f"-e $'^\x1b\\[[0-9]*mF/'"
pid_regex = f"-e '([ ]*{pid}):'"
logcat_cmd = f"{adb} shell \"logcat {time_arg} {format_arg} | grep {pid_regex} {fatal_regex}\""
logcat_process = subprocess.Popen(logcat_cmd, shell=True)
except Exception as e:
die(f"Failed to get logcat for the app {package_name}, received error: {e}")
# Monitor the app's pid
try:
while not interrupted:
time.sleep(1)
try:
pidof_output = subprocess.check_output(f"{adb} shell pidof {package_name}", shell=True)
pid = pidof_output.decode().strip()
if not pid:
status(f"The app \"{package_name}\" has exited")
break
except subprocess.CalledProcessError:
status(f"The app \"{package_name}\" has exited")
break
finally:
logcat_process.terminate()
if interrupted:
try:
subprocess.Popen(f"{adb} shell am force-stop {package_name}", shell=True)
status(f"The app \"{package_name}\" with {pid} has been terminated")
except Exception as e:
error(f"Failed to terminate the app {package_name}, received error: {e}")