blob: f4c166421c35b74acd7d50e5dcadd8ca3d28ae15 [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
Jacek Surazskif5b9c722009-05-18 12:09:59 +020019import android.content.ActivityNotFoundException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080020import android.content.Context;
Jacek Surazskif5b9c722009-05-18 12:09:59 +020021import android.content.DialogInterface;
22import android.content.Intent;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023import android.content.res.Resources;
24import android.os.Handler;
25import android.os.Message;
Joe Onorato8a9b2202010-02-26 18:56:32 -080026import android.util.Slog;
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -070027import android.view.WindowManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028
Dianne Hackbornbe4e6aa2013-06-07 13:25:29 -070029final class AppNotRespondingDialog extends BaseErrorDialog {
Jacek Surazskif5b9c722009-05-18 12:09:59 +020030 private static final String TAG = "AppNotRespondingDialog";
31
32 // Event 'what' codes
33 static final int FORCE_CLOSE = 1;
34 static final int WAIT = 2;
35 static final int WAIT_AND_REPORT = 3;
36
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037 private final ActivityManagerService mService;
38 private final ProcessRecord mProc;
39
40 public AppNotRespondingDialog(ActivityManagerService service, Context context,
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -070041 ProcessRecord app, ActivityRecord activity, boolean aboveSystem) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042 super(context);
43
44 mService = service;
45 mProc = app;
46 Resources res = context.getResources();
47
48 setCancelable(false);
49
50 int resid;
51 CharSequence name1 = activity != null
52 ? activity.info.loadLabel(context.getPackageManager())
53 : null;
54 CharSequence name2 = null;
55 if ((app.pkgList.size() == 1) &&
56 (name2=context.getPackageManager().getApplicationLabel(app.info)) != null) {
57 if (name1 != null) {
58 resid = com.android.internal.R.string.anr_activity_application;
59 } else {
60 name1 = name2;
61 name2 = app.processName;
62 resid = com.android.internal.R.string.anr_application_process;
63 }
64 } else {
65 if (name1 != null) {
66 name2 = app.processName;
67 resid = com.android.internal.R.string.anr_activity_process;
68 } else {
69 name1 = app.processName;
70 resid = com.android.internal.R.string.anr_process;
71 }
72 }
73
74 setMessage(name2 != null
75 ? res.getString(resid, name1.toString(), name2.toString())
76 : res.getString(resid, name1.toString()));
77
Adam Powell40a97842011-08-14 17:12:10 -070078 setButton(DialogInterface.BUTTON_POSITIVE,
Jacek Surazskif5b9c722009-05-18 12:09:59 +020079 res.getText(com.android.internal.R.string.force_close),
80 mHandler.obtainMessage(FORCE_CLOSE));
Adam Powell40a97842011-08-14 17:12:10 -070081 setButton(DialogInterface.BUTTON_NEGATIVE,
Jacek Surazskif5b9c722009-05-18 12:09:59 +020082 res.getText(com.android.internal.R.string.wait),
83 mHandler.obtainMessage(WAIT));
84
85 if (app.errorReportReceiver != null) {
Adam Powell40a97842011-08-14 17:12:10 -070086 setButton(DialogInterface.BUTTON_NEUTRAL,
Jacek Surazskif5b9c722009-05-18 12:09:59 +020087 res.getText(com.android.internal.R.string.report),
88 mHandler.obtainMessage(WAIT_AND_REPORT));
89 }
90
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080091 setTitle(res.getText(com.android.internal.R.string.anr_title));
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -070092 if (aboveSystem) {
93 getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ERROR);
94 }
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -070095 WindowManager.LayoutParams attrs = getWindow().getAttributes();
96 attrs.setTitle("Application Not Responding: " + app.info.processName);
Adam Lesinski95c42972013-10-02 10:13:27 -070097 attrs.privateFlags = WindowManager.LayoutParams.PRIVATE_FLAG_SYSTEM_ERROR |
98 WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -070099 getWindow().setAttributes(attrs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800100 }
101
102 public void onStop() {
103 }
104
105 private final Handler mHandler = new Handler() {
106 public void handleMessage(Message msg) {
Jacek Surazskif5b9c722009-05-18 12:09:59 +0200107 Intent appErrorIntent = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800108 switch (msg.what) {
Jacek Surazskif5b9c722009-05-18 12:09:59 +0200109 case FORCE_CLOSE:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800110 // Kill the application.
Dan Egnor42471dd2010-01-07 17:25:22 -0800111 mService.killAppAtUsersRequest(mProc, AppNotRespondingDialog.this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800112 break;
Jacek Surazskif5b9c722009-05-18 12:09:59 +0200113 case WAIT_AND_REPORT:
114 case WAIT:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800115 // Continue waiting for the application.
116 synchronized (mService) {
117 ProcessRecord app = mProc;
Jacek Surazskif5b9c722009-05-18 12:09:59 +0200118
119 if (msg.what == WAIT_AND_REPORT) {
Jacek Surazski41a9fd52010-01-27 16:37:21 -0800120 appErrorIntent = mService.createAppErrorIntentLocked(app,
121 System.currentTimeMillis(), null);
Jacek Surazskif5b9c722009-05-18 12:09:59 +0200122 }
123
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800124 app.notResponding = false;
125 app.notRespondingReport = null;
126 if (app.anrDialog == AppNotRespondingDialog.this) {
127 app.anrDialog = null;
128 }
Dianne Hackborn2be00932013-09-22 16:46:00 -0700129 mService.mServices.scheduleServiceTimeoutLocked(app);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800130 }
131 break;
132 }
Jacek Surazskif5b9c722009-05-18 12:09:59 +0200133
134 if (appErrorIntent != null) {
135 try {
136 getContext().startActivity(appErrorIntent);
137 } catch (ActivityNotFoundException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800138 Slog.w(TAG, "bug report receiver dissappeared", e);
Jacek Surazskif5b9c722009-05-18 12:09:59 +0200139 }
140 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800141 }
142 };
143}