2017-01-21 01:33:02 -08:00
|
|
|
/*
|
|
|
|
|
* 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 com.android.launcher3.util;
|
|
|
|
|
|
|
|
|
|
import android.os.Handler;
|
2019-08-15 14:53:41 -07:00
|
|
|
import android.os.HandlerThread;
|
2017-01-21 01:33:02 -08:00
|
|
|
import android.os.Looper;
|
2019-08-15 14:53:41 -07:00
|
|
|
import android.os.Process;
|
2017-01-21 01:33:02 -08:00
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.concurrent.AbstractExecutorService;
|
|
|
|
|
import java.util.concurrent.TimeUnit;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Extension of {@link AbstractExecutorService} which executed on a provided looper.
|
|
|
|
|
*/
|
2017-02-14 15:03:45 -08:00
|
|
|
public class LooperExecutor extends AbstractExecutorService {
|
2017-01-21 01:33:02 -08:00
|
|
|
|
|
|
|
|
private final Handler mHandler;
|
|
|
|
|
|
2017-02-14 15:03:45 -08:00
|
|
|
public LooperExecutor(Looper looper) {
|
2017-01-21 01:33:02 -08:00
|
|
|
mHandler = new Handler(looper);
|
2018-02-06 14:03:28 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Handler getHandler() {
|
|
|
|
|
return mHandler;
|
2017-01-21 01:33:02 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void execute(Runnable runnable) {
|
2019-12-18 19:29:00 +05:30
|
|
|
if (getHandler().getLooper() == Looper.myLooper()) {
|
2017-01-21 01:33:02 -08:00
|
|
|
runnable.run();
|
|
|
|
|
} else {
|
2019-12-18 19:29:00 +05:30
|
|
|
getHandler().post(runnable);
|
2017-01-21 01:33:02 -08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 14:53:41 -07:00
|
|
|
/**
|
|
|
|
|
* Same as execute, but never runs the action inline.
|
|
|
|
|
*/
|
|
|
|
|
public void post(Runnable runnable) {
|
2019-12-18 19:29:00 +05:30
|
|
|
getHandler().post(runnable);
|
2019-08-15 14:53:41 -07:00
|
|
|
}
|
|
|
|
|
|
2017-01-21 01:33:02 -08:00
|
|
|
/**
|
|
|
|
|
* Not supported and throws an exception when used.
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
@Deprecated
|
|
|
|
|
public void shutdown() {
|
|
|
|
|
throw new UnsupportedOperationException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Not supported and throws an exception when used.
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
@Deprecated
|
|
|
|
|
public List<Runnable> shutdownNow() {
|
|
|
|
|
throw new UnsupportedOperationException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public boolean isShutdown() {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public boolean isTerminated() {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Not supported and throws an exception when used.
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
@Deprecated
|
2019-08-15 14:53:41 -07:00
|
|
|
public boolean awaitTermination(long l, TimeUnit timeUnit) {
|
2017-01-21 01:33:02 -08:00
|
|
|
throw new UnsupportedOperationException();
|
|
|
|
|
}
|
2019-08-15 14:53:41 -07:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns the thread for this executor
|
|
|
|
|
*/
|
|
|
|
|
public Thread getThread() {
|
2019-12-18 19:29:00 +05:30
|
|
|
return getHandler().getLooper().getThread();
|
2019-08-15 14:53:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns the looper for this executor
|
|
|
|
|
*/
|
|
|
|
|
public Looper getLooper() {
|
2019-12-18 19:29:00 +05:30
|
|
|
return getHandler().getLooper();
|
2019-08-15 14:53:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set the priority of a thread, based on Linux priorities.
|
|
|
|
|
* @param priority Linux priority level, from -20 for highest scheduling priority
|
|
|
|
|
* to 19 for lowest scheduling priority.
|
|
|
|
|
* @see Process#setThreadPriority(int, int)
|
|
|
|
|
*/
|
|
|
|
|
public void setThreadPriority(int priority) {
|
|
|
|
|
Process.setThreadPriority(((HandlerThread) getThread()).getThreadId(), priority);
|
|
|
|
|
}
|
2017-01-21 01:33:02 -08:00
|
|
|
}
|