blob: 3eb402a514ae7c93cce2d8ea57945af790b84613 [file] [log] [blame]
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed 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 android.app.cts.android.app.cts.tools;
import android.app.ActivityManager;
import android.os.SystemClock;
import android.util.Log;
/**
* Helper for monitoring the importance state of a uid.
*/
public final class UidImportanceListener implements ActivityManager.OnUidImportanceListener {
final int mUid;
int mLastValue = -1;
public UidImportanceListener(int uid) {
mUid = uid;
}
@Override
public void onUidImportance(int uid, int importance) {
synchronized (this) {
Log.d("XXXXX", "Got importance for uid " + uid + ": " + importance);
if (uid == mUid) {
mLastValue = importance;
notifyAll();
}
}
}
public int waitForValue(int minValue, int maxValue, long timeout) {
final long endTime = SystemClock.uptimeMillis()+timeout;
synchronized (this) {
while (mLastValue < minValue || mLastValue > maxValue) {
final long now = SystemClock.uptimeMillis();
if (now >= endTime) {
throw new IllegalStateException("Timed out waiting for importance "
+ minValue + "-" + maxValue + ", last was " + mLastValue);
}
try {
wait(endTime-now);
} catch (InterruptedException e) {
}
}
Log.d("XXXX", "waitForValue " + minValue + "-" + maxValue + ": " + mLastValue);
return mLastValue;
}
}
}