85 lines
3.2 KiB
Java
85 lines
3.2 KiB
Java
![]() |
/*
|
||
|
* Copyright (C) 2019 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 android.content.pm;
|
||
|
|
||
|
import android.annotation.NonNull;
|
||
|
import android.annotation.Nullable;
|
||
|
import android.os.RemoteException;
|
||
|
|
||
|
/**
|
||
|
* Data loader manager takes care of data loaders of different packages. It provides methods to
|
||
|
* initialize a data loader binder service (binding and creating it), to return a binder of the data
|
||
|
* loader binder service and to destroy a data loader binder service.
|
||
|
* @see com.android.server.pm.DataLoaderManagerService
|
||
|
* @hide
|
||
|
*/
|
||
|
public class DataLoaderManager {
|
||
|
private static final String TAG = "DataLoaderManager";
|
||
|
private final IDataLoaderManager mService;
|
||
|
|
||
|
public DataLoaderManager(IDataLoaderManager service) {
|
||
|
mService = service;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Finds a data loader binder service and binds to it. This requires PackageManager.
|
||
|
*
|
||
|
* @param dataLoaderId ID for the new data loader binder service.
|
||
|
* @param params DataLoaderParamsParcel object that contains data loader params, including
|
||
|
* its package name, class name, and additional parameters.
|
||
|
* @param bindDelayMs introduce a delay before actual bind in case we want to avoid busylooping
|
||
|
* @param listener Callback for the data loader service to report status back to the
|
||
|
* caller.
|
||
|
* @return false if 1) target ID collides with a data loader that is already bound to data
|
||
|
* loader manager; 2) package name is not specified; 3) fails to find data loader package;
|
||
|
* or 4) fails to bind to the specified data loader service, otherwise return true.
|
||
|
*/
|
||
|
public boolean bindToDataLoader(int dataLoaderId, @NonNull DataLoaderParamsParcel params,
|
||
|
long bindDelayMs, @NonNull IDataLoaderStatusListener listener) {
|
||
|
try {
|
||
|
return mService.bindToDataLoader(dataLoaderId, params, bindDelayMs, listener);
|
||
|
} catch (RemoteException e) {
|
||
|
throw e.rethrowFromSystemServer();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns a binder interface of the data loader binder service, given its ID.
|
||
|
*/
|
||
|
@Nullable
|
||
|
public IDataLoader getDataLoader(int dataLoaderId) {
|
||
|
try {
|
||
|
return mService.getDataLoader(dataLoaderId);
|
||
|
} catch (RemoteException e) {
|
||
|
throw e.rethrowFromSystemServer();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Unbinds from a data loader binder service, specified by its ID.
|
||
|
* DataLoader will receive destroy notification.
|
||
|
*/
|
||
|
@Nullable
|
||
|
public void unbindFromDataLoader(int dataLoaderId) {
|
||
|
try {
|
||
|
mService.unbindFromDataLoader(dataLoaderId);
|
||
|
} catch (RemoteException e) {
|
||
|
throw e.rethrowFromSystemServer();
|
||
|
}
|
||
|
}
|
||
|
}
|