blob: 6d1d9f38c055349d05ebceac0053d139c9c630f7 [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
Adrian Roos90462222016-02-17 15:45:09 -080019import com.android.internal.logging.MetricsLogger;
20import com.android.internal.logging.MetricsProto;
21
Jacek Surazskif5b9c722009-05-18 12:09:59 +020022import android.content.ActivityNotFoundException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023import android.content.Context;
Jacek Surazskif5b9c722009-05-18 12:09:59 +020024import android.content.DialogInterface;
25import android.content.Intent;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026import android.content.res.Resources;
Adrian Roosa85a2c62016-01-26 09:14:22 -080027import android.os.Bundle;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028import android.os.Handler;
29import android.os.Message;
Joe Onorato8a9b2202010-02-26 18:56:32 -080030import android.util.Slog;
Adrian Roosa85a2c62016-01-26 09:14:22 -080031import android.view.LayoutInflater;
32import android.view.View;
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -070033import android.view.WindowManager;
Adrian Roosa85a2c62016-01-26 09:14:22 -080034import android.widget.FrameLayout;
35import android.widget.TextView;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036
Adrian Roosa85a2c62016-01-26 09:14:22 -080037import static com.android.server.am.ActivityManagerService.IS_USER_BUILD;
38
39final class AppNotRespondingDialog extends BaseErrorDialog implements View.OnClickListener {
Jacek Surazskif5b9c722009-05-18 12:09:59 +020040 private static final String TAG = "AppNotRespondingDialog";
41
42 // Event 'what' codes
43 static final int FORCE_CLOSE = 1;
44 static final int WAIT = 2;
45 static final int WAIT_AND_REPORT = 3;
46
Adrian Roos90462222016-02-17 15:45:09 -080047 public static final int CANT_SHOW = -1;
48 public static final int ALREADY_SHOWING = -2;
49
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080050 private final ActivityManagerService mService;
51 private final ProcessRecord mProc;
Adrian Roosa85a2c62016-01-26 09:14:22 -080052
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080053 public AppNotRespondingDialog(ActivityManagerService service, Context context,
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -070054 ProcessRecord app, ActivityRecord activity, boolean aboveSystem) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080055 super(context);
Adrian Roosa85a2c62016-01-26 09:14:22 -080056
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080057 mService = service;
58 mProc = app;
59 Resources res = context.getResources();
Adrian Roosa85a2c62016-01-26 09:14:22 -080060
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080061 setCancelable(false);
62
63 int resid;
64 CharSequence name1 = activity != null
65 ? activity.info.loadLabel(context.getPackageManager())
66 : null;
67 CharSequence name2 = null;
68 if ((app.pkgList.size() == 1) &&
69 (name2=context.getPackageManager().getApplicationLabel(app.info)) != null) {
70 if (name1 != null) {
71 resid = com.android.internal.R.string.anr_activity_application;
72 } else {
73 name1 = name2;
74 name2 = app.processName;
75 resid = com.android.internal.R.string.anr_application_process;
76 }
77 } else {
78 if (name1 != null) {
79 name2 = app.processName;
80 resid = com.android.internal.R.string.anr_activity_process;
81 } else {
82 name1 = app.processName;
83 resid = com.android.internal.R.string.anr_process;
84 }
85 }
86
Adrian Roosa85a2c62016-01-26 09:14:22 -080087 setTitle(name2 != null
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080088 ? res.getString(resid, name1.toString(), name2.toString())
89 : res.getString(resid, name1.toString()));
90
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -070091 if (aboveSystem) {
92 getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ERROR);
93 }
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -070094 WindowManager.LayoutParams attrs = getWindow().getAttributes();
95 attrs.setTitle("Application Not Responding: " + app.info.processName);
Adam Lesinski95c42972013-10-02 10:13:27 -070096 attrs.privateFlags = WindowManager.LayoutParams.PRIVATE_FLAG_SYSTEM_ERROR |
97 WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -070098 getWindow().setAttributes(attrs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080099 }
100
Adrian Roosa85a2c62016-01-26 09:14:22 -0800101 @Override
102 protected void onCreate(Bundle savedInstanceState) {
103 super.onCreate(savedInstanceState);
104 final FrameLayout frame = (FrameLayout) findViewById(android.R.id.custom);
105 final Context context = getContext();
106 LayoutInflater.from(context).inflate(
107 com.android.internal.R.layout.app_anr_dialog, frame, true);
108
109 final TextView report = (TextView) findViewById(com.android.internal.R.id.aerr_report);
110 report.setOnClickListener(this);
111 final boolean hasReceiver = mProc.errorReportReceiver != null;
112 report.setVisibility(hasReceiver ? View.VISIBLE : View.GONE);
113 final TextView close = (TextView) findViewById(com.android.internal.R.id.aerr_close);
114 close.setOnClickListener(this);
115 final TextView wait = (TextView) findViewById(com.android.internal.R.id.aerr_wait);
116 wait.setOnClickListener(this);
117
118 findViewById(com.android.internal.R.id.customPanel).setVisibility(View.VISIBLE);
119 }
120
121 @Override
122 public void onClick(View v) {
123 switch (v.getId()) {
124 case com.android.internal.R.id.aerr_report:
125 mHandler.obtainMessage(WAIT_AND_REPORT).sendToTarget();
126 break;
127 case com.android.internal.R.id.aerr_close:
128 mHandler.obtainMessage(FORCE_CLOSE).sendToTarget();
129 break;
130 case com.android.internal.R.id.aerr_wait:
131 mHandler.obtainMessage(WAIT).sendToTarget();
132 break;
133 default:
134 break;
135 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800136 }
137
138 private final Handler mHandler = new Handler() {
139 public void handleMessage(Message msg) {
Jacek Surazskif5b9c722009-05-18 12:09:59 +0200140 Intent appErrorIntent = null;
Adrian Roos90462222016-02-17 15:45:09 -0800141
142 MetricsLogger.action(getContext(), MetricsProto.MetricsEvent.ACTION_APP_ANR,
143 msg.what);
144
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800145 switch (msg.what) {
Jacek Surazskif5b9c722009-05-18 12:09:59 +0200146 case FORCE_CLOSE:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800147 // Kill the application.
Dan Egnor42471dd2010-01-07 17:25:22 -0800148 mService.killAppAtUsersRequest(mProc, AppNotRespondingDialog.this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800149 break;
Jacek Surazskif5b9c722009-05-18 12:09:59 +0200150 case WAIT_AND_REPORT:
151 case WAIT:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800152 // Continue waiting for the application.
153 synchronized (mService) {
154 ProcessRecord app = mProc;
Jacek Surazskif5b9c722009-05-18 12:09:59 +0200155
156 if (msg.what == WAIT_AND_REPORT) {
Adrian Roos20d7df32016-01-12 18:59:43 +0100157 appErrorIntent = mService.mAppErrors.createAppErrorIntentLocked(app,
Jacek Surazski41a9fd52010-01-27 16:37:21 -0800158 System.currentTimeMillis(), null);
Jacek Surazskif5b9c722009-05-18 12:09:59 +0200159 }
160
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800161 app.notResponding = false;
162 app.notRespondingReport = null;
163 if (app.anrDialog == AppNotRespondingDialog.this) {
164 app.anrDialog = null;
165 }
Dianne Hackborn2be00932013-09-22 16:46:00 -0700166 mService.mServices.scheduleServiceTimeoutLocked(app);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800167 }
168 break;
169 }
Jacek Surazskif5b9c722009-05-18 12:09:59 +0200170
171 if (appErrorIntent != null) {
172 try {
173 getContext().startActivity(appErrorIntent);
174 } catch (ActivityNotFoundException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800175 Slog.w(TAG, "bug report receiver dissappeared", e);
Jacek Surazskif5b9c722009-05-18 12:09:59 +0200176 }
177 }
Adrian Roosa85a2c62016-01-26 09:14:22 -0800178
179 dismiss();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800180 }
181 };
182}