All Downloads are FREE. Search and download functionalities are using the official Maven repository.

androidx.slice.SliceProvider Maven / Gradle / Ivy

Go to download

A library jar that provides APIs for Applications written for the Google Android Platform.

There is a newer version: 14-robolectric-10818077
Show newest version
/*
 * 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 androidx.slice;

import static android.app.slice.Slice.HINT_SHORTCUT;
import static android.app.slice.Slice.HINT_TITLE;
import static android.app.slice.SliceProvider.SLICE_TYPE;

import static androidx.slice.compat.SliceProviderCompat.EXTRA_BIND_URI;
import static androidx.slice.compat.SliceProviderCompat.EXTRA_PKG;
import static androidx.slice.compat.SliceProviderCompat.EXTRA_PROVIDER_PKG;
import static androidx.slice.compat.SliceProviderCompat.PERMS_PREFIX;
import static androidx.slice.core.SliceHints.HINT_PERMISSION_REQUEST;

import android.app.PendingIntent;
import android.content.ComponentName;
import android.content.ContentProvider;
import android.content.ContentResolver;
import android.content.ContentValues;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.content.pm.PackageManager;
import android.database.ContentObserver;
import android.database.Cursor;
import android.net.Uri;
import android.os.Bundle;
import android.os.CancellationSignal;
import android.os.Process;
import android.util.Log;

import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.annotation.RequiresApi;
import androidx.annotation.RestrictTo;
import androidx.annotation.VisibleForTesting;
import androidx.core.app.CoreComponentFactory;
import androidx.core.os.BuildCompat;
import androidx.slice.compat.CompatPermissionManager;
import androidx.slice.compat.SliceProviderCompat;
import androidx.slice.compat.SliceProviderWrapperContainer;
import androidx.slice.core.R;

import java.util.Collection;
import java.util.Collections;
import java.util.Set;

/**
 * A SliceProvider allows an app to provide content to be displayed in system spaces. This content
 * is templated and can contain actions, and the behavior of how it is surfaced is specific to the
 * system surface.
 * 

* Slices are not currently live content. They are bound once and shown to the user. If the content * changes due to a callback from user interaction, then * {@link ContentResolver#notifyChange(Uri, ContentObserver)} should be used to notify the system. *

*

* The provider needs to be declared in the manifest to provide the authority for the app. The * authority for most slices is expected to match the package of the application. *

* *
 * {@literal
 * }
 * 
*

* Slices can be identified by a Uri or by an Intent. To link an Intent with a slice, the provider * must have an {@link IntentFilter} matching the slice intent. When a slice is being requested via * an intent, {@link #onMapIntentToUri(Intent)} can be called and is expected to return an * appropriate Uri representing the slice. * *

 * {@literal
 * 
 *     
 *         
 *     
 * }
 * 
* * @see android.app.slice.Slice */ public abstract class SliceProvider extends ContentProvider implements CoreComponentFactory.CompatWrapped { private static Set sSpecs; private static final String TAG = "SliceProvider"; private static final boolean DEBUG = false; private final String[] mAutoGrantPermissions; private SliceProviderCompat mCompat; /** * A version of constructing a SliceProvider that allows autogranting slice permissions * to apps that hold specific platform permissions. *

* When an app tries to bind a slice from this provider that it does not have access to, * This provider will check if the caller holds permissions to any of the autoGrantPermissions * specified, if they do they will be granted persisted uri access to all slices of this * provider. * * @param autoGrantPermissions List of permissions that holders are auto-granted access * to slices. */ public SliceProvider(@NonNull String... autoGrantPermissions) { mAutoGrantPermissions = autoGrantPermissions; } public SliceProvider() { mAutoGrantPermissions = new String[0]; } /** * Implement this to initialize your slice provider on startup. * This method is called for all registered slice providers on the * application main thread at application launch time. It must not perform * lengthy operations, or application startup will be delayed. * *

You should defer nontrivial initialization (such as opening, * upgrading, and scanning databases) until the slice provider is used * (via #onBindSlice, etc). Deferred initialization * keeps application startup fast, avoids unnecessary work if the provider * turns out not to be needed, and stops database errors (such as a full * disk) from halting application launch. * * @return true if the provider was successfully loaded, false otherwise */ public abstract boolean onCreateSliceProvider(); @Override public Object getWrapper() { if (BuildCompat.isAtLeastP()) { return new SliceProviderWrapperContainer.SliceProviderWrapper(this, mAutoGrantPermissions); } return null; } @Override public final boolean onCreate() { if (!BuildCompat.isAtLeastP()) { mCompat = new SliceProviderCompat(this, onCreatePermissionManager(mAutoGrantPermissions), getContext()); } return onCreateSliceProvider(); } /** * @hide * @param autoGrantPermissions */ @VisibleForTesting @RestrictTo(RestrictTo.Scope.LIBRARY) protected CompatPermissionManager onCreatePermissionManager( String[] autoGrantPermissions) { return new CompatPermissionManager(getContext(), PERMS_PREFIX + getClass().getName(), Process.myUid(), autoGrantPermissions); } @Override public final String getType(Uri uri) { if (DEBUG) Log.d(TAG, "getFormat " + uri); return SLICE_TYPE; } @Override public Bundle call(String method, String arg, Bundle extras) { return mCompat != null ? mCompat.call(method, arg, extras) : null; } /** * Generate a slice that contains a permission request. * @hide */ @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP) public static Slice createPermissionSlice(Context context, Uri sliceUri, String callingPackage) { Slice.Builder parent = new Slice.Builder(sliceUri); Slice.Builder action = new Slice.Builder(parent) .addHints(HINT_TITLE, HINT_SHORTCUT) .addAction(createPermissionIntent(context, sliceUri, callingPackage), new Slice.Builder(parent).build(), null); parent.addSubSlice(new Slice.Builder(sliceUri.buildUpon().appendPath("permission").build()) .addText(getPermissionString(context, callingPackage), null) .addSubSlice(action.build()) .build()); return parent.addHints(HINT_PERMISSION_REQUEST).build(); } /** * Create a PendingIntent pointing at the permission dialog. * @hide */ @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP) public static PendingIntent createPermissionIntent(Context context, Uri sliceUri, String callingPackage) { Intent intent = new Intent(); intent.setComponent(new ComponentName(context.getPackageName(), "androidx.slice.compat.SlicePermissionActivity")); intent.putExtra(EXTRA_BIND_URI, sliceUri); intent.putExtra(EXTRA_PKG, callingPackage); intent.putExtra(EXTRA_PROVIDER_PKG, context.getPackageName()); // Unique pending intent. intent.setData(sliceUri.buildUpon().appendQueryParameter("package", callingPackage) .build()); return PendingIntent.getActivity(context, 0, intent, 0); } /** * Get string describing permission request. * @hide */ @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP) public static CharSequence getPermissionString(Context context, String callingPackage) { PackageManager pm = context.getPackageManager(); try { return context.getString(R.string.abc_slices_permission_request, pm.getApplicationInfo(callingPackage, 0).loadLabel(pm), context.getApplicationInfo().loadLabel(pm)); } catch (PackageManager.NameNotFoundException e) { // This shouldn't be possible since the caller is verified. throw new RuntimeException("Unknown calling app", e); } } /** * Implemented to create a slice. *

* onBindSlice should return as quickly as possible so that the UI tied * to this slice can be responsive. No network or other IO will be allowed * during onBindSlice. Any loading that needs to be done should happen * in the background with a call to {@link ContentResolver#notifyChange(Uri, ContentObserver)} * when the app is ready to provide the complete data in onBindSlice. *

* * @see {@link Slice}. * @see {@link android.app.slice.Slice#HINT_PARTIAL} */ // TODO: Provide alternate notifyChange that takes in the slice (i.e. notifyChange(Uri, Slice)). public abstract Slice onBindSlice(Uri sliceUri); /** * Called to inform an app that a slice has been pinned. *

* Pinning is a way that slice hosts use to notify apps of which slices * they care about updates for. When a slice is pinned the content is * expected to be relatively fresh and kept up to date. *

* Being pinned does not provide any escalated privileges for the slice * provider. So apps should do things such as turn on syncing or schedule * a job in response to a onSlicePinned. *

* Pinned state is not persisted through a reboot, and apps can expect a * new call to onSlicePinned for any slices that should remain pinned * after a reboot occurs. * * @param sliceUri The uri of the slice being unpinned. * @see #onSliceUnpinned(Uri) */ public void onSlicePinned(Uri sliceUri) { } /** * Called to inform an app that a slices is no longer pinned. *

* This means that no other apps on the device care about updates to this * slice anymore and therefore it is not important to be updated. Any syncs * or jobs related to this slice should be cancelled. * @see #onSlicePinned(Uri) */ public void onSliceUnpinned(Uri sliceUri) { } /** * This method must be overridden if an {@link IntentFilter} is specified on the SliceProvider. * In that case, this method can be called and is expected to return a non-null Uri representing * a slice. Otherwise this will throw {@link UnsupportedOperationException}. * * @return Uri representing the slice associated with the provided intent. * @see {@link android.app.slice.Slice} */ public @NonNull Uri onMapIntentToUri(Intent intent) { throw new UnsupportedOperationException( "This provider has not implemented intent to uri mapping"); } /** * Obtains a list of slices that are descendants of the specified Uri. *

* Implementing this is optional for a SliceProvider, but does provide a good * discovery mechanism for finding slice Uris. * * @param uri The uri to look for descendants under. * @return All slices within the space. * @see androidx.slice.SliceManager#getSliceDescendants(Uri) */ public Collection onGetSliceDescendants(Uri uri) { return Collections.emptyList(); } @Nullable @Override public final Cursor query(@NonNull Uri uri, @Nullable String[] projection, @Nullable String selection, @Nullable String[] selectionArgs, @Nullable String sortOrder) { return null; } @Nullable @Override @RequiresApi(28) public final Cursor query(@NonNull Uri uri, @Nullable String[] projection, @Nullable Bundle queryArgs, @Nullable CancellationSignal cancellationSignal) { return null; } @Nullable @Override @RequiresApi(16) public final Cursor query(@NonNull Uri uri, @Nullable String[] projection, @Nullable String selection, @Nullable String[] selectionArgs, @Nullable String sortOrder, @Nullable CancellationSignal cancellationSignal) { return null; } @Nullable @Override public final Uri insert(@NonNull Uri uri, @Nullable ContentValues values) { return null; } @Override public final int bulkInsert(@NonNull Uri uri, @NonNull ContentValues[] values) { return 0; } @Override public final int delete(@NonNull Uri uri, @Nullable String selection, @Nullable String[] selectionArgs) { return 0; } @Override public final int update(@NonNull Uri uri, @Nullable ContentValues values, @Nullable String selection, @Nullable String[] selectionArgs) { return 0; } @Nullable @Override @RequiresApi(19) public final Uri canonicalize(@NonNull Uri url) { return null; } /** * @hide */ @RestrictTo(RestrictTo.Scope.LIBRARY) public static void setSpecs(Set specs) { sSpecs = specs; } /** * @hide */ @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP) public static Set getCurrentSpecs() { return sSpecs; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy