blob: 0cde6ba38099acc7b8950aba3c4ca185134471df [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 Uhlerccf035d2019-02-04 14:04:52 +000025import java.util.Collections;
Richard Uhler0a79b322019-01-23 13:51:07 +000026import java.util.List;
27
Richard Uhlerb29f1452018-09-12 16:38:15 +010028/**
29 * Information about a set of packages that can be, or already have been
30 * rolled back together.
31 *
Richard Uhlerc739c8c2018-12-12 11:03:34 +000032 * @hide
Richard Uhlerb29f1452018-09-12 16:38:15 +010033 */
Richard Uhlerc739c8c2018-12-12 11:03:34 +000034@SystemApi
Richard Uhlerb29f1452018-09-12 16:38:15 +010035public final class RollbackInfo implements Parcelable {
36
37 /**
Richard Uhlerb9d54472019-01-22 12:50:08 +000038 * A unique identifier for the rollback.
39 */
40 private final int mRollbackId;
41
Richard Uhler0a79b322019-01-23 13:51:07 +000042 private final List<PackageRollbackInfo> mPackages;
Richard Uhlerb29f1452018-09-12 16:38:15 +010043
Richard Uhlerbf5b5c42019-01-28 15:26:37 +000044 private final List<VersionedPackage> mCausePackages;
45
Richard Uhlerccf035d2019-02-04 14:04:52 +000046 private final boolean mIsStaged;
47 private final int mCommittedSessionId;
48
Richard Uhlerc739c8c2018-12-12 11:03:34 +000049 /** @hide */
Richard Uhlerccf035d2019-02-04 14:04:52 +000050 public RollbackInfo(int rollbackId, List<PackageRollbackInfo> packages, boolean isStaged) {
51 this(rollbackId, packages, isStaged, Collections.emptyList(),
52 PackageInstaller.SessionInfo.INVALID_ID);
53 }
54
55 /** @hide */
56 public RollbackInfo(int rollbackId, List<PackageRollbackInfo> packages, boolean isStaged,
57 List<VersionedPackage> causePackages, int committedSessionId) {
Richard Uhlerb9d54472019-01-22 12:50:08 +000058 this.mRollbackId = rollbackId;
Richard Uhler0a79b322019-01-23 13:51:07 +000059 this.mPackages = packages;
Richard Uhlerccf035d2019-02-04 14:04:52 +000060 this.mIsStaged = isStaged;
Richard Uhlerbf5b5c42019-01-28 15:26:37 +000061 this.mCausePackages = causePackages;
Richard Uhlerccf035d2019-02-04 14:04:52 +000062 this.mCommittedSessionId = committedSessionId;
Richard Uhlerb29f1452018-09-12 16:38:15 +010063 }
64
65 private RollbackInfo(Parcel in) {
Richard Uhlerb9d54472019-01-22 12:50:08 +000066 mRollbackId = in.readInt();
Richard Uhler0a79b322019-01-23 13:51:07 +000067 mPackages = in.createTypedArrayList(PackageRollbackInfo.CREATOR);
Richard Uhlerccf035d2019-02-04 14:04:52 +000068 mIsStaged = in.readBoolean();
Richard Uhlerbf5b5c42019-01-28 15:26:37 +000069 mCausePackages = in.createTypedArrayList(VersionedPackage.CREATOR);
Richard Uhlerccf035d2019-02-04 14:04:52 +000070 mCommittedSessionId = in.readInt();
Richard Uhlerb9d54472019-01-22 12:50:08 +000071 }
72
73 /**
74 * Returns a unique identifier for this rollback.
75 */
76 public int getRollbackId() {
77 return mRollbackId;
Richard Uhlerb29f1452018-09-12 16:38:15 +010078 }
79
Richard Uhler0a79b322019-01-23 13:51:07 +000080 /**
81 * Returns the list of package that are rolled back.
82 */
83 public List<PackageRollbackInfo> getPackages() {
84 return mPackages;
85 }
86
Richard Uhlere4e38d62019-01-24 16:12:07 +000087 /**
88 * Returns true if this rollback requires reboot to take effect after
89 * being committed.
90 */
91 public boolean isStaged() {
Richard Uhlerccf035d2019-02-04 14:04:52 +000092 return mIsStaged;
Richard Uhlere4e38d62019-01-24 16:12:07 +000093 }
94
95 /**
96 * Returns the session ID for the committed rollback for staged rollbacks.
97 * Only applicable for rollbacks that have been committed.
98 */
Richard Uhlerd750b852019-01-29 16:04:26 +000099 public int getCommittedSessionId() {
Richard Uhlerccf035d2019-02-04 14:04:52 +0000100 return mCommittedSessionId;
Richard Uhlere4e38d62019-01-24 16:12:07 +0000101 }
102
Richard Uhlerbf5b5c42019-01-28 15:26:37 +0000103 /**
104 * Gets the list of package versions that motivated this rollback.
105 * As provided to {@link #commitRollback} when the rollback was committed.
106 * This is only applicable for rollbacks that have been committed.
107 */
108 public List<VersionedPackage> getCausePackages() {
109 return mCausePackages;
110 }
111
Richard Uhlerb29f1452018-09-12 16:38:15 +0100112 @Override
113 public int describeContents() {
114 return 0;
115 }
116
117 @Override
118 public void writeToParcel(Parcel out, int flags) {
Richard Uhlerb9d54472019-01-22 12:50:08 +0000119 out.writeInt(mRollbackId);
Richard Uhler0a79b322019-01-23 13:51:07 +0000120 out.writeTypedList(mPackages);
Richard Uhlerccf035d2019-02-04 14:04:52 +0000121 out.writeBoolean(mIsStaged);
Richard Uhlerbf5b5c42019-01-28 15:26:37 +0000122 out.writeTypedList(mCausePackages);
Richard Uhlerccf035d2019-02-04 14:04:52 +0000123 out.writeInt(mCommittedSessionId);
Richard Uhlerb29f1452018-09-12 16:38:15 +0100124 }
125
126 public static final Parcelable.Creator<RollbackInfo> CREATOR =
127 new Parcelable.Creator<RollbackInfo>() {
128 public RollbackInfo createFromParcel(Parcel in) {
129 return new RollbackInfo(in);
130 }
131
132 public RollbackInfo[] newArray(int size) {
133 return new RollbackInfo[size];
134 }
135 };
136}