blob: 4a1bf7523dd7c95b10f0247e696dbe1aad6dbcf0 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 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.app;
18
Christopher Tate45281862010-03-05 15:46:30 -080019import android.app.backup.BackupAgent;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080020import android.content.BroadcastReceiver;
Dianne Hackbornc68c9132011-07-29 01:25:18 -070021import android.content.ComponentCallbacks2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022import android.content.ComponentName;
23import android.content.ContentProvider;
24import android.content.Context;
25import android.content.IContentProvider;
26import android.content.Intent;
Suchi Amalapurapu1ccac752009-06-12 10:09:58 -070027import android.content.IIntentReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028import android.content.pm.ActivityInfo;
29import android.content.pm.ApplicationInfo;
30import android.content.pm.IPackageManager;
31import android.content.pm.InstrumentationInfo;
32import android.content.pm.PackageManager;
Sen Hubde75702010-05-28 01:54:03 -070033import android.content.pm.PackageManager.NameNotFoundException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080034import android.content.pm.ProviderInfo;
35import android.content.pm.ServiceInfo;
36import android.content.res.AssetManager;
Mitsuru Oshimaba3ba572009-07-08 18:49:26 -070037import android.content.res.CompatibilityInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080038import android.content.res.Configuration;
39import android.content.res.Resources;
40import android.database.sqlite.SQLiteDatabase;
41import android.database.sqlite.SQLiteDebug;
Vasu Noric3849202010-03-09 10:47:25 -080042import android.database.sqlite.SQLiteDebug.DbStats;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080043import android.graphics.Bitmap;
44import android.graphics.Canvas;
Jeff Brown98365d72012-08-19 20:30:52 -070045import android.hardware.display.DisplayManager;
Jeff Brownbd6e1502012-08-28 03:27:37 -070046import android.hardware.display.DisplayManagerGlobal;
Robert Greenwalt434203a2010-10-11 16:00:27 -070047import android.net.IConnectivityManager;
48import android.net.Proxy;
49import android.net.ProxyProperties;
Romain Guya9582652011-11-10 14:20:10 -080050import android.opengl.GLUtils;
Joe Onoratod630f102011-03-17 18:42:26 -070051import android.os.AsyncTask;
Amith Yamasani742a6712011-05-04 14:49:28 -070052import android.os.Binder;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080053import android.os.Bundle;
54import android.os.Debug;
55import android.os.Handler;
56import android.os.IBinder;
57import android.os.Looper;
58import android.os.Message;
59import android.os.MessageQueue;
Dianne Hackborn9c8dd552009-06-23 19:22:52 -070060import android.os.ParcelFileDescriptor;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080061import android.os.Process;
62import android.os.RemoteException;
63import android.os.ServiceManager;
Brad Fitzpatrick438d0592010-06-10 12:19:19 -070064import android.os.StrictMode;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080065import android.os.SystemClock;
Dianne Hackborn1ded0b12012-04-26 14:14:50 -070066import android.os.Trace;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070067import android.os.UserHandle;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080068import android.util.AndroidRuntimeException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080069import android.util.DisplayMetrics;
70import android.util.EventLog;
71import android.util.Log;
Dianne Hackborn287952c2010-09-22 22:34:31 -070072import android.util.LogPrinter;
Jeff Brown6754ba22011-12-14 20:20:01 -080073import android.util.PrintWriterPrinter;
Dianne Hackbornc9421ba2010-03-11 22:23:46 -080074import android.util.Slog;
Jeff Brownd32460c2012-07-20 16:15:36 -070075import android.view.CompatibilityInfoHolder;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080076import android.view.Display;
Romain Guy52339202010-09-03 16:04:46 -070077import android.view.HardwareRenderer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080078import android.view.View;
79import android.view.ViewDebug;
80import android.view.ViewManager;
Dianne Hackborn6dd005b2011-07-18 13:22:50 -070081import android.view.ViewRootImpl;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080082import android.view.Window;
83import android.view.WindowManager;
Jeff Brown98365d72012-08-19 20:30:52 -070084import android.view.WindowManagerGlobal;
Jason Samsa6f338c2012-02-24 16:22:16 -080085import android.renderscript.RenderScript;
Kenny Roote29df162012-08-10 08:28:37 -070086import android.security.AndroidKeyStoreProvider;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080087
88import com.android.internal.os.BinderInternal;
89import com.android.internal.os.RuntimeInit;
Bob Leee5408332009-09-04 18:31:17 -070090import com.android.internal.os.SamplingProfilerIntegration;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080091
92import org.apache.harmony.xnet.provider.jsse.OpenSSLSocketImpl;
93
94import java.io.File;
95import java.io.FileDescriptor;
96import java.io.FileOutputStream;
Dianne Hackborn9c8dd552009-06-23 19:22:52 -070097import java.io.IOException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080098import java.io.PrintWriter;
99import java.lang.ref.WeakReference;
Robert Greenwalt03595d02010-11-02 14:08:23 -0700100import java.net.InetAddress;
Kenny Roote29df162012-08-10 08:28:37 -0700101import java.security.Security;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800102import java.util.ArrayList;
103import java.util.HashMap;
104import java.util.Iterator;
105import java.util.List;
106import java.util.Locale;
107import java.util.Map;
108import java.util.TimeZone;
109import java.util.regex.Pattern;
110
Jeff Sharkeye861b422012-03-01 20:59:22 -0800111import libcore.io.IoUtils;
112
Brad Fitzpatrick4d9e6d22010-11-15 08:49:51 -0800113import dalvik.system.CloseGuard;
Bob Leee5408332009-09-04 18:31:17 -0700114
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800115final class SuperNotCalledException extends AndroidRuntimeException {
116 public SuperNotCalledException(String msg) {
117 super(msg);
118 }
119}
120
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -0700121final class RemoteServiceException extends AndroidRuntimeException {
122 public RemoteServiceException(String msg) {
123 super(msg);
124 }
125}
126
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800127/**
128 * This manages the execution of the main thread in an
129 * application process, scheduling and executing activities,
130 * broadcasts, and other operations on it as the activity
131 * manager requests.
132 *
133 * {@hide}
134 */
135public final class ActivityThread {
Dianne Hackborne829fef2010-10-26 17:44:01 -0700136 /** @hide */
137 public static final String TAG = "ActivityThread";
Jim Miller0b2a6d02010-07-13 18:01:29 -0700138 private static final android.graphics.Bitmap.Config THUMBNAIL_FORMAT = Bitmap.Config.RGB_565;
Joe Onorato43a17652011-04-06 19:22:23 -0700139 static final boolean localLOGV = false;
Dianne Hackborn287952c2010-09-22 22:34:31 -0700140 static final boolean DEBUG_MESSAGES = false;
Dianne Hackborne829fef2010-10-26 17:44:01 -0700141 /** @hide */
142 public static final boolean DEBUG_BROADCAST = false;
Chris Tate8a7dc172009-03-24 20:11:42 -0700143 private static final boolean DEBUG_RESULTS = false;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700144 private static final boolean DEBUG_BACKUP = false;
Dianne Hackborndc6b6352009-09-30 14:20:09 -0700145 private static final boolean DEBUG_CONFIGURATION = false;
Dianne Hackborna0c283e2012-02-09 10:47:01 -0800146 private static final boolean DEBUG_SERVICE = false;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700147 private static final boolean DEBUG_MEMORY_TRIM = false;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700148 private static final boolean DEBUG_PROVIDER = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800149 private static final long MIN_TIME_BETWEEN_GCS = 5*1000;
150 private static final Pattern PATTERN_SEMICOLON = Pattern.compile(";");
151 private static final int SQLITE_MEM_RELEASED_EVENT_LOG_TAG = 75003;
152 private static final int LOG_ON_PAUSE_CALLED = 30021;
153 private static final int LOG_ON_RESUME_CALLED = 30022;
154
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700155 static ContextImpl mSystemContext = null;
Bob Leee5408332009-09-04 18:31:17 -0700156
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700157 static IPackageManager sPackageManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800158
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700159 final ApplicationThread mAppThread = new ApplicationThread();
160 final Looper mLooper = Looper.myLooper();
161 final H mH = new H();
162 final HashMap<IBinder, ActivityClientRecord> mActivities
163 = new HashMap<IBinder, ActivityClientRecord>();
164 // List of new activities (via ActivityRecord.nextIdle) that should
165 // be reported when next we idle.
166 ActivityClientRecord mNewActivities = null;
167 // Number of activities that are currently visible on-screen.
168 int mNumVisibleActivities = 0;
169 final HashMap<IBinder, Service> mServices
170 = new HashMap<IBinder, Service>();
171 AppBindData mBoundApplication;
Jeff Sharkey3ad9d002011-09-15 15:51:54 -0700172 Profiler mProfiler;
Dianne Hackborn908aecc2012-07-31 16:37:34 -0700173 int mCurDefaultDisplayDpi;
Dianne Hackborndde331c2012-08-03 14:01:57 -0700174 boolean mDensityCompatMode;
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700175 Configuration mConfiguration;
Dianne Hackborn5fd21692011-06-07 14:09:47 -0700176 Configuration mCompatConfiguration;
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700177 Configuration mResConfiguration;
Dianne Hackborn5fd21692011-06-07 14:09:47 -0700178 CompatibilityInfo mResCompatibilityInfo;
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700179 Application mInitialApplication;
180 final ArrayList<Application> mAllApplications
181 = new ArrayList<Application>();
182 // set of instantiated backup agents, keyed by package name
183 final HashMap<String, BackupAgent> mBackupAgents = new HashMap<String, BackupAgent>();
Romain Guy65b345f2011-07-27 18:51:50 -0700184 static final ThreadLocal<ActivityThread> sThreadLocal = new ThreadLocal<ActivityThread>();
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700185 Instrumentation mInstrumentation;
186 String mInstrumentationAppDir = null;
Brian Carlstromd893a892012-04-01 21:30:26 -0700187 String mInstrumentationAppLibraryDir = null;
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700188 String mInstrumentationAppPackage = null;
189 String mInstrumentedAppDir = null;
Brian Carlstromd893a892012-04-01 21:30:26 -0700190 String mInstrumentedAppLibraryDir = null;
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700191 boolean mSystemThread = false;
192 boolean mJitEnabled = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800193
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700194 // These can be accessed by multiple threads; mPackages is the lock.
195 // XXX For now we keep around information about all packages we have
196 // seen, not removing entries from this map.
Dianne Hackborn1fbee792011-11-30 11:29:58 -0800197 // NOTE: The activity and window managers need to call in to
Dianne Hackborn2f0b1752011-05-31 17:59:49 -0700198 // ActivityThread to do things like update resource configurations,
Dianne Hackborn1fbee792011-11-30 11:29:58 -0800199 // which means this lock gets held while the activity and window managers
200 // holds their own lock. Thus you MUST NEVER call back into the activity manager
201 // or window manager or anything that depends on them while holding this lock.
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700202 final HashMap<String, WeakReference<LoadedApk>> mPackages
203 = new HashMap<String, WeakReference<LoadedApk>>();
204 final HashMap<String, WeakReference<LoadedApk>> mResourcePackages
205 = new HashMap<String, WeakReference<LoadedApk>>();
Dianne Hackborn5fd21692011-06-07 14:09:47 -0700206 final HashMap<CompatibilityInfo, DisplayMetrics> mDisplayMetrics
207 = new HashMap<CompatibilityInfo, DisplayMetrics>();
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700208 final HashMap<ResourcesKey, WeakReference<Resources> > mActiveResources
209 = new HashMap<ResourcesKey, WeakReference<Resources> >();
210 final ArrayList<ActivityClientRecord> mRelaunchingActivities
211 = new ArrayList<ActivityClientRecord>();
212 Configuration mPendingConfiguration = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800213
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700214 // The lock of mProviderMap protects the following variables.
215 final HashMap<String, ProviderClientRecord> mProviderMap
216 = new HashMap<String, ProviderClientRecord>();
217 final HashMap<IBinder, ProviderRefCount> mProviderRefCountMap
218 = new HashMap<IBinder, ProviderRefCount>();
219 final HashMap<IBinder, ProviderClientRecord> mLocalProviders
220 = new HashMap<IBinder, ProviderClientRecord>();
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700221 final HashMap<ComponentName, ProviderClientRecord> mLocalProvidersByName
222 = new HashMap<ComponentName, ProviderClientRecord>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800223
Jeff Hamilton52d32032011-01-08 15:31:26 -0600224 final HashMap<Activity, ArrayList<OnActivityPausedListener>> mOnPauseListeners
225 = new HashMap<Activity, ArrayList<OnActivityPausedListener>>();
226
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700227 final GcIdler mGcIdler = new GcIdler();
228 boolean mGcIdlerScheduled = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800229
Brad Fitzpatrick333b8cb2010-08-26 12:04:57 -0700230 static Handler sMainThreadHandler; // set once in main()
231
Svetoslav Ganov9aa597e2011-03-03 18:17:41 -0800232 Bundle mCoreSettings = null;
233
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400234 static final class ActivityClientRecord {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800235 IBinder token;
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700236 int ident;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800237 Intent intent;
238 Bundle state;
239 Activity activity;
240 Window window;
241 Activity parent;
242 String embeddedID;
Dianne Hackbornb4bc78b2010-05-12 18:59:50 -0700243 Activity.NonConfigurationInstances lastNonConfigurationInstances;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800244 boolean paused;
245 boolean stopped;
246 boolean hideForNow;
247 Configuration newConfig;
Dianne Hackborne88846e2009-09-30 21:34:25 -0700248 Configuration createdConfig;
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700249 ActivityClientRecord nextIdle;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800250
Dianne Hackborn62f20ec2011-08-15 17:40:28 -0700251 String profileFile;
252 ParcelFileDescriptor profileFd;
253 boolean autoStopProfiler;
254
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800255 ActivityInfo activityInfo;
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400256 CompatibilityInfo compatInfo;
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700257 LoadedApk packageInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800258
259 List<ResultInfo> pendingResults;
260 List<Intent> pendingIntents;
261
262 boolean startsNotResumed;
263 boolean isForward;
Dianne Hackborn30c9bd82010-12-01 16:07:40 -0800264 int pendingConfigChanges;
265 boolean onlyLocalRequest;
266
267 View mPendingRemoveWindow;
268 WindowManager mPendingRemoveWindowManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800269
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700270 ActivityClientRecord() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800271 parent = null;
272 embeddedID = null;
273 paused = false;
274 stopped = false;
275 hideForNow = false;
276 nextIdle = null;
277 }
278
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800279 public boolean isPreHoneycomb() {
280 if (activity != null) {
281 return activity.getApplicationInfo().targetSdkVersion
282 < android.os.Build.VERSION_CODES.HONEYCOMB;
283 }
284 return false;
285 }
286
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800287 public String toString() {
Dianne Hackbornb61a0262012-05-14 17:19:18 -0700288 ComponentName componentName = intent != null ? intent.getComponent() : null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800289 return "ActivityRecord{"
290 + Integer.toHexString(System.identityHashCode(this))
291 + " token=" + token + " " + (componentName == null
292 ? "no component name" : componentName.toShortString())
293 + "}";
294 }
295 }
296
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700297 final class ProviderClientRecord {
298 final String[] mNames;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800299 final IContentProvider mProvider;
300 final ContentProvider mLocalProvider;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700301 final IActivityManager.ContentProviderHolder mHolder;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800302
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700303 ProviderClientRecord(String[] names, IContentProvider provider,
304 ContentProvider localProvider,
305 IActivityManager.ContentProviderHolder holder) {
306 mNames = names;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800307 mProvider = provider;
308 mLocalProvider = localProvider;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700309 mHolder = holder;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800310 }
311 }
312
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400313 static final class NewIntentData {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800314 List<Intent> intents;
315 IBinder token;
316 public String toString() {
317 return "NewIntentData{intents=" + intents + " token=" + token + "}";
318 }
319 }
320
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400321 static final class ReceiverData extends BroadcastReceiver.PendingResult {
Dianne Hackborne829fef2010-10-26 17:44:01 -0700322 public ReceiverData(Intent intent, int resultCode, String resultData, Bundle resultExtras,
323 boolean ordered, boolean sticky, IBinder token) {
324 super(resultCode, resultData, resultExtras, TYPE_COMPONENT, ordered, sticky, token);
325 this.intent = intent;
326 }
Robert Greenwalt434203a2010-10-11 16:00:27 -0700327
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800328 Intent intent;
329 ActivityInfo info;
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400330 CompatibilityInfo compatInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800331 public String toString() {
332 return "ReceiverData{intent=" + intent + " packageName=" +
Dianne Hackborne829fef2010-10-26 17:44:01 -0700333 info.packageName + " resultCode=" + getResultCode()
334 + " resultData=" + getResultData() + " resultExtras="
335 + getResultExtras(false) + "}";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800336 }
337 }
338
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400339 static final class CreateBackupAgentData {
Christopher Tate181fafa2009-05-14 11:12:14 -0700340 ApplicationInfo appInfo;
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400341 CompatibilityInfo compatInfo;
Christopher Tate181fafa2009-05-14 11:12:14 -0700342 int backupMode;
343 public String toString() {
344 return "CreateBackupAgentData{appInfo=" + appInfo
345 + " backupAgent=" + appInfo.backupAgentName
346 + " mode=" + backupMode + "}";
347 }
348 }
Bob Leee5408332009-09-04 18:31:17 -0700349
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400350 static final class CreateServiceData {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800351 IBinder token;
352 ServiceInfo info;
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400353 CompatibilityInfo compatInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800354 Intent intent;
355 public String toString() {
356 return "CreateServiceData{token=" + token + " className="
357 + info.name + " packageName=" + info.packageName
358 + " intent=" + intent + "}";
359 }
360 }
361
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400362 static final class BindServiceData {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800363 IBinder token;
364 Intent intent;
365 boolean rebind;
366 public String toString() {
367 return "BindServiceData{token=" + token + " intent=" + intent + "}";
368 }
369 }
370
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400371 static final class ServiceArgsData {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800372 IBinder token;
Dianne Hackborn0c5001d2011-04-12 18:16:08 -0700373 boolean taskRemoved;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800374 int startId;
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -0700375 int flags;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800376 Intent args;
377 public String toString() {
378 return "ServiceArgsData{token=" + token + " startId=" + startId
379 + " args=" + args + "}";
380 }
381 }
382
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400383 static final class AppBindData {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700384 LoadedApk info;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800385 String processName;
386 ApplicationInfo appInfo;
387 List<ProviderInfo> providers;
388 ComponentName instrumentationName;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800389 Bundle instrumentationArgs;
390 IInstrumentationWatcher instrumentationWatcher;
391 int debugMode;
Siva Velusamy92a8b222012-03-09 16:24:04 -0800392 boolean enableOpenGlTrace;
Christopher Tate181fafa2009-05-14 11:12:14 -0700393 boolean restrictedBackupMode;
Dianne Hackborn5d927c22011-09-02 12:22:18 -0700394 boolean persistent;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800395 Configuration config;
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400396 CompatibilityInfo compatInfo;
Jeff Sharkey3ad9d002011-09-15 15:51:54 -0700397
398 /** Initial values for {@link Profiler}. */
399 String initProfileFile;
400 ParcelFileDescriptor initProfileFd;
401 boolean initAutoStopProfiler;
402
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800403 public String toString() {
404 return "AppBindData{appInfo=" + appInfo + "}";
405 }
Jeff Sharkey3ad9d002011-09-15 15:51:54 -0700406 }
407
408 static final class Profiler {
409 String profileFile;
410 ParcelFileDescriptor profileFd;
411 boolean autoStopProfiler;
412 boolean profiling;
413 boolean handlingProfiling;
Dianne Hackborn62f20ec2011-08-15 17:40:28 -0700414 public void setProfiler(String file, ParcelFileDescriptor fd) {
415 if (profiling) {
416 if (fd != null) {
417 try {
418 fd.close();
419 } catch (IOException e) {
Romain Guya998dff2012-03-23 18:58:36 -0700420 // Ignore
Dianne Hackborn62f20ec2011-08-15 17:40:28 -0700421 }
422 }
423 return;
424 }
425 if (profileFd != null) {
426 try {
427 profileFd.close();
428 } catch (IOException e) {
Romain Guya998dff2012-03-23 18:58:36 -0700429 // Ignore
Dianne Hackborn62f20ec2011-08-15 17:40:28 -0700430 }
431 }
432 profileFile = file;
433 profileFd = fd;
434 }
435 public void startProfiling() {
436 if (profileFd == null || profiling) {
437 return;
438 }
439 try {
440 Debug.startMethodTracing(profileFile, profileFd.getFileDescriptor(),
441 8 * 1024 * 1024, 0);
442 profiling = true;
443 } catch (RuntimeException e) {
444 Slog.w(TAG, "Profiling failed on path " + profileFile);
445 try {
446 profileFd.close();
447 profileFd = null;
448 } catch (IOException e2) {
449 Slog.w(TAG, "Failure closing profile fd", e2);
450 }
451 }
452 }
453 public void stopProfiling() {
454 if (profiling) {
455 profiling = false;
456 Debug.stopMethodTracing();
457 if (profileFd != null) {
458 try {
459 profileFd.close();
460 } catch (IOException e) {
461 }
462 }
463 profileFd = null;
464 profileFile = null;
465 }
466 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800467 }
468
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400469 static final class DumpComponentInfo {
Dianne Hackborne17aeb32011-04-07 15:11:57 -0700470 ParcelFileDescriptor fd;
Dianne Hackborn625ac272010-09-17 18:29:22 -0700471 IBinder token;
Dianne Hackborn30d71892010-12-11 10:37:55 -0800472 String prefix;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800473 String[] args;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800474 }
475
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400476 static final class ResultData {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800477 IBinder token;
478 List<ResultInfo> results;
479 public String toString() {
480 return "ResultData{token=" + token + " results" + results + "}";
481 }
482 }
483
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400484 static final class ContextCleanupInfo {
Dianne Hackborn21556372010-02-04 16:34:40 -0800485 ContextImpl context;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800486 String what;
487 String who;
488 }
489
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400490 static final class ProfilerControlData {
Dianne Hackborn9c8dd552009-06-23 19:22:52 -0700491 String path;
492 ParcelFileDescriptor fd;
493 }
494
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400495 static final class DumpHeapData {
Andy McFadden824c5102010-07-09 16:26:57 -0700496 String path;
497 ParcelFileDescriptor fd;
498 }
499
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400500 static final class UpdateCompatibilityData {
501 String pkg;
502 CompatibilityInfo info;
503 }
Dianne Hackbornaa9d84c2011-05-09 19:00:59 -0700504
Romain Guy65b345f2011-07-27 18:51:50 -0700505 private native void dumpGraphicsInfo(FileDescriptor fd);
Chet Haase9c1e23b2011-03-24 10:51:31 -0700506
Romain Guy65b345f2011-07-27 18:51:50 -0700507 private class ApplicationThread extends ApplicationThreadNative {
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700508 private static final String HEAP_COLUMN = "%13s %8s %8s %8s %8s %8s %8s";
509 private static final String ONE_COUNT_COLUMN = "%21s %8d";
510 private static final String TWO_COUNT_COLUMNS = "%21s %8d %21s %8d";
Vasu Nori3c7131f2010-09-21 14:36:57 -0700511 private static final String DB_INFO_FORMAT = " %8s %8s %14s %14s %s";
Bob Leee5408332009-09-04 18:31:17 -0700512
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800513 // Formatting for checkin service - update version if row format changes
514 private static final int ACTIVITY_THREAD_CHECKIN_VERSION = 1;
Bob Leee5408332009-09-04 18:31:17 -0700515
Dianne Hackborn58f42a52011-10-10 13:46:34 -0700516 private void updatePendingConfiguration(Configuration config) {
517 synchronized (mPackages) {
518 if (mPendingConfiguration == null ||
519 mPendingConfiguration.isOtherSeqNewer(config)) {
520 mPendingConfiguration = config;
521 }
522 }
523 }
524
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800525 public final void schedulePauseActivity(IBinder token, boolean finished,
526 boolean userLeaving, int configChanges) {
527 queueOrSendMessage(
528 finished ? H.PAUSE_ACTIVITY_FINISHING : H.PAUSE_ACTIVITY,
529 token,
530 (userLeaving ? 1 : 0),
531 configChanges);
532 }
533
534 public final void scheduleStopActivity(IBinder token, boolean showWindow,
535 int configChanges) {
536 queueOrSendMessage(
537 showWindow ? H.STOP_ACTIVITY_SHOW : H.STOP_ACTIVITY_HIDE,
538 token, 0, configChanges);
539 }
540
541 public final void scheduleWindowVisibility(IBinder token, boolean showWindow) {
542 queueOrSendMessage(
543 showWindow ? H.SHOW_WINDOW : H.HIDE_WINDOW,
544 token);
545 }
546
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800547 public final void scheduleSleeping(IBinder token, boolean sleeping) {
548 queueOrSendMessage(H.SLEEPING, token, sleeping ? 1 : 0);
549 }
550
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800551 public final void scheduleResumeActivity(IBinder token, boolean isForward) {
552 queueOrSendMessage(H.RESUME_ACTIVITY, token, isForward ? 1 : 0);
553 }
554
555 public final void scheduleSendResult(IBinder token, List<ResultInfo> results) {
556 ResultData res = new ResultData();
557 res.token = token;
558 res.results = results;
559 queueOrSendMessage(H.SEND_RESULT, res);
560 }
561
562 // we use token to identify this activity without having to send the
563 // activity itself back to the activity manager. (matters more with ipc)
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700564 public final void scheduleLaunchActivity(Intent intent, IBinder token, int ident,
Dianne Hackborn58f42a52011-10-10 13:46:34 -0700565 ActivityInfo info, Configuration curConfig, CompatibilityInfo compatInfo,
566 Bundle state, List<ResultInfo> pendingResults,
Dianne Hackborn62f20ec2011-08-15 17:40:28 -0700567 List<Intent> pendingNewIntents, boolean notResumed, boolean isForward,
568 String profileName, ParcelFileDescriptor profileFd, boolean autoStopProfiler) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700569 ActivityClientRecord r = new ActivityClientRecord();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800570
571 r.token = token;
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700572 r.ident = ident;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800573 r.intent = intent;
574 r.activityInfo = info;
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400575 r.compatInfo = compatInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800576 r.state = state;
577
578 r.pendingResults = pendingResults;
579 r.pendingIntents = pendingNewIntents;
580
581 r.startsNotResumed = notResumed;
582 r.isForward = isForward;
583
Dianne Hackborn62f20ec2011-08-15 17:40:28 -0700584 r.profileFile = profileName;
585 r.profileFd = profileFd;
586 r.autoStopProfiler = autoStopProfiler;
587
Dianne Hackborn58f42a52011-10-10 13:46:34 -0700588 updatePendingConfiguration(curConfig);
589
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800590 queueOrSendMessage(H.LAUNCH_ACTIVITY, r);
591 }
592
593 public final void scheduleRelaunchActivity(IBinder token,
594 List<ResultInfo> pendingResults, List<Intent> pendingNewIntents,
Dianne Hackborn871ecdc2009-12-11 15:24:33 -0800595 int configChanges, boolean notResumed, Configuration config) {
Dianne Hackborn30c9bd82010-12-01 16:07:40 -0800596 requestRelaunchActivity(token, pendingResults, pendingNewIntents,
597 configChanges, notResumed, config, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800598 }
599
600 public final void scheduleNewIntent(List<Intent> intents, IBinder token) {
601 NewIntentData data = new NewIntentData();
602 data.intents = intents;
603 data.token = token;
604
605 queueOrSendMessage(H.NEW_INTENT, data);
606 }
607
608 public final void scheduleDestroyActivity(IBinder token, boolean finishing,
609 int configChanges) {
610 queueOrSendMessage(H.DESTROY_ACTIVITY, token, finishing ? 1 : 0,
611 configChanges);
612 }
613
614 public final void scheduleReceiver(Intent intent, ActivityInfo info,
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400615 CompatibilityInfo compatInfo, int resultCode, String data, Bundle extras,
616 boolean sync) {
Dianne Hackborne829fef2010-10-26 17:44:01 -0700617 ReceiverData r = new ReceiverData(intent, resultCode, data, extras,
618 sync, false, mAppThread.asBinder());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800619 r.info = info;
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400620 r.compatInfo = compatInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800621 queueOrSendMessage(H.RECEIVER, r);
622 }
623
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400624 public final void scheduleCreateBackupAgent(ApplicationInfo app,
625 CompatibilityInfo compatInfo, int backupMode) {
Christopher Tate181fafa2009-05-14 11:12:14 -0700626 CreateBackupAgentData d = new CreateBackupAgentData();
627 d.appInfo = app;
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400628 d.compatInfo = compatInfo;
Christopher Tate181fafa2009-05-14 11:12:14 -0700629 d.backupMode = backupMode;
630
631 queueOrSendMessage(H.CREATE_BACKUP_AGENT, d);
632 }
633
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400634 public final void scheduleDestroyBackupAgent(ApplicationInfo app,
635 CompatibilityInfo compatInfo) {
Christopher Tate181fafa2009-05-14 11:12:14 -0700636 CreateBackupAgentData d = new CreateBackupAgentData();
637 d.appInfo = app;
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400638 d.compatInfo = compatInfo;
Christopher Tate181fafa2009-05-14 11:12:14 -0700639
640 queueOrSendMessage(H.DESTROY_BACKUP_AGENT, d);
641 }
642
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800643 public final void scheduleCreateService(IBinder token,
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400644 ServiceInfo info, CompatibilityInfo compatInfo) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800645 CreateServiceData s = new CreateServiceData();
646 s.token = token;
647 s.info = info;
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400648 s.compatInfo = compatInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800649
650 queueOrSendMessage(H.CREATE_SERVICE, s);
651 }
652
653 public final void scheduleBindService(IBinder token, Intent intent,
654 boolean rebind) {
655 BindServiceData s = new BindServiceData();
656 s.token = token;
657 s.intent = intent;
658 s.rebind = rebind;
659
Amith Yamasani742a6712011-05-04 14:49:28 -0700660 if (DEBUG_SERVICE)
661 Slog.v(TAG, "scheduleBindService token=" + token + " intent=" + intent + " uid="
662 + Binder.getCallingUid() + " pid=" + Binder.getCallingPid());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800663 queueOrSendMessage(H.BIND_SERVICE, s);
664 }
665
666 public final void scheduleUnbindService(IBinder token, Intent intent) {
667 BindServiceData s = new BindServiceData();
668 s.token = token;
669 s.intent = intent;
670
671 queueOrSendMessage(H.UNBIND_SERVICE, s);
672 }
673
Dianne Hackborn0c5001d2011-04-12 18:16:08 -0700674 public final void scheduleServiceArgs(IBinder token, boolean taskRemoved, int startId,
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -0700675 int flags ,Intent args) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800676 ServiceArgsData s = new ServiceArgsData();
677 s.token = token;
Dianne Hackborn0c5001d2011-04-12 18:16:08 -0700678 s.taskRemoved = taskRemoved;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800679 s.startId = startId;
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -0700680 s.flags = flags;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800681 s.args = args;
682
683 queueOrSendMessage(H.SERVICE_ARGS, s);
684 }
685
686 public final void scheduleStopService(IBinder token) {
687 queueOrSendMessage(H.STOP_SERVICE, token);
688 }
689
690 public final void bindApplication(String processName,
691 ApplicationInfo appInfo, List<ProviderInfo> providers,
692 ComponentName instrumentationName, String profileFile,
Dianne Hackborn62f20ec2011-08-15 17:40:28 -0700693 ParcelFileDescriptor profileFd, boolean autoStopProfiler,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800694 Bundle instrumentationArgs, IInstrumentationWatcher instrumentationWatcher,
Siva Velusamy92a8b222012-03-09 16:24:04 -0800695 int debugMode, boolean enableOpenGlTrace, boolean isRestrictedBackupMode,
696 boolean persistent, Configuration config, CompatibilityInfo compatInfo,
Dianne Hackborn5d927c22011-09-02 12:22:18 -0700697 Map<String, IBinder> services, Bundle coreSettings) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800698
699 if (services != null) {
700 // Setup the service cache in the ServiceManager
701 ServiceManager.initServiceCache(services);
702 }
703
Svetoslav Ganov9aa597e2011-03-03 18:17:41 -0800704 setCoreSettings(coreSettings);
705
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800706 AppBindData data = new AppBindData();
707 data.processName = processName;
708 data.appInfo = appInfo;
709 data.providers = providers;
710 data.instrumentationName = instrumentationName;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800711 data.instrumentationArgs = instrumentationArgs;
712 data.instrumentationWatcher = instrumentationWatcher;
713 data.debugMode = debugMode;
Siva Velusamy92a8b222012-03-09 16:24:04 -0800714 data.enableOpenGlTrace = enableOpenGlTrace;
Christopher Tate181fafa2009-05-14 11:12:14 -0700715 data.restrictedBackupMode = isRestrictedBackupMode;
Dianne Hackborn5d927c22011-09-02 12:22:18 -0700716 data.persistent = persistent;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800717 data.config = config;
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400718 data.compatInfo = compatInfo;
Jeff Sharkey3ad9d002011-09-15 15:51:54 -0700719 data.initProfileFile = profileFile;
720 data.initProfileFd = profileFd;
721 data.initAutoStopProfiler = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800722 queueOrSendMessage(H.BIND_APPLICATION, data);
723 }
724
725 public final void scheduleExit() {
726 queueOrSendMessage(H.EXIT_APPLICATION, null);
727 }
728
Christopher Tate5e1ab332009-09-01 20:32:49 -0700729 public final void scheduleSuicide() {
730 queueOrSendMessage(H.SUICIDE, null);
731 }
732
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800733 public void requestThumbnail(IBinder token) {
734 queueOrSendMessage(H.REQUEST_THUMBNAIL, token);
735 }
736
737 public void scheduleConfigurationChanged(Configuration config) {
Dianne Hackborn58f42a52011-10-10 13:46:34 -0700738 updatePendingConfiguration(config);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800739 queueOrSendMessage(H.CONFIGURATION_CHANGED, config);
740 }
741
742 public void updateTimeZone() {
743 TimeZone.setDefault(null);
744 }
745
Robert Greenwalt03595d02010-11-02 14:08:23 -0700746 public void clearDnsCache() {
747 // a non-standard API to get this to libcore
748 InetAddress.clearDnsCache();
749 }
750
Robert Greenwalt434203a2010-10-11 16:00:27 -0700751 public void setHttpProxy(String host, String port, String exclList) {
752 Proxy.setHttpProxySystemProperty(host, port, exclList);
753 }
754
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800755 public void processInBackground() {
756 mH.removeMessages(H.GC_WHEN_IDLE);
757 mH.sendMessage(mH.obtainMessage(H.GC_WHEN_IDLE));
758 }
759
760 public void dumpService(FileDescriptor fd, IBinder servicetoken, String[] args) {
Dianne Hackborn625ac272010-09-17 18:29:22 -0700761 DumpComponentInfo data = new DumpComponentInfo();
Dianne Hackborne17aeb32011-04-07 15:11:57 -0700762 try {
763 data.fd = ParcelFileDescriptor.dup(fd);
764 data.token = servicetoken;
765 data.args = args;
766 queueOrSendMessage(H.DUMP_SERVICE, data);
767 } catch (IOException e) {
768 Slog.w(TAG, "dumpService failed", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800769 }
770 }
771
772 // This function exists to make sure all receiver dispatching is
773 // correctly ordered, since these are one-way calls and the binder driver
774 // applies transaction ordering per object for such calls.
775 public void scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent,
Dianne Hackborn68d881c2009-10-05 13:58:17 -0700776 int resultCode, String dataStr, Bundle extras, boolean ordered,
777 boolean sticky) throws RemoteException {
778 receiver.performReceive(intent, resultCode, dataStr, extras, ordered, sticky);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800779 }
Bob Leee5408332009-09-04 18:31:17 -0700780
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800781 public void scheduleLowMemory() {
782 queueOrSendMessage(H.LOW_MEMORY, null);
783 }
784
785 public void scheduleActivityConfigurationChanged(IBinder token) {
786 queueOrSendMessage(H.ACTIVITY_CONFIGURATION_CHANGED, token);
787 }
788
Romain Guy7eabe552011-07-21 14:56:34 -0700789 public void profilerControl(boolean start, String path, ParcelFileDescriptor fd,
790 int profileType) {
Dianne Hackborn9c8dd552009-06-23 19:22:52 -0700791 ProfilerControlData pcd = new ProfilerControlData();
792 pcd.path = path;
793 pcd.fd = fd;
Romain Guy7eabe552011-07-21 14:56:34 -0700794 queueOrSendMessage(H.PROFILER_CONTROL, pcd, start ? 1 : 0, profileType);
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800795 }
796
Andy McFadden824c5102010-07-09 16:26:57 -0700797 public void dumpHeap(boolean managed, String path, ParcelFileDescriptor fd) {
798 DumpHeapData dhd = new DumpHeapData();
799 dhd.path = path;
800 dhd.fd = fd;
801 queueOrSendMessage(H.DUMP_HEAP, dhd, managed ? 1 : 0);
802 }
803
Dianne Hackborn06de2ea2009-05-21 12:56:43 -0700804 public void setSchedulingGroup(int group) {
805 // Note: do this immediately, since going into the foreground
806 // should happen regardless of what pending work we have to do
807 // and the activity manager will wait for us to report back that
808 // we are done before sending us to the background.
809 try {
810 Process.setProcessGroup(Process.myPid(), group);
811 } catch (Exception e) {
Dianne Hackbornc9421ba2010-03-11 22:23:46 -0800812 Slog.w(TAG, "Failed setting process group to " + group, e);
Dianne Hackborn06de2ea2009-05-21 12:56:43 -0700813 }
814 }
Bob Leee5408332009-09-04 18:31:17 -0700815
Dianne Hackborn3025ef32009-08-31 21:31:47 -0700816 public void getMemoryInfo(Debug.MemoryInfo outInfo) {
817 Debug.getMemoryInfo(outInfo);
818 }
Bob Leee5408332009-09-04 18:31:17 -0700819
Dianne Hackborn4416c3d2010-05-04 17:22:49 -0700820 public void dispatchPackageBroadcast(int cmd, String[] packages) {
821 queueOrSendMessage(H.DISPATCH_PACKAGE_BROADCAST, packages, cmd);
822 }
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -0700823
824 public void scheduleCrash(String msg) {
825 queueOrSendMessage(H.SCHEDULE_CRASH, msg);
826 }
Dianne Hackborn625ac272010-09-17 18:29:22 -0700827
Dianne Hackborn30d71892010-12-11 10:37:55 -0800828 public void dumpActivity(FileDescriptor fd, IBinder activitytoken,
829 String prefix, String[] args) {
Dianne Hackborn625ac272010-09-17 18:29:22 -0700830 DumpComponentInfo data = new DumpComponentInfo();
Dianne Hackborne17aeb32011-04-07 15:11:57 -0700831 try {
832 data.fd = ParcelFileDescriptor.dup(fd);
833 data.token = activitytoken;
834 data.prefix = prefix;
835 data.args = args;
836 queueOrSendMessage(H.DUMP_ACTIVITY, data);
837 } catch (IOException e) {
838 Slog.w(TAG, "dumpActivity failed", e);
Dianne Hackborn625ac272010-09-17 18:29:22 -0700839 }
840 }
Chet Haase9c1e23b2011-03-24 10:51:31 -0700841
Marco Nelissen18cb2872011-11-15 11:19:53 -0800842 public void dumpProvider(FileDescriptor fd, IBinder providertoken,
843 String[] args) {
844 DumpComponentInfo data = new DumpComponentInfo();
845 try {
846 data.fd = ParcelFileDescriptor.dup(fd);
847 data.token = providertoken;
848 data.args = args;
849 queueOrSendMessage(H.DUMP_PROVIDER, data);
850 } catch (IOException e) {
851 Slog.w(TAG, "dumpProvider failed", e);
852 }
853 }
854
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800855 @Override
Dianne Hackbornb437e092011-08-05 17:50:29 -0700856 public Debug.MemoryInfo dumpMemInfo(FileDescriptor fd, boolean checkin,
857 boolean all, String[] args) {
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700858 FileOutputStream fout = new FileOutputStream(fd);
859 PrintWriter pw = new PrintWriter(fout);
860 try {
Romain Guya998dff2012-03-23 18:58:36 -0700861 return dumpMemInfo(pw, checkin, all);
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700862 } finally {
Chet Haase9c1e23b2011-03-24 10:51:31 -0700863 pw.flush();
Chet Haase9c1e23b2011-03-24 10:51:31 -0700864 }
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700865 }
866
Romain Guya998dff2012-03-23 18:58:36 -0700867 private Debug.MemoryInfo dumpMemInfo(PrintWriter pw, boolean checkin, boolean all) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800868 long nativeMax = Debug.getNativeHeapSize() / 1024;
869 long nativeAllocated = Debug.getNativeHeapAllocatedSize() / 1024;
870 long nativeFree = Debug.getNativeHeapFreeSize() / 1024;
871
872 Debug.MemoryInfo memInfo = new Debug.MemoryInfo();
873 Debug.getMemoryInfo(memInfo);
874
Dianne Hackbornb437e092011-08-05 17:50:29 -0700875 if (!all) {
876 return memInfo;
877 }
878
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800879 Runtime runtime = Runtime.getRuntime();
880
881 long dalvikMax = runtime.totalMemory() / 1024;
882 long dalvikFree = runtime.freeMemory() / 1024;
883 long dalvikAllocated = dalvikMax - dalvikFree;
884 long viewInstanceCount = ViewDebug.getViewInstanceCount();
Romain Guy65b345f2011-07-27 18:51:50 -0700885 long viewRootInstanceCount = ViewDebug.getViewRootImplCount();
Brian Carlstromc21550a2010-10-05 21:34:06 -0700886 long appContextInstanceCount = Debug.countInstancesOfClass(ContextImpl.class);
887 long activityInstanceCount = Debug.countInstancesOfClass(Activity.class);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800888 int globalAssetCount = AssetManager.getGlobalAssetCount();
889 int globalAssetManagerCount = AssetManager.getGlobalAssetManagerCount();
890 int binderLocalObjectCount = Debug.getBinderLocalObjectCount();
891 int binderProxyObjectCount = Debug.getBinderProxyObjectCount();
892 int binderDeathObjectCount = Debug.getBinderDeathObjectCount();
Brian Carlstromc9d5b312010-10-05 22:23:41 -0700893 long openSslSocketCount = Debug.countInstancesOfClass(OpenSSLSocketImpl.class);
Vasu Noric3849202010-03-09 10:47:25 -0800894 SQLiteDebug.PagerStats stats = SQLiteDebug.getDatabaseInfo();
Bob Leee5408332009-09-04 18:31:17 -0700895
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800896 // For checkin, we print one long comma-separated list of values
Dianne Hackbornb437e092011-08-05 17:50:29 -0700897 if (checkin) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800898 // NOTE: if you change anything significant below, also consider changing
899 // ACTIVITY_THREAD_CHECKIN_VERSION.
Bob Leee5408332009-09-04 18:31:17 -0700900 String processName = (mBoundApplication != null)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800901 ? mBoundApplication.processName : "unknown";
Bob Leee5408332009-09-04 18:31:17 -0700902
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800903 // Header
904 pw.print(ACTIVITY_THREAD_CHECKIN_VERSION); pw.print(',');
905 pw.print(Process.myPid()); pw.print(',');
906 pw.print(processName); pw.print(',');
Bob Leee5408332009-09-04 18:31:17 -0700907
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800908 // Heap info - max
909 pw.print(nativeMax); pw.print(',');
910 pw.print(dalvikMax); pw.print(',');
911 pw.print("N/A,");
912 pw.print(nativeMax + dalvikMax); pw.print(',');
Bob Leee5408332009-09-04 18:31:17 -0700913
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800914 // Heap info - allocated
915 pw.print(nativeAllocated); pw.print(',');
916 pw.print(dalvikAllocated); pw.print(',');
917 pw.print("N/A,");
918 pw.print(nativeAllocated + dalvikAllocated); pw.print(',');
Bob Leee5408332009-09-04 18:31:17 -0700919
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800920 // Heap info - free
921 pw.print(nativeFree); pw.print(',');
922 pw.print(dalvikFree); pw.print(',');
923 pw.print("N/A,");
924 pw.print(nativeFree + dalvikFree); pw.print(',');
Bob Leee5408332009-09-04 18:31:17 -0700925
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800926 // Heap info - proportional set size
927 pw.print(memInfo.nativePss); pw.print(',');
928 pw.print(memInfo.dalvikPss); pw.print(',');
929 pw.print(memInfo.otherPss); pw.print(',');
930 pw.print(memInfo.nativePss + memInfo.dalvikPss + memInfo.otherPss); pw.print(',');
Bob Leee5408332009-09-04 18:31:17 -0700931
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800932 // Heap info - shared
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700933 pw.print(memInfo.nativeSharedDirty); pw.print(',');
934 pw.print(memInfo.dalvikSharedDirty); pw.print(',');
935 pw.print(memInfo.otherSharedDirty); pw.print(',');
936 pw.print(memInfo.nativeSharedDirty + memInfo.dalvikSharedDirty
937 + memInfo.otherSharedDirty); pw.print(',');
Bob Leee5408332009-09-04 18:31:17 -0700938
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800939 // Heap info - private
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700940 pw.print(memInfo.nativePrivateDirty); pw.print(',');
941 pw.print(memInfo.dalvikPrivateDirty); pw.print(',');
942 pw.print(memInfo.otherPrivateDirty); pw.print(',');
943 pw.print(memInfo.nativePrivateDirty + memInfo.dalvikPrivateDirty
944 + memInfo.otherPrivateDirty); pw.print(',');
Bob Leee5408332009-09-04 18:31:17 -0700945
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800946 // Object counts
947 pw.print(viewInstanceCount); pw.print(',');
948 pw.print(viewRootInstanceCount); pw.print(',');
949 pw.print(appContextInstanceCount); pw.print(',');
950 pw.print(activityInstanceCount); pw.print(',');
Bob Leee5408332009-09-04 18:31:17 -0700951
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800952 pw.print(globalAssetCount); pw.print(',');
953 pw.print(globalAssetManagerCount); pw.print(',');
954 pw.print(binderLocalObjectCount); pw.print(',');
955 pw.print(binderProxyObjectCount); pw.print(',');
Bob Leee5408332009-09-04 18:31:17 -0700956
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800957 pw.print(binderDeathObjectCount); pw.print(',');
958 pw.print(openSslSocketCount); pw.print(',');
Bob Leee5408332009-09-04 18:31:17 -0700959
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800960 // SQL
Vasu Noric3849202010-03-09 10:47:25 -0800961 pw.print(stats.memoryUsed / 1024); pw.print(',');
Jeff Brown2a293b62012-01-19 14:02:22 -0800962 pw.print(stats.memoryUsed / 1024); pw.print(',');
963 pw.print(stats.pageCacheOverflow / 1024); pw.print(',');
Dianne Hackbornb437e092011-08-05 17:50:29 -0700964 pw.print(stats.largestMemAlloc / 1024);
Vasu Noric3849202010-03-09 10:47:25 -0800965 for (int i = 0; i < stats.dbStats.size(); i++) {
966 DbStats dbStats = stats.dbStats.get(i);
Dianne Hackbornb437e092011-08-05 17:50:29 -0700967 pw.print(','); pw.print(dbStats.dbName);
968 pw.print(','); pw.print(dbStats.pageSize);
969 pw.print(','); pw.print(dbStats.dbSize);
970 pw.print(','); pw.print(dbStats.lookaside);
971 pw.print(','); pw.print(dbStats.cache);
972 pw.print(','); pw.print(dbStats.cache);
Vasu Noric3849202010-03-09 10:47:25 -0800973 }
Dianne Hackbornb437e092011-08-05 17:50:29 -0700974 pw.println();
Bob Leee5408332009-09-04 18:31:17 -0700975
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700976 return memInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800977 }
Bob Leee5408332009-09-04 18:31:17 -0700978
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800979 // otherwise, show human-readable format
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700980 printRow(pw, HEAP_COLUMN, "", "", "Shared", "Private", "Heap", "Heap", "Heap");
981 printRow(pw, HEAP_COLUMN, "", "Pss", "Dirty", "Dirty", "Size", "Alloc", "Free");
982 printRow(pw, HEAP_COLUMN, "", "------", "------", "------", "------", "------",
983 "------");
984 printRow(pw, HEAP_COLUMN, "Native", memInfo.nativePss, memInfo.nativeSharedDirty,
985 memInfo.nativePrivateDirty, nativeMax, nativeAllocated, nativeFree);
986 printRow(pw, HEAP_COLUMN, "Dalvik", memInfo.dalvikPss, memInfo.dalvikSharedDirty,
987 memInfo.dalvikPrivateDirty, dalvikMax, dalvikAllocated, dalvikFree);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800988
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700989 int otherPss = memInfo.otherPss;
990 int otherSharedDirty = memInfo.otherSharedDirty;
991 int otherPrivateDirty = memInfo.otherPrivateDirty;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800992
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700993 for (int i=0; i<Debug.MemoryInfo.NUM_OTHER_STATS; i++) {
Romain Guy65b345f2011-07-27 18:51:50 -0700994 printRow(pw, HEAP_COLUMN, Debug.MemoryInfo.getOtherLabel(i),
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700995 memInfo.getOtherPss(i), memInfo.getOtherSharedDirty(i),
996 memInfo.getOtherPrivateDirty(i), "", "", "");
997 otherPss -= memInfo.getOtherPss(i);
998 otherSharedDirty -= memInfo.getOtherSharedDirty(i);
999 otherPrivateDirty -= memInfo.getOtherPrivateDirty(i);
1000 }
1001
1002 printRow(pw, HEAP_COLUMN, "Unknown", otherPss, otherSharedDirty,
1003 otherPrivateDirty, "", "", "");
1004 printRow(pw, HEAP_COLUMN, "TOTAL", memInfo.getTotalPss(),
1005 memInfo.getTotalSharedDirty(), memInfo.getTotalPrivateDirty(),
1006 nativeMax+dalvikMax, nativeAllocated+dalvikAllocated,
1007 nativeFree+dalvikFree);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001008
1009 pw.println(" ");
1010 pw.println(" Objects");
Romain Guy65b345f2011-07-27 18:51:50 -07001011 printRow(pw, TWO_COUNT_COLUMNS, "Views:", viewInstanceCount, "ViewRootImpl:",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001012 viewRootInstanceCount);
1013
1014 printRow(pw, TWO_COUNT_COLUMNS, "AppContexts:", appContextInstanceCount,
1015 "Activities:", activityInstanceCount);
1016
1017 printRow(pw, TWO_COUNT_COLUMNS, "Assets:", globalAssetCount,
1018 "AssetManagers:", globalAssetManagerCount);
1019
1020 printRow(pw, TWO_COUNT_COLUMNS, "Local Binders:", binderLocalObjectCount,
1021 "Proxy Binders:", binderProxyObjectCount);
1022 printRow(pw, ONE_COUNT_COLUMN, "Death Recipients:", binderDeathObjectCount);
1023
1024 printRow(pw, ONE_COUNT_COLUMN, "OpenSSL Sockets:", openSslSocketCount);
Bob Leee5408332009-09-04 18:31:17 -07001025
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001026 // SQLite mem info
1027 pw.println(" ");
1028 pw.println(" SQL");
Jeff Brown2a293b62012-01-19 14:02:22 -08001029 printRow(pw, ONE_COUNT_COLUMN, "MEMORY_USED:", stats.memoryUsed / 1024);
1030 printRow(pw, TWO_COUNT_COLUMNS, "PAGECACHE_OVERFLOW:",
1031 stats.pageCacheOverflow / 1024, "MALLOC_SIZE:", stats.largestMemAlloc / 1024);
Vasu Noric3849202010-03-09 10:47:25 -08001032 pw.println(" ");
1033 int N = stats.dbStats.size();
1034 if (N > 0) {
1035 pw.println(" DATABASES");
Vasu Nori3c7131f2010-09-21 14:36:57 -07001036 printRow(pw, " %8s %8s %14s %14s %s", "pgsz", "dbsz", "Lookaside(b)", "cache",
1037 "Dbname");
Vasu Noric3849202010-03-09 10:47:25 -08001038 for (int i = 0; i < N; i++) {
1039 DbStats dbStats = stats.dbStats.get(i);
Vasu Nori3c7131f2010-09-21 14:36:57 -07001040 printRow(pw, DB_INFO_FORMAT,
1041 (dbStats.pageSize > 0) ? String.valueOf(dbStats.pageSize) : " ",
1042 (dbStats.dbSize > 0) ? String.valueOf(dbStats.dbSize) : " ",
1043 (dbStats.lookaside > 0) ? String.valueOf(dbStats.lookaside) : " ",
1044 dbStats.cache, dbStats.dbName);
Vasu Noric3849202010-03-09 10:47:25 -08001045 }
1046 }
Bob Leee5408332009-09-04 18:31:17 -07001047
Dianne Hackborn82e1ee92009-08-11 18:56:41 -07001048 // Asset details.
1049 String assetAlloc = AssetManager.getAssetAllocations();
1050 if (assetAlloc != null) {
1051 pw.println(" ");
1052 pw.println(" Asset Allocations");
1053 pw.print(assetAlloc);
1054 }
Dianne Hackborn0e3328f2011-07-17 13:31:17 -07001055
1056 return memInfo;
1057 }
1058
1059 @Override
1060 public void dumpGfxInfo(FileDescriptor fd, String[] args) {
1061 dumpGraphicsInfo(fd);
Jeff Brown98365d72012-08-19 20:30:52 -07001062 WindowManagerGlobal.getInstance().dumpGfxInfo(fd);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001063 }
1064
Jeff Brown6754ba22011-12-14 20:20:01 -08001065 @Override
1066 public void dumpDbInfo(FileDescriptor fd, String[] args) {
1067 PrintWriter pw = new PrintWriter(new FileOutputStream(fd));
1068 PrintWriterPrinter printer = new PrintWriterPrinter(pw);
1069 SQLiteDebug.dump(printer, args);
1070 pw.flush();
1071 }
1072
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07001073 @Override
1074 public void unstableProviderDied(IBinder provider) {
1075 queueOrSendMessage(H.UNSTABLE_PROVIDER_DIED, provider);
1076 }
1077
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001078 private void printRow(PrintWriter pw, String format, Object...objs) {
1079 pw.println(String.format(format, objs));
1080 }
Svetoslav Ganov54d068e2011-03-02 12:58:40 -08001081
Svetoslav Ganov9aa597e2011-03-03 18:17:41 -08001082 public void setCoreSettings(Bundle coreSettings) {
1083 queueOrSendMessage(H.SET_CORE_SETTINGS, coreSettings);
Svetoslav Ganov54d068e2011-03-02 12:58:40 -08001084 }
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001085
1086 public void updatePackageCompatibilityInfo(String pkg, CompatibilityInfo info) {
1087 UpdateCompatibilityData ucd = new UpdateCompatibilityData();
1088 ucd.pkg = pkg;
1089 ucd.info = info;
1090 queueOrSendMessage(H.UPDATE_PACKAGE_COMPATIBILITY_INFO, ucd);
1091 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001092
1093 public void scheduleTrimMemory(int level) {
Dianne Hackbornf0754f5b2011-07-21 16:02:07 -07001094 queueOrSendMessage(H.TRIM_MEMORY, null, level);
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001095 }
Marco Nelissen18cb2872011-11-15 11:19:53 -08001096
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001097 }
1098
Romain Guy65b345f2011-07-27 18:51:50 -07001099 private class H extends Handler {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001100 public static final int LAUNCH_ACTIVITY = 100;
1101 public static final int PAUSE_ACTIVITY = 101;
1102 public static final int PAUSE_ACTIVITY_FINISHING= 102;
1103 public static final int STOP_ACTIVITY_SHOW = 103;
1104 public static final int STOP_ACTIVITY_HIDE = 104;
1105 public static final int SHOW_WINDOW = 105;
1106 public static final int HIDE_WINDOW = 106;
1107 public static final int RESUME_ACTIVITY = 107;
1108 public static final int SEND_RESULT = 108;
Brian Carlstromed7e0072011-03-24 13:27:57 -07001109 public static final int DESTROY_ACTIVITY = 109;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001110 public static final int BIND_APPLICATION = 110;
1111 public static final int EXIT_APPLICATION = 111;
1112 public static final int NEW_INTENT = 112;
1113 public static final int RECEIVER = 113;
1114 public static final int CREATE_SERVICE = 114;
1115 public static final int SERVICE_ARGS = 115;
1116 public static final int STOP_SERVICE = 116;
1117 public static final int REQUEST_THUMBNAIL = 117;
1118 public static final int CONFIGURATION_CHANGED = 118;
1119 public static final int CLEAN_UP_CONTEXT = 119;
1120 public static final int GC_WHEN_IDLE = 120;
1121 public static final int BIND_SERVICE = 121;
1122 public static final int UNBIND_SERVICE = 122;
1123 public static final int DUMP_SERVICE = 123;
1124 public static final int LOW_MEMORY = 124;
1125 public static final int ACTIVITY_CONFIGURATION_CHANGED = 125;
1126 public static final int RELAUNCH_ACTIVITY = 126;
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -08001127 public static final int PROFILER_CONTROL = 127;
Christopher Tate181fafa2009-05-14 11:12:14 -07001128 public static final int CREATE_BACKUP_AGENT = 128;
Christopher Tate5e1ab332009-09-01 20:32:49 -07001129 public static final int DESTROY_BACKUP_AGENT = 129;
1130 public static final int SUICIDE = 130;
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07001131 public static final int REMOVE_PROVIDER = 131;
Dianne Hackborn2a9094d2010-02-03 19:20:09 -08001132 public static final int ENABLE_JIT = 132;
Dianne Hackborn4416c3d2010-05-04 17:22:49 -07001133 public static final int DISPATCH_PACKAGE_BROADCAST = 133;
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -07001134 public static final int SCHEDULE_CRASH = 134;
Andy McFadden824c5102010-07-09 16:26:57 -07001135 public static final int DUMP_HEAP = 135;
Dianne Hackborn625ac272010-09-17 18:29:22 -07001136 public static final int DUMP_ACTIVITY = 136;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001137 public static final int SLEEPING = 137;
Svetoslav Ganov54d068e2011-03-02 12:58:40 -08001138 public static final int SET_CORE_SETTINGS = 138;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001139 public static final int UPDATE_PACKAGE_COMPATIBILITY_INFO = 139;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001140 public static final int TRIM_MEMORY = 140;
Marco Nelissen18cb2872011-11-15 11:19:53 -08001141 public static final int DUMP_PROVIDER = 141;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07001142 public static final int UNSTABLE_PROVIDER_DIED = 142;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001143 String codeToString(int code) {
Dianne Hackborn287952c2010-09-22 22:34:31 -07001144 if (DEBUG_MESSAGES) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001145 switch (code) {
1146 case LAUNCH_ACTIVITY: return "LAUNCH_ACTIVITY";
1147 case PAUSE_ACTIVITY: return "PAUSE_ACTIVITY";
1148 case PAUSE_ACTIVITY_FINISHING: return "PAUSE_ACTIVITY_FINISHING";
1149 case STOP_ACTIVITY_SHOW: return "STOP_ACTIVITY_SHOW";
1150 case STOP_ACTIVITY_HIDE: return "STOP_ACTIVITY_HIDE";
1151 case SHOW_WINDOW: return "SHOW_WINDOW";
1152 case HIDE_WINDOW: return "HIDE_WINDOW";
1153 case RESUME_ACTIVITY: return "RESUME_ACTIVITY";
1154 case SEND_RESULT: return "SEND_RESULT";
1155 case DESTROY_ACTIVITY: return "DESTROY_ACTIVITY";
1156 case BIND_APPLICATION: return "BIND_APPLICATION";
1157 case EXIT_APPLICATION: return "EXIT_APPLICATION";
1158 case NEW_INTENT: return "NEW_INTENT";
1159 case RECEIVER: return "RECEIVER";
1160 case CREATE_SERVICE: return "CREATE_SERVICE";
1161 case SERVICE_ARGS: return "SERVICE_ARGS";
1162 case STOP_SERVICE: return "STOP_SERVICE";
1163 case REQUEST_THUMBNAIL: return "REQUEST_THUMBNAIL";
1164 case CONFIGURATION_CHANGED: return "CONFIGURATION_CHANGED";
1165 case CLEAN_UP_CONTEXT: return "CLEAN_UP_CONTEXT";
1166 case GC_WHEN_IDLE: return "GC_WHEN_IDLE";
1167 case BIND_SERVICE: return "BIND_SERVICE";
1168 case UNBIND_SERVICE: return "UNBIND_SERVICE";
1169 case DUMP_SERVICE: return "DUMP_SERVICE";
1170 case LOW_MEMORY: return "LOW_MEMORY";
1171 case ACTIVITY_CONFIGURATION_CHANGED: return "ACTIVITY_CONFIGURATION_CHANGED";
1172 case RELAUNCH_ACTIVITY: return "RELAUNCH_ACTIVITY";
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -08001173 case PROFILER_CONTROL: return "PROFILER_CONTROL";
Christopher Tate181fafa2009-05-14 11:12:14 -07001174 case CREATE_BACKUP_AGENT: return "CREATE_BACKUP_AGENT";
1175 case DESTROY_BACKUP_AGENT: return "DESTROY_BACKUP_AGENT";
Christopher Tate5e1ab332009-09-01 20:32:49 -07001176 case SUICIDE: return "SUICIDE";
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07001177 case REMOVE_PROVIDER: return "REMOVE_PROVIDER";
Dianne Hackborn2a9094d2010-02-03 19:20:09 -08001178 case ENABLE_JIT: return "ENABLE_JIT";
Dianne Hackborn4416c3d2010-05-04 17:22:49 -07001179 case DISPATCH_PACKAGE_BROADCAST: return "DISPATCH_PACKAGE_BROADCAST";
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -07001180 case SCHEDULE_CRASH: return "SCHEDULE_CRASH";
Andy McFadden824c5102010-07-09 16:26:57 -07001181 case DUMP_HEAP: return "DUMP_HEAP";
Dianne Hackborn625ac272010-09-17 18:29:22 -07001182 case DUMP_ACTIVITY: return "DUMP_ACTIVITY";
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001183 case SLEEPING: return "SLEEPING";
Svetoslav Ganov54d068e2011-03-02 12:58:40 -08001184 case SET_CORE_SETTINGS: return "SET_CORE_SETTINGS";
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001185 case UPDATE_PACKAGE_COMPATIBILITY_INFO: return "UPDATE_PACKAGE_COMPATIBILITY_INFO";
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001186 case TRIM_MEMORY: return "TRIM_MEMORY";
Marco Nelissen18cb2872011-11-15 11:19:53 -08001187 case DUMP_PROVIDER: return "DUMP_PROVIDER";
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07001188 case UNSTABLE_PROVIDER_DIED: return "UNSTABLE_PROVIDER_DIED";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001189 }
1190 }
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07001191 return Integer.toString(code);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001192 }
1193 public void handleMessage(Message msg) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07001194 if (DEBUG_MESSAGES) Slog.v(TAG, ">>> handling: " + codeToString(msg.what));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001195 switch (msg.what) {
1196 case LAUNCH_ACTIVITY: {
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001197 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityStart");
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001198 ActivityClientRecord r = (ActivityClientRecord)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001199
1200 r.packageInfo = getPackageInfoNoCheck(
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001201 r.activityInfo.applicationInfo, r.compatInfo);
Christopher Tateb70f3df2009-04-07 16:07:59 -07001202 handleLaunchActivity(r, null);
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001203 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001204 } break;
1205 case RELAUNCH_ACTIVITY: {
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001206 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityRestart");
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001207 ActivityClientRecord r = (ActivityClientRecord)msg.obj;
Dianne Hackborn30c9bd82010-12-01 16:07:40 -08001208 handleRelaunchActivity(r);
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001209 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001210 } break;
1211 case PAUSE_ACTIVITY:
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001212 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityPause");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001213 handlePauseActivity((IBinder)msg.obj, false, msg.arg1 != 0, msg.arg2);
Bob Leee5408332009-09-04 18:31:17 -07001214 maybeSnapshot();
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001215 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001216 break;
1217 case PAUSE_ACTIVITY_FINISHING:
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001218 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityPause");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001219 handlePauseActivity((IBinder)msg.obj, true, msg.arg1 != 0, msg.arg2);
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001220 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001221 break;
1222 case STOP_ACTIVITY_SHOW:
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001223 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityStop");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001224 handleStopActivity((IBinder)msg.obj, true, msg.arg2);
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001225 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001226 break;
1227 case STOP_ACTIVITY_HIDE:
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001228 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityStop");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001229 handleStopActivity((IBinder)msg.obj, false, msg.arg2);
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001230 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001231 break;
1232 case SHOW_WINDOW:
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001233 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityShowWindow");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001234 handleWindowVisibility((IBinder)msg.obj, true);
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001235 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001236 break;
1237 case HIDE_WINDOW:
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001238 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityHideWindow");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001239 handleWindowVisibility((IBinder)msg.obj, false);
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001240 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001241 break;
1242 case RESUME_ACTIVITY:
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001243 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityResume");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001244 handleResumeActivity((IBinder)msg.obj, true,
1245 msg.arg1 != 0);
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001246 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001247 break;
1248 case SEND_RESULT:
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001249 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityDeliverResult");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001250 handleSendResult((ResultData)msg.obj);
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001251 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001252 break;
1253 case DESTROY_ACTIVITY:
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001254 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityDestroy");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001255 handleDestroyActivity((IBinder)msg.obj, msg.arg1 != 0,
1256 msg.arg2, false);
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001257 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001258 break;
1259 case BIND_APPLICATION:
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001260 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "bindApplication");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001261 AppBindData data = (AppBindData)msg.obj;
1262 handleBindApplication(data);
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001263 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001264 break;
1265 case EXIT_APPLICATION:
1266 if (mInitialApplication != null) {
1267 mInitialApplication.onTerminate();
1268 }
1269 Looper.myLooper().quit();
1270 break;
1271 case NEW_INTENT:
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001272 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityNewIntent");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001273 handleNewIntent((NewIntentData)msg.obj);
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001274 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001275 break;
1276 case RECEIVER:
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001277 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "broadcastReceiveComp");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001278 handleReceiver((ReceiverData)msg.obj);
Bob Leee5408332009-09-04 18:31:17 -07001279 maybeSnapshot();
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001280 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001281 break;
1282 case CREATE_SERVICE:
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001283 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "serviceCreate");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001284 handleCreateService((CreateServiceData)msg.obj);
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001285 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001286 break;
1287 case BIND_SERVICE:
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001288 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "serviceBind");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001289 handleBindService((BindServiceData)msg.obj);
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001290 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001291 break;
1292 case UNBIND_SERVICE:
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001293 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "serviceUnbind");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001294 handleUnbindService((BindServiceData)msg.obj);
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001295 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001296 break;
1297 case SERVICE_ARGS:
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001298 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "serviceStart");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001299 handleServiceArgs((ServiceArgsData)msg.obj);
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001300 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001301 break;
1302 case STOP_SERVICE:
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001303 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "serviceStop");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001304 handleStopService((IBinder)msg.obj);
Bob Leee5408332009-09-04 18:31:17 -07001305 maybeSnapshot();
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001306 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001307 break;
1308 case REQUEST_THUMBNAIL:
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001309 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "requestThumbnail");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001310 handleRequestThumbnail((IBinder)msg.obj);
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001311 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001312 break;
1313 case CONFIGURATION_CHANGED:
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001314 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "configChanged");
Dianne Hackborn908aecc2012-07-31 16:37:34 -07001315 mCurDefaultDisplayDpi = ((Configuration)msg.obj).densityDpi;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001316 handleConfigurationChanged((Configuration)msg.obj, null);
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001317 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001318 break;
1319 case CLEAN_UP_CONTEXT:
1320 ContextCleanupInfo cci = (ContextCleanupInfo)msg.obj;
1321 cci.context.performFinalCleanup(cci.who, cci.what);
1322 break;
1323 case GC_WHEN_IDLE:
1324 scheduleGcIdler();
1325 break;
1326 case DUMP_SERVICE:
Dianne Hackborn625ac272010-09-17 18:29:22 -07001327 handleDumpService((DumpComponentInfo)msg.obj);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001328 break;
1329 case LOW_MEMORY:
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001330 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "lowMemory");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001331 handleLowMemory();
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001332 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001333 break;
1334 case ACTIVITY_CONFIGURATION_CHANGED:
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001335 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityConfigChanged");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001336 handleActivityConfigurationChanged((IBinder)msg.obj);
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001337 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001338 break;
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -08001339 case PROFILER_CONTROL:
Romain Guy7eabe552011-07-21 14:56:34 -07001340 handleProfilerControl(msg.arg1 != 0, (ProfilerControlData)msg.obj, msg.arg2);
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -08001341 break;
Christopher Tate181fafa2009-05-14 11:12:14 -07001342 case CREATE_BACKUP_AGENT:
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001343 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "backupCreateAgent");
Christopher Tate181fafa2009-05-14 11:12:14 -07001344 handleCreateBackupAgent((CreateBackupAgentData)msg.obj);
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001345 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
Christopher Tate181fafa2009-05-14 11:12:14 -07001346 break;
1347 case DESTROY_BACKUP_AGENT:
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001348 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "backupDestroyAgent");
Christopher Tate181fafa2009-05-14 11:12:14 -07001349 handleDestroyBackupAgent((CreateBackupAgentData)msg.obj);
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001350 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
Christopher Tate181fafa2009-05-14 11:12:14 -07001351 break;
Christopher Tate5e1ab332009-09-01 20:32:49 -07001352 case SUICIDE:
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07001353 Process.killProcess(Process.myPid());
1354 break;
1355 case REMOVE_PROVIDER:
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001356 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "providerRemove");
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07001357 completeRemoveProvider((ProviderRefCount)msg.obj);
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001358 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
Christopher Tate5e1ab332009-09-01 20:32:49 -07001359 break;
Dianne Hackborn2a9094d2010-02-03 19:20:09 -08001360 case ENABLE_JIT:
1361 ensureJitEnabled();
1362 break;
Dianne Hackborn4416c3d2010-05-04 17:22:49 -07001363 case DISPATCH_PACKAGE_BROADCAST:
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001364 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "broadcastPackage");
Dianne Hackborn4416c3d2010-05-04 17:22:49 -07001365 handleDispatchPackageBroadcast(msg.arg1, (String[])msg.obj);
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001366 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
Dianne Hackborn4416c3d2010-05-04 17:22:49 -07001367 break;
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -07001368 case SCHEDULE_CRASH:
1369 throw new RemoteServiceException((String)msg.obj);
Andy McFadden824c5102010-07-09 16:26:57 -07001370 case DUMP_HEAP:
1371 handleDumpHeap(msg.arg1 != 0, (DumpHeapData)msg.obj);
1372 break;
Dianne Hackborn625ac272010-09-17 18:29:22 -07001373 case DUMP_ACTIVITY:
1374 handleDumpActivity((DumpComponentInfo)msg.obj);
1375 break;
Marco Nelissen18cb2872011-11-15 11:19:53 -08001376 case DUMP_PROVIDER:
1377 handleDumpProvider((DumpComponentInfo)msg.obj);
1378 break;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001379 case SLEEPING:
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001380 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "sleeping");
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001381 handleSleeping((IBinder)msg.obj, msg.arg1 != 0);
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001382 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001383 break;
Svetoslav Ganov54d068e2011-03-02 12:58:40 -08001384 case SET_CORE_SETTINGS:
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001385 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "setCoreSettings");
Svetoslav Ganov54d068e2011-03-02 12:58:40 -08001386 handleSetCoreSettings((Bundle) msg.obj);
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001387 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
Svetoslav Ganov54d068e2011-03-02 12:58:40 -08001388 break;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001389 case UPDATE_PACKAGE_COMPATIBILITY_INFO:
1390 handleUpdatePackageCompatibilityInfo((UpdateCompatibilityData)msg.obj);
Dianne Hackbornf0754f5b2011-07-21 16:02:07 -07001391 break;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001392 case TRIM_MEMORY:
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001393 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "trimMemory");
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001394 handleTrimMemory(msg.arg1);
Dianne Hackborn1ded0b12012-04-26 14:14:50 -07001395 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
Dianne Hackbornf0754f5b2011-07-21 16:02:07 -07001396 break;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07001397 case UNSTABLE_PROVIDER_DIED:
1398 handleUnstableProviderDied((IBinder)msg.obj, false);
1399 break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001400 }
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07001401 if (DEBUG_MESSAGES) Slog.v(TAG, "<<< done: " + codeToString(msg.what));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001402 }
Bob Leee5408332009-09-04 18:31:17 -07001403
Brian Carlstromed7e0072011-03-24 13:27:57 -07001404 private void maybeSnapshot() {
1405 if (mBoundApplication != null && SamplingProfilerIntegration.isEnabled()) {
Sen Hubde75702010-05-28 01:54:03 -07001406 // convert the *private* ActivityThread.PackageInfo to *public* known
1407 // android.content.pm.PackageInfo
1408 String packageName = mBoundApplication.info.mPackageName;
1409 android.content.pm.PackageInfo packageInfo = null;
1410 try {
1411 Context context = getSystemContext();
1412 if(context == null) {
1413 Log.e(TAG, "cannot get a valid context");
1414 return;
1415 }
1416 PackageManager pm = context.getPackageManager();
1417 if(pm == null) {
1418 Log.e(TAG, "cannot get a valid PackageManager");
1419 return;
1420 }
1421 packageInfo = pm.getPackageInfo(
1422 packageName, PackageManager.GET_ACTIVITIES);
1423 } catch (NameNotFoundException e) {
1424 Log.e(TAG, "cannot get package info for " + packageName, e);
1425 }
1426 SamplingProfilerIntegration.writeSnapshot(mBoundApplication.processName, packageInfo);
Bob Leee5408332009-09-04 18:31:17 -07001427 }
1428 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001429 }
1430
Romain Guy65b345f2011-07-27 18:51:50 -07001431 private class Idler implements MessageQueue.IdleHandler {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001432 public final boolean queueIdle() {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001433 ActivityClientRecord a = mNewActivities;
Dianne Hackborn62f20ec2011-08-15 17:40:28 -07001434 boolean stopProfiling = false;
Jeff Sharkey3ad9d002011-09-15 15:51:54 -07001435 if (mBoundApplication != null && mProfiler.profileFd != null
1436 && mProfiler.autoStopProfiler) {
Dianne Hackborn62f20ec2011-08-15 17:40:28 -07001437 stopProfiling = true;
1438 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001439 if (a != null) {
1440 mNewActivities = null;
1441 IActivityManager am = ActivityManagerNative.getDefault();
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001442 ActivityClientRecord prev;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001443 do {
Dianne Hackborn399cccb2010-04-13 22:57:49 -07001444 if (localLOGV) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001445 TAG, "Reporting idle of " + a +
1446 " finished=" +
Romain Guy65b345f2011-07-27 18:51:50 -07001447 (a.activity != null && a.activity.mFinished));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001448 if (a.activity != null && !a.activity.mFinished) {
1449 try {
Dianne Hackborn62f20ec2011-08-15 17:40:28 -07001450 am.activityIdle(a.token, a.createdConfig, stopProfiling);
Dianne Hackborne88846e2009-09-30 21:34:25 -07001451 a.createdConfig = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001452 } catch (RemoteException ex) {
Romain Guy65b345f2011-07-27 18:51:50 -07001453 // Ignore
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001454 }
1455 }
1456 prev = a;
1457 a = a.nextIdle;
1458 prev.nextIdle = null;
1459 } while (a != null);
1460 }
Dianne Hackborn62f20ec2011-08-15 17:40:28 -07001461 if (stopProfiling) {
Jeff Sharkey3ad9d002011-09-15 15:51:54 -07001462 mProfiler.stopProfiling();
Dianne Hackborn62f20ec2011-08-15 17:40:28 -07001463 }
Dianne Hackborn2a9094d2010-02-03 19:20:09 -08001464 ensureJitEnabled();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001465 return false;
1466 }
1467 }
1468
1469 final class GcIdler implements MessageQueue.IdleHandler {
1470 public final boolean queueIdle() {
1471 doGcIfNeeded();
1472 return false;
1473 }
1474 }
1475
Romain Guy65b345f2011-07-27 18:51:50 -07001476 private static class ResourcesKey {
Mitsuru Oshimaba3ba572009-07-08 18:49:26 -07001477 final private String mResDir;
Dianne Hackborn756220b2012-08-14 16:45:30 -07001478 final private Configuration mOverrideConfiguration;
Mitsuru Oshimaba3ba572009-07-08 18:49:26 -07001479 final private float mScale;
1480 final private int mHash;
Bob Leee5408332009-09-04 18:31:17 -07001481
Dianne Hackborn756220b2012-08-14 16:45:30 -07001482 ResourcesKey(String resDir, Configuration overrideConfiguration, float scale) {
Mitsuru Oshimaba3ba572009-07-08 18:49:26 -07001483 mResDir = resDir;
Dianne Hackborn756220b2012-08-14 16:45:30 -07001484 if (overrideConfiguration != null) {
1485 if (Configuration.EMPTY.equals(overrideConfiguration)) {
1486 overrideConfiguration = null;
1487 }
1488 }
1489 mOverrideConfiguration = overrideConfiguration;
Mitsuru Oshimaba3ba572009-07-08 18:49:26 -07001490 mScale = scale;
Dianne Hackborn756220b2012-08-14 16:45:30 -07001491 int hash = 17;
1492 hash = 31 * hash + mResDir.hashCode();
1493 hash = 31 * hash + (mOverrideConfiguration != null
1494 ? mOverrideConfiguration.hashCode() : 0);
1495 hash = 31 * hash + Float.floatToIntBits(mScale);
1496 mHash = hash;
Mitsuru Oshimaba3ba572009-07-08 18:49:26 -07001497 }
Bob Leee5408332009-09-04 18:31:17 -07001498
Mitsuru Oshimaba3ba572009-07-08 18:49:26 -07001499 @Override
1500 public int hashCode() {
1501 return mHash;
1502 }
1503
1504 @Override
1505 public boolean equals(Object obj) {
1506 if (!(obj instanceof ResourcesKey)) {
1507 return false;
1508 }
1509 ResourcesKey peer = (ResourcesKey) obj;
Dianne Hackborn756220b2012-08-14 16:45:30 -07001510 if (!mResDir.equals(peer.mResDir)) {
1511 return false;
1512 }
1513 if (mOverrideConfiguration != peer.mOverrideConfiguration) {
1514 if (mOverrideConfiguration == null || peer.mOverrideConfiguration == null) {
1515 return false;
1516 }
1517 if (!mOverrideConfiguration.equals(peer.mOverrideConfiguration)) {
1518 return false;
1519 }
1520 }
1521 if (mScale != peer.mScale) {
1522 return false;
1523 }
1524 return true;
Mitsuru Oshimaba3ba572009-07-08 18:49:26 -07001525 }
1526 }
1527
Romain Guy65b345f2011-07-27 18:51:50 -07001528 public static ActivityThread currentActivityThread() {
Brad Fitzpatrick333b8cb2010-08-26 12:04:57 -07001529 return sThreadLocal.get();
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001530 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001531
Romain Guy65b345f2011-07-27 18:51:50 -07001532 public static String currentPackageName() {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001533 ActivityThread am = currentActivityThread();
1534 return (am != null && am.mBoundApplication != null)
1535 ? am.mBoundApplication.processName : null;
1536 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001537
Romain Guy65b345f2011-07-27 18:51:50 -07001538 public static Application currentApplication() {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001539 ActivityThread am = currentActivityThread();
1540 return am != null ? am.mInitialApplication : null;
1541 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001542
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001543 public static IPackageManager getPackageManager() {
1544 if (sPackageManager != null) {
1545 //Slog.v("PackageManager", "returning cur default = " + sPackageManager);
1546 return sPackageManager;
1547 }
1548 IBinder b = ServiceManager.getService("package");
1549 //Slog.v("PackageManager", "default service binder = " + b);
1550 sPackageManager = IPackageManager.Stub.asInterface(b);
1551 //Slog.v("PackageManager", "default service = " + sPackageManager);
1552 return sPackageManager;
1553 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001554
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001555 DisplayMetrics getDisplayMetricsLocked(CompatibilityInfo ci, boolean forceUpdate) {
1556 DisplayMetrics dm = mDisplayMetrics.get(ci);
1557 if (dm != null && !forceUpdate) {
1558 return dm;
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001559 }
Jeff Brown848c2dc2012-08-19 20:18:08 -07001560
Jeff Brownbd6e1502012-08-28 03:27:37 -07001561 DisplayManagerGlobal displayManager = DisplayManagerGlobal.getInstance();
Jeff Brown848c2dc2012-08-19 20:18:08 -07001562 if (displayManager == null) {
1563 // may be null early in system startup
1564 dm = new DisplayMetrics();
1565 dm.setToDefaults();
1566 return dm;
1567 }
1568
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001569 if (dm == null) {
1570 dm = new DisplayMetrics();
1571 mDisplayMetrics.put(ci, dm);
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001572 }
Jeff Brown848c2dc2012-08-19 20:18:08 -07001573
Jeff Brownd32460c2012-07-20 16:15:36 -07001574 CompatibilityInfoHolder cih = new CompatibilityInfoHolder();
1575 cih.set(ci);
Jeff Brown98365d72012-08-19 20:30:52 -07001576 Display d = displayManager.getCompatibleDisplay(Display.DEFAULT_DISPLAY, cih);
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001577 d.getMetrics(dm);
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001578 //Slog.i("foo", "New metrics: w=" + metrics.widthPixels + " h="
1579 // + metrics.heightPixels + " den=" + metrics.density
1580 // + " xdpi=" + metrics.xdpi + " ydpi=" + metrics.ydpi);
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001581 return dm;
1582 }
1583
Romain Guy65b345f2011-07-27 18:51:50 -07001584 private Configuration mMainThreadConfig = new Configuration();
Dianne Hackborn908aecc2012-07-31 16:37:34 -07001585 Configuration applyConfigCompatMainThread(int displayDensity, Configuration config,
1586 CompatibilityInfo compat) {
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001587 if (config == null) {
1588 return null;
1589 }
1590 if (compat != null && !compat.supportsScreen()) {
1591 mMainThreadConfig.setTo(config);
1592 config = mMainThreadConfig;
Dianne Hackborn908aecc2012-07-31 16:37:34 -07001593 compat.applyToConfiguration(displayDensity, config);
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001594 }
1595 return config;
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001596 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001597
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001598 /**
1599 * Creates the top level Resources for applications with the given compatibility info.
1600 *
1601 * @param resDir the resource directory.
1602 * @param compInfo the compability info. It will use the default compatibility info when it's
1603 * null.
1604 */
Dianne Hackborn756220b2012-08-14 16:45:30 -07001605 Resources getTopLevelResources(String resDir, Configuration overrideConfiguration,
1606 CompatibilityInfo compInfo) {
1607 ResourcesKey key = new ResourcesKey(resDir, overrideConfiguration,
1608 compInfo.applicationScale);
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001609 Resources r;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001610 synchronized (mPackages) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001611 // Resources is app scale dependent.
1612 if (false) {
1613 Slog.w(TAG, "getTopLevelResources: " + resDir + " / "
1614 + compInfo.applicationScale);
1615 }
1616 WeakReference<Resources> wr = mActiveResources.get(key);
1617 r = wr != null ? wr.get() : null;
1618 //if (r != null) Slog.i(TAG, "isUpToDate " + resDir + ": " + r.getAssets().isUpToDate());
1619 if (r != null && r.getAssets().isUpToDate()) {
1620 if (false) {
1621 Slog.w(TAG, "Returning cached resources " + r + " " + resDir
1622 + ": appScale=" + r.getCompatibilityInfo().applicationScale);
1623 }
1624 return r;
1625 }
1626 }
1627
1628 //if (r != null) {
1629 // Slog.w(TAG, "Throwing away out-of-date resources!!!! "
1630 // + r + " " + resDir);
1631 //}
1632
1633 AssetManager assets = new AssetManager();
1634 if (assets.addAssetPath(resDir) == 0) {
1635 return null;
1636 }
1637
1638 //Slog.i(TAG, "Resource: key=" + key + ", display metrics=" + metrics);
Dianne Hackborn836e2622011-10-04 18:32:39 -07001639 DisplayMetrics metrics = getDisplayMetricsLocked(null, false);
Dianne Hackborn756220b2012-08-14 16:45:30 -07001640 Configuration config;
1641 if (key.mOverrideConfiguration != null) {
1642 config = new Configuration(getConfiguration());
1643 config.updateFrom(key.mOverrideConfiguration);
1644 } else {
1645 config = getConfiguration();
1646 }
1647 r = new Resources(assets, metrics, config, compInfo);
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001648 if (false) {
1649 Slog.i(TAG, "Created app resources " + resDir + " " + r + ": "
1650 + r.getConfiguration() + " appScale="
1651 + r.getCompatibilityInfo().applicationScale);
1652 }
Dianne Hackborn756220b2012-08-14 16:45:30 -07001653
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001654 synchronized (mPackages) {
1655 WeakReference<Resources> wr = mActiveResources.get(key);
1656 Resources existing = wr != null ? wr.get() : null;
1657 if (existing != null && existing.getAssets().isUpToDate()) {
1658 // Someone else already created the resources while we were
1659 // unlocked; go ahead and use theirs.
1660 r.getAssets().close();
1661 return existing;
1662 }
1663
1664 // XXX need to remove entries when weak references go away
1665 mActiveResources.put(key, new WeakReference<Resources>(r));
1666 return r;
1667 }
1668 }
1669
1670 /**
1671 * Creates the top level resources for the given package.
1672 */
Dianne Hackborn756220b2012-08-14 16:45:30 -07001673 Resources getTopLevelResources(String resDir, Configuration overrideConfiguration,
1674 LoadedApk pkgInfo) {
1675 return getTopLevelResources(resDir, overrideConfiguration,
1676 pkgInfo.mCompatibilityInfo.get());
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001677 }
1678
1679 final Handler getHandler() {
1680 return mH;
1681 }
1682
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001683 public final LoadedApk getPackageInfo(String packageName, CompatibilityInfo compatInfo,
1684 int flags) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001685 synchronized (mPackages) {
1686 WeakReference<LoadedApk> ref;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001687 if ((flags&Context.CONTEXT_INCLUDE_CODE) != 0) {
1688 ref = mPackages.get(packageName);
1689 } else {
1690 ref = mResourcePackages.get(packageName);
1691 }
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001692 LoadedApk packageInfo = ref != null ? ref.get() : null;
Dianne Hackborn399cccb2010-04-13 22:57:49 -07001693 //Slog.i(TAG, "getPackageInfo " + packageName + ": " + packageInfo);
Dianne Hackborn4416c3d2010-05-04 17:22:49 -07001694 //if (packageInfo != null) Slog.i(TAG, "isUptoDate " + packageInfo.mResDir
1695 // + ": " + packageInfo.mResources.getAssets().isUpToDate());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001696 if (packageInfo != null && (packageInfo.mResources == null
1697 || packageInfo.mResources.getAssets().isUpToDate())) {
1698 if (packageInfo.isSecurityViolation()
1699 && (flags&Context.CONTEXT_IGNORE_SECURITY) == 0) {
1700 throw new SecurityException(
1701 "Requesting code from " + packageName
1702 + " to be run in process "
1703 + mBoundApplication.processName
1704 + "/" + mBoundApplication.appInfo.uid);
1705 }
1706 return packageInfo;
1707 }
1708 }
1709
1710 ApplicationInfo ai = null;
1711 try {
1712 ai = getPackageManager().getApplicationInfo(packageName,
Dianne Hackbornf02b60a2012-08-16 10:48:27 -07001713 PackageManager.GET_SHARED_LIBRARY_FILES, UserHandle.myUserId());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001714 } catch (RemoteException e) {
Romain Guy65b345f2011-07-27 18:51:50 -07001715 // Ignore
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001716 }
1717
1718 if (ai != null) {
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001719 return getPackageInfo(ai, compatInfo, flags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001720 }
1721
1722 return null;
1723 }
1724
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001725 public final LoadedApk getPackageInfo(ApplicationInfo ai, CompatibilityInfo compatInfo,
1726 int flags) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001727 boolean includeCode = (flags&Context.CONTEXT_INCLUDE_CODE) != 0;
1728 boolean securityViolation = includeCode && ai.uid != 0
1729 && ai.uid != Process.SYSTEM_UID && (mBoundApplication != null
Dianne Hackbornf02b60a2012-08-16 10:48:27 -07001730 ? !UserHandle.isSameApp(ai.uid, mBoundApplication.appInfo.uid)
Amith Yamasani742a6712011-05-04 14:49:28 -07001731 : true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001732 if ((flags&(Context.CONTEXT_INCLUDE_CODE
1733 |Context.CONTEXT_IGNORE_SECURITY))
1734 == Context.CONTEXT_INCLUDE_CODE) {
1735 if (securityViolation) {
1736 String msg = "Requesting code from " + ai.packageName
1737 + " (with uid " + ai.uid + ")";
1738 if (mBoundApplication != null) {
1739 msg = msg + " to be run in process "
1740 + mBoundApplication.processName + " (with uid "
1741 + mBoundApplication.appInfo.uid + ")";
1742 }
1743 throw new SecurityException(msg);
1744 }
1745 }
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001746 return getPackageInfo(ai, compatInfo, null, securityViolation, includeCode);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001747 }
1748
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001749 public final LoadedApk getPackageInfoNoCheck(ApplicationInfo ai,
1750 CompatibilityInfo compatInfo) {
1751 return getPackageInfo(ai, compatInfo, null, false, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001752 }
1753
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001754 public final LoadedApk peekPackageInfo(String packageName, boolean includeCode) {
1755 synchronized (mPackages) {
1756 WeakReference<LoadedApk> ref;
1757 if (includeCode) {
1758 ref = mPackages.get(packageName);
1759 } else {
1760 ref = mResourcePackages.get(packageName);
1761 }
1762 return ref != null ? ref.get() : null;
1763 }
1764 }
1765
Romain Guy65b345f2011-07-27 18:51:50 -07001766 private LoadedApk getPackageInfo(ApplicationInfo aInfo, CompatibilityInfo compatInfo,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001767 ClassLoader baseLoader, boolean securityViolation, boolean includeCode) {
1768 synchronized (mPackages) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001769 WeakReference<LoadedApk> ref;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001770 if (includeCode) {
1771 ref = mPackages.get(aInfo.packageName);
1772 } else {
1773 ref = mResourcePackages.get(aInfo.packageName);
1774 }
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001775 LoadedApk packageInfo = ref != null ? ref.get() : null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001776 if (packageInfo == null || (packageInfo.mResources != null
1777 && !packageInfo.mResources.getAssets().isUpToDate())) {
Dianne Hackborn399cccb2010-04-13 22:57:49 -07001778 if (localLOGV) Slog.v(TAG, (includeCode ? "Loading code package "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001779 : "Loading resource-only package ") + aInfo.packageName
1780 + " (in " + (mBoundApplication != null
1781 ? mBoundApplication.processName : null)
1782 + ")");
1783 packageInfo =
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001784 new LoadedApk(this, aInfo, compatInfo, this, baseLoader,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001785 securityViolation, includeCode &&
1786 (aInfo.flags&ApplicationInfo.FLAG_HAS_CODE) != 0);
1787 if (includeCode) {
1788 mPackages.put(aInfo.packageName,
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001789 new WeakReference<LoadedApk>(packageInfo));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001790 } else {
1791 mResourcePackages.put(aInfo.packageName,
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001792 new WeakReference<LoadedApk>(packageInfo));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001793 }
1794 }
1795 return packageInfo;
1796 }
1797 }
1798
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001799 ActivityThread() {
1800 }
1801
1802 public ApplicationThread getApplicationThread()
1803 {
1804 return mAppThread;
1805 }
1806
1807 public Instrumentation getInstrumentation()
1808 {
1809 return mInstrumentation;
1810 }
1811
1812 public Configuration getConfiguration() {
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07001813 return mResConfiguration;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001814 }
1815
1816 public boolean isProfiling() {
Jeff Sharkey3ad9d002011-09-15 15:51:54 -07001817 return mProfiler != null && mProfiler.profileFile != null
1818 && mProfiler.profileFd == null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001819 }
1820
1821 public String getProfileFilePath() {
Jeff Sharkey3ad9d002011-09-15 15:51:54 -07001822 return mProfiler.profileFile;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001823 }
1824
1825 public Looper getLooper() {
1826 return mLooper;
1827 }
1828
1829 public Application getApplication() {
1830 return mInitialApplication;
1831 }
Bob Leee5408332009-09-04 18:31:17 -07001832
Dianne Hackbornd97c7ad2009-06-19 11:37:35 -07001833 public String getProcessName() {
1834 return mBoundApplication.processName;
1835 }
Bob Leee5408332009-09-04 18:31:17 -07001836
Dianne Hackborn21556372010-02-04 16:34:40 -08001837 public ContextImpl getSystemContext() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001838 synchronized (this) {
1839 if (mSystemContext == null) {
Dianne Hackborn21556372010-02-04 16:34:40 -08001840 ContextImpl context =
1841 ContextImpl.createSystemContext(this);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001842 LoadedApk info = new LoadedApk(this, "android", context, null,
1843 CompatibilityInfo.DEFAULT_COMPATIBILITY_INFO);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001844 context.init(info, null, this);
1845 context.getResources().updateConfiguration(
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001846 getConfiguration(), getDisplayMetricsLocked(
1847 CompatibilityInfo.DEFAULT_COMPATIBILITY_INFO, false));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001848 mSystemContext = context;
Dianne Hackborn399cccb2010-04-13 22:57:49 -07001849 //Slog.i(TAG, "Created system resources " + context.getResources()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001850 // + ": " + context.getResources().getConfiguration());
1851 }
1852 }
1853 return mSystemContext;
1854 }
1855
Mike Cleron432b7132009-09-24 15:28:29 -07001856 public void installSystemApplicationInfo(ApplicationInfo info) {
1857 synchronized (this) {
Dianne Hackborn21556372010-02-04 16:34:40 -08001858 ContextImpl context = getSystemContext();
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001859 context.init(new LoadedApk(this, "android", context, info,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07001860 CompatibilityInfo.DEFAULT_COMPATIBILITY_INFO), null, this);
Jeff Sharkey3ad9d002011-09-15 15:51:54 -07001861
1862 // give ourselves a default profiler
1863 mProfiler = new Profiler();
Mike Cleron432b7132009-09-24 15:28:29 -07001864 }
1865 }
1866
Dianne Hackborn2a9094d2010-02-03 19:20:09 -08001867 void ensureJitEnabled() {
1868 if (!mJitEnabled) {
1869 mJitEnabled = true;
1870 dalvik.system.VMRuntime.getRuntime().startJitCompilation();
1871 }
1872 }
1873
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001874 void scheduleGcIdler() {
1875 if (!mGcIdlerScheduled) {
1876 mGcIdlerScheduled = true;
1877 Looper.myQueue().addIdleHandler(mGcIdler);
1878 }
1879 mH.removeMessages(H.GC_WHEN_IDLE);
1880 }
1881
1882 void unscheduleGcIdler() {
1883 if (mGcIdlerScheduled) {
1884 mGcIdlerScheduled = false;
1885 Looper.myQueue().removeIdleHandler(mGcIdler);
1886 }
1887 mH.removeMessages(H.GC_WHEN_IDLE);
1888 }
1889
1890 void doGcIfNeeded() {
1891 mGcIdlerScheduled = false;
1892 final long now = SystemClock.uptimeMillis();
Dianne Hackborn399cccb2010-04-13 22:57:49 -07001893 //Slog.i(TAG, "**** WE MIGHT WANT TO GC: then=" + Binder.getLastGcTime()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001894 // + "m now=" + now);
1895 if ((BinderInternal.getLastGcTime()+MIN_TIME_BETWEEN_GCS) < now) {
Dianne Hackborn399cccb2010-04-13 22:57:49 -07001896 //Slog.i(TAG, "**** WE DO, WE DO WANT TO GC!");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001897 BinderInternal.forceGc("bg");
1898 }
1899 }
1900
Jeff Hamilton52d32032011-01-08 15:31:26 -06001901 public void registerOnActivityPausedListener(Activity activity,
1902 OnActivityPausedListener listener) {
1903 synchronized (mOnPauseListeners) {
1904 ArrayList<OnActivityPausedListener> list = mOnPauseListeners.get(activity);
1905 if (list == null) {
1906 list = new ArrayList<OnActivityPausedListener>();
1907 mOnPauseListeners.put(activity, list);
1908 }
1909 list.add(listener);
1910 }
1911 }
1912
Jeff Hamiltonce3224c2011-01-17 11:05:03 -08001913 public void unregisterOnActivityPausedListener(Activity activity,
1914 OnActivityPausedListener listener) {
1915 synchronized (mOnPauseListeners) {
1916 ArrayList<OnActivityPausedListener> list = mOnPauseListeners.get(activity);
1917 if (list != null) {
1918 list.remove(listener);
1919 }
1920 }
1921 }
1922
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001923 public final ActivityInfo resolveActivityInfo(Intent intent) {
1924 ActivityInfo aInfo = intent.resolveActivityInfo(
1925 mInitialApplication.getPackageManager(), PackageManager.GET_SHARED_LIBRARY_FILES);
1926 if (aInfo == null) {
1927 // Throw an exception.
1928 Instrumentation.checkStartActivityResult(
Dianne Hackborna4972e92012-03-14 10:38:05 -07001929 ActivityManager.START_CLASS_NOT_FOUND, intent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001930 }
1931 return aInfo;
1932 }
Bob Leee5408332009-09-04 18:31:17 -07001933
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001934 public final Activity startActivityNow(Activity parent, String id,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001935 Intent intent, ActivityInfo activityInfo, IBinder token, Bundle state,
Dianne Hackbornb4bc78b2010-05-12 18:59:50 -07001936 Activity.NonConfigurationInstances lastNonConfigurationInstances) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001937 ActivityClientRecord r = new ActivityClientRecord();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001938 r.token = token;
Dianne Hackbornb06ea702009-07-13 13:07:51 -07001939 r.ident = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001940 r.intent = intent;
1941 r.state = state;
1942 r.parent = parent;
1943 r.embeddedID = id;
1944 r.activityInfo = activityInfo;
Dianne Hackbornb4bc78b2010-05-12 18:59:50 -07001945 r.lastNonConfigurationInstances = lastNonConfigurationInstances;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001946 if (localLOGV) {
1947 ComponentName compname = intent.getComponent();
1948 String name;
1949 if (compname != null) {
1950 name = compname.toShortString();
1951 } else {
1952 name = "(Intent " + intent + ").getComponent() returned null";
1953 }
Dianne Hackborn399cccb2010-04-13 22:57:49 -07001954 Slog.v(TAG, "Performing launch: action=" + intent.getAction()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001955 + ", comp=" + name
1956 + ", token=" + token);
1957 }
Christopher Tateb70f3df2009-04-07 16:07:59 -07001958 return performLaunchActivity(r, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001959 }
1960
1961 public final Activity getActivity(IBinder token) {
1962 return mActivities.get(token).activity;
1963 }
1964
1965 public final void sendActivityResult(
1966 IBinder token, String id, int requestCode,
1967 int resultCode, Intent data) {
Dianne Hackborn399cccb2010-04-13 22:57:49 -07001968 if (DEBUG_RESULTS) Slog.v(TAG, "sendActivityResult: id=" + id
Chris Tate8a7dc172009-03-24 20:11:42 -07001969 + " req=" + requestCode + " res=" + resultCode + " data=" + data);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001970 ArrayList<ResultInfo> list = new ArrayList<ResultInfo>();
1971 list.add(new ResultInfo(id, requestCode, resultCode, data));
1972 mAppThread.scheduleSendResult(token, list);
1973 }
1974
1975 // if the thread hasn't started yet, we don't have the handler, so just
1976 // save the messages until we're ready.
Romain Guy65b345f2011-07-27 18:51:50 -07001977 private void queueOrSendMessage(int what, Object obj) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001978 queueOrSendMessage(what, obj, 0, 0);
1979 }
1980
Romain Guy65b345f2011-07-27 18:51:50 -07001981 private void queueOrSendMessage(int what, Object obj, int arg1) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001982 queueOrSendMessage(what, obj, arg1, 0);
1983 }
1984
Romain Guy65b345f2011-07-27 18:51:50 -07001985 private void queueOrSendMessage(int what, Object obj, int arg1, int arg2) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001986 synchronized (this) {
Dianne Hackborn287952c2010-09-22 22:34:31 -07001987 if (DEBUG_MESSAGES) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001988 TAG, "SCHEDULE " + what + " " + mH.codeToString(what)
1989 + ": " + arg1 + " / " + obj);
1990 Message msg = Message.obtain();
1991 msg.what = what;
1992 msg.obj = obj;
1993 msg.arg1 = arg1;
1994 msg.arg2 = arg2;
1995 mH.sendMessage(msg);
1996 }
1997 }
1998
Dianne Hackborn21556372010-02-04 16:34:40 -08001999 final void scheduleContextCleanup(ContextImpl context, String who,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002000 String what) {
2001 ContextCleanupInfo cci = new ContextCleanupInfo();
2002 cci.context = context;
2003 cci.who = who;
2004 cci.what = what;
2005 queueOrSendMessage(H.CLEAN_UP_CONTEXT, cci);
2006 }
2007
Romain Guy65b345f2011-07-27 18:51:50 -07002008 private Activity performLaunchActivity(ActivityClientRecord r, Intent customIntent) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002009 // System.out.println("##### [" + System.currentTimeMillis() + "] ActivityThread.performLaunchActivity(" + r + ")");
2010
2011 ActivityInfo aInfo = r.activityInfo;
2012 if (r.packageInfo == null) {
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002013 r.packageInfo = getPackageInfo(aInfo.applicationInfo, r.compatInfo,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002014 Context.CONTEXT_INCLUDE_CODE);
2015 }
Bob Leee5408332009-09-04 18:31:17 -07002016
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002017 ComponentName component = r.intent.getComponent();
2018 if (component == null) {
2019 component = r.intent.resolveActivity(
2020 mInitialApplication.getPackageManager());
2021 r.intent.setComponent(component);
2022 }
2023
2024 if (r.activityInfo.targetActivity != null) {
2025 component = new ComponentName(r.activityInfo.packageName,
2026 r.activityInfo.targetActivity);
2027 }
2028
2029 Activity activity = null;
2030 try {
2031 java.lang.ClassLoader cl = r.packageInfo.getClassLoader();
2032 activity = mInstrumentation.newActivity(
2033 cl, component.getClassName(), r.intent);
Brad Fitzpatrick5f8b5c12011-01-20 15:12:08 -08002034 StrictMode.incrementExpectedActivityCount(activity.getClass());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002035 r.intent.setExtrasClassLoader(cl);
2036 if (r.state != null) {
2037 r.state.setClassLoader(cl);
2038 }
2039 } catch (Exception e) {
2040 if (!mInstrumentation.onException(activity, e)) {
2041 throw new RuntimeException(
2042 "Unable to instantiate activity " + component
2043 + ": " + e.toString(), e);
2044 }
2045 }
2046
2047 try {
Dianne Hackborn0be1f782009-11-09 12:30:12 -08002048 Application app = r.packageInfo.makeApplication(false, mInstrumentation);
Bob Leee5408332009-09-04 18:31:17 -07002049
Dianne Hackborn399cccb2010-04-13 22:57:49 -07002050 if (localLOGV) Slog.v(TAG, "Performing launch of " + r);
2051 if (localLOGV) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002052 TAG, r + ": app=" + app
2053 + ", appName=" + app.getPackageName()
2054 + ", pkg=" + r.packageInfo.getPackageName()
2055 + ", comp=" + r.intent.getComponent().toShortString()
2056 + ", dir=" + r.packageInfo.getAppDir());
2057
2058 if (activity != null) {
Dianne Hackborn21556372010-02-04 16:34:40 -08002059 ContextImpl appContext = new ContextImpl();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002060 appContext.init(r.packageInfo, r.token, this);
2061 appContext.setOuterContext(activity);
2062 CharSequence title = r.activityInfo.loadLabel(appContext.getPackageManager());
Dianne Hackborn5fd21692011-06-07 14:09:47 -07002063 Configuration config = new Configuration(mCompatConfiguration);
Dianne Hackborn399cccb2010-04-13 22:57:49 -07002064 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Launching activity "
Dianne Hackborndc6b6352009-09-30 14:20:09 -07002065 + r.activityInfo.name + " with config " + config);
Dianne Hackbornb06ea702009-07-13 13:07:51 -07002066 activity.attach(appContext, this, getInstrumentation(), r.token,
2067 r.ident, app, r.intent, r.activityInfo, title, r.parent,
Dianne Hackbornb4bc78b2010-05-12 18:59:50 -07002068 r.embeddedID, r.lastNonConfigurationInstances, config);
Bob Leee5408332009-09-04 18:31:17 -07002069
Christopher Tateb70f3df2009-04-07 16:07:59 -07002070 if (customIntent != null) {
2071 activity.mIntent = customIntent;
2072 }
Dianne Hackbornb4bc78b2010-05-12 18:59:50 -07002073 r.lastNonConfigurationInstances = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002074 activity.mStartedActivity = false;
2075 int theme = r.activityInfo.getThemeResource();
2076 if (theme != 0) {
2077 activity.setTheme(theme);
2078 }
2079
2080 activity.mCalled = false;
2081 mInstrumentation.callActivityOnCreate(activity, r.state);
2082 if (!activity.mCalled) {
2083 throw new SuperNotCalledException(
2084 "Activity " + r.intent.getComponent().toShortString() +
2085 " did not call through to super.onCreate()");
2086 }
2087 r.activity = activity;
2088 r.stopped = true;
2089 if (!r.activity.mFinished) {
2090 activity.performStart();
2091 r.stopped = false;
2092 }
2093 if (!r.activity.mFinished) {
2094 if (r.state != null) {
2095 mInstrumentation.callActivityOnRestoreInstanceState(activity, r.state);
2096 }
2097 }
2098 if (!r.activity.mFinished) {
2099 activity.mCalled = false;
2100 mInstrumentation.callActivityOnPostCreate(activity, r.state);
2101 if (!activity.mCalled) {
2102 throw new SuperNotCalledException(
2103 "Activity " + r.intent.getComponent().toShortString() +
2104 " did not call through to super.onPostCreate()");
2105 }
2106 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002107 }
2108 r.paused = true;
2109
2110 mActivities.put(r.token, r);
2111
2112 } catch (SuperNotCalledException e) {
2113 throw e;
2114
2115 } catch (Exception e) {
2116 if (!mInstrumentation.onException(activity, e)) {
2117 throw new RuntimeException(
2118 "Unable to start activity " + component
2119 + ": " + e.toString(), e);
2120 }
2121 }
2122
2123 return activity;
2124 }
2125
Romain Guy65b345f2011-07-27 18:51:50 -07002126 private void handleLaunchActivity(ActivityClientRecord r, Intent customIntent) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002127 // If we are getting ready to gc after going to the background, well
2128 // we are back active so skip it.
2129 unscheduleGcIdler();
2130
Dianne Hackborn62f20ec2011-08-15 17:40:28 -07002131 if (r.profileFd != null) {
Jeff Sharkey3ad9d002011-09-15 15:51:54 -07002132 mProfiler.setProfiler(r.profileFile, r.profileFd);
2133 mProfiler.startProfiling();
2134 mProfiler.autoStopProfiler = r.autoStopProfiler;
Dianne Hackborn62f20ec2011-08-15 17:40:28 -07002135 }
2136
Dianne Hackborn58f42a52011-10-10 13:46:34 -07002137 // Make sure we are running with the most recent config.
2138 handleConfigurationChanged(null, null);
2139
Dianne Hackborn399cccb2010-04-13 22:57:49 -07002140 if (localLOGV) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002141 TAG, "Handling launch of " + r);
Christopher Tateb70f3df2009-04-07 16:07:59 -07002142 Activity a = performLaunchActivity(r, customIntent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002143
2144 if (a != null) {
Dianne Hackborn871ecdc2009-12-11 15:24:33 -08002145 r.createdConfig = new Configuration(mConfiguration);
Dianne Hackborn9e0f5d92010-02-22 15:05:42 -08002146 Bundle oldState = r.state;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002147 handleResumeActivity(r.token, false, r.isForward);
2148
2149 if (!r.activity.mFinished && r.startsNotResumed) {
2150 // The activity manager actually wants this one to start out
2151 // paused, because it needs to be visible but isn't in the
2152 // foreground. We accomplish this by going through the
2153 // normal startup (because activities expect to go through
2154 // onResume() the first time they run, before their window
2155 // is displayed), and then pausing it. However, in this case
2156 // we do -not- need to do the full pause cycle (of freezing
2157 // and such) because the activity manager assumes it can just
2158 // retain the current state it has.
2159 try {
2160 r.activity.mCalled = false;
2161 mInstrumentation.callActivityOnPause(r.activity);
Dianne Hackborn9e0f5d92010-02-22 15:05:42 -08002162 // We need to keep around the original state, in case
Dianne Hackborn03fcc332012-05-15 12:49:40 -07002163 // we need to be created again. But we only do this
2164 // for pre-Honeycomb apps, which always save their state
2165 // when pausing, so we can not have them save their state
2166 // when restarting from a paused state. For HC and later,
2167 // we want to (and can) let the state be saved as the normal
2168 // part of stopping the activity.
2169 if (r.isPreHoneycomb()) {
2170 r.state = oldState;
2171 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002172 if (!r.activity.mCalled) {
2173 throw new SuperNotCalledException(
2174 "Activity " + r.intent.getComponent().toShortString() +
2175 " did not call through to super.onPause()");
2176 }
2177
2178 } catch (SuperNotCalledException e) {
2179 throw e;
2180
2181 } catch (Exception e) {
2182 if (!mInstrumentation.onException(r.activity, e)) {
2183 throw new RuntimeException(
2184 "Unable to pause activity "
2185 + r.intent.getComponent().toShortString()
2186 + ": " + e.toString(), e);
2187 }
2188 }
2189 r.paused = true;
2190 }
2191 } else {
2192 // If there was an error, for any reason, tell the activity
2193 // manager to stop us.
2194 try {
2195 ActivityManagerNative.getDefault()
2196 .finishActivity(r.token, Activity.RESULT_CANCELED, null);
2197 } catch (RemoteException ex) {
Romain Guy65b345f2011-07-27 18:51:50 -07002198 // Ignore
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002199 }
2200 }
2201 }
2202
Romain Guy65b345f2011-07-27 18:51:50 -07002203 private void deliverNewIntents(ActivityClientRecord r,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002204 List<Intent> intents) {
2205 final int N = intents.size();
2206 for (int i=0; i<N; i++) {
2207 Intent intent = intents.get(i);
2208 intent.setExtrasClassLoader(r.activity.getClassLoader());
Dianne Hackbornfb3cffe2010-10-25 17:08:56 -07002209 r.activity.mFragments.noteStateNotSaved();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002210 mInstrumentation.callActivityOnNewIntent(r.activity, intent);
2211 }
2212 }
2213
2214 public final void performNewIntents(IBinder token,
2215 List<Intent> intents) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07002216 ActivityClientRecord r = mActivities.get(token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002217 if (r != null) {
2218 final boolean resumed = !r.paused;
2219 if (resumed) {
Dianne Hackbornfb3cffe2010-10-25 17:08:56 -07002220 r.activity.mTemporaryPause = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002221 mInstrumentation.callActivityOnPause(r.activity);
2222 }
2223 deliverNewIntents(r, intents);
2224 if (resumed) {
Dianne Hackbornb46ed762011-06-02 18:33:15 -07002225 r.activity.performResume();
Dianne Hackbornfb3cffe2010-10-25 17:08:56 -07002226 r.activity.mTemporaryPause = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002227 }
2228 }
2229 }
Bob Leee5408332009-09-04 18:31:17 -07002230
Romain Guy65b345f2011-07-27 18:51:50 -07002231 private void handleNewIntent(NewIntentData data) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002232 performNewIntents(data.token, data.intents);
2233 }
2234
Brad Fitzpatrickbfb19192010-10-29 15:25:44 -07002235 private static final ThreadLocal<Intent> sCurrentBroadcastIntent = new ThreadLocal<Intent>();
2236
2237 /**
2238 * Return the Intent that's currently being handled by a
2239 * BroadcastReceiver on this thread, or null if none.
2240 * @hide
2241 */
2242 public static Intent getIntentBeingBroadcast() {
2243 return sCurrentBroadcastIntent.get();
2244 }
2245
Romain Guy65b345f2011-07-27 18:51:50 -07002246 private void handleReceiver(ReceiverData data) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002247 // If we are getting ready to gc after going to the background, well
2248 // we are back active so skip it.
2249 unscheduleGcIdler();
2250
2251 String component = data.intent.getComponent().getClassName();
2252
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07002253 LoadedApk packageInfo = getPackageInfoNoCheck(
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002254 data.info.applicationInfo, data.compatInfo);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002255
2256 IActivityManager mgr = ActivityManagerNative.getDefault();
2257
Romain Guy65b345f2011-07-27 18:51:50 -07002258 BroadcastReceiver receiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002259 try {
2260 java.lang.ClassLoader cl = packageInfo.getClassLoader();
2261 data.intent.setExtrasClassLoader(cl);
Dianne Hackborne829fef2010-10-26 17:44:01 -07002262 data.setExtrasClassLoader(cl);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002263 receiver = (BroadcastReceiver)cl.loadClass(component).newInstance();
2264 } catch (Exception e) {
Dianne Hackborne829fef2010-10-26 17:44:01 -07002265 if (DEBUG_BROADCAST) Slog.i(TAG,
2266 "Finishing failed broadcast to " + data.intent.getComponent());
2267 data.sendFinished(mgr);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002268 throw new RuntimeException(
2269 "Unable to instantiate receiver " + component
2270 + ": " + e.toString(), e);
2271 }
2272
2273 try {
Dianne Hackborn0be1f782009-11-09 12:30:12 -08002274 Application app = packageInfo.makeApplication(false, mInstrumentation);
Bob Leee5408332009-09-04 18:31:17 -07002275
Dianne Hackborn399cccb2010-04-13 22:57:49 -07002276 if (localLOGV) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002277 TAG, "Performing receive of " + data.intent
2278 + ": app=" + app
2279 + ", appName=" + app.getPackageName()
2280 + ", pkg=" + packageInfo.getPackageName()
2281 + ", comp=" + data.intent.getComponent().toShortString()
2282 + ", dir=" + packageInfo.getAppDir());
2283
Dianne Hackborn21556372010-02-04 16:34:40 -08002284 ContextImpl context = (ContextImpl)app.getBaseContext();
Brad Fitzpatrickbfb19192010-10-29 15:25:44 -07002285 sCurrentBroadcastIntent.set(data.intent);
Dianne Hackborne829fef2010-10-26 17:44:01 -07002286 receiver.setPendingResult(data);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002287 receiver.onReceive(context.getReceiverRestrictedContext(),
2288 data.intent);
2289 } catch (Exception e) {
Dianne Hackborne829fef2010-10-26 17:44:01 -07002290 if (DEBUG_BROADCAST) Slog.i(TAG,
2291 "Finishing failed broadcast to " + data.intent.getComponent());
2292 data.sendFinished(mgr);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002293 if (!mInstrumentation.onException(receiver, e)) {
2294 throw new RuntimeException(
2295 "Unable to start receiver " + component
2296 + ": " + e.toString(), e);
2297 }
Brad Fitzpatrickbfb19192010-10-29 15:25:44 -07002298 } finally {
2299 sCurrentBroadcastIntent.set(null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002300 }
2301
Dianne Hackborne829fef2010-10-26 17:44:01 -07002302 if (receiver.getPendingResult() != null) {
2303 data.finish();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002304 }
2305 }
2306
Christopher Tate181fafa2009-05-14 11:12:14 -07002307 // Instantiate a BackupAgent and tell it that it's alive
Romain Guy65b345f2011-07-27 18:51:50 -07002308 private void handleCreateBackupAgent(CreateBackupAgentData data) {
Dianne Hackborn399cccb2010-04-13 22:57:49 -07002309 if (DEBUG_BACKUP) Slog.v(TAG, "handleCreateBackupAgent: " + data);
Christopher Tate181fafa2009-05-14 11:12:14 -07002310
2311 // no longer idle; we have backup work to do
2312 unscheduleGcIdler();
2313
2314 // instantiate the BackupAgent class named in the manifest
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002315 LoadedApk packageInfo = getPackageInfoNoCheck(data.appInfo, data.compatInfo);
Christopher Tate181fafa2009-05-14 11:12:14 -07002316 String packageName = packageInfo.mPackageName;
2317 if (mBackupAgents.get(packageName) != null) {
Dianne Hackborn399cccb2010-04-13 22:57:49 -07002318 Slog.d(TAG, "BackupAgent " + " for " + packageName
Christopher Tate181fafa2009-05-14 11:12:14 -07002319 + " already exists");
2320 return;
2321 }
Bob Leee5408332009-09-04 18:31:17 -07002322
Christopher Tate181fafa2009-05-14 11:12:14 -07002323 BackupAgent agent = null;
2324 String classname = data.appInfo.backupAgentName;
Christopher Tate4a627c72011-04-01 14:43:32 -07002325
Christopher Tate79ec80d2011-06-24 14:58:49 -07002326 // full backup operation but no app-supplied agent? use the default implementation
2327 if (classname == null && (data.backupMode == IApplicationThread.BACKUP_MODE_FULL
2328 || data.backupMode == IApplicationThread.BACKUP_MODE_RESTORE_FULL)) {
Christopher Tate4a627c72011-04-01 14:43:32 -07002329 classname = "android.app.backup.FullBackupAgent";
Christopher Tate181fafa2009-05-14 11:12:14 -07002330 }
Christopher Tate4a627c72011-04-01 14:43:32 -07002331
Christopher Tate181fafa2009-05-14 11:12:14 -07002332 try {
Christopher Tated1475e02009-07-09 15:36:17 -07002333 IBinder binder = null;
2334 try {
Christopher Tate4a627c72011-04-01 14:43:32 -07002335 if (DEBUG_BACKUP) Slog.v(TAG, "Initializing agent class " + classname);
2336
Christopher Tated1475e02009-07-09 15:36:17 -07002337 java.lang.ClassLoader cl = packageInfo.getClassLoader();
Christopher Tate4a627c72011-04-01 14:43:32 -07002338 agent = (BackupAgent) cl.loadClass(classname).newInstance();
Christopher Tated1475e02009-07-09 15:36:17 -07002339
2340 // set up the agent's context
Dianne Hackborn21556372010-02-04 16:34:40 -08002341 ContextImpl context = new ContextImpl();
Christopher Tated1475e02009-07-09 15:36:17 -07002342 context.init(packageInfo, null, this);
2343 context.setOuterContext(agent);
2344 agent.attach(context);
2345
2346 agent.onCreate();
2347 binder = agent.onBind();
2348 mBackupAgents.put(packageName, agent);
2349 } catch (Exception e) {
2350 // If this is during restore, fail silently; otherwise go
2351 // ahead and let the user see the crash.
Dianne Hackbornc9421ba2010-03-11 22:23:46 -08002352 Slog.e(TAG, "Agent threw during creation: " + e);
Christopher Tate75a99702011-05-18 16:28:19 -07002353 if (data.backupMode != IApplicationThread.BACKUP_MODE_RESTORE
2354 && data.backupMode != IApplicationThread.BACKUP_MODE_RESTORE_FULL) {
Christopher Tated1475e02009-07-09 15:36:17 -07002355 throw e;
2356 }
2357 // falling through with 'binder' still null
2358 }
Christopher Tate181fafa2009-05-14 11:12:14 -07002359
2360 // tell the OS that we're live now
Christopher Tate181fafa2009-05-14 11:12:14 -07002361 try {
2362 ActivityManagerNative.getDefault().backupAgentCreated(packageName, binder);
2363 } catch (RemoteException e) {
2364 // nothing to do.
2365 }
Christopher Tate181fafa2009-05-14 11:12:14 -07002366 } catch (Exception e) {
2367 throw new RuntimeException("Unable to create BackupAgent "
Christopher Tate4a627c72011-04-01 14:43:32 -07002368 + classname + ": " + e.toString(), e);
Christopher Tate181fafa2009-05-14 11:12:14 -07002369 }
2370 }
2371
2372 // Tear down a BackupAgent
Romain Guy65b345f2011-07-27 18:51:50 -07002373 private void handleDestroyBackupAgent(CreateBackupAgentData data) {
Dianne Hackborn399cccb2010-04-13 22:57:49 -07002374 if (DEBUG_BACKUP) Slog.v(TAG, "handleDestroyBackupAgent: " + data);
Bob Leee5408332009-09-04 18:31:17 -07002375
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002376 LoadedApk packageInfo = getPackageInfoNoCheck(data.appInfo, data.compatInfo);
Christopher Tate181fafa2009-05-14 11:12:14 -07002377 String packageName = packageInfo.mPackageName;
2378 BackupAgent agent = mBackupAgents.get(packageName);
2379 if (agent != null) {
2380 try {
2381 agent.onDestroy();
2382 } catch (Exception e) {
Dianne Hackbornc9421ba2010-03-11 22:23:46 -08002383 Slog.w(TAG, "Exception thrown in onDestroy by backup agent of " + data.appInfo);
Christopher Tate181fafa2009-05-14 11:12:14 -07002384 e.printStackTrace();
2385 }
2386 mBackupAgents.remove(packageName);
2387 } else {
Dianne Hackbornc9421ba2010-03-11 22:23:46 -08002388 Slog.w(TAG, "Attempt to destroy unknown backup agent " + data);
Christopher Tate181fafa2009-05-14 11:12:14 -07002389 }
2390 }
2391
Romain Guy65b345f2011-07-27 18:51:50 -07002392 private void handleCreateService(CreateServiceData data) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002393 // If we are getting ready to gc after going to the background, well
2394 // we are back active so skip it.
2395 unscheduleGcIdler();
2396
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07002397 LoadedApk packageInfo = getPackageInfoNoCheck(
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002398 data.info.applicationInfo, data.compatInfo);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002399 Service service = null;
2400 try {
2401 java.lang.ClassLoader cl = packageInfo.getClassLoader();
2402 service = (Service) cl.loadClass(data.info.name).newInstance();
2403 } catch (Exception e) {
2404 if (!mInstrumentation.onException(service, e)) {
2405 throw new RuntimeException(
2406 "Unable to instantiate service " + data.info.name
2407 + ": " + e.toString(), e);
2408 }
2409 }
2410
2411 try {
Dianne Hackborn399cccb2010-04-13 22:57:49 -07002412 if (localLOGV) Slog.v(TAG, "Creating service " + data.info.name);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002413
Dianne Hackborn21556372010-02-04 16:34:40 -08002414 ContextImpl context = new ContextImpl();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002415 context.init(packageInfo, null, this);
2416
Dianne Hackborn0be1f782009-11-09 12:30:12 -08002417 Application app = packageInfo.makeApplication(false, mInstrumentation);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002418 context.setOuterContext(service);
2419 service.attach(context, this, data.info.name, data.token, app,
2420 ActivityManagerNative.getDefault());
2421 service.onCreate();
2422 mServices.put(data.token, service);
2423 try {
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07002424 ActivityManagerNative.getDefault().serviceDoneExecuting(
2425 data.token, 0, 0, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002426 } catch (RemoteException e) {
2427 // nothing to do.
2428 }
2429 } catch (Exception e) {
2430 if (!mInstrumentation.onException(service, e)) {
2431 throw new RuntimeException(
2432 "Unable to create service " + data.info.name
2433 + ": " + e.toString(), e);
2434 }
2435 }
2436 }
2437
Romain Guy65b345f2011-07-27 18:51:50 -07002438 private void handleBindService(BindServiceData data) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002439 Service s = mServices.get(data.token);
Amith Yamasani742a6712011-05-04 14:49:28 -07002440 if (DEBUG_SERVICE)
2441 Slog.v(TAG, "handleBindService s=" + s + " rebind=" + data.rebind);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002442 if (s != null) {
2443 try {
2444 data.intent.setExtrasClassLoader(s.getClassLoader());
2445 try {
2446 if (!data.rebind) {
2447 IBinder binder = s.onBind(data.intent);
2448 ActivityManagerNative.getDefault().publishService(
2449 data.token, data.intent, binder);
2450 } else {
2451 s.onRebind(data.intent);
2452 ActivityManagerNative.getDefault().serviceDoneExecuting(
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07002453 data.token, 0, 0, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002454 }
Dianne Hackborn2a9094d2010-02-03 19:20:09 -08002455 ensureJitEnabled();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002456 } catch (RemoteException ex) {
2457 }
2458 } catch (Exception e) {
2459 if (!mInstrumentation.onException(s, e)) {
2460 throw new RuntimeException(
2461 "Unable to bind to service " + s
2462 + " with " + data.intent + ": " + e.toString(), e);
2463 }
2464 }
2465 }
2466 }
2467
Romain Guy65b345f2011-07-27 18:51:50 -07002468 private void handleUnbindService(BindServiceData data) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002469 Service s = mServices.get(data.token);
2470 if (s != null) {
2471 try {
2472 data.intent.setExtrasClassLoader(s.getClassLoader());
2473 boolean doRebind = s.onUnbind(data.intent);
2474 try {
2475 if (doRebind) {
2476 ActivityManagerNative.getDefault().unbindFinished(
2477 data.token, data.intent, doRebind);
2478 } else {
2479 ActivityManagerNative.getDefault().serviceDoneExecuting(
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07002480 data.token, 0, 0, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002481 }
2482 } catch (RemoteException ex) {
2483 }
2484 } catch (Exception e) {
2485 if (!mInstrumentation.onException(s, e)) {
2486 throw new RuntimeException(
2487 "Unable to unbind to service " + s
2488 + " with " + data.intent + ": " + e.toString(), e);
2489 }
2490 }
2491 }
2492 }
2493
Dianne Hackborn625ac272010-09-17 18:29:22 -07002494 private void handleDumpService(DumpComponentInfo info) {
Jeff Sharkeye861b422012-03-01 20:59:22 -08002495 final StrictMode.ThreadPolicy oldPolicy = StrictMode.allowThreadDiskWrites();
2496 try {
2497 Service s = mServices.get(info.token);
2498 if (s != null) {
2499 PrintWriter pw = new PrintWriter(new FileOutputStream(info.fd.getFileDescriptor()));
2500 s.dump(info.fd.getFileDescriptor(), pw, info.args);
2501 pw.flush();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002502 }
Jeff Sharkeye861b422012-03-01 20:59:22 -08002503 } finally {
2504 IoUtils.closeQuietly(info.fd);
2505 StrictMode.setThreadPolicy(oldPolicy);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002506 }
2507 }
2508
Dianne Hackborn625ac272010-09-17 18:29:22 -07002509 private void handleDumpActivity(DumpComponentInfo info) {
Jeff Sharkeye861b422012-03-01 20:59:22 -08002510 final StrictMode.ThreadPolicy oldPolicy = StrictMode.allowThreadDiskWrites();
2511 try {
2512 ActivityClientRecord r = mActivities.get(info.token);
2513 if (r != null && r.activity != null) {
2514 PrintWriter pw = new PrintWriter(new FileOutputStream(info.fd.getFileDescriptor()));
2515 r.activity.dump(info.prefix, info.fd.getFileDescriptor(), pw, info.args);
2516 pw.flush();
Dianne Hackborn625ac272010-09-17 18:29:22 -07002517 }
Jeff Sharkeye861b422012-03-01 20:59:22 -08002518 } finally {
2519 IoUtils.closeQuietly(info.fd);
2520 StrictMode.setThreadPolicy(oldPolicy);
Dianne Hackborn625ac272010-09-17 18:29:22 -07002521 }
2522 }
2523
Marco Nelissen18cb2872011-11-15 11:19:53 -08002524 private void handleDumpProvider(DumpComponentInfo info) {
Jeff Sharkeye861b422012-03-01 20:59:22 -08002525 final StrictMode.ThreadPolicy oldPolicy = StrictMode.allowThreadDiskWrites();
2526 try {
2527 ProviderClientRecord r = mLocalProviders.get(info.token);
2528 if (r != null && r.mLocalProvider != null) {
2529 PrintWriter pw = new PrintWriter(new FileOutputStream(info.fd.getFileDescriptor()));
2530 r.mLocalProvider.dump(info.fd.getFileDescriptor(), pw, info.args);
2531 pw.flush();
Marco Nelissen18cb2872011-11-15 11:19:53 -08002532 }
Jeff Sharkeye861b422012-03-01 20:59:22 -08002533 } finally {
2534 IoUtils.closeQuietly(info.fd);
2535 StrictMode.setThreadPolicy(oldPolicy);
Marco Nelissen18cb2872011-11-15 11:19:53 -08002536 }
2537 }
2538
Romain Guy65b345f2011-07-27 18:51:50 -07002539 private void handleServiceArgs(ServiceArgsData data) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002540 Service s = mServices.get(data.token);
2541 if (s != null) {
2542 try {
2543 if (data.args != null) {
2544 data.args.setExtrasClassLoader(s.getClassLoader());
2545 }
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07002546 int res;
2547 if (!data.taskRemoved) {
2548 res = s.onStartCommand(data.args, data.flags, data.startId);
2549 } else {
2550 s.onTaskRemoved(data.args);
2551 res = Service.START_TASK_REMOVED_COMPLETE;
2552 }
Brad Fitzpatrick333b8cb2010-08-26 12:04:57 -07002553
2554 QueuedWork.waitToFinish();
2555
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002556 try {
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07002557 ActivityManagerNative.getDefault().serviceDoneExecuting(
2558 data.token, 1, data.startId, res);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002559 } catch (RemoteException e) {
2560 // nothing to do.
2561 }
Dianne Hackborn2a9094d2010-02-03 19:20:09 -08002562 ensureJitEnabled();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002563 } catch (Exception e) {
2564 if (!mInstrumentation.onException(s, e)) {
2565 throw new RuntimeException(
2566 "Unable to start service " + s
2567 + " with " + data.args + ": " + e.toString(), e);
2568 }
2569 }
2570 }
2571 }
2572
Romain Guy65b345f2011-07-27 18:51:50 -07002573 private void handleStopService(IBinder token) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002574 Service s = mServices.remove(token);
2575 if (s != null) {
2576 try {
Dianne Hackborn399cccb2010-04-13 22:57:49 -07002577 if (localLOGV) Slog.v(TAG, "Destroying service " + s);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002578 s.onDestroy();
2579 Context context = s.getBaseContext();
Dianne Hackborn21556372010-02-04 16:34:40 -08002580 if (context instanceof ContextImpl) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002581 final String who = s.getClassName();
Dianne Hackborn21556372010-02-04 16:34:40 -08002582 ((ContextImpl) context).scheduleFinalCleanup(who, "Service");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002583 }
Brad Fitzpatrick333b8cb2010-08-26 12:04:57 -07002584
2585 QueuedWork.waitToFinish();
2586
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002587 try {
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07002588 ActivityManagerNative.getDefault().serviceDoneExecuting(
2589 token, 0, 0, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002590 } catch (RemoteException e) {
2591 // nothing to do.
2592 }
2593 } catch (Exception e) {
2594 if (!mInstrumentation.onException(s, e)) {
2595 throw new RuntimeException(
2596 "Unable to stop service " + s
2597 + ": " + e.toString(), e);
2598 }
2599 }
2600 }
Dianne Hackborn399cccb2010-04-13 22:57:49 -07002601 //Slog.i(TAG, "Running services: " + mServices);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002602 }
2603
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07002604 public final ActivityClientRecord performResumeActivity(IBinder token,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002605 boolean clearHide) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07002606 ActivityClientRecord r = mActivities.get(token);
Dianne Hackborn399cccb2010-04-13 22:57:49 -07002607 if (localLOGV) Slog.v(TAG, "Performing resume of " + r
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002608 + " finished=" + r.activity.mFinished);
2609 if (r != null && !r.activity.mFinished) {
2610 if (clearHide) {
2611 r.hideForNow = false;
2612 r.activity.mStartedActivity = false;
2613 }
2614 try {
2615 if (r.pendingIntents != null) {
2616 deliverNewIntents(r, r.pendingIntents);
2617 r.pendingIntents = null;
2618 }
2619 if (r.pendingResults != null) {
2620 deliverResults(r, r.pendingResults);
2621 r.pendingResults = null;
2622 }
2623 r.activity.performResume();
2624
Bob Leee5408332009-09-04 18:31:17 -07002625 EventLog.writeEvent(LOG_ON_RESUME_CALLED,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002626 r.activity.getComponentName().getClassName());
Bob Leee5408332009-09-04 18:31:17 -07002627
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002628 r.paused = false;
2629 r.stopped = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002630 r.state = null;
2631 } catch (Exception e) {
2632 if (!mInstrumentation.onException(r.activity, e)) {
2633 throw new RuntimeException(
2634 "Unable to resume activity "
2635 + r.intent.getComponent().toShortString()
2636 + ": " + e.toString(), e);
2637 }
2638 }
2639 }
2640 return r;
2641 }
2642
Romain Guya998dff2012-03-23 18:58:36 -07002643 static final void cleanUpPendingRemoveWindows(ActivityClientRecord r) {
Dianne Hackborn30c9bd82010-12-01 16:07:40 -08002644 if (r.mPendingRemoveWindow != null) {
2645 r.mPendingRemoveWindowManager.removeViewImmediate(r.mPendingRemoveWindow);
2646 IBinder wtoken = r.mPendingRemoveWindow.getWindowToken();
2647 if (wtoken != null) {
Jeff Brown98365d72012-08-19 20:30:52 -07002648 WindowManagerGlobal.getInstance().closeAll(wtoken,
Dianne Hackborn30c9bd82010-12-01 16:07:40 -08002649 r.activity.getClass().getName(), "Activity");
2650 }
2651 }
2652 r.mPendingRemoveWindow = null;
2653 r.mPendingRemoveWindowManager = null;
2654 }
2655
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002656 final void handleResumeActivity(IBinder token, boolean clearHide, boolean isForward) {
2657 // If we are getting ready to gc after going to the background, well
2658 // we are back active so skip it.
2659 unscheduleGcIdler();
2660
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07002661 ActivityClientRecord r = performResumeActivity(token, clearHide);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002662
2663 if (r != null) {
2664 final Activity a = r.activity;
2665
Dianne Hackborn399cccb2010-04-13 22:57:49 -07002666 if (localLOGV) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002667 TAG, "Resume " + r + " started activity: " +
2668 a.mStartedActivity + ", hideForNow: " + r.hideForNow
2669 + ", finished: " + a.mFinished);
2670
2671 final int forwardBit = isForward ?
2672 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION : 0;
Bob Leee5408332009-09-04 18:31:17 -07002673
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002674 // If the window hasn't yet been added to the window manager,
2675 // and this guy didn't finish itself or start another activity,
2676 // then go ahead and add the window.
Dianne Hackborn061d58a2010-03-12 15:07:06 -08002677 boolean willBeVisible = !a.mStartedActivity;
2678 if (!willBeVisible) {
2679 try {
2680 willBeVisible = ActivityManagerNative.getDefault().willActivityBeVisible(
2681 a.getActivityToken());
2682 } catch (RemoteException e) {
2683 }
2684 }
2685 if (r.window == null && !a.mFinished && willBeVisible) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002686 r.window = r.activity.getWindow();
2687 View decor = r.window.getDecorView();
2688 decor.setVisibility(View.INVISIBLE);
2689 ViewManager wm = a.getWindowManager();
2690 WindowManager.LayoutParams l = r.window.getAttributes();
2691 a.mDecor = decor;
2692 l.type = WindowManager.LayoutParams.TYPE_BASE_APPLICATION;
2693 l.softInputMode |= forwardBit;
2694 if (a.mVisibleFromClient) {
2695 a.mWindowAdded = true;
2696 wm.addView(decor, l);
2697 }
2698
2699 // If the window has already been added, but during resume
2700 // we started another activity, then don't yet make the
Dianne Hackborn061d58a2010-03-12 15:07:06 -08002701 // window visible.
2702 } else if (!willBeVisible) {
Dianne Hackborn399cccb2010-04-13 22:57:49 -07002703 if (localLOGV) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002704 TAG, "Launch " + r + " mStartedActivity set");
2705 r.hideForNow = true;
2706 }
2707
Dianne Hackborn30c9bd82010-12-01 16:07:40 -08002708 // Get rid of anything left hanging around.
2709 cleanUpPendingRemoveWindows(r);
2710
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002711 // The window is now visible if it has been added, we are not
2712 // simply finishing, and we are not starting another activity.
Dianne Hackborn061d58a2010-03-12 15:07:06 -08002713 if (!r.activity.mFinished && willBeVisible
Dianne Hackbornc1e605e2009-09-25 17:18:15 -07002714 && r.activity.mDecor != null && !r.hideForNow) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002715 if (r.newConfig != null) {
Dianne Hackborn399cccb2010-04-13 22:57:49 -07002716 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Resuming activity "
Dianne Hackborndc6b6352009-09-30 14:20:09 -07002717 + r.activityInfo.name + " with newConfig " + r.newConfig);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002718 performConfigurationChanged(r.activity, r.newConfig);
Fabrice Di Meglio30ca5cd2012-05-07 17:45:44 -07002719 freeTextLayoutCachesIfNeeded(r.activity.mCurrentConfig.diff(r.newConfig));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002720 r.newConfig = null;
2721 }
Dianne Hackborn399cccb2010-04-13 22:57:49 -07002722 if (localLOGV) Slog.v(TAG, "Resuming " + r + " with isForward="
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002723 + isForward);
2724 WindowManager.LayoutParams l = r.window.getAttributes();
2725 if ((l.softInputMode
2726 & WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION)
2727 != forwardBit) {
2728 l.softInputMode = (l.softInputMode
2729 & (~WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION))
2730 | forwardBit;
Dianne Hackbornc1e605e2009-09-25 17:18:15 -07002731 if (r.activity.mVisibleFromClient) {
2732 ViewManager wm = a.getWindowManager();
2733 View decor = r.window.getDecorView();
2734 wm.updateViewLayout(decor, l);
2735 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002736 }
2737 r.activity.mVisibleFromServer = true;
2738 mNumVisibleActivities++;
2739 if (r.activity.mVisibleFromClient) {
2740 r.activity.makeVisible();
2741 }
2742 }
2743
Dianne Hackborn30c9bd82010-12-01 16:07:40 -08002744 if (!r.onlyLocalRequest) {
2745 r.nextIdle = mNewActivities;
2746 mNewActivities = r;
2747 if (localLOGV) Slog.v(
2748 TAG, "Scheduling idle handler for " + r);
2749 Looper.myQueue().addIdleHandler(new Idler());
2750 }
2751 r.onlyLocalRequest = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002752
2753 } else {
2754 // If an exception was thrown when trying to resume, then
2755 // just end this activity.
2756 try {
2757 ActivityManagerNative.getDefault()
2758 .finishActivity(token, Activity.RESULT_CANCELED, null);
2759 } catch (RemoteException ex) {
2760 }
2761 }
2762 }
2763
2764 private int mThumbnailWidth = -1;
2765 private int mThumbnailHeight = -1;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08002766 private Bitmap mAvailThumbnailBitmap = null;
2767 private Canvas mThumbnailCanvas = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002768
Romain Guy65b345f2011-07-27 18:51:50 -07002769 private Bitmap createThumbnailBitmap(ActivityClientRecord r) {
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08002770 Bitmap thumbnail = mAvailThumbnailBitmap;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002771 try {
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08002772 if (thumbnail == null) {
2773 int w = mThumbnailWidth;
2774 int h;
2775 if (w < 0) {
2776 Resources res = r.activity.getResources();
2777 mThumbnailHeight = h =
2778 res.getDimensionPixelSize(com.android.internal.R.dimen.thumbnail_height);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002779
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08002780 mThumbnailWidth = w =
2781 res.getDimensionPixelSize(com.android.internal.R.dimen.thumbnail_width);
2782 } else {
2783 h = mThumbnailHeight;
2784 }
2785
2786 // On platforms where we don't want thumbnails, set dims to (0,0)
2787 if ((w > 0) && (h > 0)) {
Dianne Hackborndde331c2012-08-03 14:01:57 -07002788 thumbnail = Bitmap.createBitmap(r.activity.getResources().getDisplayMetrics(),
2789 w, h, THUMBNAIL_FORMAT);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08002790 thumbnail.eraseColor(0);
2791 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002792 }
2793
Dianne Hackbornfb3806d2010-12-09 13:14:12 -08002794 if (thumbnail != null) {
2795 Canvas cv = mThumbnailCanvas;
2796 if (cv == null) {
2797 mThumbnailCanvas = cv = new Canvas();
2798 }
2799
2800 cv.setBitmap(thumbnail);
2801 if (!r.activity.onCreateThumbnail(thumbnail, cv)) {
2802 mAvailThumbnailBitmap = thumbnail;
2803 thumbnail = null;
2804 }
Dianne Hackborn6311d0a2011-08-02 16:37:58 -07002805 cv.setBitmap(null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002806 }
Jim Miller0b2a6d02010-07-13 18:01:29 -07002807
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002808 } catch (Exception e) {
2809 if (!mInstrumentation.onException(r.activity, e)) {
2810 throw new RuntimeException(
2811 "Unable to create thumbnail of "
2812 + r.intent.getComponent().toShortString()
2813 + ": " + e.toString(), e);
2814 }
2815 thumbnail = null;
2816 }
2817
2818 return thumbnail;
2819 }
2820
Romain Guy65b345f2011-07-27 18:51:50 -07002821 private void handlePauseActivity(IBinder token, boolean finished,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002822 boolean userLeaving, int configChanges) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07002823 ActivityClientRecord r = mActivities.get(token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002824 if (r != null) {
Dianne Hackborn399cccb2010-04-13 22:57:49 -07002825 //Slog.v(TAG, "userLeaving=" + userLeaving + " handling pause of " + r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002826 if (userLeaving) {
2827 performUserLeavingActivity(r);
2828 }
Bob Leee5408332009-09-04 18:31:17 -07002829
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002830 r.activity.mConfigChangeFlags |= configChanges;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08002831 performPauseActivity(token, finished, r.isPreHoneycomb());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002832
Dianne Hackbornaa93bcd2010-10-27 13:57:00 -07002833 // Make sure any pending writes are now committed.
Dianne Hackborn5d9d03a2011-01-24 13:15:09 -08002834 if (r.isPreHoneycomb()) {
2835 QueuedWork.waitToFinish();
2836 }
Dianne Hackbornaa93bcd2010-10-27 13:57:00 -07002837
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002838 // Tell the activity manager we have paused.
2839 try {
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08002840 ActivityManagerNative.getDefault().activityPaused(token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002841 } catch (RemoteException ex) {
2842 }
2843 }
2844 }
2845
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07002846 final void performUserLeavingActivity(ActivityClientRecord r) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002847 mInstrumentation.callActivityOnUserLeaving(r.activity);
2848 }
2849
2850 final Bundle performPauseActivity(IBinder token, boolean finished,
2851 boolean saveState) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07002852 ActivityClientRecord r = mActivities.get(token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002853 return r != null ? performPauseActivity(r, finished, saveState) : null;
2854 }
2855
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07002856 final Bundle performPauseActivity(ActivityClientRecord r, boolean finished,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002857 boolean saveState) {
2858 if (r.paused) {
2859 if (r.activity.mFinished) {
2860 // If we are finishing, we won't call onResume() in certain cases.
2861 // So here we likewise don't want to call onPause() if the activity
2862 // isn't resumed.
2863 return null;
2864 }
2865 RuntimeException e = new RuntimeException(
2866 "Performing pause of activity that is not resumed: "
2867 + r.intent.getComponent().toShortString());
Dianne Hackbornc9421ba2010-03-11 22:23:46 -08002868 Slog.e(TAG, e.getMessage(), e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002869 }
2870 Bundle state = null;
2871 if (finished) {
2872 r.activity.mFinished = true;
2873 }
2874 try {
2875 // Next have the activity save its current state and managed dialogs...
2876 if (!r.activity.mFinished && saveState) {
2877 state = new Bundle();
Dianne Hackborn9ecebbf2011-09-28 23:19:47 -04002878 state.setAllowFds(false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002879 mInstrumentation.callActivityOnSaveInstanceState(r.activity, state);
2880 r.state = state;
2881 }
2882 // Now we are idle.
2883 r.activity.mCalled = false;
2884 mInstrumentation.callActivityOnPause(r.activity);
2885 EventLog.writeEvent(LOG_ON_PAUSE_CALLED, r.activity.getComponentName().getClassName());
2886 if (!r.activity.mCalled) {
2887 throw new SuperNotCalledException(
2888 "Activity " + r.intent.getComponent().toShortString() +
2889 " did not call through to super.onPause()");
2890 }
2891
2892 } catch (SuperNotCalledException e) {
2893 throw e;
2894
2895 } catch (Exception e) {
2896 if (!mInstrumentation.onException(r.activity, e)) {
2897 throw new RuntimeException(
2898 "Unable to pause activity "
2899 + r.intent.getComponent().toShortString()
2900 + ": " + e.toString(), e);
2901 }
2902 }
2903 r.paused = true;
Jeff Hamilton52d32032011-01-08 15:31:26 -06002904
2905 // Notify any outstanding on paused listeners
2906 ArrayList<OnActivityPausedListener> listeners;
2907 synchronized (mOnPauseListeners) {
2908 listeners = mOnPauseListeners.remove(r.activity);
2909 }
2910 int size = (listeners != null ? listeners.size() : 0);
2911 for (int i = 0; i < size; i++) {
2912 listeners.get(i).onPaused(r.activity);
2913 }
2914
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002915 return state;
2916 }
2917
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08002918 final void performStopActivity(IBinder token, boolean saveState) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07002919 ActivityClientRecord r = mActivities.get(token);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08002920 performStopActivityInner(r, null, false, saveState);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002921 }
2922
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07002923 private static class StopInfo implements Runnable {
2924 ActivityClientRecord activity;
2925 Bundle state;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002926 Bitmap thumbnail;
2927 CharSequence description;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07002928
2929 @Override public void run() {
2930 // Tell activity manager we have been stopped.
2931 try {
2932 if (DEBUG_MEMORY_TRIM) Slog.v(TAG, "Reporting activity stopped: " + activity);
2933 ActivityManagerNative.getDefault().activityStopped(
2934 activity.token, state, thumbnail, description);
2935 } catch (RemoteException ex) {
2936 }
2937 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002938 }
2939
Jeff Brownddaa9ac2011-11-11 20:16:14 -08002940 private static final class ProviderRefCount {
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07002941 public final IActivityManager.ContentProviderHolder holder;
2942 public final ProviderClientRecord client;
2943 public int stableCount;
2944 public int unstableCount;
Jeff Brownddaa9ac2011-11-11 20:16:14 -08002945
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07002946 // When this is set, the stable and unstable ref counts are 0 and
2947 // we have a pending operation scheduled to remove the ref count
2948 // from the activity manager. On the activity manager we are still
2949 // holding an unstable ref, though it is not reflected in the counts
2950 // here.
2951 public boolean removePending;
2952
2953 ProviderRefCount(IActivityManager.ContentProviderHolder inHolder,
2954 ProviderClientRecord inClient, int sCount, int uCount) {
2955 holder = inHolder;
2956 client = inClient;
2957 stableCount = sCount;
2958 unstableCount = uCount;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002959 }
2960 }
2961
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08002962 /**
2963 * Core implementation of stopping an activity. Note this is a little
2964 * tricky because the server's meaning of stop is slightly different
2965 * than our client -- for the server, stop means to save state and give
2966 * it the result when it is done, but the window may still be visible.
2967 * For the client, we want to call onStop()/onStart() to indicate when
2968 * the activity's UI visibillity changes.
2969 */
Romain Guy65b345f2011-07-27 18:51:50 -07002970 private void performStopActivityInner(ActivityClientRecord r,
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08002971 StopInfo info, boolean keepShown, boolean saveState) {
Dianne Hackborn399cccb2010-04-13 22:57:49 -07002972 if (localLOGV) Slog.v(TAG, "Performing stop of " + r);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08002973 Bundle state = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002974 if (r != null) {
2975 if (!keepShown && r.stopped) {
2976 if (r.activity.mFinished) {
2977 // If we are finishing, we won't call onResume() in certain
2978 // cases. So here we likewise don't want to call onStop()
2979 // if the activity isn't resumed.
2980 return;
2981 }
2982 RuntimeException e = new RuntimeException(
2983 "Performing stop of activity that is not resumed: "
2984 + r.intent.getComponent().toShortString());
Dianne Hackbornc9421ba2010-03-11 22:23:46 -08002985 Slog.e(TAG, e.getMessage(), e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002986 }
2987
2988 if (info != null) {
2989 try {
2990 // First create a thumbnail for the activity...
Dianne Hackborn0500b3c2011-11-01 15:28:43 -07002991 // For now, don't create the thumbnail here; we are
2992 // doing that by doing a screen snapshot.
2993 info.thumbnail = null; //createThumbnailBitmap(r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002994 info.description = r.activity.onCreateDescription();
2995 } catch (Exception e) {
2996 if (!mInstrumentation.onException(r.activity, e)) {
2997 throw new RuntimeException(
2998 "Unable to save state of activity "
2999 + r.intent.getComponent().toShortString()
3000 + ": " + e.toString(), e);
3001 }
3002 }
3003 }
3004
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08003005 // Next have the activity save its current state and managed dialogs...
3006 if (!r.activity.mFinished && saveState) {
3007 if (r.state == null) {
3008 state = new Bundle();
Dianne Hackborn9ecebbf2011-09-28 23:19:47 -04003009 state.setAllowFds(false);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08003010 mInstrumentation.callActivityOnSaveInstanceState(r.activity, state);
3011 r.state = state;
3012 } else {
3013 state = r.state;
3014 }
3015 }
3016
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003017 if (!keepShown) {
3018 try {
3019 // Now we are idle.
3020 r.activity.performStop();
3021 } catch (Exception e) {
3022 if (!mInstrumentation.onException(r.activity, e)) {
3023 throw new RuntimeException(
3024 "Unable to stop activity "
3025 + r.intent.getComponent().toShortString()
3026 + ": " + e.toString(), e);
3027 }
3028 }
3029 r.stopped = true;
3030 }
3031
3032 r.paused = true;
3033 }
3034 }
3035
Romain Guy65b345f2011-07-27 18:51:50 -07003036 private void updateVisibility(ActivityClientRecord r, boolean show) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003037 View v = r.activity.mDecor;
3038 if (v != null) {
3039 if (show) {
3040 if (!r.activity.mVisibleFromServer) {
3041 r.activity.mVisibleFromServer = true;
3042 mNumVisibleActivities++;
3043 if (r.activity.mVisibleFromClient) {
3044 r.activity.makeVisible();
3045 }
3046 }
3047 if (r.newConfig != null) {
Dianne Hackborn399cccb2010-04-13 22:57:49 -07003048 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Updating activity vis "
Dianne Hackborndc6b6352009-09-30 14:20:09 -07003049 + r.activityInfo.name + " with new config " + r.newConfig);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003050 performConfigurationChanged(r.activity, r.newConfig);
Fabrice Di Meglio30ca5cd2012-05-07 17:45:44 -07003051 freeTextLayoutCachesIfNeeded(r.activity.mCurrentConfig.diff(r.newConfig));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003052 r.newConfig = null;
3053 }
3054 } else {
3055 if (r.activity.mVisibleFromServer) {
3056 r.activity.mVisibleFromServer = false;
3057 mNumVisibleActivities--;
3058 v.setVisibility(View.INVISIBLE);
3059 }
3060 }
3061 }
3062 }
3063
Romain Guy65b345f2011-07-27 18:51:50 -07003064 private void handleStopActivity(IBinder token, boolean show, int configChanges) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07003065 ActivityClientRecord r = mActivities.get(token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003066 r.activity.mConfigChangeFlags |= configChanges;
3067
3068 StopInfo info = new StopInfo();
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08003069 performStopActivityInner(r, info, show, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003070
Dianne Hackborn399cccb2010-04-13 22:57:49 -07003071 if (localLOGV) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003072 TAG, "Finishing stop of " + r + ": show=" + show
3073 + " win=" + r.window);
3074
3075 updateVisibility(r, show);
Bob Leee5408332009-09-04 18:31:17 -07003076
Dianne Hackborn5d9d03a2011-01-24 13:15:09 -08003077 // Make sure any pending writes are now committed.
3078 if (!r.isPreHoneycomb()) {
3079 QueuedWork.waitToFinish();
3080 }
3081
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07003082 // Schedule the call to tell the activity manager we have
3083 // stopped. We don't do this immediately, because we want to
3084 // have a chance for any other pending work (in particular memory
3085 // trim requests) to complete before you tell the activity
3086 // manager to proceed and allow us to go fully into the background.
3087 info.activity = r;
3088 info.state = r.state;
3089 mH.post(info);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003090 }
3091
3092 final void performRestartActivity(IBinder token) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07003093 ActivityClientRecord r = mActivities.get(token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003094 if (r.stopped) {
3095 r.activity.performRestart();
3096 r.stopped = false;
3097 }
3098 }
3099
Romain Guy65b345f2011-07-27 18:51:50 -07003100 private void handleWindowVisibility(IBinder token, boolean show) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07003101 ActivityClientRecord r = mActivities.get(token);
Dianne Hackbornbfddc0f2010-12-14 11:28:01 -08003102
3103 if (r == null) {
3104 Log.w(TAG, "handleWindowVisibility: no activity for token " + token);
3105 return;
3106 }
3107
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003108 if (!show && !r.stopped) {
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08003109 performStopActivityInner(r, null, show, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003110 } else if (show && r.stopped) {
3111 // If we are getting ready to gc after going to the background, well
3112 // we are back active so skip it.
3113 unscheduleGcIdler();
3114
3115 r.activity.performRestart();
3116 r.stopped = false;
3117 }
3118 if (r.activity.mDecor != null) {
Joe Onorato43a17652011-04-06 19:22:23 -07003119 if (false) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003120 TAG, "Handle window " + r + " visibility: " + show);
3121 updateVisibility(r, show);
3122 }
3123 }
3124
Romain Guy65b345f2011-07-27 18:51:50 -07003125 private void handleSleeping(IBinder token, boolean sleeping) {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08003126 ActivityClientRecord r = mActivities.get(token);
3127
3128 if (r == null) {
Dianne Hackborn842e04b2011-01-22 13:00:12 -08003129 Log.w(TAG, "handleSleeping: no activity for token " + token);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08003130 return;
3131 }
3132
3133 if (sleeping) {
Dianne Hackborn842e04b2011-01-22 13:00:12 -08003134 if (!r.stopped && !r.isPreHoneycomb()) {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08003135 try {
3136 // Now we are idle.
3137 r.activity.performStop();
3138 } catch (Exception e) {
3139 if (!mInstrumentation.onException(r.activity, e)) {
3140 throw new RuntimeException(
3141 "Unable to stop activity "
3142 + r.intent.getComponent().toShortString()
3143 + ": " + e.toString(), e);
3144 }
3145 }
3146 r.stopped = true;
3147 }
Dianne Hackborn5d9d03a2011-01-24 13:15:09 -08003148
3149 // Make sure any pending writes are now committed.
3150 if (!r.isPreHoneycomb()) {
3151 QueuedWork.waitToFinish();
3152 }
3153
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08003154 // Tell activity manager we slept.
3155 try {
3156 ActivityManagerNative.getDefault().activitySlept(r.token);
3157 } catch (RemoteException ex) {
3158 }
3159 } else {
3160 if (r.stopped && r.activity.mVisibleFromServer) {
3161 r.activity.performRestart();
3162 r.stopped = false;
3163 }
3164 }
3165 }
3166
Svetoslav Ganov54d068e2011-03-02 12:58:40 -08003167 private void handleSetCoreSettings(Bundle coreSettings) {
Svetoslav Ganov9aa597e2011-03-03 18:17:41 -08003168 synchronized (mPackages) {
3169 mCoreSettings = coreSettings;
Svetoslav Ganov54d068e2011-03-02 12:58:40 -08003170 }
3171 }
3172
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003173 private void handleUpdatePackageCompatibilityInfo(UpdateCompatibilityData data) {
3174 LoadedApk apk = peekPackageInfo(data.pkg, false);
3175 if (apk != null) {
Dianne Hackborn5fd21692011-06-07 14:09:47 -07003176 apk.mCompatibilityInfo.set(data.info);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003177 }
3178 apk = peekPackageInfo(data.pkg, true);
3179 if (apk != null) {
Dianne Hackborn5fd21692011-06-07 14:09:47 -07003180 apk.mCompatibilityInfo.set(data.info);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003181 }
3182 handleConfigurationChanged(mConfiguration, data.info);
Jeff Brown98365d72012-08-19 20:30:52 -07003183 WindowManagerGlobal.getInstance().reportNewConfiguration(mConfiguration);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003184 }
3185
Romain Guy65b345f2011-07-27 18:51:50 -07003186 private void deliverResults(ActivityClientRecord r, List<ResultInfo> results) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003187 final int N = results.size();
3188 for (int i=0; i<N; i++) {
3189 ResultInfo ri = results.get(i);
3190 try {
3191 if (ri.mData != null) {
3192 ri.mData.setExtrasClassLoader(r.activity.getClassLoader());
3193 }
Dianne Hackborn399cccb2010-04-13 22:57:49 -07003194 if (DEBUG_RESULTS) Slog.v(TAG,
Chris Tate8a7dc172009-03-24 20:11:42 -07003195 "Delivering result to activity " + r + " : " + ri);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003196 r.activity.dispatchActivityResult(ri.mResultWho,
3197 ri.mRequestCode, ri.mResultCode, ri.mData);
3198 } catch (Exception e) {
3199 if (!mInstrumentation.onException(r.activity, e)) {
3200 throw new RuntimeException(
3201 "Failure delivering result " + ri + " to activity "
3202 + r.intent.getComponent().toShortString()
3203 + ": " + e.toString(), e);
3204 }
3205 }
3206 }
3207 }
3208
Romain Guy65b345f2011-07-27 18:51:50 -07003209 private void handleSendResult(ResultData res) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07003210 ActivityClientRecord r = mActivities.get(res.token);
Dianne Hackborn399cccb2010-04-13 22:57:49 -07003211 if (DEBUG_RESULTS) Slog.v(TAG, "Handling send result to " + r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003212 if (r != null) {
3213 final boolean resumed = !r.paused;
3214 if (!r.activity.mFinished && r.activity.mDecor != null
3215 && r.hideForNow && resumed) {
3216 // We had hidden the activity because it started another
3217 // one... we have gotten a result back and we are not
3218 // paused, so make sure our window is visible.
3219 updateVisibility(r, true);
3220 }
3221 if (resumed) {
3222 try {
3223 // Now we are idle.
3224 r.activity.mCalled = false;
Dianne Hackbornfb3cffe2010-10-25 17:08:56 -07003225 r.activity.mTemporaryPause = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003226 mInstrumentation.callActivityOnPause(r.activity);
3227 if (!r.activity.mCalled) {
3228 throw new SuperNotCalledException(
3229 "Activity " + r.intent.getComponent().toShortString()
3230 + " did not call through to super.onPause()");
3231 }
3232 } catch (SuperNotCalledException e) {
3233 throw e;
3234 } catch (Exception e) {
3235 if (!mInstrumentation.onException(r.activity, e)) {
3236 throw new RuntimeException(
3237 "Unable to pause activity "
3238 + r.intent.getComponent().toShortString()
3239 + ": " + e.toString(), e);
3240 }
3241 }
3242 }
3243 deliverResults(r, res.results);
3244 if (resumed) {
Dianne Hackbornb46ed762011-06-02 18:33:15 -07003245 r.activity.performResume();
Dianne Hackbornfb3cffe2010-10-25 17:08:56 -07003246 r.activity.mTemporaryPause = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003247 }
3248 }
3249 }
3250
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07003251 public final ActivityClientRecord performDestroyActivity(IBinder token, boolean finishing) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003252 return performDestroyActivity(token, finishing, 0, false);
3253 }
3254
Romain Guy65b345f2011-07-27 18:51:50 -07003255 private ActivityClientRecord performDestroyActivity(IBinder token, boolean finishing,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003256 int configChanges, boolean getNonConfigInstance) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07003257 ActivityClientRecord r = mActivities.get(token);
Brad Fitzpatrick5f8b5c12011-01-20 15:12:08 -08003258 Class activityClass = null;
Dianne Hackborn399cccb2010-04-13 22:57:49 -07003259 if (localLOGV) Slog.v(TAG, "Performing finish of " + r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003260 if (r != null) {
Brad Fitzpatrick5f8b5c12011-01-20 15:12:08 -08003261 activityClass = r.activity.getClass();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003262 r.activity.mConfigChangeFlags |= configChanges;
3263 if (finishing) {
3264 r.activity.mFinished = true;
3265 }
3266 if (!r.paused) {
3267 try {
3268 r.activity.mCalled = false;
3269 mInstrumentation.callActivityOnPause(r.activity);
Bob Leee5408332009-09-04 18:31:17 -07003270 EventLog.writeEvent(LOG_ON_PAUSE_CALLED,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003271 r.activity.getComponentName().getClassName());
3272 if (!r.activity.mCalled) {
3273 throw new SuperNotCalledException(
Mitsuru Oshimad9aef732009-06-16 20:20:50 -07003274 "Activity " + safeToComponentShortString(r.intent)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003275 + " did not call through to super.onPause()");
3276 }
3277 } catch (SuperNotCalledException e) {
3278 throw e;
3279 } catch (Exception e) {
3280 if (!mInstrumentation.onException(r.activity, e)) {
3281 throw new RuntimeException(
3282 "Unable to pause activity "
Mitsuru Oshimad9aef732009-06-16 20:20:50 -07003283 + safeToComponentShortString(r.intent)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003284 + ": " + e.toString(), e);
3285 }
3286 }
3287 r.paused = true;
3288 }
3289 if (!r.stopped) {
3290 try {
3291 r.activity.performStop();
3292 } catch (SuperNotCalledException e) {
3293 throw e;
3294 } catch (Exception e) {
3295 if (!mInstrumentation.onException(r.activity, e)) {
3296 throw new RuntimeException(
3297 "Unable to stop activity "
Mitsuru Oshimad9aef732009-06-16 20:20:50 -07003298 + safeToComponentShortString(r.intent)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003299 + ": " + e.toString(), e);
3300 }
3301 }
3302 r.stopped = true;
3303 }
3304 if (getNonConfigInstance) {
3305 try {
Dianne Hackbornb4bc78b2010-05-12 18:59:50 -07003306 r.lastNonConfigurationInstances
3307 = r.activity.retainNonConfigurationInstances();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003308 } catch (Exception e) {
3309 if (!mInstrumentation.onException(r.activity, e)) {
3310 throw new RuntimeException(
3311 "Unable to retain activity "
3312 + r.intent.getComponent().toShortString()
3313 + ": " + e.toString(), e);
3314 }
3315 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003316 }
3317 try {
3318 r.activity.mCalled = false;
Dianne Hackborn2dedce62010-04-15 14:45:25 -07003319 mInstrumentation.callActivityOnDestroy(r.activity);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003320 if (!r.activity.mCalled) {
3321 throw new SuperNotCalledException(
Mitsuru Oshimad9aef732009-06-16 20:20:50 -07003322 "Activity " + safeToComponentShortString(r.intent) +
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003323 " did not call through to super.onDestroy()");
3324 }
3325 if (r.window != null) {
3326 r.window.closeAllPanels();
3327 }
3328 } catch (SuperNotCalledException e) {
3329 throw e;
3330 } catch (Exception e) {
3331 if (!mInstrumentation.onException(r.activity, e)) {
3332 throw new RuntimeException(
Mitsuru Oshimad9aef732009-06-16 20:20:50 -07003333 "Unable to destroy activity " + safeToComponentShortString(r.intent)
3334 + ": " + e.toString(), e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003335 }
3336 }
3337 }
3338 mActivities.remove(token);
Brad Fitzpatrick5f8b5c12011-01-20 15:12:08 -08003339 StrictMode.decrementExpectedActivityCount(activityClass);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003340 return r;
3341 }
3342
Mitsuru Oshimad9aef732009-06-16 20:20:50 -07003343 private static String safeToComponentShortString(Intent intent) {
3344 ComponentName component = intent.getComponent();
3345 return component == null ? "[Unknown]" : component.toShortString();
3346 }
3347
Romain Guy65b345f2011-07-27 18:51:50 -07003348 private void handleDestroyActivity(IBinder token, boolean finishing,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003349 int configChanges, boolean getNonConfigInstance) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07003350 ActivityClientRecord r = performDestroyActivity(token, finishing,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003351 configChanges, getNonConfigInstance);
3352 if (r != null) {
Dianne Hackborn30c9bd82010-12-01 16:07:40 -08003353 cleanUpPendingRemoveWindows(r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003354 WindowManager wm = r.activity.getWindowManager();
3355 View v = r.activity.mDecor;
3356 if (v != null) {
3357 if (r.activity.mVisibleFromServer) {
3358 mNumVisibleActivities--;
3359 }
3360 IBinder wtoken = v.getWindowToken();
3361 if (r.activity.mWindowAdded) {
Dianne Hackborn30c9bd82010-12-01 16:07:40 -08003362 if (r.onlyLocalRequest) {
3363 // Hold off on removing this until the new activity's
3364 // window is being added.
3365 r.mPendingRemoveWindow = v;
3366 r.mPendingRemoveWindowManager = wm;
3367 } else {
3368 wm.removeViewImmediate(v);
3369 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003370 }
Dianne Hackborn30c9bd82010-12-01 16:07:40 -08003371 if (wtoken != null && r.mPendingRemoveWindow == null) {
Jeff Brown98365d72012-08-19 20:30:52 -07003372 WindowManagerGlobal.getInstance().closeAll(wtoken,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003373 r.activity.getClass().getName(), "Activity");
3374 }
3375 r.activity.mDecor = null;
3376 }
Dianne Hackborn30c9bd82010-12-01 16:07:40 -08003377 if (r.mPendingRemoveWindow == null) {
3378 // If we are delaying the removal of the activity window, then
3379 // we can't clean up all windows here. Note that we can't do
3380 // so later either, which means any windows that aren't closed
3381 // by the app will leak. Well we try to warning them a lot
3382 // about leaking windows, because that is a bug, so if they are
3383 // using this recreate facility then they get to live with leaks.
Jeff Brown98365d72012-08-19 20:30:52 -07003384 WindowManagerGlobal.getInstance().closeAll(token,
Dianne Hackborn30c9bd82010-12-01 16:07:40 -08003385 r.activity.getClass().getName(), "Activity");
3386 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003387
3388 // Mocked out contexts won't be participating in the normal
3389 // process lifecycle, but if we're running with a proper
3390 // ApplicationContext we need to have it tear down things
3391 // cleanly.
3392 Context c = r.activity.getBaseContext();
Dianne Hackborn21556372010-02-04 16:34:40 -08003393 if (c instanceof ContextImpl) {
3394 ((ContextImpl) c).scheduleFinalCleanup(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003395 r.activity.getClass().getName(), "Activity");
3396 }
3397 }
3398 if (finishing) {
3399 try {
3400 ActivityManagerNative.getDefault().activityDestroyed(token);
3401 } catch (RemoteException ex) {
3402 // If the system process has died, it's game over for everyone.
3403 }
3404 }
3405 }
3406
Dianne Hackborn30c9bd82010-12-01 16:07:40 -08003407 public final void requestRelaunchActivity(IBinder token,
3408 List<ResultInfo> pendingResults, List<Intent> pendingNewIntents,
3409 int configChanges, boolean notResumed, Configuration config,
3410 boolean fromServer) {
3411 ActivityClientRecord target = null;
3412
3413 synchronized (mPackages) {
3414 for (int i=0; i<mRelaunchingActivities.size(); i++) {
3415 ActivityClientRecord r = mRelaunchingActivities.get(i);
3416 if (r.token == token) {
3417 target = r;
3418 if (pendingResults != null) {
3419 if (r.pendingResults != null) {
3420 r.pendingResults.addAll(pendingResults);
3421 } else {
3422 r.pendingResults = pendingResults;
3423 }
3424 }
3425 if (pendingNewIntents != null) {
3426 if (r.pendingIntents != null) {
3427 r.pendingIntents.addAll(pendingNewIntents);
3428 } else {
3429 r.pendingIntents = pendingNewIntents;
3430 }
3431 }
3432 break;
3433 }
3434 }
3435
3436 if (target == null) {
3437 target = new ActivityClientRecord();
3438 target.token = token;
3439 target.pendingResults = pendingResults;
3440 target.pendingIntents = pendingNewIntents;
3441 if (!fromServer) {
3442 ActivityClientRecord existing = mActivities.get(token);
3443 if (existing != null) {
3444 target.startsNotResumed = existing.paused;
3445 }
3446 target.onlyLocalRequest = true;
3447 }
3448 mRelaunchingActivities.add(target);
3449 queueOrSendMessage(H.RELAUNCH_ACTIVITY, target);
3450 }
3451
3452 if (fromServer) {
3453 target.startsNotResumed = notResumed;
3454 target.onlyLocalRequest = false;
3455 }
3456 if (config != null) {
3457 target.createdConfig = config;
3458 }
3459 target.pendingConfigChanges |= configChanges;
3460 }
3461 }
3462
Romain Guy65b345f2011-07-27 18:51:50 -07003463 private void handleRelaunchActivity(ActivityClientRecord tmp) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003464 // If we are getting ready to gc after going to the background, well
3465 // we are back active so skip it.
3466 unscheduleGcIdler();
3467
3468 Configuration changedConfig = null;
Dianne Hackborn30c9bd82010-12-01 16:07:40 -08003469 int configChanges = 0;
Bob Leee5408332009-09-04 18:31:17 -07003470
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003471 // First: make sure we have the most recent configuration and most
3472 // recent version of the activity, or skip it if some previous call
3473 // had taken a more recent version.
Dianne Hackborne36d6e22010-02-17 19:46:25 -08003474 synchronized (mPackages) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003475 int N = mRelaunchingActivities.size();
3476 IBinder token = tmp.token;
3477 tmp = null;
3478 for (int i=0; i<N; i++) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07003479 ActivityClientRecord r = mRelaunchingActivities.get(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003480 if (r.token == token) {
3481 tmp = r;
Dianne Hackborn30c9bd82010-12-01 16:07:40 -08003482 configChanges |= tmp.pendingConfigChanges;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003483 mRelaunchingActivities.remove(i);
3484 i--;
3485 N--;
3486 }
3487 }
Bob Leee5408332009-09-04 18:31:17 -07003488
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003489 if (tmp == null) {
Dianne Hackborn399cccb2010-04-13 22:57:49 -07003490 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Abort, activity not relaunching!");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003491 return;
3492 }
Bob Leee5408332009-09-04 18:31:17 -07003493
Dianne Hackborn30c9bd82010-12-01 16:07:40 -08003494 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Relaunching activity "
3495 + tmp.token + " with configChanges=0x"
3496 + Integer.toHexString(configChanges));
3497
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003498 if (mPendingConfiguration != null) {
3499 changedConfig = mPendingConfiguration;
3500 mPendingConfiguration = null;
3501 }
3502 }
Bob Leee5408332009-09-04 18:31:17 -07003503
Dianne Hackborn871ecdc2009-12-11 15:24:33 -08003504 if (tmp.createdConfig != null) {
3505 // If the activity manager is passing us its current config,
3506 // assume that is really what we want regardless of what we
3507 // may have pending.
3508 if (mConfiguration == null
Dianne Hackborne36d6e22010-02-17 19:46:25 -08003509 || (tmp.createdConfig.isOtherSeqNewer(mConfiguration)
3510 && mConfiguration.diff(tmp.createdConfig) != 0)) {
3511 if (changedConfig == null
3512 || tmp.createdConfig.isOtherSeqNewer(changedConfig)) {
3513 changedConfig = tmp.createdConfig;
3514 }
Dianne Hackborn871ecdc2009-12-11 15:24:33 -08003515 }
3516 }
3517
Dianne Hackborn399cccb2010-04-13 22:57:49 -07003518 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Relaunching activity "
Dianne Hackborndc6b6352009-09-30 14:20:09 -07003519 + tmp.token + ": changedConfig=" + changedConfig);
3520
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003521 // If there was a pending configuration change, execute it first.
3522 if (changedConfig != null) {
Dianne Hackborn908aecc2012-07-31 16:37:34 -07003523 mCurDefaultDisplayDpi = changedConfig.densityDpi;
Dianne Hackborndde331c2012-08-03 14:01:57 -07003524 updateDefaultDensity();
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003525 handleConfigurationChanged(changedConfig, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003526 }
Bob Leee5408332009-09-04 18:31:17 -07003527
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07003528 ActivityClientRecord r = mActivities.get(tmp.token);
Dianne Hackborn399cccb2010-04-13 22:57:49 -07003529 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Handling relaunch of " + r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003530 if (r == null) {
3531 return;
3532 }
Bob Leee5408332009-09-04 18:31:17 -07003533
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003534 r.activity.mConfigChangeFlags |= configChanges;
Dianne Hackborn30c9bd82010-12-01 16:07:40 -08003535 r.onlyLocalRequest = tmp.onlyLocalRequest;
Christopher Tateb70f3df2009-04-07 16:07:59 -07003536 Intent currentIntent = r.activity.mIntent;
Bob Leee5408332009-09-04 18:31:17 -07003537
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08003538 r.activity.mChangingConfigurations = true;
3539
Dianne Hackborne2b04802010-12-09 09:24:55 -08003540 // Need to ensure state is saved.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003541 if (!r.paused) {
Dianne Hackborne2b04802010-12-09 09:24:55 -08003542 performPauseActivity(r.token, false, r.isPreHoneycomb());
3543 }
3544 if (r.state == null && !r.stopped && !r.isPreHoneycomb()) {
3545 r.state = new Bundle();
Dianne Hackborn9ecebbf2011-09-28 23:19:47 -04003546 r.state.setAllowFds(false);
Dianne Hackborne2b04802010-12-09 09:24:55 -08003547 mInstrumentation.callActivityOnSaveInstanceState(r.activity, r.state);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003548 }
Bob Leee5408332009-09-04 18:31:17 -07003549
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003550 handleDestroyActivity(r.token, false, configChanges, true);
Bob Leee5408332009-09-04 18:31:17 -07003551
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003552 r.activity = null;
3553 r.window = null;
3554 r.hideForNow = false;
3555 r.nextIdle = null;
The Android Open Source Project10592532009-03-18 17:39:46 -07003556 // Merge any pending results and pending intents; don't just replace them
3557 if (tmp.pendingResults != null) {
3558 if (r.pendingResults == null) {
3559 r.pendingResults = tmp.pendingResults;
3560 } else {
3561 r.pendingResults.addAll(tmp.pendingResults);
3562 }
3563 }
3564 if (tmp.pendingIntents != null) {
3565 if (r.pendingIntents == null) {
3566 r.pendingIntents = tmp.pendingIntents;
3567 } else {
3568 r.pendingIntents.addAll(tmp.pendingIntents);
3569 }
3570 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003571 r.startsNotResumed = tmp.startsNotResumed;
Bob Leee5408332009-09-04 18:31:17 -07003572
Christopher Tateb70f3df2009-04-07 16:07:59 -07003573 handleLaunchActivity(r, currentIntent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003574 }
3575
Romain Guy65b345f2011-07-27 18:51:50 -07003576 private void handleRequestThumbnail(IBinder token) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07003577 ActivityClientRecord r = mActivities.get(token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003578 Bitmap thumbnail = createThumbnailBitmap(r);
3579 CharSequence description = null;
3580 try {
3581 description = r.activity.onCreateDescription();
3582 } catch (Exception e) {
3583 if (!mInstrumentation.onException(r.activity, e)) {
3584 throw new RuntimeException(
3585 "Unable to create description of activity "
3586 + r.intent.getComponent().toShortString()
3587 + ": " + e.toString(), e);
3588 }
3589 }
3590 //System.out.println("Reporting top thumbnail " + thumbnail);
3591 try {
3592 ActivityManagerNative.getDefault().reportThumbnail(
3593 token, thumbnail, description);
3594 } catch (RemoteException ex) {
3595 }
3596 }
3597
Dianne Hackbornc68c9132011-07-29 01:25:18 -07003598 ArrayList<ComponentCallbacks2> collectComponentCallbacksLocked(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003599 boolean allActivities, Configuration newConfig) {
Dianne Hackbornc68c9132011-07-29 01:25:18 -07003600 ArrayList<ComponentCallbacks2> callbacks
3601 = new ArrayList<ComponentCallbacks2>();
Bob Leee5408332009-09-04 18:31:17 -07003602
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003603 if (mActivities.size() > 0) {
Romain Guya998dff2012-03-23 18:58:36 -07003604 for (ActivityClientRecord ar : mActivities.values()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003605 Activity a = ar.activity;
3606 if (a != null) {
Dianne Hackborn908aecc2012-07-31 16:37:34 -07003607 Configuration thisConfig = applyConfigCompatMainThread(mCurDefaultDisplayDpi,
3608 newConfig, ar.packageInfo.mCompatibilityInfo.getIfNeeded());
Romain Guya998dff2012-03-23 18:58:36 -07003609 if (!ar.activity.mFinished && (allActivities || !ar.paused)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003610 // If the activity is currently resumed, its configuration
3611 // needs to change right now.
3612 callbacks.add(a);
Dianne Hackborn5fd21692011-06-07 14:09:47 -07003613 } else if (thisConfig != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003614 // Otherwise, we will tell it about the change
3615 // the next time it is resumed or shown. Note that
3616 // the activity manager may, before then, decide the
3617 // activity needs to be destroyed to handle its new
3618 // configuration.
Romain Guya998dff2012-03-23 18:58:36 -07003619 if (DEBUG_CONFIGURATION) {
3620 Slog.v(TAG, "Setting activity "
3621 + ar.activityInfo.name + " newConfig=" + thisConfig);
3622 }
Dianne Hackborn5fd21692011-06-07 14:09:47 -07003623 ar.newConfig = thisConfig;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003624 }
3625 }
3626 }
3627 }
3628 if (mServices.size() > 0) {
Romain Guya998dff2012-03-23 18:58:36 -07003629 for (Service service : mServices.values()) {
3630 callbacks.add(service);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003631 }
3632 }
3633 synchronized (mProviderMap) {
3634 if (mLocalProviders.size() > 0) {
Romain Guya998dff2012-03-23 18:58:36 -07003635 for (ProviderClientRecord providerClientRecord : mLocalProviders.values()) {
3636 callbacks.add(providerClientRecord.mLocalProvider);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003637 }
3638 }
3639 }
3640 final int N = mAllApplications.size();
3641 for (int i=0; i<N; i++) {
3642 callbacks.add(mAllApplications.get(i));
3643 }
Bob Leee5408332009-09-04 18:31:17 -07003644
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003645 return callbacks;
3646 }
Bob Leee5408332009-09-04 18:31:17 -07003647
Romain Guya998dff2012-03-23 18:58:36 -07003648 private static void performConfigurationChanged(ComponentCallbacks2 cb, Configuration config) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003649 // Only for Activity objects, check that they actually call up to their
Dianne Hackbornc68c9132011-07-29 01:25:18 -07003650 // superclass implementation. ComponentCallbacks2 is an interface, so
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003651 // we check the runtime type and act accordingly.
3652 Activity activity = (cb instanceof Activity) ? (Activity) cb : null;
3653 if (activity != null) {
3654 activity.mCalled = false;
3655 }
Bob Leee5408332009-09-04 18:31:17 -07003656
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003657 boolean shouldChangeConfig = false;
3658 if ((activity == null) || (activity.mCurrentConfig == null)) {
3659 shouldChangeConfig = true;
3660 } else {
Bob Leee5408332009-09-04 18:31:17 -07003661
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003662 // If the new config is the same as the config this Activity
3663 // is already running with then don't bother calling
3664 // onConfigurationChanged
3665 int diff = activity.mCurrentConfig.diff(config);
3666 if (diff != 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003667 // If this activity doesn't handle any of the config changes
3668 // then don't bother calling onConfigurationChanged as we're
3669 // going to destroy it.
Dianne Hackborne6676352011-06-01 16:51:20 -07003670 if ((~activity.mActivityInfo.getRealConfigChanged() & diff) == 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003671 shouldChangeConfig = true;
3672 }
3673 }
3674 }
Bob Leee5408332009-09-04 18:31:17 -07003675
Dianne Hackborn399cccb2010-04-13 22:57:49 -07003676 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Config callback " + cb
Dianne Hackborndc6b6352009-09-30 14:20:09 -07003677 + ": shouldChangeConfig=" + shouldChangeConfig);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003678 if (shouldChangeConfig) {
3679 cb.onConfigurationChanged(config);
Bob Leee5408332009-09-04 18:31:17 -07003680
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003681 if (activity != null) {
3682 if (!activity.mCalled) {
3683 throw new SuperNotCalledException(
3684 "Activity " + activity.getLocalClassName() +
3685 " did not call through to super.onConfigurationChanged()");
3686 }
3687 activity.mConfigChangeFlags = 0;
3688 activity.mCurrentConfig = new Configuration(config);
3689 }
3690 }
3691 }
3692
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07003693 public final void applyConfigurationToResources(Configuration config) {
3694 synchronized (mPackages) {
3695 applyConfigurationToResourcesLocked(config, null);
3696 }
3697 }
3698
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003699 final boolean applyConfigurationToResourcesLocked(Configuration config,
3700 CompatibilityInfo compat) {
Dianne Hackborne36d6e22010-02-17 19:46:25 -08003701 if (mResConfiguration == null) {
3702 mResConfiguration = new Configuration();
3703 }
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003704 if (!mResConfiguration.isOtherSeqNewer(config) && compat == null) {
Dianne Hackborn399cccb2010-04-13 22:57:49 -07003705 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Skipping new config: curSeq="
Dianne Hackborn694f79b2010-03-17 19:44:59 -07003706 + mResConfiguration.seq + ", newSeq=" + config.seq);
Dianne Hackbornae078162010-03-18 11:29:37 -07003707 return false;
Dianne Hackborne36d6e22010-02-17 19:46:25 -08003708 }
Dianne Hackbornae078162010-03-18 11:29:37 -07003709 int changes = mResConfiguration.updateFrom(config);
Dianne Hackborn836e2622011-10-04 18:32:39 -07003710 DisplayMetrics dm = getDisplayMetricsLocked(null, true);
Dianne Hackborn5fd21692011-06-07 14:09:47 -07003711
3712 if (compat != null && (mResCompatibilityInfo == null ||
3713 !mResCompatibilityInfo.equals(compat))) {
3714 mResCompatibilityInfo = compat;
3715 changes |= ActivityInfo.CONFIG_SCREEN_LAYOUT
3716 | ActivityInfo.CONFIG_SCREEN_SIZE
3717 | ActivityInfo.CONFIG_SMALLEST_SCREEN_SIZE;
3718 }
Bob Leee5408332009-09-04 18:31:17 -07003719
Dianne Hackborne36d6e22010-02-17 19:46:25 -08003720 // set it for java, this also affects newly created Resources
3721 if (config.locale != null) {
3722 Locale.setDefault(config.locale);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003723 }
Bob Leee5408332009-09-04 18:31:17 -07003724
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003725 Resources.updateSystemConfiguration(config, dm, compat);
Bob Leee5408332009-09-04 18:31:17 -07003726
Brad Fitzpatrick390dae12010-11-10 08:27:28 -08003727 ApplicationPackageManager.configurationChanged();
Dianne Hackborn399cccb2010-04-13 22:57:49 -07003728 //Slog.i(TAG, "Configuration changed in " + currentPackageName());
Dianne Hackborn756220b2012-08-14 16:45:30 -07003729
3730 Configuration tmpConfig = null;
3731
3732 Iterator<Map.Entry<ResourcesKey, WeakReference<Resources>>> it =
3733 mActiveResources.entrySet().iterator();
Dianne Hackborne36d6e22010-02-17 19:46:25 -08003734 while (it.hasNext()) {
Dianne Hackborn756220b2012-08-14 16:45:30 -07003735 Map.Entry<ResourcesKey, WeakReference<Resources>> entry = it.next();
3736 Resources r = entry.getValue().get();
Dianne Hackborne36d6e22010-02-17 19:46:25 -08003737 if (r != null) {
Dianne Hackborn399cccb2010-04-13 22:57:49 -07003738 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Changing resources "
Dianne Hackborn694f79b2010-03-17 19:44:59 -07003739 + r + " config to: " + config);
Dianne Hackborn756220b2012-08-14 16:45:30 -07003740 Configuration override = entry.getKey().mOverrideConfiguration;
3741 if (override != null) {
3742 if (tmpConfig == null) {
3743 tmpConfig = new Configuration();
3744 }
3745 tmpConfig.setTo(config);
3746 tmpConfig.updateFrom(override);
3747 r.updateConfiguration(tmpConfig, dm, compat);
3748 } else {
3749 r.updateConfiguration(config, dm, compat);
3750 }
Dianne Hackborn399cccb2010-04-13 22:57:49 -07003751 //Slog.i(TAG, "Updated app resources " + v.getKey()
Dianne Hackborne36d6e22010-02-17 19:46:25 -08003752 // + " " + r + ": " + r.getConfiguration());
3753 } else {
Dianne Hackborn399cccb2010-04-13 22:57:49 -07003754 //Slog.i(TAG, "Removing old resources " + v.getKey());
Dianne Hackborne36d6e22010-02-17 19:46:25 -08003755 it.remove();
3756 }
3757 }
Dianne Hackbornae078162010-03-18 11:29:37 -07003758
3759 return changes != 0;
Dianne Hackborne36d6e22010-02-17 19:46:25 -08003760 }
Dianne Hackborn836e2622011-10-04 18:32:39 -07003761
Dianne Hackborn908aecc2012-07-31 16:37:34 -07003762 final Configuration applyCompatConfiguration(int displayDensity) {
Dianne Hackborn836e2622011-10-04 18:32:39 -07003763 Configuration config = mConfiguration;
3764 if (mCompatConfiguration == null) {
3765 mCompatConfiguration = new Configuration();
3766 }
3767 mCompatConfiguration.setTo(mConfiguration);
3768 if (mResCompatibilityInfo != null && !mResCompatibilityInfo.supportsScreen()) {
Dianne Hackborn908aecc2012-07-31 16:37:34 -07003769 mResCompatibilityInfo.applyToConfiguration(displayDensity, mCompatConfiguration);
Dianne Hackborn836e2622011-10-04 18:32:39 -07003770 config = mCompatConfiguration;
3771 }
3772 return config;
3773 }
3774
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003775 final void handleConfigurationChanged(Configuration config, CompatibilityInfo compat) {
Dianne Hackborne36d6e22010-02-17 19:46:25 -08003776
Dianne Hackbornc68c9132011-07-29 01:25:18 -07003777 ArrayList<ComponentCallbacks2> callbacks = null;
Fabrice Di Meglio30ca5cd2012-05-07 17:45:44 -07003778 int configDiff = 0;
Dianne Hackborne36d6e22010-02-17 19:46:25 -08003779
3780 synchronized (mPackages) {
3781 if (mPendingConfiguration != null) {
3782 if (!mPendingConfiguration.isOtherSeqNewer(config)) {
3783 config = mPendingConfiguration;
Dianne Hackborn908aecc2012-07-31 16:37:34 -07003784 mCurDefaultDisplayDpi = config.densityDpi;
Dianne Hackborndde331c2012-08-03 14:01:57 -07003785 updateDefaultDensity();
Dianne Hackborne36d6e22010-02-17 19:46:25 -08003786 }
3787 mPendingConfiguration = null;
3788 }
3789
3790 if (config == null) {
3791 return;
3792 }
3793
Dianne Hackborn399cccb2010-04-13 22:57:49 -07003794 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Handle configuration changed: "
Dianne Hackborne36d6e22010-02-17 19:46:25 -08003795 + config);
3796
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003797 applyConfigurationToResourcesLocked(config, compat);
Dianne Hackborne36d6e22010-02-17 19:46:25 -08003798
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003799 if (mConfiguration == null) {
3800 mConfiguration = new Configuration();
3801 }
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003802 if (!mConfiguration.isOtherSeqNewer(config) && compat == null) {
Dianne Hackborne36d6e22010-02-17 19:46:25 -08003803 return;
3804 }
Fabrice Di Meglio30ca5cd2012-05-07 17:45:44 -07003805 configDiff = mConfiguration.diff(config);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003806 mConfiguration.updateFrom(config);
Dianne Hackborn908aecc2012-07-31 16:37:34 -07003807 config = applyCompatConfiguration(mCurDefaultDisplayDpi);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003808 callbacks = collectComponentCallbacksLocked(false, config);
3809 }
Romain Guy65b345f2011-07-27 18:51:50 -07003810
3811 // Cleanup hardware accelerated stuff
Jeff Brown98365d72012-08-19 20:30:52 -07003812 WindowManagerGlobal.getInstance().trimLocalMemory();
Bob Leee5408332009-09-04 18:31:17 -07003813
Fabrice Di Meglio30ca5cd2012-05-07 17:45:44 -07003814 freeTextLayoutCachesIfNeeded(configDiff);
3815
Dianne Hackborne36d6e22010-02-17 19:46:25 -08003816 if (callbacks != null) {
3817 final int N = callbacks.size();
3818 for (int i=0; i<N; i++) {
3819 performConfigurationChanged(callbacks.get(i), config);
3820 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003821 }
3822 }
3823
Fabrice Di Meglio30ca5cd2012-05-07 17:45:44 -07003824 final void freeTextLayoutCachesIfNeeded(int configDiff) {
3825 if (configDiff != 0) {
3826 // Ask text layout engine to free its caches if there is a locale change
3827 boolean hasLocaleConfigChange = ((configDiff & ActivityInfo.CONFIG_LOCALE) != 0);
3828 if (hasLocaleConfigChange) {
3829 Canvas.freeTextLayoutCaches();
3830 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Cleared TextLayout Caches");
3831 }
3832 }
3833 }
3834
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003835 final void handleActivityConfigurationChanged(IBinder token) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07003836 ActivityClientRecord r = mActivities.get(token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003837 if (r == null || r.activity == null) {
3838 return;
3839 }
Bob Leee5408332009-09-04 18:31:17 -07003840
Dianne Hackborn399cccb2010-04-13 22:57:49 -07003841 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Handle activity config changed: "
Dianne Hackborndc6b6352009-09-30 14:20:09 -07003842 + r.activityInfo.name);
3843
Dianne Hackborn5fd21692011-06-07 14:09:47 -07003844 performConfigurationChanged(r.activity, mCompatConfiguration);
Fabrice Di Meglio30ca5cd2012-05-07 17:45:44 -07003845
3846 freeTextLayoutCachesIfNeeded(r.activity.mCurrentConfig.diff(mCompatConfiguration));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003847 }
3848
Romain Guy7eabe552011-07-21 14:56:34 -07003849 final void handleProfilerControl(boolean start, ProfilerControlData pcd, int profileType) {
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -08003850 if (start) {
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -08003851 try {
Romain Guy7eabe552011-07-21 14:56:34 -07003852 switch (profileType) {
Jeff Sharkey3ad9d002011-09-15 15:51:54 -07003853 default:
3854 mProfiler.setProfiler(pcd.path, pcd.fd);
3855 mProfiler.autoStopProfiler = false;
3856 mProfiler.startProfiling();
Romain Guy7eabe552011-07-21 14:56:34 -07003857 break;
3858 }
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -08003859 } catch (RuntimeException e) {
Dianne Hackbornc9421ba2010-03-11 22:23:46 -08003860 Slog.w(TAG, "Profiling failed on path " + pcd.path
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -08003861 + " -- can the process access this path?");
Dianne Hackborn9c8dd552009-06-23 19:22:52 -07003862 } finally {
3863 try {
3864 pcd.fd.close();
3865 } catch (IOException e) {
Dianne Hackbornc9421ba2010-03-11 22:23:46 -08003866 Slog.w(TAG, "Failure closing profile fd", e);
Dianne Hackborn9c8dd552009-06-23 19:22:52 -07003867 }
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -08003868 }
3869 } else {
Romain Guy7eabe552011-07-21 14:56:34 -07003870 switch (profileType) {
Romain Guy7eabe552011-07-21 14:56:34 -07003871 default:
Jeff Sharkey3ad9d002011-09-15 15:51:54 -07003872 mProfiler.stopProfiling();
Romain Guy7eabe552011-07-21 14:56:34 -07003873 break;
Romain Guy7eabe552011-07-21 14:56:34 -07003874 }
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -08003875 }
3876 }
Bob Leee5408332009-09-04 18:31:17 -07003877
Romain Guya998dff2012-03-23 18:58:36 -07003878 static final void handleDumpHeap(boolean managed, DumpHeapData dhd) {
Andy McFadden824c5102010-07-09 16:26:57 -07003879 if (managed) {
3880 try {
3881 Debug.dumpHprofData(dhd.path, dhd.fd.getFileDescriptor());
3882 } catch (IOException e) {
3883 Slog.w(TAG, "Managed heap dump failed on path " + dhd.path
3884 + " -- can the process access this path?");
3885 } finally {
3886 try {
3887 dhd.fd.close();
3888 } catch (IOException e) {
3889 Slog.w(TAG, "Failure closing profile fd", e);
3890 }
3891 }
3892 } else {
Andy McFadden06a6b552010-07-13 16:28:09 -07003893 Debug.dumpNativeHeap(dhd.fd.getFileDescriptor());
Andy McFadden824c5102010-07-09 16:26:57 -07003894 }
3895 }
3896
Dianne Hackborn4416c3d2010-05-04 17:22:49 -07003897 final void handleDispatchPackageBroadcast(int cmd, String[] packages) {
3898 boolean hasPkgInfo = false;
3899 if (packages != null) {
3900 for (int i=packages.length-1; i>=0; i--) {
3901 //Slog.i(TAG, "Cleaning old package: " + packages[i]);
3902 if (!hasPkgInfo) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07003903 WeakReference<LoadedApk> ref;
Dianne Hackborn4416c3d2010-05-04 17:22:49 -07003904 ref = mPackages.get(packages[i]);
3905 if (ref != null && ref.get() != null) {
3906 hasPkgInfo = true;
3907 } else {
3908 ref = mResourcePackages.get(packages[i]);
3909 if (ref != null && ref.get() != null) {
3910 hasPkgInfo = true;
3911 }
3912 }
3913 }
3914 mPackages.remove(packages[i]);
3915 mResourcePackages.remove(packages[i]);
3916 }
3917 }
Brad Fitzpatrick390dae12010-11-10 08:27:28 -08003918 ApplicationPackageManager.handlePackageBroadcast(cmd, packages,
Dianne Hackborn4416c3d2010-05-04 17:22:49 -07003919 hasPkgInfo);
3920 }
3921
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003922 final void handleLowMemory() {
Dianne Hackbornc68c9132011-07-29 01:25:18 -07003923 ArrayList<ComponentCallbacks2> callbacks;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003924
Dianne Hackborne36d6e22010-02-17 19:46:25 -08003925 synchronized (mPackages) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003926 callbacks = collectComponentCallbacksLocked(true, null);
3927 }
Bob Leee5408332009-09-04 18:31:17 -07003928
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003929 final int N = callbacks.size();
3930 for (int i=0; i<N; i++) {
3931 callbacks.get(i).onLowMemory();
3932 }
3933
Chris Tatece229052009-03-25 16:44:52 -07003934 // Ask SQLite to free up as much memory as it can, mostly from its page caches.
3935 if (Process.myUid() != Process.SYSTEM_UID) {
3936 int sqliteReleased = SQLiteDatabase.releaseMemory();
3937 EventLog.writeEvent(SQLITE_MEM_RELEASED_EVENT_LOG_TAG, sqliteReleased);
3938 }
Bob Leee5408332009-09-04 18:31:17 -07003939
Mike Reedcaf0df12009-04-27 14:32:05 -04003940 // Ask graphics to free up as much as possible (font/image caches)
3941 Canvas.freeCaches();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003942
Fabrice Di Meglio30ca5cd2012-05-07 17:45:44 -07003943 // Ask text layout engine to free also as much as possible
3944 Canvas.freeTextLayoutCaches();
3945
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003946 BinderInternal.forceGc("mem");
3947 }
3948
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003949 final void handleTrimMemory(int level) {
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07003950 if (DEBUG_MEMORY_TRIM) Slog.v(TAG, "Trimming memory to level: " + level);
Dianne Hackbornc68c9132011-07-29 01:25:18 -07003951
Jeff Brown98365d72012-08-19 20:30:52 -07003952 final WindowManagerGlobal windowManager = WindowManagerGlobal.getInstance();
Romain Guy19f86e82012-04-23 15:19:07 -07003953 windowManager.startTrimMemory(level);
3954
3955 ArrayList<ComponentCallbacks2> callbacks;
Dianne Hackbornc68c9132011-07-29 01:25:18 -07003956 synchronized (mPackages) {
3957 callbacks = collectComponentCallbacksLocked(true, null);
3958 }
3959
3960 final int N = callbacks.size();
Romain Guya998dff2012-03-23 18:58:36 -07003961 for (int i = 0; i < N; i++) {
Dianne Hackbornc68c9132011-07-29 01:25:18 -07003962 callbacks.get(i).onTrimMemory(level);
3963 }
Romain Guy19f86e82012-04-23 15:19:07 -07003964
Jeff Brown98365d72012-08-19 20:30:52 -07003965 windowManager.endTrimMemory();
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003966 }
3967
Jeff Sharkeye1d330a2012-05-02 13:46:21 -07003968 private void setupGraphicsSupport(LoadedApk info, File cacheDir) {
Dianne Hackborna0c283e2012-02-09 10:47:01 -08003969 if (Process.isIsolated()) {
3970 // Isolated processes aren't going to do UI.
3971 return;
3972 }
Romain Guya9582652011-11-10 14:20:10 -08003973 try {
3974 int uid = Process.myUid();
3975 String[] packages = getPackageManager().getPackagesForUid(uid);
3976
3977 // If there are several packages in this application we won't
3978 // initialize the graphics disk caches
Dianne Hackborna0c283e2012-02-09 10:47:01 -08003979 if (packages != null && packages.length == 1) {
Jeff Sharkeye1d330a2012-05-02 13:46:21 -07003980 HardwareRenderer.setupDiskCache(cacheDir);
3981 RenderScript.setupDiskCache(cacheDir);
Romain Guya9582652011-11-10 14:20:10 -08003982 }
3983 } catch (RemoteException e) {
3984 // Ignore
3985 }
Dianne Hackborndde331c2012-08-03 14:01:57 -07003986 }
3987
3988 private void updateDefaultDensity() {
3989 if (mCurDefaultDisplayDpi != Configuration.DENSITY_DPI_UNDEFINED
3990 && mCurDefaultDisplayDpi != DisplayMetrics.DENSITY_DEVICE
3991 && !mDensityCompatMode) {
3992 Slog.i(TAG, "Switching default density from "
3993 + DisplayMetrics.DENSITY_DEVICE + " to "
3994 + mCurDefaultDisplayDpi);
3995 DisplayMetrics.DENSITY_DEVICE = mCurDefaultDisplayDpi;
3996 Bitmap.setDefaultDensity(DisplayMetrics.DENSITY_DEFAULT);
3997 }
3998 }
3999
Romain Guy65b345f2011-07-27 18:51:50 -07004000 private void handleBindApplication(AppBindData data) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004001 mBoundApplication = data;
4002 mConfiguration = new Configuration(data.config);
Dianne Hackborn5fd21692011-06-07 14:09:47 -07004003 mCompatConfiguration = new Configuration(data.config);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004004
Jeff Sharkey3ad9d002011-09-15 15:51:54 -07004005 mProfiler = new Profiler();
4006 mProfiler.profileFile = data.initProfileFile;
4007 mProfiler.profileFd = data.initProfileFd;
4008 mProfiler.autoStopProfiler = data.initAutoStopProfiler;
4009
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004010 // send up app name; do this *before* waiting for debugger
Christopher Tate8ee038d2009-11-06 11:30:20 -08004011 Process.setArgV0(data.processName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004012 android.ddm.DdmHandleAppName.setAppName(data.processName);
4013
Dianne Hackborn5d927c22011-09-02 12:22:18 -07004014 if (data.persistent) {
4015 // Persistent processes on low-memory devices do not get to
4016 // use hardware accelerated drawing, since this can add too much
4017 // overhead to the process.
Jeff Brown98365d72012-08-19 20:30:52 -07004018 if (!ActivityManager.isHighEndGfx()) {
Dianne Hackborn5d927c22011-09-02 12:22:18 -07004019 HardwareRenderer.disable(false);
4020 }
4021 }
Romain Guya9582652011-11-10 14:20:10 -08004022
Jeff Sharkey3ad9d002011-09-15 15:51:54 -07004023 if (mProfiler.profileFd != null) {
4024 mProfiler.startProfiling();
Dianne Hackborn62f20ec2011-08-15 17:40:28 -07004025 }
4026
Joe Onoratod630f102011-03-17 18:42:26 -07004027 // If the app is Honeycomb MR1 or earlier, switch its AsyncTask
4028 // implementation to use the pool executor. Normally, we use the
4029 // serialized executor as the default. This has to happen in the
4030 // main thread so the main looper is set right.
Dianne Hackborn81e92762011-10-09 16:00:21 -07004031 if (data.appInfo.targetSdkVersion <= android.os.Build.VERSION_CODES.HONEYCOMB_MR1) {
Joe Onoratod630f102011-03-17 18:42:26 -07004032 AsyncTask.setDefaultExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
4033 }
4034
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004035 /*
4036 * Before spawning a new process, reset the time zone to be the system time zone.
4037 * This needs to be done because the system time zone could have changed after the
4038 * the spawning of this process. Without doing this this process would have the incorrect
4039 * system time zone.
4040 */
4041 TimeZone.setDefault(null);
4042
4043 /*
4044 * Initialize the default locale in this process for the reasons we set the time zone.
4045 */
4046 Locale.setDefault(data.config.locale);
4047
Suchi Amalapurapuc9843292009-06-24 17:02:25 -07004048 /*
4049 * Update the system configuration since its preloaded and might not
4050 * reflect configuration changes. The configuration object passed
4051 * in AppBindData can be safely assumed to be up to date
4052 */
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07004053 applyConfigurationToResourcesLocked(data.config, data.compatInfo);
Dianne Hackborn908aecc2012-07-31 16:37:34 -07004054 mCurDefaultDisplayDpi = data.config.densityDpi;
4055 applyCompatConfiguration(mCurDefaultDisplayDpi);
Suchi Amalapurapuc9843292009-06-24 17:02:25 -07004056
Dianne Hackborne2515ee2011-04-27 18:52:56 -04004057 data.info = getPackageInfoNoCheck(data.appInfo, data.compatInfo);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004058
Dianne Hackborndde331c2012-08-03 14:01:57 -07004059 /**
4060 * Switch this process to density compatibility mode if needed.
4061 */
4062 if ((data.appInfo.flags&ApplicationInfo.FLAG_SUPPORTS_SCREEN_DENSITIES)
4063 == 0) {
4064 mDensityCompatMode = true;
4065 Bitmap.setDefaultDensity(DisplayMetrics.DENSITY_DEFAULT);
4066 }
4067 updateDefaultDensity();
4068
Jeff Sharkeye1d330a2012-05-02 13:46:21 -07004069 final ContextImpl appContext = new ContextImpl();
4070 appContext.init(data.info, null, this);
Amith Yamasani11de39a2012-08-17 18:00:52 -07004071 if (!Process.isIsolated()) {
4072 final File cacheDir = appContext.getCacheDir();
Jeff Sharkeye1d330a2012-05-02 13:46:21 -07004073
Amith Yamasani92d57052012-08-23 10:07:52 -07004074 if (cacheDir != null) {
4075 // Provide a usable directory for temporary files
4076 System.setProperty("java.io.tmpdir", cacheDir.getAbsolutePath());
4077
4078 setupGraphicsSupport(data.info, cacheDir);
4079 } else {
4080 Log.e(TAG, "Unable to setupGraphicsSupport due to missing cache directory");
4081 }
Amith Yamasani11de39a2012-08-17 18:00:52 -07004082 }
Dianne Hackborn96e240f2009-07-26 17:42:30 -07004083 /**
Brad Fitzpatrick438d0592010-06-10 12:19:19 -07004084 * For system applications on userdebug/eng builds, log stack
4085 * traces of disk and network access to dropbox for analysis.
4086 */
Brad Fitzpatrickad13b982010-07-14 12:35:53 -07004087 if ((data.appInfo.flags &
4088 (ApplicationInfo.FLAG_SYSTEM |
Brad Fitzpatrick50d66f92010-09-13 21:29:05 -07004089 ApplicationInfo.FLAG_UPDATED_SYSTEM_APP)) != 0) {
4090 StrictMode.conditionallyEnableDebugLogging();
Brad Fitzpatrick438d0592010-06-10 12:19:19 -07004091 }
4092
4093 /**
Brad Fitzpatrickb6e18412010-10-28 14:50:05 -07004094 * For apps targetting SDK Honeycomb or later, we don't allow
4095 * network usage on the main event loop / UI thread.
4096 *
4097 * Note to those grepping: this is what ultimately throws
4098 * NetworkOnMainThreadException ...
4099 */
4100 if (data.appInfo.targetSdkVersion > 9) {
4101 StrictMode.enableDeathOnNetwork();
4102 }
4103
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004104 if (data.debugMode != IApplicationThread.DEBUG_OFF) {
4105 // XXX should have option to change the port.
4106 Debug.changeDebugPort(8100);
4107 if (data.debugMode == IApplicationThread.DEBUG_WAIT) {
Dianne Hackborn399cccb2010-04-13 22:57:49 -07004108 Slog.w(TAG, "Application " + data.info.getPackageName()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004109 + " is waiting for the debugger on port 8100...");
4110
4111 IActivityManager mgr = ActivityManagerNative.getDefault();
4112 try {
4113 mgr.showWaitingForDebugger(mAppThread, true);
4114 } catch (RemoteException ex) {
4115 }
4116
4117 Debug.waitForDebugger();
4118
4119 try {
4120 mgr.showWaitingForDebugger(mAppThread, false);
4121 } catch (RemoteException ex) {
4122 }
4123
4124 } else {
Dianne Hackborn399cccb2010-04-13 22:57:49 -07004125 Slog.w(TAG, "Application " + data.info.getPackageName()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004126 + " can be debugged on port 8100...");
4127 }
4128 }
4129
Siva Velusamy92a8b222012-03-09 16:24:04 -08004130 // Enable OpenGL tracing if required
4131 if (data.enableOpenGlTrace) {
4132 GLUtils.enableTracing();
4133 }
4134
Robert Greenwalt434203a2010-10-11 16:00:27 -07004135 /**
4136 * Initialize the default http proxy in this process for the reasons we set the time zone.
4137 */
4138 IBinder b = ServiceManager.getService(Context.CONNECTIVITY_SERVICE);
Dianne Hackbornd4d32c52011-11-08 17:33:59 -08004139 if (b != null) {
4140 // In pre-boot mode (doing initial launch to collect password), not
4141 // all system is up. This includes the connectivity service, so don't
4142 // crash if we can't get it.
4143 IConnectivityManager service = IConnectivityManager.Stub.asInterface(b);
4144 try {
4145 ProxyProperties proxyProperties = service.getProxy();
4146 Proxy.setHttpProxySystemProperty(proxyProperties);
4147 } catch (RemoteException e) {}
4148 }
Robert Greenwalt434203a2010-10-11 16:00:27 -07004149
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004150 if (data.instrumentationName != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004151 InstrumentationInfo ii = null;
4152 try {
4153 ii = appContext.getPackageManager().
4154 getInstrumentationInfo(data.instrumentationName, 0);
4155 } catch (PackageManager.NameNotFoundException e) {
4156 }
4157 if (ii == null) {
4158 throw new RuntimeException(
4159 "Unable to find instrumentation info for: "
4160 + data.instrumentationName);
4161 }
4162
4163 mInstrumentationAppDir = ii.sourceDir;
Brian Carlstromd893a892012-04-01 21:30:26 -07004164 mInstrumentationAppLibraryDir = ii.nativeLibraryDir;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004165 mInstrumentationAppPackage = ii.packageName;
4166 mInstrumentedAppDir = data.info.getAppDir();
Brian Carlstromd893a892012-04-01 21:30:26 -07004167 mInstrumentedAppLibraryDir = data.info.getLibDir();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004168
4169 ApplicationInfo instrApp = new ApplicationInfo();
4170 instrApp.packageName = ii.packageName;
4171 instrApp.sourceDir = ii.sourceDir;
4172 instrApp.publicSourceDir = ii.publicSourceDir;
4173 instrApp.dataDir = ii.dataDir;
Kenny Root85387d72010-08-26 10:13:11 -07004174 instrApp.nativeLibraryDir = ii.nativeLibraryDir;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04004175 LoadedApk pi = getPackageInfo(instrApp, data.compatInfo,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004176 appContext.getClassLoader(), false, true);
Dianne Hackborn21556372010-02-04 16:34:40 -08004177 ContextImpl instrContext = new ContextImpl();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004178 instrContext.init(pi, null, this);
4179
4180 try {
4181 java.lang.ClassLoader cl = instrContext.getClassLoader();
4182 mInstrumentation = (Instrumentation)
4183 cl.loadClass(data.instrumentationName.getClassName()).newInstance();
4184 } catch (Exception e) {
4185 throw new RuntimeException(
4186 "Unable to instantiate instrumentation "
4187 + data.instrumentationName + ": " + e.toString(), e);
4188 }
4189
4190 mInstrumentation.init(this, instrContext, appContext,
4191 new ComponentName(ii.packageName, ii.name), data.instrumentationWatcher);
4192
Jeff Sharkey3ad9d002011-09-15 15:51:54 -07004193 if (mProfiler.profileFile != null && !ii.handleProfiling
4194 && mProfiler.profileFd == null) {
4195 mProfiler.handlingProfiling = true;
4196 File file = new File(mProfiler.profileFile);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004197 file.getParentFile().mkdirs();
4198 Debug.startMethodTracing(file.toString(), 8 * 1024 * 1024);
4199 }
4200
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004201 } else {
4202 mInstrumentation = new Instrumentation();
4203 }
4204
Dianne Hackborn3b81bc12011-01-15 11:50:52 -08004205 if ((data.appInfo.flags&ApplicationInfo.FLAG_LARGE_HEAP) != 0) {
Dianne Hackbornde398512011-01-18 18:45:21 -08004206 dalvik.system.VMRuntime.getRuntime().clearGrowthLimit();
Dianne Hackborn3b81bc12011-01-15 11:50:52 -08004207 }
4208
Jeff Sharkey6bff62c2012-02-29 12:26:36 -08004209 // Allow disk access during application and provider setup. This could
Jeff Sharkey7c501672012-02-28 12:08:37 -08004210 // block processing ordered broadcasts, but later processing would
Jeff Sharkey6bff62c2012-02-29 12:26:36 -08004211 // probably end up doing the same disk access.
Jeff Sharkey7c501672012-02-28 12:08:37 -08004212 final StrictMode.ThreadPolicy savedPolicy = StrictMode.allowThreadDiskWrites();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004213 try {
Jeff Sharkey6bff62c2012-02-29 12:26:36 -08004214 // If the app is being launched for full backup or restore, bring it up in
4215 // a restricted environment with the base application class.
4216 Application app = data.info.makeApplication(data.restrictedBackupMode, null);
4217 mInitialApplication = app;
Jeff Sharkey7c501672012-02-28 12:08:37 -08004218
Jeff Sharkey6bff62c2012-02-29 12:26:36 -08004219 // don't bring up providers in restricted mode; they may depend on the
4220 // app's custom Application class
4221 if (!data.restrictedBackupMode) {
4222 List<ProviderInfo> providers = data.providers;
4223 if (providers != null) {
4224 installContentProviders(app, providers);
4225 // For process that contains content providers, we want to
4226 // ensure that the JIT is enabled "at some point".
4227 mH.sendEmptyMessageDelayed(H.ENABLE_JIT, 10*1000);
4228 }
4229 }
4230
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004231 // Do this after providers, since instrumentation tests generally start their
4232 // test thread at this point, and we don't want that racing.
4233 try {
4234 mInstrumentation.onCreate(data.instrumentationArgs);
4235 }
4236 catch (Exception e) {
4237 throw new RuntimeException(
4238 "Exception thrown in onCreate() of "
4239 + data.instrumentationName + ": " + e.toString(), e);
4240 }
4241
Jeff Sharkey6bff62c2012-02-29 12:26:36 -08004242 try {
4243 mInstrumentation.callApplicationOnCreate(app);
4244 } catch (Exception e) {
4245 if (!mInstrumentation.onException(app, e)) {
4246 throw new RuntimeException(
4247 "Unable to create application " + app.getClass().getName()
4248 + ": " + e.toString(), e);
4249 }
4250 }
4251 } finally {
4252 StrictMode.setThreadPolicy(savedPolicy);
4253 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004254 }
4255
4256 /*package*/ final void finishInstrumentation(int resultCode, Bundle results) {
4257 IActivityManager am = ActivityManagerNative.getDefault();
Jeff Sharkey3ad9d002011-09-15 15:51:54 -07004258 if (mProfiler.profileFile != null && mProfiler.handlingProfiling
4259 && mProfiler.profileFd == null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004260 Debug.stopMethodTracing();
4261 }
Dianne Hackborn399cccb2010-04-13 22:57:49 -07004262 //Slog.i(TAG, "am: " + ActivityManagerNative.getDefault()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004263 // + ", app thr: " + mAppThread);
4264 try {
4265 am.finishInstrumentation(mAppThread, resultCode, results);
4266 } catch (RemoteException ex) {
4267 }
4268 }
4269
Romain Guy65b345f2011-07-27 18:51:50 -07004270 private void installContentProviders(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004271 Context context, List<ProviderInfo> providers) {
4272 final ArrayList<IActivityManager.ContentProviderHolder> results =
4273 new ArrayList<IActivityManager.ContentProviderHolder>();
4274
Romain Guya998dff2012-03-23 18:58:36 -07004275 for (ProviderInfo cpi : providers) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004276 StringBuilder buf = new StringBuilder(128);
Dianne Hackborncef65ee2010-09-30 18:27:22 -07004277 buf.append("Pub ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004278 buf.append(cpi.authority);
4279 buf.append(": ");
4280 buf.append(cpi.name);
4281 Log.i(TAG, buf.toString());
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004282 IActivityManager.ContentProviderHolder cph = installProvider(context, null, cpi,
4283 false /*noisy*/, true /*noReleaseNeeded*/, true /*stable*/);
4284 if (cph != null) {
Jeff Brownddaa9ac2011-11-11 20:16:14 -08004285 cph.noReleaseNeeded = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004286 results.add(cph);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004287 }
4288 }
4289
4290 try {
4291 ActivityManagerNative.getDefault().publishContentProviders(
4292 getApplicationThread(), results);
4293 } catch (RemoteException ex) {
4294 }
4295 }
4296
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004297 public final IContentProvider acquireProvider(Context c, String name, boolean stable) {
4298 IContentProvider provider = acquireExistingProvider(c, name, stable);
Jeff Brownddaa9ac2011-11-11 20:16:14 -08004299 if (provider != null) {
4300 return provider;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004301 }
4302
Jeff Brownddaa9ac2011-11-11 20:16:14 -08004303 // There is a possible race here. Another thread may try to acquire
4304 // the same provider at the same time. When this happens, we want to ensure
4305 // that the first one wins.
4306 // Note that we cannot hold the lock while acquiring and installing the
4307 // provider since it might take a long time to run and it could also potentially
4308 // be re-entrant in the case where the provider is in the same process.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004309 IActivityManager.ContentProviderHolder holder = null;
4310 try {
4311 holder = ActivityManagerNative.getDefault().getContentProvider(
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004312 getApplicationThread(), name, stable);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004313 } catch (RemoteException ex) {
4314 }
4315 if (holder == null) {
Dianne Hackbornc9421ba2010-03-11 22:23:46 -08004316 Slog.e(TAG, "Failed to find provider info for " + name);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004317 return null;
4318 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004319
Jeff Brownddaa9ac2011-11-11 20:16:14 -08004320 // Install provider will increment the reference count for us, and break
4321 // any ties in the race.
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004322 holder = installProvider(c, holder, holder.info,
4323 true /*noisy*/, holder.noReleaseNeeded, stable);
4324 return holder.provider;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004325 }
4326
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004327 private final void incProviderRefLocked(ProviderRefCount prc, boolean stable) {
4328 if (stable) {
4329 prc.stableCount += 1;
4330 if (prc.stableCount == 1) {
4331 // We are acquiring a new stable reference on the provider.
4332 int unstableDelta;
4333 if (prc.removePending) {
4334 // We have a pending remove operation, which is holding the
4335 // last unstable reference. At this point we are converting
4336 // that unstable reference to our new stable reference.
4337 unstableDelta = -1;
4338 // Cancel the removal of the provider.
4339 if (DEBUG_PROVIDER) {
4340 Slog.v(TAG, "incProviderRef: stable "
4341 + "snatched provider from the jaws of death");
4342 }
4343 prc.removePending = false;
4344 mH.removeMessages(H.REMOVE_PROVIDER, prc);
4345 } else {
4346 unstableDelta = 0;
4347 }
4348 try {
4349 if (DEBUG_PROVIDER) {
4350 Slog.v(TAG, "incProviderRef Now stable - "
4351 + prc.holder.info.name + ": unstableDelta="
4352 + unstableDelta);
4353 }
4354 ActivityManagerNative.getDefault().refContentProvider(
4355 prc.holder.connection, 1, unstableDelta);
4356 } catch (RemoteException e) {
4357 //do nothing content provider object is dead any way
4358 }
4359 }
4360 } else {
4361 prc.unstableCount += 1;
4362 if (prc.unstableCount == 1) {
4363 // We are acquiring a new unstable reference on the provider.
4364 if (prc.removePending) {
4365 // Oh look, we actually have a remove pending for the
4366 // provider, which is still holding the last unstable
4367 // reference. We just need to cancel that to take new
4368 // ownership of the reference.
4369 if (DEBUG_PROVIDER) {
4370 Slog.v(TAG, "incProviderRef: unstable "
4371 + "snatched provider from the jaws of death");
4372 }
4373 prc.removePending = false;
4374 mH.removeMessages(H.REMOVE_PROVIDER, prc);
4375 } else {
4376 // First unstable ref, increment our count in the
4377 // activity manager.
4378 try {
4379 if (DEBUG_PROVIDER) {
4380 Slog.v(TAG, "incProviderRef: Now unstable - "
4381 + prc.holder.info.name);
4382 }
4383 ActivityManagerNative.getDefault().refContentProvider(
4384 prc.holder.connection, 0, 1);
4385 } catch (RemoteException e) {
4386 //do nothing content provider object is dead any way
4387 }
4388 }
4389 }
4390 }
4391 }
4392
4393 public final IContentProvider acquireExistingProvider(Context c, String name,
4394 boolean stable) {
Jeff Brownddaa9ac2011-11-11 20:16:14 -08004395 synchronized (mProviderMap) {
4396 ProviderClientRecord pr = mProviderMap.get(name);
4397 if (pr == null) {
4398 return null;
4399 }
4400
4401 IContentProvider provider = pr.mProvider;
4402 IBinder jBinder = provider.asBinder();
4403
4404 // Only increment the ref count if we have one. If we don't then the
4405 // provider is not reference counted and never needs to be released.
Dianne Hackborncca1f0e2010-09-26 18:34:53 -07004406 ProviderRefCount prc = mProviderRefCountMap.get(jBinder);
Jeff Brownddaa9ac2011-11-11 20:16:14 -08004407 if (prc != null) {
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004408 incProviderRefLocked(prc, stable);
Jeff Brownddaa9ac2011-11-11 20:16:14 -08004409 }
4410 return provider;
4411 }
Dianne Hackborncca1f0e2010-09-26 18:34:53 -07004412 }
4413
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004414 public final boolean releaseProvider(IContentProvider provider, boolean stable) {
4415 if (provider == null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004416 return false;
4417 }
Jeff Brownddaa9ac2011-11-11 20:16:14 -08004418
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004419 IBinder jBinder = provider.asBinder();
Jeff Brownddaa9ac2011-11-11 20:16:14 -08004420 synchronized (mProviderMap) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004421 ProviderRefCount prc = mProviderRefCountMap.get(jBinder);
Jeff Brownddaa9ac2011-11-11 20:16:14 -08004422 if (prc == null) {
4423 // The provider has no ref count, no release is needed.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004424 return false;
Jeff Brownddaa9ac2011-11-11 20:16:14 -08004425 }
4426
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004427 boolean lastRef = false;
4428 if (stable) {
4429 if (prc.stableCount == 0) {
4430 if (DEBUG_PROVIDER) Slog.v(TAG,
4431 "releaseProvider: stable ref count already 0, how?");
4432 return false;
4433 }
4434 prc.stableCount -= 1;
4435 if (prc.stableCount == 0) {
4436 // What we do at this point depends on whether there are
4437 // any unstable refs left: if there are, we just tell the
4438 // activity manager to decrement its stable count; if there
4439 // aren't, we need to enqueue this provider to be removed,
4440 // and convert to holding a single unstable ref while
4441 // doing so.
4442 lastRef = prc.unstableCount == 0;
4443 try {
4444 if (DEBUG_PROVIDER) {
4445 Slog.v(TAG, "releaseProvider: No longer stable w/lastRef="
4446 + lastRef + " - " + prc.holder.info.name);
4447 }
4448 ActivityManagerNative.getDefault().refContentProvider(
4449 prc.holder.connection, -1, lastRef ? 1 : 0);
4450 } catch (RemoteException e) {
4451 //do nothing content provider object is dead any way
4452 }
4453 }
4454 } else {
4455 if (prc.unstableCount == 0) {
4456 if (DEBUG_PROVIDER) Slog.v(TAG,
4457 "releaseProvider: unstable ref count already 0, how?");
4458 return false;
4459 }
4460 prc.unstableCount -= 1;
4461 if (prc.unstableCount == 0) {
4462 // If this is the last reference, we need to enqueue
4463 // this provider to be removed instead of telling the
4464 // activity manager to remove it at this point.
4465 lastRef = prc.stableCount == 0;
4466 if (!lastRef) {
4467 try {
4468 if (DEBUG_PROVIDER) {
4469 Slog.v(TAG, "releaseProvider: No longer unstable - "
4470 + prc.holder.info.name);
4471 }
4472 ActivityManagerNative.getDefault().refContentProvider(
4473 prc.holder.connection, 0, -1);
4474 } catch (RemoteException e) {
4475 //do nothing content provider object is dead any way
4476 }
4477 }
4478 }
Jeff Brownddaa9ac2011-11-11 20:16:14 -08004479 }
4480
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004481 if (lastRef) {
4482 if (!prc.removePending) {
4483 // Schedule the actual remove asynchronously, since we don't know the context
4484 // this will be called in.
4485 // TODO: it would be nice to post a delayed message, so
4486 // if we come back and need the same provider quickly
4487 // we will still have it available.
4488 if (DEBUG_PROVIDER) {
4489 Slog.v(TAG, "releaseProvider: Enqueueing pending removal - "
4490 + prc.holder.info.name);
4491 }
4492 prc.removePending = true;
4493 Message msg = mH.obtainMessage(H.REMOVE_PROVIDER, prc);
4494 mH.sendMessage(msg);
4495 } else {
4496 Slog.w(TAG, "Duplicate remove pending of provider " + prc.holder.info.name);
4497 }
Jeff Brownddaa9ac2011-11-11 20:16:14 -08004498 }
4499 return true;
4500 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004501 }
4502
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004503 final void completeRemoveProvider(ProviderRefCount prc) {
4504 synchronized (mProviderMap) {
4505 if (!prc.removePending) {
Jeff Brownddaa9ac2011-11-11 20:16:14 -08004506 // There was a race! Some other client managed to acquire
4507 // the provider before the removal was completed.
4508 // Abort the removal. We will do it later.
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004509 if (DEBUG_PROVIDER) Slog.v(TAG, "completeRemoveProvider: lost the race, "
Jeff Brownddaa9ac2011-11-11 20:16:14 -08004510 + "provider still in use");
4511 return;
4512 }
4513
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004514 final IBinder jBinder = prc.holder.provider.asBinder();
4515 ProviderRefCount existingPrc = mProviderRefCountMap.get(jBinder);
4516 if (existingPrc == prc) {
4517 mProviderRefCountMap.remove(jBinder);
4518 }
Jeff Brownddaa9ac2011-11-11 20:16:14 -08004519
4520 Iterator<ProviderClientRecord> iter = mProviderMap.values().iterator();
4521 while (iter.hasNext()) {
4522 ProviderClientRecord pr = iter.next();
4523 IBinder myBinder = pr.mProvider.asBinder();
4524 if (myBinder == jBinder) {
4525 iter.remove();
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004526 }
4527 }
4528 }
4529
4530 try {
4531 if (DEBUG_PROVIDER) {
4532 Slog.v(TAG, "removeProvider: Invoking ActivityManagerNative."
4533 + "removeContentProvider(" + prc.holder.info.name + ")");
4534 }
4535 ActivityManagerNative.getDefault().removeContentProvider(
4536 prc.holder.connection, false);
4537 } catch (RemoteException e) {
4538 //do nothing content provider object is dead any way
4539 }
4540 }
4541
4542 final void handleUnstableProviderDied(IBinder provider, boolean fromClient) {
4543 synchronized(mProviderMap) {
4544 ProviderRefCount prc = mProviderRefCountMap.get(provider);
4545 if (prc != null) {
4546 if (DEBUG_PROVIDER) Slog.v(TAG, "Cleaning up dead provider "
4547 + provider + " " + prc.holder.info.name);
4548 mProviderRefCountMap.remove(provider);
4549 if (prc.client != null && prc.client.mNames != null) {
4550 for (String name : prc.client.mNames) {
4551 ProviderClientRecord pr = mProviderMap.get(name);
4552 if (pr != null && pr.mProvider.asBinder() == provider) {
4553 Slog.i(TAG, "Removing dead content provider: " + name);
4554 mProviderMap.remove(name);
Jeff Brownddaa9ac2011-11-11 20:16:14 -08004555 }
4556 }
4557 }
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004558 if (fromClient) {
4559 // We found out about this due to execution in our client
4560 // code. Tell the activity manager about it now, to ensure
4561 // that the next time we go to do anything with the provider
4562 // it knows it is dead (so we don't race with its death
4563 // notification).
4564 try {
4565 ActivityManagerNative.getDefault().unstableProviderDied(
4566 prc.holder.connection);
4567 } catch (RemoteException e) {
4568 //do nothing content provider object is dead any way
4569 }
4570 }
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07004571 }
4572 }
4573 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004574
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004575 private ProviderClientRecord installProviderAuthoritiesLocked(IContentProvider provider,
4576 ContentProvider localProvider,IActivityManager.ContentProviderHolder holder) {
4577 String names[] = PATTERN_SEMICOLON.split(holder.info.authority);
4578 ProviderClientRecord pcr = new ProviderClientRecord(names, provider,
4579 localProvider, holder);
4580 for (int i = 0; i < names.length; i++) {
4581 ProviderClientRecord existing = mProviderMap.get(names[i]);
4582 if (existing != null) {
4583 Slog.w(TAG, "Content provider " + pcr.mHolder.info.name
4584 + " already published as " + names[i]);
4585 } else {
4586 mProviderMap.put(names[i], pcr);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004587 }
4588 }
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004589 return pcr;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004590 }
4591
Jeff Brownddaa9ac2011-11-11 20:16:14 -08004592 /**
4593 * Installs the provider.
4594 *
4595 * Providers that are local to the process or that come from the system server
4596 * may be installed permanently which is indicated by setting noReleaseNeeded to true.
4597 * Other remote providers are reference counted. The initial reference count
4598 * for all reference counted providers is one. Providers that are not reference
4599 * counted do not have a reference count (at all).
4600 *
4601 * This method detects when a provider has already been installed. When this happens,
4602 * it increments the reference count of the existing provider (if appropriate)
4603 * and returns the existing provider. This can happen due to concurrent
4604 * attempts to acquire the same provider.
4605 */
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004606 private IActivityManager.ContentProviderHolder installProvider(Context context,
4607 IActivityManager.ContentProviderHolder holder, ProviderInfo info,
4608 boolean noisy, boolean noReleaseNeeded, boolean stable) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004609 ContentProvider localProvider = null;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004610 IContentProvider provider;
Dianne Hackborn5f48fca2012-05-30 11:06:31 -07004611 if (holder == null || holder.provider == null) {
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004612 if (DEBUG_PROVIDER || noisy) {
Dianne Hackborn399cccb2010-04-13 22:57:49 -07004613 Slog.d(TAG, "Loading provider " + info.authority + ": "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004614 + info.name);
4615 }
4616 Context c = null;
4617 ApplicationInfo ai = info.applicationInfo;
4618 if (context.getPackageName().equals(ai.packageName)) {
4619 c = context;
4620 } else if (mInitialApplication != null &&
4621 mInitialApplication.getPackageName().equals(ai.packageName)) {
4622 c = mInitialApplication;
4623 } else {
4624 try {
4625 c = context.createPackageContext(ai.packageName,
4626 Context.CONTEXT_INCLUDE_CODE);
4627 } catch (PackageManager.NameNotFoundException e) {
Romain Guy65b345f2011-07-27 18:51:50 -07004628 // Ignore
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004629 }
4630 }
4631 if (c == null) {
Dianne Hackbornc9421ba2010-03-11 22:23:46 -08004632 Slog.w(TAG, "Unable to get context for package " +
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004633 ai.packageName +
4634 " while loading content provider " +
4635 info.name);
4636 return null;
4637 }
4638 try {
4639 final java.lang.ClassLoader cl = c.getClassLoader();
4640 localProvider = (ContentProvider)cl.
4641 loadClass(info.name).newInstance();
4642 provider = localProvider.getIContentProvider();
4643 if (provider == null) {
Dianne Hackbornc9421ba2010-03-11 22:23:46 -08004644 Slog.e(TAG, "Failed to instantiate class " +
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004645 info.name + " from sourceDir " +
4646 info.applicationInfo.sourceDir);
4647 return null;
4648 }
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004649 if (DEBUG_PROVIDER) Slog.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004650 TAG, "Instantiating local provider " + info.name);
4651 // XXX Need to create the correct context for this provider.
4652 localProvider.attachInfo(c, info);
4653 } catch (java.lang.Exception e) {
4654 if (!mInstrumentation.onException(null, e)) {
4655 throw new RuntimeException(
4656 "Unable to get provider " + info.name
4657 + ": " + e.toString(), e);
4658 }
4659 return null;
4660 }
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004661 } else {
4662 provider = holder.provider;
4663 if (DEBUG_PROVIDER) Slog.v(TAG, "Installing external provider " + info.authority + ": "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004664 + info.name);
4665 }
4666
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004667 IActivityManager.ContentProviderHolder retHolder;
Jeff Brownddaa9ac2011-11-11 20:16:14 -08004668
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004669 synchronized (mProviderMap) {
4670 if (DEBUG_PROVIDER) Slog.v(TAG, "Checking to add " + provider
4671 + " / " + info.name);
4672 IBinder jBinder = provider.asBinder();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004673 if (localProvider != null) {
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004674 ComponentName cname = new ComponentName(info.packageName, info.name);
4675 ProviderClientRecord pr = mLocalProvidersByName.get(cname);
Jeff Brownddaa9ac2011-11-11 20:16:14 -08004676 if (pr != null) {
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004677 if (DEBUG_PROVIDER) {
Jeff Brownddaa9ac2011-11-11 20:16:14 -08004678 Slog.v(TAG, "installProvider: lost the race, "
4679 + "using existing local provider");
4680 }
4681 provider = pr.mProvider;
4682 } else {
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004683 holder = new IActivityManager.ContentProviderHolder(info);
4684 holder.provider = provider;
4685 holder.noReleaseNeeded = true;
4686 pr = installProviderAuthoritiesLocked(provider, localProvider, holder);
Jeff Brownddaa9ac2011-11-11 20:16:14 -08004687 mLocalProviders.put(jBinder, pr);
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004688 mLocalProvidersByName.put(cname, pr);
Jeff Brownddaa9ac2011-11-11 20:16:14 -08004689 }
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004690 retHolder = pr.mHolder;
4691 } else {
Jeff Brownddaa9ac2011-11-11 20:16:14 -08004692 ProviderRefCount prc = mProviderRefCountMap.get(jBinder);
4693 if (prc != null) {
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004694 if (DEBUG_PROVIDER) {
4695 Slog.v(TAG, "installProvider: lost the race, updating ref count");
Jeff Brownddaa9ac2011-11-11 20:16:14 -08004696 }
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004697 // We need to transfer our new reference to the existing
4698 // ref count, releasing the old one... but only if
4699 // release is needed (that is, it is not running in the
4700 // system process).
4701 if (!noReleaseNeeded) {
4702 incProviderRefLocked(prc, stable);
4703 try {
4704 ActivityManagerNative.getDefault().removeContentProvider(
4705 holder.connection, stable);
4706 } catch (RemoteException e) {
4707 //do nothing content provider object is dead any way
Jeff Brownddaa9ac2011-11-11 20:16:14 -08004708 }
Jeff Brownddaa9ac2011-11-11 20:16:14 -08004709 }
4710 } else {
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004711 ProviderClientRecord client = installProviderAuthoritiesLocked(
4712 provider, localProvider, holder);
4713 if (noReleaseNeeded) {
4714 prc = new ProviderRefCount(holder, client, 1000, 1000);
4715 } else {
4716 prc = stable
4717 ? new ProviderRefCount(holder, client, 1, 0)
4718 : new ProviderRefCount(holder, client, 0, 1);
4719 }
4720 mProviderRefCountMap.put(jBinder, prc);
Jeff Brownddaa9ac2011-11-11 20:16:14 -08004721 }
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004722 retHolder = prc.holder;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004723 }
4724 }
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07004725
4726 return retHolder;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004727 }
4728
Romain Guy65b345f2011-07-27 18:51:50 -07004729 private void attach(boolean system) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004730 sThreadLocal.set(this);
4731 mSystemThread = system;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004732 if (!system) {
Dianne Hackborn6dd005b2011-07-18 13:22:50 -07004733 ViewRootImpl.addFirstDrawHandler(new Runnable() {
Dianne Hackborn2a9094d2010-02-03 19:20:09 -08004734 public void run() {
4735 ensureJitEnabled();
4736 }
4737 });
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004738 android.ddm.DdmHandleAppName.setAppName("<pre-initialized>");
4739 RuntimeInit.setApplicationObject(mAppThread.asBinder());
4740 IActivityManager mgr = ActivityManagerNative.getDefault();
4741 try {
4742 mgr.attachApplication(mAppThread);
4743 } catch (RemoteException ex) {
Romain Guy65b345f2011-07-27 18:51:50 -07004744 // Ignore
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004745 }
4746 } else {
4747 // Don't set application object here -- if the system crashes,
4748 // we can't display an alert, we just want to die die die.
4749 android.ddm.DdmHandleAppName.setAppName("system_process");
4750 try {
4751 mInstrumentation = new Instrumentation();
Dianne Hackborn21556372010-02-04 16:34:40 -08004752 ContextImpl context = new ContextImpl();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004753 context.init(getSystemContext().mPackageInfo, null, this);
4754 Application app = Instrumentation.newApplication(Application.class, context);
4755 mAllApplications.add(app);
4756 mInitialApplication = app;
4757 app.onCreate();
4758 } catch (Exception e) {
4759 throw new RuntimeException(
4760 "Unable to instantiate Application():" + e.toString(), e);
4761 }
4762 }
Dianne Hackborne36d6e22010-02-17 19:46:25 -08004763
Dianne Hackbornc68c9132011-07-29 01:25:18 -07004764 ViewRootImpl.addConfigCallback(new ComponentCallbacks2() {
Dianne Hackborne36d6e22010-02-17 19:46:25 -08004765 public void onConfigurationChanged(Configuration newConfig) {
4766 synchronized (mPackages) {
Dianne Hackbornae078162010-03-18 11:29:37 -07004767 // We need to apply this change to the resources
4768 // immediately, because upon returning the view
4769 // hierarchy will be informed about it.
Dianne Hackborne2515ee2011-04-27 18:52:56 -04004770 if (applyConfigurationToResourcesLocked(newConfig, null)) {
Dianne Hackbornae078162010-03-18 11:29:37 -07004771 // This actually changed the resources! Tell
4772 // everyone about it.
4773 if (mPendingConfiguration == null ||
4774 mPendingConfiguration.isOtherSeqNewer(newConfig)) {
4775 mPendingConfiguration = newConfig;
4776
4777 queueOrSendMessage(H.CONFIGURATION_CHANGED, newConfig);
4778 }
Dianne Hackborne36d6e22010-02-17 19:46:25 -08004779 }
4780 }
Dianne Hackborne36d6e22010-02-17 19:46:25 -08004781 }
4782 public void onLowMemory() {
4783 }
Dianne Hackbornc68c9132011-07-29 01:25:18 -07004784 public void onTrimMemory(int level) {
4785 }
Dianne Hackborne36d6e22010-02-17 19:46:25 -08004786 });
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004787 }
4788
Romain Guy5e9120d2012-01-30 12:17:22 -08004789 public static ActivityThread systemMain() {
Dianne Hackborn5d927c22011-09-02 12:22:18 -07004790 HardwareRenderer.disable(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004791 ActivityThread thread = new ActivityThread();
4792 thread.attach(true);
4793 return thread;
4794 }
4795
Jeff Brown10e89712011-07-08 18:52:57 -07004796 public final void installSystemProviders(List<ProviderInfo> providers) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004797 if (providers != null) {
Jeff Brown10e89712011-07-08 18:52:57 -07004798 installContentProviders(mInitialApplication, providers);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004799 }
4800 }
4801
Svetoslav Ganov54d068e2011-03-02 12:58:40 -08004802 public int getIntCoreSetting(String key, int defaultValue) {
Svetoslav Ganov9aa597e2011-03-03 18:17:41 -08004803 synchronized (mPackages) {
4804 if (mCoreSettings != null) {
4805 return mCoreSettings.getInt(key, defaultValue);
Svetoslav Ganov54d068e2011-03-02 12:58:40 -08004806 } else {
4807 return defaultValue;
4808 }
4809 }
4810 }
4811
Romain Guy65b345f2011-07-27 18:51:50 -07004812 public static void main(String[] args) {
Bob Leee5408332009-09-04 18:31:17 -07004813 SamplingProfilerIntegration.start();
4814
Brad Fitzpatrick4d9e6d22010-11-15 08:49:51 -08004815 // CloseGuard defaults to true and can be quite spammy. We
4816 // disable it here, but selectively enable it later (via
4817 // StrictMode) on debug builds, but using DropBox, not logs.
4818 CloseGuard.setEnabled(false);
4819
Kenny Roote29df162012-08-10 08:28:37 -07004820 Security.addProvider(new AndroidKeyStoreProvider());
4821
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004822 Process.setArgV0("<pre-initialized>");
4823
4824 Looper.prepareMainLooper();
4825
4826 ActivityThread thread = new ActivityThread();
4827 thread.attach(false);
4828
Vairavan Srinivasan7335cfd2012-08-18 18:36:03 -07004829 if (sMainThreadHandler == null) {
4830 sMainThreadHandler = thread.getHandler();
4831 }
4832
Romain Guy5e9120d2012-01-30 12:17:22 -08004833 AsyncTask.init();
4834
Dianne Hackborn287952c2010-09-22 22:34:31 -07004835 if (false) {
4836 Looper.myLooper().setMessageLogging(new
4837 LogPrinter(Log.DEBUG, "ActivityThread"));
4838 }
4839
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004840 Looper.loop();
4841
Jeff Brown10e89712011-07-08 18:52:57 -07004842 throw new RuntimeException("Main thread loop unexpectedly exited");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004843 }
4844}