-
Notifications
You must be signed in to change notification settings - Fork 2
/
ProcessManager.java
184 lines (159 loc) · 5.19 KB
/
ProcessManager.java
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
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package com.example.overlayservice;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;
import android.content.Context;
public class ProcessManager {
Context mContext;
List<String> mKnownPackages;
List<String> mLaunchers;
public NewProcessManager(Context context) {
mContext = context;
initialize();
}
private void initialize() {
// Add known system applications with no UI
mKnownPackages = new ArrayList<String>();
mKnownPackages.add("com.android.systemui");
mKnownPackages.add("org.cyanogenmod.audiofx");
mKnownPackages.add("com.android.incallui");
mKnownPackages.add("com.google.android.gms.persistent");
mKnownPackages.add("org.cyanogenmod.theme.chooser");
mKnownPackages.add("com.android.smspush");
mKnownPackages.add("com.google.android.googlequicksearchbox:interactor");
mKnownPackages.add("com.google.android.gms");
// Add known launchers
mLaunchers = new ArrayList<String>();
mLaunchers.add("com.s7.galaxy.launcher");
mLaunchers.add("com.android.launcher");
}
/**
* Returns visible application except the calling application.
* @return
*/
public synchronized String getVisibleApplication() {
//StringBuffer output = new StringBuffer();
String packageName = mContext.getPackageName();
String result = null;
try {
Process process = Runtime.getRuntime().exec("/system/bin/toolbox ps -p -P -x -c");
//Process process = Runtime.getRuntime().exec("/system/bin/toolbox ps -p -P -x -c |grep -E 'u0.*fg'");
BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream()));
List<String> alllines = new ArrayList<String>();
List<PkgInfo> packageInfoList = new ArrayList<NewProcessManager.PkgInfo>();
String line = "";
while ((line = reader.readLine()) != null) {
alllines.add(line);
}
// Waits for the command to finish.
process.waitFor();
//1. grep -E 'u0.*fg',
//2. remove processes WCHAN values != '00000000'
for (String string : alllines) {
if(string.startsWith("u0") && string.contains(" fg ")) {
try {
String[] arr = string.split("\\s+", 13);
String s = arr[12];
if(s != null) {
String[] arr2 = s.split("\\s+");
String pkg = arr2[2];
if(pkg.contains(".")) {
PkgInfo pi = new PkgInfo();
pi.setName(pkg);
packageInfoList.add(pi);
String info = arr2[3];
if(info != null) {
String i_arr[] = info.split(":", 2);
if(i_arr[1] != null) {
String[] u_arr = i_arr[1].split(",");
if(u_arr[0] != null) {
try {
int processU = Integer.valueOf(u_arr[0]);
pi.setU(processU);
}
catch(NumberFormatException nfe) {
}
}
}
}
}
}
}
catch(Exception e) {
e.printStackTrace();
}
}
}
// if launcher presents -> no visible app
// else find highest `u` in process info
// ignore known packages with higher `u` values
boolean foundLauncher = false;
for (PkgInfo pkgInfo : packageInfoList) {
if(mLaunchers.contains(pkgInfo.name)) {
foundLauncher = true;
break;
}
}
int pos = -1;
int value = 0;
if(!foundLauncher) {
for (int i=0; i<packageInfoList.size(); i++) {
PkgInfo pkgInfo = packageInfoList.get(i);
if(!packageName.equals(pkgInfo.getName())
&& !mKnownPackages.contains(pkgInfo.getName())
&& pkgInfo.getU() > value) {
value = pkgInfo.getU();
pos = i;
}
}
}
if(pos >= 0) {
PkgInfo pkg = packageInfoList.get(pos);
result = pkg.getName();
}
}
catch(InterruptedException ie) {
ie.printStackTrace();
}
catch (IOException e) {
e.printStackTrace();
}
return result;
}
private class PkgInfo {
private String name;
private int u;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getU() {
return u;
}
public void setU(int u) {
this.u = u;
}
}
}