blob: af61c9b7b71d7f77fd0c5267c7ad0614b0deba34 [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 com.android.server.am;
18
19import static android.view.WindowManager.LayoutParams.FLAG_SYSTEM_ERROR;
20
Jacek Surazskif5b9c722009-05-18 12:09:59 +020021import android.content.ActivityNotFoundException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022import android.content.Context;
Jacek Surazskif5b9c722009-05-18 12:09:59 +020023import android.content.DialogInterface;
24import android.content.Intent;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025import android.content.res.Resources;
26import android.os.Handler;
27import android.os.Message;
Joe Onorato8a9b2202010-02-26 18:56:32 -080028import android.util.Slog;
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -070029import android.view.WindowManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030
31class AppNotRespondingDialog extends BaseErrorDialog {
Jacek Surazskif5b9c722009-05-18 12:09:59 +020032 private static final String TAG = "AppNotRespondingDialog";
33
34 // Event 'what' codes
35 static final int FORCE_CLOSE = 1;
36 static final int WAIT = 2;
37 static final int WAIT_AND_REPORT = 3;
38
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039 private final ActivityManagerService mService;
40 private final ProcessRecord mProc;
41
42 public AppNotRespondingDialog(ActivityManagerService service, Context context,
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -070043 ProcessRecord app, ActivityRecord activity, boolean aboveSystem) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044 super(context);
45
46 mService = service;
47 mProc = app;
48 Resources res = context.getResources();
49
50 setCancelable(false);
51
52 int resid;
53 CharSequence name1 = activity != null
54 ? activity.info.loadLabel(context.getPackageManager())
55 : null;
56 CharSequence name2 = null;
57 if ((app.pkgList.size() == 1) &&
58 (name2=context.getPackageManager().getApplicationLabel(app.info)) != null) {
59 if (name1 != null) {
60 resid = com.android.internal.R.string.anr_activity_application;
61 } else {
62 name1 = name2;
63 name2 = app.processName;
64 resid = com.android.internal.R.string.anr_application_process;
65 }
66 } else {
67 if (name1 != null) {
68 name2 = app.processName;
69 resid = com.android.internal.R.string.anr_activity_process;
70 } else {
71 name1 = app.processName;
72 resid = com.android.internal.R.string.anr_process;
73 }
74 }
75
76 setMessage(name2 != null
77 ? res.getString(resid, name1.toString(), name2.toString())
78 : res.getString(resid, name1.toString()));
79
Adam Powell40a97842011-08-14 17:12:10 -070080 setButton(DialogInterface.BUTTON_POSITIVE,
Jacek Surazskif5b9c722009-05-18 12:09:59 +020081 res.getText(com.android.internal.R.string.force_close),
82 mHandler.obtainMessage(FORCE_CLOSE));
Adam Powell40a97842011-08-14 17:12:10 -070083 setButton(DialogInterface.BUTTON_NEGATIVE,
Jacek Surazskif5b9c722009-05-18 12:09:59 +020084 res.getText(com.android.internal.R.string.wait),
85 mHandler.obtainMessage(WAIT));
86
87 if (app.errorReportReceiver != null) {
Adam Powell40a97842011-08-14 17:12:10 -070088 setButton(DialogInterface.BUTTON_NEUTRAL,
Jacek Surazskif5b9c722009-05-18 12:09:59 +020089 res.getText(com.android.internal.R.string.report),
90 mHandler.obtainMessage(WAIT_AND_REPORT));
91 }
92
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080093 setTitle(res.getText(com.android.internal.R.string.anr_title));
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -070094 if (aboveSystem) {
95 getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ERROR);
96 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080097 getWindow().addFlags(FLAG_SYSTEM_ERROR);
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -070098 WindowManager.LayoutParams attrs = getWindow().getAttributes();
99 attrs.setTitle("Application Not Responding: " + app.info.processName);
Amith Yamasani64442c12012-10-07 08:17:46 -0700100 attrs.privateFlags = WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -0700101 getWindow().setAttributes(attrs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800102 }
103
104 public void onStop() {
105 }
106
107 private final Handler mHandler = new Handler() {
108 public void handleMessage(Message msg) {
Jacek Surazskif5b9c722009-05-18 12:09:59 +0200109 Intent appErrorIntent = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800110 switch (msg.what) {
Jacek Surazskif5b9c722009-05-18 12:09:59 +0200111 case FORCE_CLOSE:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800112 // Kill the application.
Dan Egnor42471dd2010-01-07 17:25:22 -0800113 mService.killAppAtUsersRequest(mProc, AppNotRespondingDialog.this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800114 break;
Jacek Surazskif5b9c722009-05-18 12:09:59 +0200115 case WAIT_AND_REPORT:
116 case WAIT:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800117 // Continue waiting for the application.
118 synchronized (mService) {
119 ProcessRecord app = mProc;
Jacek Surazskif5b9c722009-05-18 12:09:59 +0200120
121 if (msg.what == WAIT_AND_REPORT) {
Jacek Surazski41a9fd52010-01-27 16:37:21 -0800122 appErrorIntent = mService.createAppErrorIntentLocked(app,
123 System.currentTimeMillis(), null);
Jacek Surazskif5b9c722009-05-18 12:09:59 +0200124 }
125
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800126 app.notResponding = false;
127 app.notRespondingReport = null;
128 if (app.anrDialog == AppNotRespondingDialog.this) {
129 app.anrDialog = null;
130 }
131 }
132 break;
133 }
Jacek Surazskif5b9c722009-05-18 12:09:59 +0200134
135 if (appErrorIntent != null) {
136 try {
137 getContext().startActivity(appErrorIntent);
138 } catch (ActivityNotFoundException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800139 Slog.w(TAG, "bug report receiver dissappeared", e);
Jacek Surazskif5b9c722009-05-18 12:09:59 +0200140 }
141 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800142 }
143 };
144}