blob: 5a4fbbd4c95612484bd839afcde36cac13a32377 [file] [log] [blame]
/*
* Copyright (C) 2008 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.stubs;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.os.Binder;
import android.os.IBinder;
import android.os.SystemClock;
public class MockService extends Service {
// Extra for start: don't automatically stop itself, if true.
public static final String EXTRA_NO_STOP = "no_stop";
public static boolean result = false;
private final IBinder mBinder = new MockBinder();
private static boolean sStarted = false;
private static boolean sDestroyed = false;
private static Object sBlocker = new Object();
public class MockBinder extends Binder {
MockService getService() {
return MockService.this;
}
}
/**
* set the result as true when service bind
*/
@Override
public IBinder onBind(Intent intent) {
synchronized (sBlocker) {
result = true;
sStarted = true;
sBlocker.notifyAll();
}
return mBinder;
}
/**
* set the result as true when service start
*/
@Override
public void onStart(Intent intent, int startId) {
super.onStart(intent, startId);
synchronized (sBlocker) {
if (!intent.getBooleanExtra(EXTRA_NO_STOP, false)) {
stopSelf(startId);
}
result = true;
sStarted = true;
sBlocker.notifyAll();
}
}
@Override
public void onDestroy() {
super.onDestroy();
synchronized (sBlocker) {
sDestroyed = true;
sBlocker.notifyAll();
}
}
public static void prepareStart() {
synchronized (sBlocker) {
sStarted = false;
result = false;
}
}
public static boolean waitForStart(long timeout) {
long now = SystemClock.elapsedRealtime();
final long endTime = now + timeout;
synchronized (sBlocker) {
while (!sStarted && now < endTime) {
try {
sBlocker.wait(endTime - now);
} catch (InterruptedException e) {
}
now = SystemClock.elapsedRealtime();
}
return sStarted;
}
}
public static void prepareDestroy() {
synchronized (sBlocker) {
sDestroyed = false;
}
}
public static boolean waitForDestroy(long timeout) {
long now = SystemClock.elapsedRealtime();
final long endTime = now + timeout;
synchronized (sBlocker) {
while (!sDestroyed && now < endTime) {
try {
sBlocker.wait(endTime - now);
} catch (InterruptedException e) {
}
now = SystemClock.elapsedRealtime();
}
return sDestroyed;
}
}
public static void stopService(Context context) {
Intent intent = new Intent();
intent.setClass(context, MockService.class);
context.stopService(intent);
}
}