blob: 5bd014dc76433182f02e5a4aee7195e1e20839c6 [file] [log] [blame]
/*
* Copyright (C) 2018 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.car.settings.suggestions;
import android.content.Context;
import android.service.settings.suggestions.Suggestion;
import androidx.annotation.Nullable;
import androidx.loader.content.AsyncTaskLoader;
import com.android.car.settings.common.Logger;
import com.android.settingslib.suggestions.SuggestionController;
import java.util.List;
/**
* Loads suggestions for car settings. Taken from
* {@link com.android.settingslib.suggestions.SuggestionLoader}, only change is to extend from car
* settings {@link AsyncLoader} which extends from support library {@link AsyncTaskLoader}.
*/
public class SettingsSuggestionsLoader extends AsyncTaskLoader<List<Suggestion>> {
private static final Logger LOG = new Logger(SettingsSuggestionsLoader.class);
/**
* ID used for loader that loads the settings suggestions. ID value is an arbitrary value.
*/
public static final int LOADER_ID_SUGGESTIONS = 42;
private final SuggestionController mSuggestionController;
@Nullable
private List<Suggestion> mResult;
@Override
protected void onStartLoading() {
if (mResult != null) {
deliverResult(mResult);
}
if (takeContentChanged() || mResult == null) {
forceLoad();
}
}
@Override
protected void onStopLoading() {
cancelLoad();
}
@Override
public void deliverResult(List<Suggestion> data) {
if (isReset()) {
return;
}
mResult = data;
if (isStarted()) {
super.deliverResult(data);
}
}
@Override
protected void onReset() {
super.onReset();
onStopLoading();
mResult = null;
}
public SettingsSuggestionsLoader(Context context, SuggestionController controller) {
super(context);
mSuggestionController = controller;
}
@Override
public List<Suggestion> loadInBackground() {
final List<Suggestion> data = mSuggestionController.getSuggestions();
if (data == null) {
LOG.d("data is null");
} else {
LOG.d("data size " + data.size());
}
return data;
}
}