355bd482c8
Revert submission 17128079-suggestionentry Reason for revert: test monitor determined it broke tests: b/223859070 Reverted Changes: I838896e2f:Add entry and cursor location in GetSuggestionRequ... Ic9f5dd35b:Add cursorLocation and entry to GetSuggestRequest Change-Id: I8a15f61c5ddb37b26d3e06de25f0d5b5b5c89abc
95 lines
3.8 KiB
Java
95 lines
3.8 KiB
Java
/*
|
|
* Copyright (C) 2021 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.widget.picker.search;
|
|
|
|
import static com.android.launcher3.search.StringMatcherUtility.matches;
|
|
|
|
import android.os.Handler;
|
|
|
|
import com.android.launcher3.model.WidgetItem;
|
|
import com.android.launcher3.popup.PopupDataProvider;
|
|
import com.android.launcher3.search.SearchAlgorithm;
|
|
import com.android.launcher3.search.SearchCallback;
|
|
import com.android.launcher3.search.StringMatcherUtility.StringMatcher;
|
|
import com.android.launcher3.widget.model.WidgetsListBaseEntry;
|
|
import com.android.launcher3.widget.model.WidgetsListContentEntry;
|
|
import com.android.launcher3.widget.model.WidgetsListHeaderEntry;
|
|
import com.android.launcher3.widget.model.WidgetsListSearchHeaderEntry;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import java.util.stream.Collectors;
|
|
|
|
/**
|
|
* Implementation of {@link SearchAlgorithm} that posts a task to query on the main thread.
|
|
*/
|
|
public final class SimpleWidgetsSearchAlgorithm implements SearchAlgorithm<WidgetsListBaseEntry> {
|
|
|
|
private final Handler mResultHandler;
|
|
private final PopupDataProvider mDataProvider;
|
|
|
|
public SimpleWidgetsSearchAlgorithm(PopupDataProvider dataProvider) {
|
|
mResultHandler = new Handler();
|
|
mDataProvider = dataProvider;
|
|
}
|
|
|
|
@Override
|
|
public void doSearch(String query, SearchCallback<WidgetsListBaseEntry> callback) {
|
|
ArrayList<WidgetsListBaseEntry> result = getFilteredWidgets(mDataProvider, query);
|
|
mResultHandler.post(() -> callback.onSearchResult(query, result));
|
|
}
|
|
|
|
@Override
|
|
public void cancel(boolean interruptActiveRequests) {
|
|
if (interruptActiveRequests) {
|
|
mResultHandler.removeCallbacksAndMessages(/*token= */null);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns entries for all matched widgets
|
|
*/
|
|
public static ArrayList<WidgetsListBaseEntry> getFilteredWidgets(
|
|
PopupDataProvider dataProvider, String input) {
|
|
ArrayList<WidgetsListBaseEntry> results = new ArrayList<>();
|
|
dataProvider.getAllWidgets().stream()
|
|
.filter(entry -> entry instanceof WidgetsListHeaderEntry)
|
|
.forEach(headerEntry -> {
|
|
List<WidgetItem> matchedWidgetItems = filterWidgetItems(
|
|
input, headerEntry.mPkgItem.title.toString(), headerEntry.mWidgets);
|
|
if (matchedWidgetItems.size() > 0) {
|
|
results.add(new WidgetsListSearchHeaderEntry(headerEntry.mPkgItem,
|
|
headerEntry.mTitleSectionName, matchedWidgetItems));
|
|
results.add(new WidgetsListContentEntry(headerEntry.mPkgItem,
|
|
headerEntry.mTitleSectionName, matchedWidgetItems));
|
|
}
|
|
});
|
|
return results;
|
|
}
|
|
|
|
private static List<WidgetItem> filterWidgetItems(String query, String packageTitle,
|
|
List<WidgetItem> items) {
|
|
StringMatcher matcher = StringMatcher.getInstance();
|
|
if (matches(query, packageTitle, matcher)) {
|
|
return items;
|
|
}
|
|
return items.stream()
|
|
.filter(item -> matches(query, item.label, matcher))
|
|
.collect(Collectors.toList());
|
|
}
|
|
}
|