blob: 8ec2dbef2d5d965a47e52b1059517918fb6044d1 [file] [log] [blame]
Jason Monkdcb5e2f2017-11-15 20:19:43 -05001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package androidx.app.slice;
17
18import android.content.ContentProvider;
19import android.content.ContentResolver;
20import android.content.Context;
21import android.content.Intent;
22import android.content.IntentFilter;
23import android.content.pm.ProviderInfo;
24import android.database.ContentObserver;
25import android.net.Uri;
26import android.support.annotation.NonNull;
Jason Monk6fa0c9b2017-12-12 20:55:35 -050027import android.support.annotation.RestrictTo;
Jason Monkdcb5e2f2017-11-15 20:19:43 -050028import android.support.v4.os.BuildCompat;
29
Jason Monk6fa0c9b2017-12-12 20:55:35 -050030import java.util.List;
31
Jason Monkdcb5e2f2017-11-15 20:19:43 -050032import androidx.app.slice.compat.ContentProviderWrapper;
33import androidx.app.slice.compat.SliceProviderCompat;
34import androidx.app.slice.compat.SliceProviderWrapper;
35
36/**
37 * A SliceProvider allows an app to provide content to be displayed in system spaces. This content
38 * is templated and can contain actions, and the behavior of how it is surfaced is specific to the
39 * system surface.
40 * <p>
41 * Slices are not currently live content. They are bound once and shown to the user. If the content
42 * changes due to a callback from user interaction, then
43 * {@link ContentResolver#notifyChange(Uri, ContentObserver)} should be used to notify the system.
44 * </p>
45 * <p>
46 * The provider needs to be declared in the manifest to provide the authority for the app. The
47 * authority for most slices is expected to match the package of the application.
48 * </p>
49 *
50 * <pre class="prettyprint">
51 * {@literal
52 * <provider
53 * android:name="com.android.mypkg.MySliceProvider"
54 * android:authorities="com.android.mypkg" />}
55 * </pre>
56 * <p>
57 * Slices can be identified by a Uri or by an Intent. To link an Intent with a slice, the provider
58 * must have an {@link IntentFilter} matching the slice intent. When a slice is being requested via
59 * an intent, {@link #onMapIntentToUri(Intent)} can be called and is expected to return an
60 * appropriate Uri representing the slice.
61 *
62 * <pre class="prettyprint">
63 * {@literal
64 * <provider
65 * android:name="com.android.mypkg.MySliceProvider"
66 * android:authorities="com.android.mypkg">
67 * <intent-filter>
68 * <action android:name="android.intent.action.MY_SLICE_INTENT" />
69 * </intent-filter>
70 * </provider>}
71 * </pre>
72 *
73 * @see android.app.slice.Slice
74 */
75public abstract class SliceProvider extends ContentProviderWrapper {
76
Jason Monk6fa0c9b2017-12-12 20:55:35 -050077 private static List<SliceSpec> sSpecs;
78
Jason Monkdcb5e2f2017-11-15 20:19:43 -050079 @Override
80 public void attachInfo(Context context, ProviderInfo info) {
81 ContentProvider impl;
82 if (BuildCompat.isAtLeastP()) {
83 impl = new SliceProviderWrapper(this);
84 } else {
85 impl = new SliceProviderCompat(this);
86 }
87 super.attachInfo(context, info, impl);
88 }
89
90 /**
91 * Implement this to initialize your slice provider on startup.
92 * This method is called for all registered slice providers on the
93 * application main thread at application launch time. It must not perform
94 * lengthy operations, or application startup will be delayed.
95 *
96 * <p>You should defer nontrivial initialization (such as opening,
97 * upgrading, and scanning databases) until the slice provider is used
98 * (via #onBindSlice, etc). Deferred initialization
99 * keeps application startup fast, avoids unnecessary work if the provider
100 * turns out not to be needed, and stops database errors (such as a full
101 * disk) from halting application launch.
102 *
103 * @return true if the provider was successfully loaded, false otherwise
104 */
105 public abstract boolean onCreateSliceProvider();
106
107 /**
108 * Implemented to create a slice. Will be called on the main thread.
109 * <p>
110 * onBindSlice should return as quickly as possible so that the UI tied
111 * to this slice can be responsive. No network or other IO will be allowed
112 * during onBindSlice. Any loading that needs to be done should happen
113 * off the main thread with a call to {@link ContentResolver#notifyChange(Uri, ContentObserver)}
114 * when the app is ready to provide the complete data in onBindSlice.
115 * <p>
116 *
117 * @see {@link Slice}.
118 * @see {@link android.app.slice.Slice#HINT_PARTIAL}
119 */
120 // TODO: Provide alternate notifyChange that takes in the slice (i.e. notifyChange(Uri, Slice)).
121 public abstract Slice onBindSlice(Uri sliceUri);
122
123 /**
124 * This method must be overridden if an {@link IntentFilter} is specified on the SliceProvider.
125 * In that case, this method can be called and is expected to return a non-null Uri representing
126 * a slice. Otherwise this will throw {@link UnsupportedOperationException}.
127 *
128 * @return Uri representing the slice associated with the provided intent.
129 * @see {@link android.app.slice.Slice}
130 */
131 public @NonNull Uri onMapIntentToUri(Intent intent) {
132 throw new UnsupportedOperationException(
133 "This provider has not implemented intent to uri mapping");
134 }
Jason Monk6fa0c9b2017-12-12 20:55:35 -0500135
136 /**
137 * @hide
138 */
139 @RestrictTo(RestrictTo.Scope.LIBRARY)
140 public static void setSpecs(List<SliceSpec> specs) {
141 sSpecs = specs;
142 }
143
144 /**
145 * @hide
146 */
147 @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
148 public static List<SliceSpec> getCurrentSpecs() {
149 return sSpecs;
150 }
Jason Monkdcb5e2f2017-11-15 20:19:43 -0500151}