3f8eea99e3
Flag: N/A Fixes: 321775748 Test: FallbackRecentsTest Change-Id: I1f746bf43025e093e94e60f8a1561f4f6a0f9b22
118 lines
4.1 KiB
Java
118 lines
4.1 KiB
Java
/*
|
|
* Copyright (C) 2019 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.util.Log;
|
|
|
|
import androidx.annotation.Nullable;
|
|
|
|
import com.android.launcher3.BaseActivity;
|
|
|
|
import java.io.PrintWriter;
|
|
import java.lang.ref.WeakReference;
|
|
import java.util.concurrent.CopyOnWriteArrayList;
|
|
|
|
/**
|
|
* Helper class to statically track activity creation
|
|
* @param <T> The activity type to track
|
|
*/
|
|
public final class ActivityTracker<T extends BaseActivity> {
|
|
|
|
private static final String TAG = "ActivityTracker";
|
|
|
|
private WeakReference<T> mCurrentActivity = new WeakReference<>(null);
|
|
private CopyOnWriteArrayList<SchedulerCallback<T>> mCallbacks = new CopyOnWriteArrayList<>();
|
|
|
|
@Nullable
|
|
public <R extends T> R getCreatedActivity() {
|
|
return (R) mCurrentActivity.get();
|
|
}
|
|
|
|
public void onActivityDestroyed(T activity) {
|
|
if (mCurrentActivity.get() == activity) {
|
|
mCurrentActivity.clear();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Call {@link SchedulerCallback#init(BaseActivity, boolean)} when the
|
|
* activity is ready. If the activity is already created, this is called immediately.
|
|
*
|
|
* The tracker maintains a strong ref to the callback, so it is up to the caller to return
|
|
* {@code false} in the callback OR to unregister the callback explicitly.
|
|
*
|
|
* @param callback The callback to call init() on when the activity is ready.
|
|
*/
|
|
public void registerCallback(SchedulerCallback<T> callback, String reasonString) {
|
|
Log.d(TAG, "Registering callback: " + callback + ", reason=" + reasonString);
|
|
T activity = mCurrentActivity.get();
|
|
mCallbacks.add(callback);
|
|
if (activity != null) {
|
|
if (!callback.init(activity, activity.isStarted())) {
|
|
unregisterCallback(callback, "ActivityTracker.registerCallback: Intent handled");
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Unregisters a registered callback.
|
|
*/
|
|
public void unregisterCallback(SchedulerCallback<T> callback, String reasonString) {
|
|
Log.d(TAG, "Unregistering callback: " + callback + ", reason=" + reasonString);
|
|
mCallbacks.remove(callback);
|
|
}
|
|
|
|
public boolean handleCreate(T activity) {
|
|
mCurrentActivity = new WeakReference<>(activity);
|
|
return handleIntent(activity, false /* alreadyOnHome */);
|
|
}
|
|
|
|
public boolean handleNewIntent(T activity) {
|
|
return handleIntent(activity, activity.isStarted());
|
|
}
|
|
|
|
private boolean handleIntent(T activity, boolean alreadyOnHome) {
|
|
boolean handled = false;
|
|
if (!mCallbacks.isEmpty()) {
|
|
Log.d(TAG, "handleIntent: mCallbacks=" + mCallbacks);
|
|
}
|
|
for (SchedulerCallback<T> cb : mCallbacks) {
|
|
if (!cb.init(activity, alreadyOnHome)) {
|
|
// Callback doesn't want any more updates
|
|
unregisterCallback(cb, "ActivityTracker.handleIntent: Intent handled");
|
|
}
|
|
handled = true;
|
|
}
|
|
return handled;
|
|
}
|
|
|
|
public void dump(String prefix, PrintWriter writer) {
|
|
writer.println(prefix + "ActivityTracker:");
|
|
writer.println(prefix + "\tmCurrentActivity=" + mCurrentActivity.get());
|
|
writer.println(prefix + "\tmCallbacks=" + mCallbacks);
|
|
}
|
|
|
|
public interface SchedulerCallback<T extends BaseActivity> {
|
|
|
|
/**
|
|
* Called when the activity is ready.
|
|
* @param alreadyOnHome Whether the activity is already started.
|
|
* @return Whether to continue receiving callbacks (i.e. if the activity is recreated).
|
|
*/
|
|
boolean init(T activity, boolean alreadyOnHome);
|
|
}
|
|
}
|