blob: 00597e242d790854f96a0b7f08a972e6683e9db4 [file] [log] [blame]
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001/*
2 * Copyright (C) 2012 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 com.android.server.am;
18
Jeff Sharkeybedbaa92015-12-02 16:42:25 -070019import static com.android.server.am.ActivityManagerDebugConfig.TAG_AM;
20import static com.android.server.am.ActivityManagerDebugConfig.TAG_WITH_CLASS_NAME;
21
Dianne Hackborn80a4af22012-08-27 19:18:31 -070022import android.app.IStopUserCallback;
Jeff Sharkey1c7736d2017-07-06 10:33:25 -060023import android.os.Trace;
Dianne Hackborn80a4af22012-08-27 19:18:31 -070024import android.os.UserHandle;
Amith Yamasani37a40c22015-06-17 13:25:42 -070025import android.util.ArrayMap;
Jeff Sharkeybedbaa92015-12-02 16:42:25 -070026import android.util.Slog;
Yi Jin148d7f42017-11-28 14:23:56 -080027import android.util.proto.ProtoOutputStream;
Dianne Hackborn80a4af22012-08-27 19:18:31 -070028
Jeff Sharkey84a4c972016-04-18 15:36:39 -060029import com.android.internal.util.ProgressReporter;
Yi Jin148d7f42017-11-28 14:23:56 -080030import com.android.server.am.proto.UserStateProto;
Jeff Sharkey84a4c972016-04-18 15:36:39 -060031
32import java.io.PrintWriter;
33import java.util.ArrayList;
34
Amith Yamasani37a40c22015-06-17 13:25:42 -070035public final class UserState {
Jeff Sharkeybedbaa92015-12-02 16:42:25 -070036 private static final String TAG = TAG_WITH_CLASS_NAME ? "UserState" : TAG_AM;
37
Dianne Hackborn36d337a2012-10-08 14:33:47 -070038 // User is first coming up.
Dianne Hackborn80a4af22012-08-27 19:18:31 -070039 public final static int STATE_BOOTING = 0;
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -060040 // User is in the locked state.
Jeff Sharkeybedbaa92015-12-02 16:42:25 -070041 public final static int STATE_RUNNING_LOCKED = 1;
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -060042 // User is in the unlocking state.
43 public final static int STATE_RUNNING_UNLOCKING = 2;
44 // User is in the running state.
45 public final static int STATE_RUNNING_UNLOCKED = 3;
Dianne Hackborn36d337a2012-10-08 14:33:47 -070046 // User is in the initial process of being stopped.
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -060047 public final static int STATE_STOPPING = 4;
Dianne Hackborn36d337a2012-10-08 14:33:47 -070048 // User is in the final phase of stopping, sending Intent.ACTION_SHUTDOWN.
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -060049 public final static int STATE_SHUTDOWN = 5;
Dianne Hackborn80a4af22012-08-27 19:18:31 -070050
51 public final UserHandle mHandle;
52 public final ArrayList<IStopUserCallback> mStopCallbacks
53 = new ArrayList<IStopUserCallback>();
Jeff Sharkey84a4c972016-04-18 15:36:39 -060054 public final ProgressReporter mUnlockProgress;
Dianne Hackborn80a4af22012-08-27 19:18:31 -070055
Jeff Sharkeybedbaa92015-12-02 16:42:25 -070056 public int state = STATE_BOOTING;
57 public int lastState = STATE_BOOTING;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -070058 public boolean switching;
Jeff Sharkey24d94912016-07-07 12:33:48 -060059 public boolean tokenProvided;
Dianne Hackborn80a4af22012-08-27 19:18:31 -070060
Amith Yamasani37a40c22015-06-17 13:25:42 -070061 /**
62 * The last time that a provider was reported to usage stats as being brought to important
63 * foreground procstate.
Fyodor Kupolov1b3edac2017-09-19 15:48:06 -070064 * <p><strong>Important: </strong>Only access this field when holding ActivityManagerService
65 * lock.
Amith Yamasani37a40c22015-06-17 13:25:42 -070066 */
Fyodor Kupolov1b3edac2017-09-19 15:48:06 -070067 final ArrayMap<String,Long> mProviderLastReportedFg = new ArrayMap<>();
Amith Yamasani37a40c22015-06-17 13:25:42 -070068
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -080069 public UserState(UserHandle handle) {
Dianne Hackborn80a4af22012-08-27 19:18:31 -070070 mHandle = handle;
Jeff Sharkey84a4c972016-04-18 15:36:39 -060071 mUnlockProgress = new ProgressReporter(handle.getIdentifier());
Dianne Hackborn80a4af22012-08-27 19:18:31 -070072 }
73
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -060074 public boolean setState(int oldState, int newState) {
75 if (state == oldState) {
76 setState(newState);
77 return true;
78 } else {
79 Slog.w(TAG, "Expected user " + mHandle.getIdentifier() + " in state "
80 + stateToString(oldState) + " but was in state " + stateToString(state));
81 return false;
82 }
83 }
84
Jeff Sharkeybedbaa92015-12-02 16:42:25 -070085 public void setState(int newState) {
Fyodor Kupolovfa0edc82017-03-01 15:53:57 -080086 if (newState == state) {
87 return;
Dianne Hackborn36d337a2012-10-08 14:33:47 -070088 }
Jeff Sharkey1c7736d2017-07-06 10:33:25 -060089 final int userId = mHandle.getIdentifier();
90 if (state != STATE_BOOTING) {
91 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER,
92 stateToString(state) + " " + userId, userId);
93 }
94 if (newState != STATE_SHUTDOWN) {
95 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER,
96 stateToString(newState) + " " + userId, userId);
97 }
98 Slog.i(TAG, "User " + userId + " state changed from "
Fyodor Kupolovfa0edc82017-03-01 15:53:57 -080099 + stateToString(state) + " to " + stateToString(newState));
Jeff Sharkey1c7736d2017-07-06 10:33:25 -0600100 EventLogTags.writeAmUserStateChanged(userId, newState);
Jeff Sharkeybedbaa92015-12-02 16:42:25 -0700101 lastState = state;
102 state = newState;
103 }
104
Makoto Onuki88aef752017-03-29 16:52:03 -0700105 public static String stateToString(int state) {
Jeff Sharkeybedbaa92015-12-02 16:42:25 -0700106 switch (state) {
107 case STATE_BOOTING: return "BOOTING";
108 case STATE_RUNNING_LOCKED: return "RUNNING_LOCKED";
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -0600109 case STATE_RUNNING_UNLOCKING: return "RUNNING_UNLOCKING";
110 case STATE_RUNNING_UNLOCKED: return "RUNNING_UNLOCKED";
Jeff Sharkeybedbaa92015-12-02 16:42:25 -0700111 case STATE_STOPPING: return "STOPPING";
112 case STATE_SHUTDOWN: return "SHUTDOWN";
113 default: return Integer.toString(state);
114 }
115 }
116
Yi Jin148d7f42017-11-28 14:23:56 -0800117 public static int stateToProtoEnum(int state) {
118 switch (state) {
119 case STATE_BOOTING: return UserStateProto.STATE_BOOTING;
120 case STATE_RUNNING_LOCKED: return UserStateProto.STATE_RUNNING_LOCKED;
121 case STATE_RUNNING_UNLOCKING: return UserStateProto.STATE_RUNNING_UNLOCKING;
122 case STATE_RUNNING_UNLOCKED: return UserStateProto.STATE_RUNNING_UNLOCKED;
123 case STATE_STOPPING: return UserStateProto.STATE_STOPPING;
124 case STATE_SHUTDOWN: return UserStateProto.STATE_SHUTDOWN;
125 default: return state;
126 }
127 }
128
Jeff Sharkeybedbaa92015-12-02 16:42:25 -0700129 void dump(String prefix, PrintWriter pw) {
130 pw.print(prefix);
131 pw.print("state="); pw.print(stateToString(state));
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700132 if (switching) pw.print(" SWITCHING");
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700133 pw.println();
Dianne Hackborn80a4af22012-08-27 19:18:31 -0700134 }
Yi Jin148d7f42017-11-28 14:23:56 -0800135
136 void writeToProto(ProtoOutputStream proto, long fieldId) {
137 final long token = proto.start(fieldId);
138 proto.write(UserStateProto.STATE, stateToProtoEnum(state));
139 proto.write(UserStateProto.SWITCHING, switching);
140 proto.end(token);
141 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -0700142}