blob: 9a4d7a0fb8937b2e86faf92583927e959bcca8b5 [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
Dianne Hackbornf51f6122013-02-04 18:23:34 -080019import android.app.AppOpsManager;
Suchi Amalapurapu1ccac752009-06-12 10:09:58 -070020import android.content.IIntentReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080021import android.content.ComponentName;
22import android.content.Intent;
23import android.content.pm.ActivityInfo;
24import android.content.pm.ResolveInfo;
25import android.os.Binder;
26import android.os.Bundle;
27import android.os.IBinder;
28import android.os.SystemClock;
29import android.util.PrintWriterPrinter;
Dianne Hackborn39792d22010-08-19 18:01:52 -070030import android.util.TimeUtils;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031
32import java.io.PrintWriter;
Dianne Hackbornd99b2932011-08-18 14:39:58 -070033import java.util.Date;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080034import java.util.List;
35
36/**
37 * An active intent broadcast.
38 */
Dianne Hackbornbe4e6aa2013-06-07 13:25:29 -070039final class BroadcastRecord extends Binder {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040 final Intent intent; // the original intent that generated us
Dianne Hackborna40cfeb2013-03-25 17:49:36 -070041 final ComponentName targetComp; // original component name set on the intent
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042 final ProcessRecord callerApp; // process that sent this
43 final String callerPackage; // who sent this
44 final int callingPid; // the pid of who sent this
45 final int callingUid; // the uid of who sent this
Dianne Hackborn68d881c2009-10-05 13:58:17 -070046 final boolean ordered; // serialize the send to receivers?
47 final boolean sticky; // originated from existing sticky data?
Dianne Hackborn12527f92009-11-11 17:39:50 -080048 final boolean initialSticky; // initial broadcast from register to sticky?
Dianne Hackborn786b4402012-08-27 15:14:02 -070049 final int userId; // user id this broadcast was for
Ben Gruver49660c72013-08-06 19:54:08 -070050 final String resolvedType; // the resolved data type
Dianne Hackborn68d881c2009-10-05 13:58:17 -070051 final String requiredPermission; // a permission the caller has required
Dianne Hackbornf51f6122013-02-04 18:23:34 -080052 final int appOp; // an app op that is associated with this broadcast
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080053 final List receivers; // contains BroadcastFilter and ResolveInfo
Johannes Carlssonb5a86542010-10-27 10:08:10 +020054 IIntentReceiver resultTo; // who receives final result if non-null
Jeff Brown9fb3fd12014-09-29 15:32:12 -070055 long enqueueClockTime; // the clock time the broadcast was enqueued
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080056 long dispatchTime; // when dispatch started on this set of receivers
Dianne Hackbornd99b2932011-08-18 14:39:58 -070057 long dispatchClockTime; // the clock time the dispatch started
Dianne Hackborn12527f92009-11-11 17:39:50 -080058 long receiverTime; // when current receiver started for timeouts.
59 long finishTime; // when we finished the broadcast.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080060 int resultCode; // current result code value.
61 String resultData; // current result data value.
62 Bundle resultExtras; // current result extra data values.
63 boolean resultAbort; // current result abortBroadcast value.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080064 int nextReceiver; // next receiver to be executed.
65 IBinder receiver; // who is currently running, null if none.
66 int state;
67 int anrCount; // has this broadcast record hit any ANRs?
Dianne Hackborn40c8db52012-02-10 18:59:48 -080068 BroadcastQueue queue; // the outbound queue handling this broadcast
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080069
70 static final int IDLE = 0;
71 static final int APP_RECEIVE = 1;
72 static final int CALL_IN_RECEIVE = 2;
73 static final int CALL_DONE_RECEIVE = 3;
Dianne Hackborn6285a322013-09-18 12:09:47 -070074 static final int WAITING_SERVICES = 4;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080075
76 // The following are set when we are calling a receiver (one that
77 // was found in our list of registered receivers).
78 BroadcastFilter curFilter;
79
80 // The following are set only when we are launching a receiver (one
81 // that was found by querying the package manager).
82 ProcessRecord curApp; // hosting application of current receiver.
83 ComponentName curComponent; // the receiver class that is currently running.
84 ActivityInfo curReceiver; // info about the receiver that is currently running.
85
86 void dump(PrintWriter pw, String prefix) {
Dianne Hackborn39792d22010-08-19 18:01:52 -070087 final long now = SystemClock.uptimeMillis();
88
Dianne Hackborn786b4402012-08-27 15:14:02 -070089 pw.print(prefix); pw.print(this); pw.print(" to user "); pw.println(userId);
Dianne Hackbornc0bd7472012-10-09 14:00:30 -070090 pw.print(prefix); pw.println(intent.toInsecureString());
Dianne Hackborna40cfeb2013-03-25 17:49:36 -070091 if (targetComp != null && targetComp != intent.getComponent()) {
92 pw.print(prefix); pw.print(" targetComp: "); pw.println(targetComp.toShortString());
93 }
Dianne Hackbornc0bd7472012-10-09 14:00:30 -070094 Bundle bundle = intent.getExtras();
95 if (bundle != null) {
Dianne Hackborna40cfeb2013-03-25 17:49:36 -070096 pw.print(prefix); pw.print(" extras: "); pw.println(bundle.toString());
Dianne Hackborn12527f92009-11-11 17:39:50 -080097 }
Dianne Hackborn043fcd92010-10-06 14:27:34 -070098 pw.print(prefix); pw.print("caller="); pw.print(callerPackage); pw.print(" ");
99 pw.print(callerApp != null ? callerApp.toShortString() : "null");
Dianne Hackborn39792d22010-08-19 18:01:52 -0700100 pw.print(" pid="); pw.print(callingPid);
101 pw.print(" uid="); pw.println(callingUid);
Dianne Hackbornf51f6122013-02-04 18:23:34 -0800102 if (requiredPermission != null || appOp != AppOpsManager.OP_NONE) {
103 pw.print(prefix); pw.print("requiredPermission="); pw.print(requiredPermission);
104 pw.print(" appOp="); pw.println(appOp);
Dianne Hackborn12527f92009-11-11 17:39:50 -0800105 }
Jeff Brown9fb3fd12014-09-29 15:32:12 -0700106 pw.print(prefix); pw.print("enqueueClockTime=");
107 pw.print(new Date(enqueueClockTime));
108 pw.print(" dispatchClockTime=");
Dianne Hackbornd99b2932011-08-18 14:39:58 -0700109 pw.println(new Date(dispatchClockTime));
Dianne Hackborn39792d22010-08-19 18:01:52 -0700110 pw.print(prefix); pw.print("dispatchTime=");
111 TimeUtils.formatDuration(dispatchTime, now, pw);
Dianne Hackborn12527f92009-11-11 17:39:50 -0800112 if (finishTime != 0) {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700113 pw.print(" finishTime="); TimeUtils.formatDuration(finishTime, now, pw);
Dianne Hackborn12527f92009-11-11 17:39:50 -0800114 } else {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700115 pw.print(" receiverTime="); TimeUtils.formatDuration(receiverTime, now, pw);
Dianne Hackborn12527f92009-11-11 17:39:50 -0800116 }
Dianne Hackborn39792d22010-08-19 18:01:52 -0700117 pw.println("");
Dianne Hackborn12527f92009-11-11 17:39:50 -0800118 if (anrCount != 0) {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700119 pw.print(prefix); pw.print("anrCount="); pw.println(anrCount);
Dianne Hackborn12527f92009-11-11 17:39:50 -0800120 }
121 if (resultTo != null || resultCode != -1 || resultData != null) {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700122 pw.print(prefix); pw.print("resultTo="); pw.print(resultTo);
123 pw.print(" resultCode="); pw.print(resultCode);
124 pw.print(" resultData="); pw.println(resultData);
Dianne Hackborn12527f92009-11-11 17:39:50 -0800125 }
126 if (resultExtras != null) {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700127 pw.print(prefix); pw.print("resultExtras="); pw.println(resultExtras);
Dianne Hackborn12527f92009-11-11 17:39:50 -0800128 }
129 if (resultAbort || ordered || sticky || initialSticky) {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700130 pw.print(prefix); pw.print("resultAbort="); pw.print(resultAbort);
131 pw.print(" ordered="); pw.print(ordered);
132 pw.print(" sticky="); pw.print(sticky);
133 pw.print(" initialSticky="); pw.println(initialSticky);
Dianne Hackborn12527f92009-11-11 17:39:50 -0800134 }
135 if (nextReceiver != 0 || receiver != null) {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700136 pw.print(prefix); pw.print("nextReceiver="); pw.print(nextReceiver);
137 pw.print(" receiver="); pw.println(receiver);
Dianne Hackborn12527f92009-11-11 17:39:50 -0800138 }
139 if (curFilter != null) {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700140 pw.print(prefix); pw.print("curFilter="); pw.println(curFilter);
Dianne Hackborn12527f92009-11-11 17:39:50 -0800141 }
142 if (curReceiver != null) {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700143 pw.print(prefix); pw.print("curReceiver="); pw.println(curReceiver);
Dianne Hackborn12527f92009-11-11 17:39:50 -0800144 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800145 if (curApp != null) {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700146 pw.print(prefix); pw.print("curApp="); pw.println(curApp);
147 pw.print(prefix); pw.print("curComponent=");
148 pw.println((curComponent != null ? curComponent.toShortString() : "--"));
Dianne Hackborn399cccb2010-04-13 22:57:49 -0700149 if (curReceiver != null && curReceiver.applicationInfo != null) {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700150 pw.print(prefix); pw.print("curSourceDir=");
151 pw.println(curReceiver.applicationInfo.sourceDir);
Dianne Hackborn399cccb2010-04-13 22:57:49 -0700152 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800153 }
Dianne Hackborn786b4402012-08-27 15:14:02 -0700154 if (state != IDLE) {
155 String stateStr = " (?)";
156 switch (state) {
157 case APP_RECEIVE: stateStr=" (APP_RECEIVE)"; break;
158 case CALL_IN_RECEIVE: stateStr=" (CALL_IN_RECEIVE)"; break;
159 case CALL_DONE_RECEIVE: stateStr=" (CALL_DONE_RECEIVE)"; break;
Dianne Hackborn6285a322013-09-18 12:09:47 -0700160 case WAITING_SERVICES: stateStr=" (WAITING_SERVICES)"; break;
Dianne Hackborn786b4402012-08-27 15:14:02 -0700161 }
162 pw.print(prefix); pw.print("state="); pw.print(state); pw.println(stateStr);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800163 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800164 final int N = receivers != null ? receivers.size() : 0;
165 String p2 = prefix + " ";
166 PrintWriterPrinter printer = new PrintWriterPrinter(pw);
167 for (int i=0; i<N; i++) {
168 Object o = receivers.get(i);
Dianne Hackborn39792d22010-08-19 18:01:52 -0700169 pw.print(prefix); pw.print("Receiver #"); pw.print(i);
170 pw.print(": "); pw.println(o);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800171 if (o instanceof BroadcastFilter)
Dianne Hackborn12527f92009-11-11 17:39:50 -0800172 ((BroadcastFilter)o).dumpBrief(pw, p2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800173 else if (o instanceof ResolveInfo)
174 ((ResolveInfo)o).dump(printer, p2);
175 }
176 }
177
Dianne Hackborn40c8db52012-02-10 18:59:48 -0800178 BroadcastRecord(BroadcastQueue _queue,
Christopher Tatef46723b2012-01-26 14:19:24 -0800179 Intent _intent, ProcessRecord _callerApp, String _callerPackage,
Ben Gruver49660c72013-08-06 19:54:08 -0700180 int _callingPid, int _callingUid, String _resolvedType, String _requiredPermission,
181 int _appOp, List _receivers, IIntentReceiver _resultTo, int _resultCode,
Dianne Hackborn68d881c2009-10-05 13:58:17 -0700182 String _resultData, Bundle _resultExtras, boolean _serialized,
Amith Yamasani8bf06ed2012-08-27 19:30:30 -0700183 boolean _sticky, boolean _initialSticky,
Dianne Hackborn786b4402012-08-27 15:14:02 -0700184 int _userId) {
Christopher Tatef46723b2012-01-26 14:19:24 -0800185 queue = _queue;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800186 intent = _intent;
Dianne Hackborna40cfeb2013-03-25 17:49:36 -0700187 targetComp = _intent.getComponent();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800188 callerApp = _callerApp;
189 callerPackage = _callerPackage;
190 callingPid = _callingPid;
191 callingUid = _callingUid;
Ben Gruver49660c72013-08-06 19:54:08 -0700192 resolvedType = _resolvedType;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800193 requiredPermission = _requiredPermission;
Dianne Hackbornf51f6122013-02-04 18:23:34 -0800194 appOp = _appOp;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800195 receivers = _receivers;
196 resultTo = _resultTo;
197 resultCode = _resultCode;
198 resultData = _resultData;
199 resultExtras = _resultExtras;
200 ordered = _serialized;
Dianne Hackborn68d881c2009-10-05 13:58:17 -0700201 sticky = _sticky;
Dianne Hackborn12527f92009-11-11 17:39:50 -0800202 initialSticky = _initialSticky;
Dianne Hackborn786b4402012-08-27 15:14:02 -0700203 userId = _userId;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800204 nextReceiver = 0;
205 state = IDLE;
206 }
207
208 public String toString() {
209 return "BroadcastRecord{"
210 + Integer.toHexString(System.identityHashCode(this))
Dianne Hackbornb12e1352012-09-26 11:39:20 -0700211 + " u" + userId + " " + intent.getAction() + "}";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800212 }
213}