blob: 08a6b7478f8b5165bdf5ed9f20ff790a647c7bb0 [file] [log] [blame]
// Copyright 2018 The Feed Authors.
//
// 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.google.android.libraries.feed.feedapplifecyclelistener;
import com.google.android.libraries.feed.api.client.lifecycle.AppLifecycleListener;
import com.google.android.libraries.feed.api.internal.common.ThreadUtils;
import com.google.android.libraries.feed.common.feedobservable.FeedObservable;
import com.google.android.libraries.feed.common.logging.Logger;
import com.google.android.libraries.feed.feedapplifecyclelistener.FeedLifecycleListener.LifecycleEvent;
/** Default implementation of {@link AppLifecycleListener} */
public final class FeedAppLifecycleListener extends FeedObservable<FeedLifecycleListener>
implements AppLifecycleListener {
private static final String TAG = "FeedAppLifecycleLstnr";
private final ThreadUtils threadUtils;
public FeedAppLifecycleListener(ThreadUtils threadUtils) {
this.threadUtils = threadUtils;
}
@Override
public void onEnterForeground() {
threadUtils.checkMainThread();
Logger.i(TAG, "onEnterForeground called");
dispatchLifecycleEvent(LifecycleEvent.ENTER_FOREGROUND);
}
@Override
public void onEnterBackground() {
threadUtils.checkMainThread();
Logger.i(TAG, "onEnterBackground called");
dispatchLifecycleEvent(LifecycleEvent.ENTER_BACKGROUND);
}
@Override
public void onClearAll() {
Logger.i(TAG, "onClearAll called");
threadUtils.checkMainThread();
dispatchLifecycleEvent(LifecycleEvent.CLEAR_ALL);
}
@Override
public void onClearAllWithRefresh() {
threadUtils.checkMainThread();
Logger.i(TAG, "onClearAllWithRefresh called");
dispatchLifecycleEvent(LifecycleEvent.CLEAR_ALL_WITH_REFRESH);
}
@Override
public void initialize() {
threadUtils.checkMainThread();
Logger.i(TAG, "initialize called");
dispatchLifecycleEvent(LifecycleEvent.INITIALIZE);
}
private void dispatchLifecycleEvent(@LifecycleEvent String event) {
synchronized (observers) {
for (FeedLifecycleListener listener : observers) {
listener.onLifecycleEvent(event);
}
}
}
}