blob: 294151aff82c879ebe8b2ecc03d11caa7dbdebfd [file] [log] [blame]
/*
* Copyright (C) 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 android.content.rollback;
import android.annotation.NonNull;
import android.annotation.Nullable;
import android.annotation.SystemService;
import android.annotation.TestApi;
import android.content.Context;
import android.content.IntentSender;
import android.os.RemoteException;
import java.util.List;
/**
* Offers the ability to rollback packages after upgrade.
* <p>
* For packages installed with rollbacks enabled, the RollbackManager can be
* used to initiate rollback of those packages for a limited time period after
* upgrade.
*
* TODO: Require an appropriate permission for apps to use these APIs.
*
* @see PackageInstaller.SessionParams#setEnableRollback()
* @hide TODO: hidden, @TestApi until we decide on public vs. @SystemApi.
*/
@TestApi
@SystemService(Context.ROLLBACK_SERVICE)
public final class RollbackManager {
private final String mCallerPackageName;
private final IRollbackManager mBinder;
/** {@hide} */
public RollbackManager(Context context, IRollbackManager binder) {
mCallerPackageName = context.getPackageName();
mBinder = binder;
}
/**
* Returns the rollback currently available to be executed for the given
* package.
* <p>
* The returned RollbackInfo describes what packages would be rolled back,
* including package version codes before and after rollback. The rollback
* can be initiated using {@link #executeRollback(RollbackInfo,IntentSender)}.
* <p>
* TODO: What if there is no package installed on device for packageName?
*
* @param packageName name of the package to get the availble RollbackInfo for.
* @return the rollback available for the package, or null if no rollback
* is available for the package.
*/
public @Nullable RollbackInfo getAvailableRollback(@NonNull String packageName) {
try {
return mBinder.getAvailableRollback(packageName);
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
/**
* Gets the names of packages that are available for rollback.
* Call {@link #getAvailableRollback(String)} to get more information
* about the rollback available for a particular package.
*
* @return the names of packages that are available for rollback.
*/
public @NonNull List<String> getPackagesWithAvailableRollbacks() {
try {
return mBinder.getPackagesWithAvailableRollbacks().getList();
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
/**
* Gets the list of all recently executed rollbacks.
* This is for the purposes of preventing re-install of a bad version of a
* package.
* <p>
* Returns an empty list if there are no recently executed rollbacks.
* <p>
* To avoid having to keep around complete rollback history forever on a
* device, the returned list of rollbacks is only guaranteed to include
* rollbacks that are still relevant. A rollback is no longer considered
* relevant if the package is subsequently uninstalled or upgraded
* (without the possibility of rollback) to a higher version code than was
* rolled back from.
*
* @return the recently executed rollbacks
*/
public @NonNull List<RollbackInfo> getRecentlyExecutedRollbacks() {
try {
return mBinder.getRecentlyExecutedRollbacks().getList();
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
/**
* Execute the given rollback, rolling back all versions of the packages
* to the last good versions previously installed on the device as
* specified in the given rollback object. The rollback will fail if any
* of the installed packages or available rollbacks are inconsistent with
* the versions specified in the given rollback object, which can happen
* if a package has been updated or a rollback expired since the rollback
* object was retrieved from {@link #getAvailableRollback(String)}.
* <p>
* TODO: Specify the returns status codes.
* TODO: What happens in case reboot is required for the rollback to take
* effect for staged installs?
*
* @param rollback to execute
* @param statusReceiver where to deliver the results
*/
public void executeRollback(@NonNull RollbackInfo rollback,
@NonNull IntentSender statusReceiver) {
try {
mBinder.executeRollback(rollback, mCallerPackageName, statusReceiver);
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
/**
* Reload all persisted rollback data from device storage.
* This API is meant to test that rollback state is properly preserved
* across device reboot, by simulating what happens on reboot without
* actually rebooting the device.
*
* @hide
*/
@TestApi
public void reloadPersistedData() {
try {
mBinder.reloadPersistedData();
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
/**
* Expire the rollback data for a given package.
* This API is meant to facilitate testing of rollback logic for
* expiring rollback data.
*
* @param packageName the name of the package to expire data for.
*
* @hide
*/
@TestApi
public void expireRollbackForPackage(@NonNull String packageName) {
try {
mBinder.expireRollbackForPackage(packageName);
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
}