blob: 193f933df782e9401b9bc5a96d73eb7466ebd9ea [file] [log] [blame]
Andrii Kulian446e8242017-10-26 15:17:29 -07001/*
2 * Copyright 2017 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 */
16package android.app;
17
18import android.app.servertransaction.ClientTransaction;
Riddle Hsud3062cb2018-06-30 02:06:42 +080019import android.app.servertransaction.ClientTransactionItem;
Andrii Kulian88e05cb2017-12-05 17:21:10 -080020import android.app.servertransaction.PendingTransactionActions;
Andrii Kulian914aa7d2018-03-19 21:51:53 -070021import android.app.servertransaction.TransactionExecutor;
Andrii Kulian770c4032018-05-02 18:40:59 -070022import android.content.Intent;
Andrii Kulian88e05cb2017-12-05 17:21:10 -080023import android.content.pm.ApplicationInfo;
Andrii Kulian446e8242017-10-26 15:17:29 -070024import android.content.res.CompatibilityInfo;
25import android.content.res.Configuration;
Andrii Kulian446e8242017-10-26 15:17:29 -070026import android.os.IBinder;
Andrii Kulianb372da62018-01-18 10:46:24 -080027import android.util.MergedConfiguration;
Andrii Kulian446e8242017-10-26 15:17:29 -070028
Andrii Kuliand9e2acb2018-03-29 16:07:11 -070029import com.android.internal.annotations.VisibleForTesting;
Andrii Kulian446e8242017-10-26 15:17:29 -070030import com.android.internal.content.ReferrerIntent;
31
32import java.util.List;
Riddle Hsud3062cb2018-06-30 02:06:42 +080033import java.util.Map;
Andrii Kulian446e8242017-10-26 15:17:29 -070034
35/**
36 * Defines operations that a {@link android.app.servertransaction.ClientTransaction} or its items
37 * can perform on client.
38 * @hide
39 */
40public abstract class ClientTransactionHandler {
41
42 // Schedule phase related logic and handlers.
43
44 /** Prepare and schedule transaction for execution. */
45 void scheduleTransaction(ClientTransaction transaction) {
Andrii Kulian88e05cb2017-12-05 17:21:10 -080046 transaction.preExecute(this);
Andrii Kulian446e8242017-10-26 15:17:29 -070047 sendMessage(ActivityThread.H.EXECUTE_TRANSACTION, transaction);
48 }
49
Andrii Kulian914aa7d2018-03-19 21:51:53 -070050 /**
51 * Execute transaction immediately without scheduling it. This is used for local requests, so
52 * it will also recycle the transaction.
53 */
Andrii Kuliand9e2acb2018-03-29 16:07:11 -070054 @VisibleForTesting
55 public void executeTransaction(ClientTransaction transaction) {
Andrii Kulian914aa7d2018-03-19 21:51:53 -070056 transaction.preExecute(this);
57 getTransactionExecutor().execute(transaction);
58 transaction.recycle();
59 }
60
61 /**
62 * Get the {@link TransactionExecutor} that will be performing lifecycle transitions and
63 * callbacks for activities.
64 */
65 abstract TransactionExecutor getTransactionExecutor();
66
Andrii Kulian446e8242017-10-26 15:17:29 -070067 abstract void sendMessage(int what, Object obj);
68
69
70 // Prepare phase related logic and handlers. Methods that inform about about pending changes or
71 // do other internal bookkeeping.
72
Andrii Kulian446e8242017-10-26 15:17:29 -070073 /** Set pending config in case it will be updated by other transaction item. */
74 public abstract void updatePendingConfiguration(Configuration config);
75
76 /** Set current process state. */
77 public abstract void updateProcessState(int processState, boolean fromIpc);
78
79
80 // Execute phase related logic and handlers. Methods here execute actual lifecycle transactions
81 // and deliver callbacks.
82
Riddle Hsud3062cb2018-06-30 02:06:42 +080083 /** Get activity and its corresponding transaction item which are going to destroy. */
84 public abstract Map<IBinder, ClientTransactionItem> getActivitiesToBeDestroyed();
85
Andrii Kulian446e8242017-10-26 15:17:29 -070086 /** Destroy the activity. */
87 public abstract void handleDestroyActivity(IBinder token, boolean finishing, int configChanges,
Bryce Leea33c13d2018-02-08 14:37:06 -080088 boolean getNonConfigInstance, String reason);
Andrii Kulian446e8242017-10-26 15:17:29 -070089
90 /** Pause the activity. */
91 public abstract void handlePauseActivity(IBinder token, boolean finished, boolean userLeaving,
Andrii Kuliana6176e32018-02-27 11:51:18 -080092 int configChanges, PendingTransactionActions pendingActions, String reason);
Andrii Kulian446e8242017-10-26 15:17:29 -070093
Andrii Kuliandfbf9712018-03-08 15:42:24 -080094 /**
95 * Resume the activity.
96 * @param token Target activity token.
97 * @param finalStateRequest Flag indicating if this call is handling final lifecycle state
98 * request for a transaction.
99 * @param isForward Flag indicating if next transition is forward.
100 * @param reason Reason for performing this operation.
101 */
102 public abstract void handleResumeActivity(IBinder token, boolean finalStateRequest,
103 boolean isForward, String reason);
Andrii Kulian446e8242017-10-26 15:17:29 -0700104
Andrii Kulian829829c2018-03-19 18:19:05 -0700105 /**
106 * Stop the activity.
107 * @param token Target activity token.
108 * @param show Flag indicating whether activity is still shown.
109 * @param configChanges Activity configuration changes.
110 * @param pendingActions Pending actions to be used on this or later stages of activity
111 * transaction.
112 * @param finalStateRequest Flag indicating if this call is handling final lifecycle state
113 * request for a transaction.
114 * @param reason Reason for performing this operation.
115 */
Andrii Kulian446e8242017-10-26 15:17:29 -0700116 public abstract void handleStopActivity(IBinder token, boolean show, int configChanges,
Andrii Kulian829829c2018-03-19 18:19:05 -0700117 PendingTransactionActions pendingActions, boolean finalStateRequest, String reason);
Andrii Kulian88e05cb2017-12-05 17:21:10 -0800118
119 /** Report that activity was stopped to server. */
120 public abstract void reportStop(PendingTransactionActions pendingActions);
121
122 /** Restart the activity after it was stopped. */
123 public abstract void performRestartActivity(IBinder token, boolean start);
Andrii Kulian446e8242017-10-26 15:17:29 -0700124
125 /** Deliver activity (override) configuration change. */
126 public abstract void handleActivityConfigurationChanged(IBinder activityToken,
127 Configuration overrideConfig, int displayId);
128
129 /** Deliver result from another activity. */
Andrii Kuliane55b0092018-04-19 15:29:22 -0700130 public abstract void handleSendResult(IBinder token, List<ResultInfo> results, String reason);
Andrii Kulian446e8242017-10-26 15:17:29 -0700131
132 /** Deliver multi-window mode change notification. */
133 public abstract void handleMultiWindowModeChanged(IBinder token, boolean isInMultiWindowMode,
134 Configuration overrideConfig);
135
136 /** Deliver new intent. */
137 public abstract void handleNewIntent(IBinder token, List<ReferrerIntent> intents,
138 boolean andPause);
139
140 /** Deliver picture-in-picture mode change notification. */
141 public abstract void handlePictureInPictureModeChanged(IBinder token, boolean isInPipMode,
142 Configuration overrideConfig);
143
144 /** Update window visibility. */
145 public abstract void handleWindowVisibility(IBinder token, boolean show);
146
147 /** Perform activity launch. */
Andrii Kulian88e05cb2017-12-05 17:21:10 -0800148 public abstract Activity handleLaunchActivity(ActivityThread.ActivityClientRecord r,
Andrii Kulian770c4032018-05-02 18:40:59 -0700149 PendingTransactionActions pendingActions, Intent customIntent);
Andrii Kulian88e05cb2017-12-05 17:21:10 -0800150
151 /** Perform activity start. */
152 public abstract void handleStartActivity(ActivityThread.ActivityClientRecord r,
153 PendingTransactionActions pendingActions);
154
155 /** Get package info. */
Todd Kennedy233a0b12018-01-29 20:30:24 +0000156 public abstract LoadedApk getPackageInfoNoCheck(ApplicationInfo ai,
Andrii Kulian88e05cb2017-12-05 17:21:10 -0800157 CompatibilityInfo compatInfo);
Andrii Kulian446e8242017-10-26 15:17:29 -0700158
159 /** Deliver app configuration change notification. */
160 public abstract void handleConfigurationChanged(Configuration config);
Andrii Kulian88e05cb2017-12-05 17:21:10 -0800161
162 /**
163 * Get {@link android.app.ActivityThread.ActivityClientRecord} instance that corresponds to the
164 * provided token.
165 */
166 public abstract ActivityThread.ActivityClientRecord getActivityClient(IBinder token);
Bryce Leed946f862018-01-16 15:59:47 -0800167
168 /**
Andrii Kulianb372da62018-01-18 10:46:24 -0800169 * Prepare activity relaunch to update internal bookkeeping. This is used to track multiple
170 * relaunch and config update requests.
171 * @param token Activity token.
172 * @param pendingResults Activity results to be delivered.
173 * @param pendingNewIntents New intent messages to be delivered.
174 * @param configChanges Mask of configuration changes that have occurred.
175 * @param config New configuration applied to the activity.
176 * @param preserveWindow Whether the activity should try to reuse the window it created,
177 * including the decor view after the relaunch.
178 * @return An initialized instance of {@link ActivityThread.ActivityClientRecord} to use during
179 * relaunch, or {@code null} if relaunch cancelled.
180 */
181 public abstract ActivityThread.ActivityClientRecord prepareRelaunchActivity(IBinder token,
182 List<ResultInfo> pendingResults, List<ReferrerIntent> pendingNewIntents,
183 int configChanges, MergedConfiguration config, boolean preserveWindow);
184
185 /**
186 * Perform activity relaunch.
187 * @param r Activity client record prepared for relaunch.
188 * @param pendingActions Pending actions to be used on later stages of activity transaction.
189 * */
190 public abstract void handleRelaunchActivity(ActivityThread.ActivityClientRecord r,
191 PendingTransactionActions pendingActions);
192
193 /**
194 * Report that relaunch request was handled.
195 * @param token Target activity token.
196 * @param pendingActions Pending actions initialized on earlier stages of activity transaction.
197 * Used to check if we should report relaunch to WM.
198 * */
199 public abstract void reportRelaunch(IBinder token, PendingTransactionActions pendingActions);
Andrii Kulian446e8242017-10-26 15:17:29 -0700200}