blob: 6b857f4a5d8af62abaa0fc6eebdd8a222da39c62 [file] [log] [blame]
/*
* Copyright 2018 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 androidx.slice.SliceConvert.unwrap;
import static androidx.slice.widget.SliceLiveData.SUPPORTED_SPECS;
import android.app.slice.SliceManager;
import android.app.slice.SliceSpec;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.annotation.RequiresApi;
import androidx.annotation.RestrictTo;
import java.util.List;
/**
* @hide
*/
@RestrictTo(RestrictTo.Scope.LIBRARY)
@RequiresApi(api = 28)
class SliceManagerWrapper extends SliceManagerBase {
private final android.app.slice.SliceManager mManager;
private final List<SliceSpec> mSpecs;
private final SliceManager.SliceCallback mCallback = new SliceManager.SliceCallback() {
@Override
public void onSliceUpdated(@NonNull android.app.slice.Slice s) {
}
};
SliceManagerWrapper(Context context) {
this(context, context.getSystemService(android.app.slice.SliceManager.class));
}
SliceManagerWrapper(Context context, android.app.slice.SliceManager manager) {
super(context);
mManager = manager;
mSpecs = unwrap(SUPPORTED_SPECS);
}
@Override
public void pinSlice(@NonNull Uri uri) {
mManager.registerSliceCallback(uri, mSpecs, mCallback);
}
@Override
public void unpinSlice(@NonNull Uri uri) {
mManager.unregisterSliceCallback(uri, mCallback);
}
@Override
public @NonNull List<androidx.slice.SliceSpec> getPinnedSpecs(@NonNull Uri uri) {
return SliceConvert.wrap(mManager.getPinnedSpecs(uri));
}
@Nullable
@Override
public androidx.slice.Slice bindSlice(@NonNull Uri uri) {
return SliceConvert.wrap(android.app.slice.Slice.bindSlice(
mContext.getContentResolver(), uri, mSpecs));
}
@Nullable
@Override
public androidx.slice.Slice bindSlice(@NonNull Intent intent) {
return SliceConvert.wrap(android.app.slice.Slice.bindSlice(
mContext, intent, mSpecs));
}
@Nullable
@Override
public Uri mapIntentToUri(@NonNull Intent intent) {
// TODO: Switch over to mapIntentToUri once it lands in prebuilt.
Slice slice = bindSlice(intent);
return slice != null ? slice.getUri() : null;
}
}