forked from Swind/pure-python-adb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.py
More file actions
122 lines (99 loc) · 3.47 KB
/
utils.py
File metadata and controls
122 lines (99 loc) · 3.47 KB
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
import re
from ppadb.plugins import Plugin
class Activity:
def __init__(self, package, activity, pid):
self.package = package
self.activity = activity
self.pid = pid
def __str__(self):
return "{}/{} - {}".format(self.package, self.activity, self.pid)
class MemInfo:
def __init__(
self,
pss,
private_dirty,
private_clean,
swapped_dirty,
heap_size,
heap_alloc,
heap_free,
):
self.pss = int(pss)
self.private_dirty = int(private_dirty)
self.private_clean = int(private_clean)
self.swapped_dirty = int(swapped_dirty)
self.heap_size = int(heap_size)
self.heap_alloc = int(heap_alloc)
self.heap_free = int(heap_free)
class Utils(Plugin):
def get_top_activity(self):
activities = self.get_top_activities()
if activities:
return activities[0]
else:
return None
def get_top_activities(self):
pattern = r"ACTIVITY\s([\w\.]+)/([\w\.]+)\s[\w\d]+\spid=([\d]+)"
cmd = "dumpsys activity top | grep ACTIVITY"
result = self.shell(cmd)
activities = []
for line in result.split("\n"):
match = re.search(pattern, line)
if match:
activities.append(
Activity(match.group(1), match.group(2), int(match.group(3)))
)
return activities
def get_meminfo(self, package_name):
total_meminfo_re = re.compile(
r"\s*TOTAL\s*(?P<pss>\d+)"
r"\s*(?P<private_dirty>\d+)"
r"\s*(?P<private_clean>\d+)"
r"\s*(?P<swapped_dirty>\d+)"
r"\s*(?P<heap_size>\d+)"
r"\s*(?P<heap_alloc>\d+)"
r"\s*(?P<heap_free>\d+)"
)
cmd = "dumpsys meminfo {}".format(package_name)
result = self.shell(cmd)
match = total_meminfo_re.search(result, 0)
if match:
return MemInfo(**match.groupdict())
else:
return MemInfo(0, 0, 0, 0, 0, 0, 0)
def get_pid(self, package_name, toybox=False):
# Because the version of `ps` is too much,
# For example, the `ps` of toybox needs `-A` to list all process, but the `ps` of emulator doesn't.
# So we use 'ps' and 'ps -A' to get all process information.
cmds = ["ps | grep {}", "ps -A | grep {}"]
for cmd in cmds:
result = self.shell(cmd.format(package_name))
if result:
break
if result:
return result.split()[1]
else:
return None
def get_uid(self, package_name):
cmd = "dumpsys package {} | grep userId".format(package_name)
result = self.shell(cmd).strip()
pattern = r"userId=([\d]+)"
if result:
match = re.search(pattern, result)
uid = match.group(1)
return uid
else:
return None
def get_tids(self, pid):
result = self.shell("ls /proc/{}/task".format(pid))
return list(map(lambda line: line.strip(), result.split("\n")))
def get_package_version_name(self, package_name):
cmd = "dumpsys package {} | grep versionName".format(package_name)
result = self.shell(cmd).strip()
pattern = r"versionName=([\d\.]+)"
if result:
match = re.search(pattern, result)
version = match.group(1)
return version
else:
return None