blob: 3fd247670a9d31da57df9cea958dd4daafdf478e [file] [log] [blame]
Richard Uhlerb29f1452018-09-12 16:38:15 +01001/*
2 * Copyright (C) 2018 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 */
16
17package android.content.rollback;
18
Richard Uhlerc739c8c2018-12-12 11:03:34 +000019import android.annotation.SystemApi;
Richard Uhlere4e38d62019-01-24 16:12:07 +000020import android.content.pm.PackageInstaller;
Richard Uhlerbf5b5c42019-01-28 15:26:37 +000021import android.content.pm.VersionedPackage;
Richard Uhlerb29f1452018-09-12 16:38:15 +010022import android.os.Parcel;
23import android.os.Parcelable;
24
Richard Uhler0a79b322019-01-23 13:51:07 +000025import java.util.List;
26
Richard Uhlerb29f1452018-09-12 16:38:15 +010027/**
28 * Information about a set of packages that can be, or already have been
29 * rolled back together.
30 *
Richard Uhlerc739c8c2018-12-12 11:03:34 +000031 * @hide
Richard Uhlerb29f1452018-09-12 16:38:15 +010032 */
Richard Uhlerc739c8c2018-12-12 11:03:34 +000033@SystemApi
Richard Uhlerb29f1452018-09-12 16:38:15 +010034public final class RollbackInfo implements Parcelable {
35
36 /**
Richard Uhlerb9d54472019-01-22 12:50:08 +000037 * A unique identifier for the rollback.
38 */
39 private final int mRollbackId;
40
Richard Uhler0a79b322019-01-23 13:51:07 +000041 private final List<PackageRollbackInfo> mPackages;
Richard Uhlerb29f1452018-09-12 16:38:15 +010042
Richard Uhlerbf5b5c42019-01-28 15:26:37 +000043 private final List<VersionedPackage> mCausePackages;
44
Richard Uhlerc739c8c2018-12-12 11:03:34 +000045 /** @hide */
Richard Uhlerbf5b5c42019-01-28 15:26:37 +000046 public RollbackInfo(int rollbackId, List<PackageRollbackInfo> packages,
47 List<VersionedPackage> causePackages) {
Richard Uhlerb9d54472019-01-22 12:50:08 +000048 this.mRollbackId = rollbackId;
Richard Uhler0a79b322019-01-23 13:51:07 +000049 this.mPackages = packages;
Richard Uhlerbf5b5c42019-01-28 15:26:37 +000050 this.mCausePackages = causePackages;
Richard Uhlerb29f1452018-09-12 16:38:15 +010051 }
52
53 private RollbackInfo(Parcel in) {
Richard Uhlerb9d54472019-01-22 12:50:08 +000054 mRollbackId = in.readInt();
Richard Uhler0a79b322019-01-23 13:51:07 +000055 mPackages = in.createTypedArrayList(PackageRollbackInfo.CREATOR);
Richard Uhlerbf5b5c42019-01-28 15:26:37 +000056 mCausePackages = in.createTypedArrayList(VersionedPackage.CREATOR);
Richard Uhlerb9d54472019-01-22 12:50:08 +000057 }
58
59 /**
60 * Returns a unique identifier for this rollback.
61 */
62 public int getRollbackId() {
63 return mRollbackId;
Richard Uhlerb29f1452018-09-12 16:38:15 +010064 }
65
Richard Uhler0a79b322019-01-23 13:51:07 +000066 /**
67 * Returns the list of package that are rolled back.
68 */
69 public List<PackageRollbackInfo> getPackages() {
70 return mPackages;
71 }
72
Richard Uhlere4e38d62019-01-24 16:12:07 +000073 /**
74 * Returns true if this rollback requires reboot to take effect after
75 * being committed.
76 */
77 public boolean isStaged() {
78 // TODO: Support rollback of staged installs.
79 return false;
80 }
81
82 /**
83 * Returns the session ID for the committed rollback for staged rollbacks.
84 * Only applicable for rollbacks that have been committed.
85 */
Richard Uhlerd750b852019-01-29 16:04:26 +000086 public int getCommittedSessionId() {
Richard Uhlere4e38d62019-01-24 16:12:07 +000087 // TODO: Support rollback of staged installs.
88 return PackageInstaller.SessionInfo.INVALID_ID;
89 }
90
Richard Uhlerbf5b5c42019-01-28 15:26:37 +000091 /**
92 * Gets the list of package versions that motivated this rollback.
93 * As provided to {@link #commitRollback} when the rollback was committed.
94 * This is only applicable for rollbacks that have been committed.
95 */
96 public List<VersionedPackage> getCausePackages() {
97 return mCausePackages;
98 }
99
Richard Uhlerb29f1452018-09-12 16:38:15 +0100100 @Override
101 public int describeContents() {
102 return 0;
103 }
104
105 @Override
106 public void writeToParcel(Parcel out, int flags) {
Richard Uhlerb9d54472019-01-22 12:50:08 +0000107 out.writeInt(mRollbackId);
Richard Uhler0a79b322019-01-23 13:51:07 +0000108 out.writeTypedList(mPackages);
Richard Uhlerbf5b5c42019-01-28 15:26:37 +0000109 out.writeTypedList(mCausePackages);
Richard Uhlerb29f1452018-09-12 16:38:15 +0100110 }
111
112 public static final Parcelable.Creator<RollbackInfo> CREATOR =
113 new Parcelable.Creator<RollbackInfo>() {
114 public RollbackInfo createFromParcel(Parcel in) {
115 return new RollbackInfo(in);
116 }
117
118 public RollbackInfo[] newArray(int size) {
119 return new RollbackInfo[size];
120 }
121 };
122}