Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 359bce4f authored by Matthew Fritze's avatar Matthew Fritze
Browse files

Prevent search crashes from uninstalled apps

All search results are now refreshed when resuming the
search fragment, to prevent crashes from results that
no longer exist.

Bug: 34817357
Test: make RunSettingsRoboTests
Change-Id: I96a0cbfee711ab9dee49d56bfdc4e885202d9ecd
parent 7cfaa8ce
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -517,7 +517,7 @@ public class DatabaseIndexingManager {
            if (count > 0) {
                while (cursor.moveToNext()) {
                    final int providerRank = cursor.getInt(COLUMN_INDEX_XML_RES_RANK);

                    // TODO remove provider rank
                    final int xmlResId = cursor.getInt(COLUMN_INDEX_XML_RES_RESID);

                    final String className = cursor.getString(COLUMN_INDEX_XML_RES_CLASS_NAME);
@@ -562,7 +562,7 @@ public class DatabaseIndexingManager {
            if (count > 0) {
                while (cursor.moveToNext()) {
                    final int providerRank = cursor.getInt(COLUMN_INDEX_RAW_RANK);

                    // TODO Remove rank
                    final String title = cursor.getString(COLUMN_INDEX_RAW_TITLE);
                    final String summaryOn = cursor.getString(COLUMN_INDEX_RAW_SUMMARY_ON);
                    final String summaryOff = cursor.getString(COLUMN_INDEX_RAW_SUMMARY_OFF);
+19 −2
Original line number Diff line number Diff line
@@ -167,6 +167,17 @@ public class SearchFragment extends InstrumentedFragment implements SearchView.O
        return view;
    }

    @Override
    public void onResume() {
        super.onResume();
        if (TextUtils.isEmpty(mQuery)) {
            return;
        }
        final String query = mQuery;
        mQuery = "";
        onQueryTextChange(query);
    }

    @Override
    public void onStop() {
        super.onStop();
@@ -206,7 +217,6 @@ public class SearchFragment extends InstrumentedFragment implements SearchView.O
        mResultClickCount = 0;
        mNeverEnteredQuery = false;
        mQuery = query;
        mSearchAdapter.clearResults();

        if (isEmptyQuery) {
            final LoaderManager loaderManager = getLoaderManager();
@@ -251,8 +261,15 @@ public class SearchFragment extends InstrumentedFragment implements SearchView.O
        if (mUnfinishedLoadersCount.decrementAndGet() != 0) {
            return;
        }

        final int resultCount = mSearchAdapter.displaySearchResults(mQuery);
        mNoResultsView.setVisibility(resultCount == 0 ? View.VISIBLE : View.GONE);

        if (resultCount == 0) {
            mNoResultsView.setVisibility(View.VISIBLE);
        } else {
            mNoResultsView.setVisibility(View.GONE);
            mResultsRecyclerView.scrollToPosition(0);
        }
        mSearchFeatureProvider.showFeedbackButton(this, getView());
    }

+20 −4
Original line number Diff line number Diff line
@@ -93,7 +93,7 @@ public class SearchResult implements Comparable<SearchResult> {
        icon = builder.mIcon;
        payload = builder.mResultPayload;
        viewType = payload.getType();
        stableId = Objects.hash(title, summary, breadcrumbs, rank, icon, payload, viewType);
        stableId = Objects.hash(title, summary, breadcrumbs, rank, viewType);
    }

    @Override
@@ -104,6 +104,22 @@ public class SearchResult implements Comparable<SearchResult> {
        return this.rank - searchResult.rank;
    }

    @Override
    public boolean equals(Object that) {
        if (this == that) {
            return true;
        }
        if (!(that instanceof SearchResult)) {
            return false;
        }
        return this.stableId == ((SearchResult) that).stableId;
    }

    @Override
    public int hashCode() {
        return (int) stableId;
    }

    public static class Builder {
        protected CharSequence mTitle;
        protected CharSequence mSummary;
+56 −0
Original line number Diff line number Diff line
/*
 * 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.search2;

import android.support.v7.util.DiffUtil;

import java.util.List;

/**
 * Callback for DiffUtil to elegantly update search data when the query changes.
 */
public class SearchResultDiffCallback extends DiffUtil.Callback {

    private List<SearchResult> mOldList;
    private List<SearchResult> mNewList;

    public SearchResultDiffCallback(List<SearchResult> oldList, List<SearchResult> newList) {
        mOldList = oldList;
        mNewList = newList;
    }

    @Override
    public int getOldListSize() {
        return mOldList.size();
    }

    @Override
    public int getNewListSize() {
        return mNewList.size();
    }

    @Override
    public boolean areItemsTheSame(int oldItemPosition, int newItemPosition) {
        return mOldList.get(oldItemPosition).equals(mNewList.get(newItemPosition));
    }

    @Override
    public boolean areContentsTheSame(int oldItemPosition, int newItemPosition) {
        return mOldList.get(oldItemPosition).equals(mNewList.get(newItemPosition));
    }
}
+18 −11
Original line number Diff line number Diff line
@@ -19,6 +19,7 @@ package com.android.settings.search2;
import android.content.Context;
import android.support.annotation.MainThread;
import android.support.annotation.VisibleForTesting;
import android.support.v7.util.DiffUtil;
import android.support.v7.widget.RecyclerView;
import android.util.ArrayMap;
import android.view.LayoutInflater;
@@ -37,8 +38,9 @@ import static com.android.settings.search2.SearchResult.TOP_RANK;

public class SearchResultsAdapter extends RecyclerView.Adapter<SearchViewHolder> {

    private final List<SearchResult> mSearchResults;
    private final SearchFragment mFragment;

    private List<SearchResult> mSearchResults;
    private Map<String, List<? extends SearchResult>> mResultsMap;
    private final SearchFeatureProvider mSearchFeatureProvider;

@@ -132,7 +134,7 @@ public class SearchResultsAdapter extends RecyclerView.Adapter<SearchViewHolder>
                .get(InstalledAppResultLoader.class.getName());
        final int dbSize = (databaseResults != null) ? databaseResults.size() : 0;
        final int appSize = (installedAppResults != null) ? installedAppResults.size() : 0;
        final List<SearchResult> results = new ArrayList<>(dbSize + appSize);
        final List<SearchResult> newResults = new ArrayList<>(dbSize + appSize);

        int dbIndex = 0;
        int appIndex = 0;
@@ -140,29 +142,34 @@ public class SearchResultsAdapter extends RecyclerView.Adapter<SearchViewHolder>

        while (rank <= BOTTOM_RANK) {
            while ((dbIndex < dbSize) && (databaseResults.get(dbIndex).rank == rank)) {
                results.add(databaseResults.get(dbIndex++));
                newResults.add(databaseResults.get(dbIndex++));
            }
            while ((appIndex < appSize) && (installedAppResults.get(appIndex).rank == rank)) {
                results.add(installedAppResults.get(appIndex++));
                newResults.add(installedAppResults.get(appIndex++));
            }
            rank++;
        }

        while (dbIndex < dbSize) {
            results.add(databaseResults.get(dbIndex++));
            newResults.add(databaseResults.get(dbIndex++));
        }
        while (appIndex < appSize) {
            results.add(installedAppResults.get(appIndex++));
            newResults.add(installedAppResults.get(appIndex++));
        }

        if (mSearchFeatureProvider
                .isSmartSearchRankingEnabled(mFragment.getContext().getApplicationContext())) {
        final boolean isSmartSearchRankingEnabled = mSearchFeatureProvider
                .isSmartSearchRankingEnabled(mFragment.getContext().getApplicationContext());

        if (isSmartSearchRankingEnabled) {
            // TODO: run this in parallel to loading the results if takes too long
            mSearchFeatureProvider.rankSearchResults(query, results);
            mSearchFeatureProvider.rankSearchResults(query, newResults);
        }

        mSearchResults.addAll(results);
        notifyDataSetChanged();
        final DiffUtil.DiffResult diffResult = DiffUtil.calculateDiff(
                new SearchResultDiffCallback(mSearchResults, newResults),
                isSmartSearchRankingEnabled);
        mSearchResults = newResults;
        diffResult.dispatchUpdatesTo(this);

        return mSearchResults.size();
    }
Loading