Uri.toSafeString strips out paths and shouldn't be used for situations other than logging. Bug: 232694281 Test: PtsPowerTestCases Change-Id: Iec835b738c3e928e922bd6a14573106f2ce4f526
126 lines
4.4 KiB
Java
126 lines
4.4 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.slices;
|
|
|
|
import android.content.ContentValues;
|
|
import android.content.Context;
|
|
import android.database.sqlite.SQLiteDatabase;
|
|
import android.util.Log;
|
|
|
|
import androidx.annotation.VisibleForTesting;
|
|
|
|
import com.android.settings.core.BasePreferenceController;
|
|
import com.android.settings.dashboard.DashboardFragment;
|
|
import com.android.settings.overlay.FeatureFactory;
|
|
import com.android.settings.slices.SlicesDatabaseHelper.IndexColumns;
|
|
import com.android.settings.slices.SlicesDatabaseHelper.Tables;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Manages the conversion of {@link DashboardFragment} and {@link BasePreferenceController} to
|
|
* indexable data {@link SliceData} to be stored for Slices.
|
|
*/
|
|
class SlicesIndexer implements Runnable {
|
|
|
|
private static final String TAG = "SlicesIndexer";
|
|
|
|
private Context mContext;
|
|
|
|
private SlicesDatabaseHelper mHelper;
|
|
|
|
public SlicesIndexer(Context context) {
|
|
mContext = context;
|
|
mHelper = SlicesDatabaseHelper.getInstance(mContext);
|
|
}
|
|
|
|
/**
|
|
* Asynchronously index slice data from {@link #indexSliceData()}.
|
|
*/
|
|
@Override
|
|
public void run() {
|
|
indexSliceData();
|
|
}
|
|
|
|
/**
|
|
* Synchronously takes data obtained from {@link SliceDataConverter} and indexes it into a
|
|
* SQLite database
|
|
*/
|
|
protected void indexSliceData() {
|
|
if (mHelper.isSliceDataIndexed()) {
|
|
Log.d(TAG, "Slices already indexed - returning.");
|
|
return;
|
|
}
|
|
|
|
final SQLiteDatabase database = mHelper.getWritableDatabase();
|
|
|
|
long startTime = System.currentTimeMillis();
|
|
database.beginTransaction();
|
|
try {
|
|
mHelper.reconstruct(database);
|
|
List<SliceData> indexData = getSliceData();
|
|
insertSliceData(database, indexData);
|
|
|
|
mHelper.setIndexedState();
|
|
|
|
// TODO (b/71503044) Log indexing time.
|
|
Log.d(TAG,
|
|
"Indexing slices database took: " + (System.currentTimeMillis() - startTime));
|
|
database.setTransactionSuccessful();
|
|
} finally {
|
|
database.endTransaction();
|
|
}
|
|
}
|
|
|
|
@VisibleForTesting
|
|
List<SliceData> getSliceData() {
|
|
return FeatureFactory.getFactory(mContext)
|
|
.getSlicesFeatureProvider()
|
|
.getSliceDataConverter(mContext)
|
|
.getSliceData();
|
|
}
|
|
|
|
@VisibleForTesting
|
|
void insertSliceData(SQLiteDatabase database, List<SliceData> indexData) {
|
|
ContentValues values;
|
|
|
|
for (SliceData dataRow : indexData) {
|
|
values = new ContentValues();
|
|
values.put(IndexColumns.KEY, dataRow.getKey());
|
|
values.put(IndexColumns.SLICE_URI, dataRow.getUri().toString());
|
|
values.put(IndexColumns.TITLE, dataRow.getTitle());
|
|
values.put(IndexColumns.SUMMARY, dataRow.getSummary());
|
|
final CharSequence screenTitle = dataRow.getScreenTitle();
|
|
if (screenTitle != null) {
|
|
values.put(IndexColumns.SCREENTITLE, screenTitle.toString());
|
|
}
|
|
values.put(IndexColumns.KEYWORDS, dataRow.getKeywords());
|
|
values.put(IndexColumns.ICON_RESOURCE, dataRow.getIconResource());
|
|
values.put(IndexColumns.FRAGMENT, dataRow.getFragmentClassName());
|
|
values.put(IndexColumns.CONTROLLER, dataRow.getPreferenceController());
|
|
values.put(IndexColumns.SLICE_TYPE, dataRow.getSliceType());
|
|
values.put(IndexColumns.UNAVAILABLE_SLICE_SUBTITLE,
|
|
dataRow.getUnavailableSliceSubtitle());
|
|
values.put(IndexColumns.PUBLIC_SLICE, dataRow.isPublicSlice());
|
|
values.put(IndexColumns.HIGHLIGHT_MENU_RESOURCE, dataRow.getHighlightMenuRes());
|
|
|
|
database.replaceOrThrow(Tables.TABLE_SLICES_INDEX, null /* nullColumnHack */,
|
|
values);
|
|
}
|
|
}
|
|
}
|