Settings now collects search results from a single loader which fetches from an aggregator. This is to facilitate the separation of search functionalitiy, where "query" becomes a single synchronous call. In this case, the aggregator will move to the unbundled app and would be called on the other end of the Query call. i.e. the new search result loader will just call query, and unbundled search will handle everything else. An important implication is that the results will be returned in a ranked order. Thus the ranking and merging logic has been moved out of the RecyclerView adapter (which is a good clean-up, anyway). The SearchResultAggregator starts a Future for each of the data sources: - Static Results - Installed Apps - Input Devices - Accessibility Services We allow up to 500ms to collect the static results, and then an additional 150ms for each subsequent loader. In my quick tests, the static results take about 20-30ms to load. The longest loader is installed apps which takes roughly 50-60ms seconds (note that this will be improved with dynamic result caching). To handle the ranking in DatabaseResultLoader, we start a Future to collect the dynamic ranking before we start the SQL queries. When the SQL is done, we wait the same timeout as before. Then we merge the results, as before. For now we have not changed how the Dynamic results are collected, but eventually they will be a cache of dynamic results. Bug: 33577327 Bug: 67360547 Test: robotests Change-Id: I91fb03f9fd059672a970f48bea21c8d655007fa3
168 lines
4.8 KiB
Java
168 lines
4.8 KiB
Java
/*
|
|
* 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.settings.search;
|
|
|
|
import android.annotation.NonNull;
|
|
import android.content.ComponentName;
|
|
import android.content.Context;
|
|
import android.util.Pair;
|
|
import android.view.View;
|
|
|
|
import com.android.settings.dashboard.SiteMapManager;
|
|
|
|
import java.util.List;
|
|
import java.util.concurrent.ExecutorService;
|
|
import java.util.concurrent.FutureTask;
|
|
|
|
/**
|
|
* FeatureProvider for Settings Search
|
|
*/
|
|
public interface SearchFeatureProvider {
|
|
|
|
/**
|
|
* @return true to use the new version of search
|
|
*/
|
|
boolean isEnabled(Context context);
|
|
|
|
/**
|
|
* Ensures the caller has necessary privilege to launch search result page.
|
|
*
|
|
* @throws IllegalArgumentException when caller is null
|
|
* @throws SecurityException when caller is not allowed to launch search result page
|
|
*/
|
|
void verifyLaunchSearchResultPageCaller(Context context, @NonNull ComponentName caller)
|
|
throws SecurityException, IllegalArgumentException;
|
|
|
|
/**
|
|
* Returns a new loader to get settings search results.
|
|
*/
|
|
SearchResultLoader getSearchResultLoader(Context context, String query);
|
|
|
|
/**
|
|
* Returns a new loader to search in index database.
|
|
*/
|
|
DatabaseResultLoader getStaticSearchResultTask(Context context, String query);
|
|
|
|
/**
|
|
* Returns a new loader to search installed apps.
|
|
*/
|
|
InstalledAppResultLoader getInstalledAppSearchTask(Context context, String query);
|
|
|
|
/**
|
|
* Returns a new loader to search accessibility services.
|
|
*/
|
|
AccessibilityServiceResultLoader getAccessibilityServiceResultTask(Context context,
|
|
String query);
|
|
|
|
/**
|
|
* Returns a new loader to search input devices.
|
|
*/
|
|
InputDeviceResultLoader getInputDeviceResultTask(Context context, String query);
|
|
|
|
/**
|
|
* Returns a new loader to get all recently saved queries search terms.
|
|
*/
|
|
SavedQueryLoader getSavedQueryLoader(Context context);
|
|
|
|
/**
|
|
* Returns the manager for indexing Settings data.
|
|
*/
|
|
DatabaseIndexingManager getIndexingManager(Context context);
|
|
|
|
/**
|
|
* Returns the manager for looking up breadcrumbs.
|
|
*/
|
|
SiteMapManager getSiteMapManager();
|
|
|
|
/**
|
|
* Updates the Settings indexes and calls {@link IndexingCallback#onIndexingFinished()} on
|
|
* {@param callback} when indexing is complete.
|
|
*/
|
|
void updateIndexAsync(Context context, IndexingCallback callback);
|
|
|
|
/**
|
|
* Synchronously updates the Settings database.
|
|
*/
|
|
void updateIndex(Context context);
|
|
|
|
/**
|
|
* @returns true when indexing is complete.
|
|
*/
|
|
boolean isIndexingComplete(Context context);
|
|
|
|
/**
|
|
* @return a {@link ExecutorService} to be shared between search tasks.
|
|
*/
|
|
ExecutorService getExecutorService();
|
|
|
|
/**
|
|
* Initializes the feedback button in case it was dismissed.
|
|
*/
|
|
default void initFeedbackButton() {
|
|
}
|
|
|
|
/**
|
|
* Show a button users can click to submit feedback on the quality of the search results.
|
|
*/
|
|
default void showFeedbackButton(SearchFragment fragment, View view) {
|
|
}
|
|
|
|
/**
|
|
* Hide the feedback button shown by
|
|
* {@link #showFeedbackButton(SearchFragment fragment, View view) showFeedbackButton}
|
|
*/
|
|
default void hideFeedbackButton() {
|
|
}
|
|
|
|
/**
|
|
* Notify that a search result is clicked.
|
|
*
|
|
* @param context application context
|
|
* @param query input user query
|
|
* @param searchResult clicked result
|
|
*/
|
|
default void searchResultClicked(Context context, String query, SearchResult searchResult) {
|
|
}
|
|
|
|
/**
|
|
* @return true to enable search ranking.
|
|
*/
|
|
default boolean isSmartSearchRankingEnabled(Context context) {
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* @return smart ranking timeout in milliseconds.
|
|
*/
|
|
default long smartSearchRankingTimeoutMs(Context context) {
|
|
return 300L;
|
|
}
|
|
|
|
/**
|
|
* Prepare for search ranking predictions to avoid latency on the first prediction call.
|
|
*/
|
|
default void searchRankingWarmup(Context context) {
|
|
}
|
|
|
|
/**
|
|
* Return a FutureTask to get a list of scores for search results.
|
|
*/
|
|
default FutureTask<List<Pair<String, Float>>> getRankerTask(Context context, String query) {
|
|
return null;
|
|
}
|
|
}
|