blob: cb04835dce5319b201df879784e8a148b4dd9bd7 [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 Hackbornd2932242013-08-05 18:18:42 -070019import com.android.internal.app.ProcessStats;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080020import com.android.internal.os.BatteryStatsImpl;
Adam Lesinski182f73f2013-12-05 16:48:06 -080021import com.android.server.LocalServices;
22import com.android.server.notification.NotificationManagerInternal;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023
Dianne Hackbornd8a43f62009-08-17 23:33:56 -070024import android.app.INotificationManager;
25import android.app.Notification;
26import android.app.NotificationManager;
Dianne Hackborn390517b2013-05-30 15:03:32 -070027import android.app.PendingIntent;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028import android.content.ComponentName;
Dianne Hackborn0c380492012-08-20 17:23:30 -070029import android.content.Context;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030import android.content.Intent;
31import android.content.pm.ApplicationInfo;
Amith Yamasani742a6712011-05-04 14:49:28 -070032import android.content.pm.PackageManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033import android.content.pm.ServiceInfo;
Dianne Hackborn390517b2013-05-30 15:03:32 -070034import android.net.Uri;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035import android.os.Binder;
36import android.os.IBinder;
Dianne Hackbornd8a43f62009-08-17 23:33:56 -070037import android.os.RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080038import android.os.SystemClock;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070039import android.os.UserHandle;
Dianne Hackborn390517b2013-05-30 15:03:32 -070040import android.provider.Settings;
41import android.util.ArrayMap;
Joe Onorato8a9b2202010-02-26 18:56:32 -080042import android.util.Slog;
Dianne Hackborn1ebccf52010-08-15 13:04:34 -070043import android.util.TimeUtils;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044
45import java.io.PrintWriter;
46import java.util.ArrayList;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080047import java.util.List;
48
49/**
50 * A running application service.
51 */
Dianne Hackbornbe4e6aa2013-06-07 13:25:29 -070052final class ServiceRecord extends Binder {
Dianne Hackborn39792d22010-08-19 18:01:52 -070053 // Maximum number of delivery attempts before giving up.
54 static final int MAX_DELIVERY_COUNT = 3;
55
56 // Maximum number of times it can fail during execution before giving up.
57 static final int MAX_DONE_EXECUTING_COUNT = 6;
58
Dianne Hackbornb1c4a2a2010-01-19 15:36:42 -080059 final ActivityManagerService ams;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080060 final BatteryStatsImpl.Uid.Pkg.Serv stats;
61 final ComponentName name; // service component.
62 final String shortName; // name.flattenToShortString().
63 final Intent.FilterComparison intent;
64 // original intent used to find service.
65 final ServiceInfo serviceInfo;
66 // all information about the service.
67 final ApplicationInfo appInfo;
68 // information about service's app.
Amith Yamasani742a6712011-05-04 14:49:28 -070069 final int userId; // user that this service is running as
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080070 final String packageName; // the package implementing intent's component
71 final String processName; // process where this component wants to run
72 final String permission;// permission needed to access service
73 final String baseDir; // where activity source (resources etc) located
74 final String resDir; // where public activity source (public resources etc) located
75 final String dataDir; // where activity data should go
76 final boolean exported; // from ServiceInfo.exported
77 final Runnable restarter; // used to schedule retries of starting the service
78 final long createTime; // when this service was created
Dianne Hackborn390517b2013-05-30 15:03:32 -070079 final ArrayMap<Intent.FilterComparison, IntentBindRecord> bindings
80 = new ArrayMap<Intent.FilterComparison, IntentBindRecord>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080081 // All active bindings to the service.
Dianne Hackborn390517b2013-05-30 15:03:32 -070082 final ArrayMap<IBinder, ArrayList<ConnectionRecord>> connections
83 = new ArrayMap<IBinder, ArrayList<ConnectionRecord>>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080084 // IBinder -> ConnectionRecord of all bound clients
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080085
Dianne Hackbornd8a43f62009-08-17 23:33:56 -070086 ProcessRecord app; // where this service is running or null.
Dianne Hackborna0c283e2012-02-09 10:47:01 -080087 ProcessRecord isolatedProc; // keep track of isolated process, if requested
Dianne Hackbornd2932242013-08-05 18:18:42 -070088 ProcessStats.ServiceState tracker; // tracking service execution, may be null
Dianne Hackborndaa0d5c2013-11-06 16:30:29 -080089 ProcessStats.ServiceState restartTracker; // tracking service restart
Dianne Hackborn9210bc82013-09-05 12:31:16 -070090 boolean delayed; // are we waiting to start this service in the background?
Dianne Hackbornd8a43f62009-08-17 23:33:56 -070091 boolean isForeground; // is service currently in foreground mode?
92 int foregroundId; // Notification ID of last foreground req.
93 Notification foregroundNoti; // Notification record of foreground state.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080094 long lastActivity; // last time there was some activity on the service.
Dianne Hackborn9210bc82013-09-05 12:31:16 -070095 long startingBgTimeout; // time at which we scheduled this for a delayed start.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080096 boolean startRequested; // someone explicitly called start?
Dianne Hackborn9210bc82013-09-05 12:31:16 -070097 boolean delayedStop; // service has been stopped but is in a delayed start?
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -070098 boolean stopIfKilled; // last onStart() said to stop if service killed?
99 boolean callStart; // last onStart() has asked to alway be called on restart.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800100 int executeNesting; // number of outstanding operations keeping foreground.
Dianne Hackbornbf36ee22013-07-26 18:24:10 -0700101 boolean executeFg; // should we be executing in the foreground?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800102 long executingStart; // start time of last execute request.
Dianne Hackbornbf36ee22013-07-26 18:24:10 -0700103 boolean createdFromFg; // was this service last created due to a foreground process call?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800104 int crashCount; // number of times proc has crashed with service running
105 int totalRestartCount; // number of times we have had to restart.
106 int restartCount; // number of restarts performed in a row.
107 long restartDelay; // delay until next restart attempt.
108 long restartTime; // time of last restart.
109 long nextRestartTime; // time when restartDelay will expire.
110
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700111 String stringName; // caching of toString
112
Dianne Hackborn0c5001d2011-04-12 18:16:08 -0700113 private int lastStartId; // identifier of most recent start request.
114
Dianne Hackborn7e269642010-08-25 19:50:20 -0700115 static class StartItem {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700116 final ServiceRecord sr;
Dianne Hackborn0c5001d2011-04-12 18:16:08 -0700117 final boolean taskRemoved;
Dianne Hackborn39792d22010-08-19 18:01:52 -0700118 final int id;
119 final Intent intent;
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800120 final ActivityManagerService.NeededUriGrants neededGrants;
Dianne Hackborn39792d22010-08-19 18:01:52 -0700121 long deliveredTime;
122 int deliveryCount;
123 int doneExecutingCount;
Dianne Hackborn7e269642010-08-25 19:50:20 -0700124 UriPermissionOwner uriPermissions;
Dianne Hackborn39792d22010-08-19 18:01:52 -0700125
126 String stringName; // caching of toString
127
Dianne Hackborn0c5001d2011-04-12 18:16:08 -0700128 StartItem(ServiceRecord _sr, boolean _taskRemoved, int _id, Intent _intent,
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800129 ActivityManagerService.NeededUriGrants _neededGrants) {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700130 sr = _sr;
Dianne Hackborn0c5001d2011-04-12 18:16:08 -0700131 taskRemoved = _taskRemoved;
Dianne Hackborn39792d22010-08-19 18:01:52 -0700132 id = _id;
133 intent = _intent;
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800134 neededGrants = _neededGrants;
Dianne Hackborn39792d22010-08-19 18:01:52 -0700135 }
136
Dianne Hackborn7e269642010-08-25 19:50:20 -0700137 UriPermissionOwner getUriPermissionsLocked() {
138 if (uriPermissions == null) {
139 uriPermissions = new UriPermissionOwner(sr.ams, this);
140 }
141 return uriPermissions;
142 }
143
Dianne Hackborn39792d22010-08-19 18:01:52 -0700144 void removeUriPermissionsLocked() {
Dianne Hackborn7e269642010-08-25 19:50:20 -0700145 if (uriPermissions != null) {
146 uriPermissions.removeUriPermissionsLocked();
147 uriPermissions = null;
Dianne Hackborn39792d22010-08-19 18:01:52 -0700148 }
149 }
150
151 public String toString() {
152 if (stringName != null) {
153 return stringName;
154 }
155 StringBuilder sb = new StringBuilder(128);
156 sb.append("ServiceRecord{")
157 .append(Integer.toHexString(System.identityHashCode(sr)))
158 .append(' ').append(sr.shortName)
159 .append(" StartItem ")
160 .append(Integer.toHexString(System.identityHashCode(this)))
161 .append(" id=").append(id).append('}');
162 return stringName = sb.toString();
163 }
164 }
165
166 final ArrayList<StartItem> deliveredStarts = new ArrayList<StartItem>();
167 // start() arguments which been delivered.
168 final ArrayList<StartItem> pendingStarts = new ArrayList<StartItem>();
169 // start() arguments that haven't yet been delivered.
170
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -0700171 void dumpStartList(PrintWriter pw, String prefix, List<StartItem> list, long now) {
172 final int N = list.size();
173 for (int i=0; i<N; i++) {
174 StartItem si = list.get(i);
175 pw.print(prefix); pw.print("#"); pw.print(i);
176 pw.print(" id="); pw.print(si.id);
Dianne Hackborn1ebccf52010-08-15 13:04:34 -0700177 if (now != 0) {
178 pw.print(" dur=");
179 TimeUtils.formatDuration(si.deliveredTime, now, pw);
180 }
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -0700181 if (si.deliveryCount != 0) {
182 pw.print(" dc="); pw.print(si.deliveryCount);
183 }
184 if (si.doneExecutingCount != 0) {
185 pw.print(" dxc="); pw.print(si.doneExecutingCount);
186 }
Dianne Hackborn39792d22010-08-19 18:01:52 -0700187 pw.println("");
188 pw.print(prefix); pw.print(" intent=");
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -0700189 if (si.intent != null) pw.println(si.intent.toString());
190 else pw.println("null");
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800191 if (si.neededGrants != null) {
192 pw.print(prefix); pw.print(" neededGrants=");
193 pw.println(si.neededGrants);
Dianne Hackborn39792d22010-08-19 18:01:52 -0700194 }
Dianne Hackborn7e269642010-08-25 19:50:20 -0700195 if (si.uriPermissions != null) {
196 if (si.uriPermissions.readUriPermissions != null) {
197 pw.print(prefix); pw.print(" readUriPermissions=");
198 pw.println(si.uriPermissions.readUriPermissions);
199 }
200 if (si.uriPermissions.writeUriPermissions != null) {
201 pw.print(prefix); pw.print(" writeUriPermissions=");
202 pw.println(si.uriPermissions.writeUriPermissions);
203 }
Dianne Hackborn39792d22010-08-19 18:01:52 -0700204 }
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -0700205 }
206 }
207
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800208 void dump(PrintWriter pw, String prefix) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700209 pw.print(prefix); pw.print("intent={");
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800210 pw.print(intent.getIntent().toShortString(false, true, false, true));
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700211 pw.println('}');
212 pw.print(prefix); pw.print("packageName="); pw.println(packageName);
213 pw.print(prefix); pw.print("processName="); pw.println(processName);
214 if (permission != null) {
215 pw.print(prefix); pw.print("permission="); pw.println(permission);
216 }
Dianne Hackbornfd12af42009-08-27 00:44:33 -0700217 long now = SystemClock.uptimeMillis();
Dianne Hackborn1ebccf52010-08-15 13:04:34 -0700218 long nowReal = SystemClock.elapsedRealtime();
219 pw.print(prefix); pw.print("baseDir="); pw.println(baseDir);
Marco Nelissena301fe62011-05-04 08:44:59 -0700220 if (!resDir.equals(baseDir)) {
221 pw.print(prefix); pw.print("resDir="); pw.println(resDir);
222 }
Dianne Hackborn1ebccf52010-08-15 13:04:34 -0700223 pw.print(prefix); pw.print("dataDir="); pw.println(dataDir);
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700224 pw.print(prefix); pw.print("app="); pw.println(app);
Dianne Hackborna0c283e2012-02-09 10:47:01 -0800225 if (isolatedProc != null) {
226 pw.print(prefix); pw.print("isolatedProc="); pw.println(isolatedProc);
227 }
Dianne Hackborn9210bc82013-09-05 12:31:16 -0700228 if (delayed) {
229 pw.print(prefix); pw.print("delayed="); pw.println(delayed);
230 }
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700231 if (isForeground || foregroundId != 0) {
232 pw.print(prefix); pw.print("isForeground="); pw.print(isForeground);
233 pw.print(" foregroundId="); pw.print(foregroundId);
234 pw.print(" foregroundNoti="); pw.println(foregroundNoti);
235 }
Dianne Hackborn9adb9c32010-08-13 14:09:56 -0700236 pw.print(prefix); pw.print("createTime=");
Dianne Hackborn1ebccf52010-08-15 13:04:34 -0700237 TimeUtils.formatDuration(createTime, nowReal, pw);
Dianne Hackborn9210bc82013-09-05 12:31:16 -0700238 pw.print(" startingBgTimeout=");
239 TimeUtils.formatDuration(startingBgTimeout, now, pw);
Dianne Hackbornbf36ee22013-07-26 18:24:10 -0700240 pw.println();
Dianne Hackborn9210bc82013-09-05 12:31:16 -0700241 pw.print(prefix); pw.print("lastActivity=");
242 TimeUtils.formatDuration(lastActivity, now, pw);
243 pw.print(" restartTime=");
Dianne Hackborn1ebccf52010-08-15 13:04:34 -0700244 TimeUtils.formatDuration(restartTime, now, pw);
Dianne Hackbornbf36ee22013-07-26 18:24:10 -0700245 pw.print(" createdFromFg="); pw.println(createdFromFg);
Dianne Hackborn9210bc82013-09-05 12:31:16 -0700246 if (startRequested || delayedStop || lastStartId != 0) {
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700247 pw.print(prefix); pw.print("startRequested="); pw.print(startRequested);
Dianne Hackborn9210bc82013-09-05 12:31:16 -0700248 pw.print(" delayedStop="); pw.print(delayedStop);
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -0700249 pw.print(" stopIfKilled="); pw.print(stopIfKilled);
250 pw.print(" callStart="); pw.print(callStart);
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700251 pw.print(" lastStartId="); pw.println(lastStartId);
252 }
Dianne Hackbornbf36ee22013-07-26 18:24:10 -0700253 if (executeNesting != 0) {
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700254 pw.print(prefix); pw.print("executeNesting="); pw.print(executeNesting);
Dianne Hackbornbf36ee22013-07-26 18:24:10 -0700255 pw.print(" executeFg="); pw.print(executeFg);
256 pw.print(" executingStart=");
257 TimeUtils.formatDuration(executingStart, now, pw);
Dianne Hackborn2be00932013-09-22 16:46:00 -0700258 pw.println();
Dianne Hackbornbf36ee22013-07-26 18:24:10 -0700259 }
260 if (crashCount != 0 || restartCount != 0
261 || restartDelay != 0 || nextRestartTime != 0) {
262 pw.print(prefix); pw.print("restartCount="); pw.print(restartCount);
Dianne Hackborn1ebccf52010-08-15 13:04:34 -0700263 pw.print(" restartDelay=");
264 TimeUtils.formatDuration(restartDelay, now, pw);
265 pw.print(" nextRestartTime=");
266 TimeUtils.formatDuration(nextRestartTime, now, pw);
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700267 pw.print(" crashCount="); pw.println(crashCount);
268 }
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -0700269 if (deliveredStarts.size() > 0) {
270 pw.print(prefix); pw.println("Delivered Starts:");
Dianne Hackborn1ebccf52010-08-15 13:04:34 -0700271 dumpStartList(pw, prefix, deliveredStarts, now);
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -0700272 }
273 if (pendingStarts.size() > 0) {
274 pw.print(prefix); pw.println("Pending Starts:");
275 dumpStartList(pw, prefix, pendingStarts, 0);
276 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800277 if (bindings.size() > 0) {
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -0700278 pw.print(prefix); pw.println("Bindings:");
Dianne Hackborn390517b2013-05-30 15:03:32 -0700279 for (int i=0; i<bindings.size(); i++) {
280 IntentBindRecord b = bindings.valueAt(i);
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700281 pw.print(prefix); pw.print("* IntentBindRecord{");
282 pw.print(Integer.toHexString(System.identityHashCode(b)));
Dianne Hackborn0c380492012-08-20 17:23:30 -0700283 if ((b.collectFlags()&Context.BIND_AUTO_CREATE) != 0) {
284 pw.append(" CREATE");
285 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700286 pw.println("}:");
287 b.dumpInService(pw, prefix + " ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800288 }
289 }
290 if (connections.size() > 0) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700291 pw.print(prefix); pw.println("All Connections:");
Dianne Hackborn390517b2013-05-30 15:03:32 -0700292 for (int conni=0; conni<connections.size(); conni++) {
293 ArrayList<ConnectionRecord> c = connections.valueAt(conni);
Dianne Hackborn43d9ac82010-08-25 15:06:25 -0700294 for (int i=0; i<c.size(); i++) {
295 pw.print(prefix); pw.print(" "); pw.println(c.get(i));
296 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800297 }
298 }
299 }
300
Dianne Hackbornb1c4a2a2010-01-19 15:36:42 -0800301 ServiceRecord(ActivityManagerService ams,
302 BatteryStatsImpl.Uid.Pkg.Serv servStats, ComponentName name,
Dianne Hackbornbf36ee22013-07-26 18:24:10 -0700303 Intent.FilterComparison intent, ServiceInfo sInfo, boolean callerIsFg,
304 Runnable restarter) {
Dianne Hackbornb1c4a2a2010-01-19 15:36:42 -0800305 this.ams = ams;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800306 this.stats = servStats;
307 this.name = name;
308 shortName = name.flattenToShortString();
309 this.intent = intent;
310 serviceInfo = sInfo;
311 appInfo = sInfo.applicationInfo;
312 packageName = sInfo.applicationInfo.packageName;
313 processName = sInfo.processName;
314 permission = sInfo.permission;
315 baseDir = sInfo.applicationInfo.sourceDir;
316 resDir = sInfo.applicationInfo.publicSourceDir;
317 dataDir = sInfo.applicationInfo.dataDir;
318 exported = sInfo.exported;
319 this.restarter = restarter;
Dianne Hackborn9adb9c32010-08-13 14:09:56 -0700320 createTime = SystemClock.elapsedRealtime();
321 lastActivity = SystemClock.uptimeMillis();
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700322 userId = UserHandle.getUserId(appInfo.uid);
Dianne Hackbornbf36ee22013-07-26 18:24:10 -0700323 createdFromFg = callerIsFg;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800324 }
325
Dianne Hackbornd2932242013-08-05 18:18:42 -0700326 public ProcessStats.ServiceState getTracker() {
Dianne Hackbornbd754f42013-07-23 15:52:36 -0700327 if (tracker != null) {
328 return tracker;
329 }
330 if ((serviceInfo.applicationInfo.flags&ApplicationInfo.FLAG_PERSISTENT) == 0) {
Dianne Hackbornd2932242013-08-05 18:18:42 -0700331 tracker = ams.mProcessStats.getServiceStateLocked(serviceInfo.packageName,
Dianne Hackborn8eea0fc2013-08-02 13:40:55 -0700332 serviceInfo.applicationInfo.uid, serviceInfo.processName, serviceInfo.name);
Dianne Hackborn164371f2013-10-01 19:10:13 -0700333 tracker.applyNewOwner(this);
Dianne Hackbornbd754f42013-07-23 15:52:36 -0700334 }
335 return tracker;
336 }
337
Dianne Hackborn164371f2013-10-01 19:10:13 -0700338 public void forceClearTracker() {
339 if (tracker != null) {
Dianne Hackborn878deb32013-10-14 16:55:09 -0700340 tracker.clearCurrentOwner(this, true);
Dianne Hackborn164371f2013-10-01 19:10:13 -0700341 tracker = null;
342 }
343 }
344
Dianne Hackborndaa0d5c2013-11-06 16:30:29 -0800345 public void makeRestarting(int memFactor, long now) {
346 if (restartTracker == null) {
347 if ((serviceInfo.applicationInfo.flags&ApplicationInfo.FLAG_PERSISTENT) == 0) {
348 restartTracker = ams.mProcessStats.getServiceStateLocked(serviceInfo.packageName,
349 serviceInfo.applicationInfo.uid, serviceInfo.processName, serviceInfo.name);
350 }
351 if (restartTracker == null) {
352 return;
353 }
354 }
355 restartTracker.setRestarting(true, memFactor, now);
356 }
357
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800358 public AppBindRecord retrieveAppBindingLocked(Intent intent,
359 ProcessRecord app) {
360 Intent.FilterComparison filter = new Intent.FilterComparison(intent);
361 IntentBindRecord i = bindings.get(filter);
362 if (i == null) {
363 i = new IntentBindRecord(this, filter);
364 bindings.put(filter, i);
365 }
366 AppBindRecord a = i.apps.get(app);
367 if (a != null) {
368 return a;
369 }
370 a = new AppBindRecord(this, i, app);
371 i.apps.put(app, a);
372 return a;
373 }
374
Dianne Hackborn91268cf2013-06-13 19:06:50 -0700375 public boolean hasAutoCreateConnections() {
376 // XXX should probably keep a count of the number of auto-create
377 // connections directly in the service.
378 for (int conni=connections.size()-1; conni>=0; conni--) {
379 ArrayList<ConnectionRecord> cr = connections.valueAt(conni);
380 for (int i=0; i<cr.size(); i++) {
381 if ((cr.get(i).flags&Context.BIND_AUTO_CREATE) != 0) {
382 return true;
383 }
384 }
385 }
386 return false;
387 }
388
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800389 public void resetRestartCounter() {
390 restartCount = 0;
391 restartDelay = 0;
392 restartTime = 0;
393 }
394
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -0700395 public StartItem findDeliveredStart(int id, boolean remove) {
396 final int N = deliveredStarts.size();
397 for (int i=0; i<N; i++) {
398 StartItem si = deliveredStarts.get(i);
399 if (si.id == id) {
400 if (remove) deliveredStarts.remove(i);
401 return si;
402 }
403 }
404
405 return null;
406 }
407
Dianne Hackborn0c5001d2011-04-12 18:16:08 -0700408 public int getLastStartId() {
409 return lastStartId;
410 }
411
412 public int makeNextStartId() {
413 lastStartId++;
414 if (lastStartId < 1) {
415 lastStartId = 1;
416 }
417 return lastStartId;
418 }
419
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700420 public void postNotification() {
Daniel Sandlerd0a2f862010-08-03 15:29:31 -0400421 final int appUid = appInfo.uid;
422 final int appPid = app.pid;
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700423 if (foregroundId != 0 && foregroundNoti != null) {
Dianne Hackbornb1c4a2a2010-01-19 15:36:42 -0800424 // Do asynchronous communication with notification manager to
425 // avoid deadlocks.
426 final String localPackageName = packageName;
427 final int localForegroundId = foregroundId;
428 final Notification localForegroundNoti = foregroundNoti;
429 ams.mHandler.post(new Runnable() {
430 public void run() {
Adam Lesinski182f73f2013-12-05 16:48:06 -0800431 NotificationManagerInternal nm = LocalServices.getService(
432 NotificationManagerInternal.class);
Daniel Sandlerd0a2f862010-08-03 15:29:31 -0400433 if (nm == null) {
Dianne Hackbornb1c4a2a2010-01-19 15:36:42 -0800434 return;
435 }
436 try {
Dianne Hackbornca92a4c2013-05-03 12:07:51 -0700437 if (localForegroundNoti.icon == 0) {
Dianne Hackborn2ced96c2013-03-21 14:23:46 -0700438 // It is not correct for the caller to supply a notification
439 // icon, but this used to be able to slip through, so for
440 // those dirty apps give it the app's icon.
Dianne Hackbornca92a4c2013-05-03 12:07:51 -0700441 localForegroundNoti.icon = appInfo.icon;
Daniel Sandler91fe8452013-04-08 12:23:27 -0400442
443 // Do not allow apps to present a sneaky invisible content view either.
Dianne Hackbornca92a4c2013-05-03 12:07:51 -0700444 localForegroundNoti.contentView = null;
445 localForegroundNoti.bigContentView = null;
Daniel Sandler91fe8452013-04-08 12:23:27 -0400446 CharSequence appName = appInfo.loadLabel(
447 ams.mContext.getPackageManager());
448 if (appName == null) {
449 appName = appInfo.packageName;
450 }
451 Context ctx = null;
452 try {
453 ctx = ams.mContext.createPackageContext(
454 appInfo.packageName, 0);
455 Intent runningIntent = new Intent(
456 Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
457 runningIntent.setData(Uri.fromParts("package",
458 appInfo.packageName, null));
459 PendingIntent pi = PendingIntent.getActivity(ams.mContext, 0,
460 runningIntent, PendingIntent.FLAG_UPDATE_CURRENT);
Dianne Hackbornca92a4c2013-05-03 12:07:51 -0700461 localForegroundNoti.setLatestEventInfo(ctx,
Daniel Sandler91fe8452013-04-08 12:23:27 -0400462 ams.mContext.getString(
463 com.android.internal.R.string
464 .app_running_notification_title,
465 appName),
466 ams.mContext.getString(
467 com.android.internal.R.string
468 .app_running_notification_text,
469 appName),
470 pi);
471 } catch (PackageManager.NameNotFoundException e) {
Dianne Hackbornca92a4c2013-05-03 12:07:51 -0700472 localForegroundNoti.icon = 0;
Dianne Hackborn2ced96c2013-03-21 14:23:46 -0700473 }
474 }
Dianne Hackbornca92a4c2013-05-03 12:07:51 -0700475 if (localForegroundNoti.icon == 0) {
Dianne Hackborn282add72013-03-15 18:48:04 -0700476 // Notifications whose icon is 0 are defined to not show
477 // a notification, silently ignoring it. We don't want to
478 // just ignore it, we want to prevent the service from
479 // being foreground.
480 throw new RuntimeException("icon must be non-zero");
481 }
Dianne Hackbornb1c4a2a2010-01-19 15:36:42 -0800482 int[] outId = new int[1];
Adam Lesinski182f73f2013-12-05 16:48:06 -0800483 nm.enqueueNotification(localPackageName, localPackageName,
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800484 appUid, appPid, null, localForegroundId, localForegroundNoti,
485 outId, userId);
Joe Onorato34fcf972010-02-18 07:45:17 -0500486 } catch (RuntimeException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800487 Slog.w(ActivityManagerService.TAG,
Dianne Hackborn9e0f5d92010-02-22 15:05:42 -0800488 "Error showing notification for service", e);
489 // If it gave us a garbage notification, it doesn't
490 // get to be foreground.
491 ams.setServiceForeground(name, ServiceRecord.this,
Joe Onoratoeaa07182010-09-23 16:49:20 -0700492 0, null, true);
493 ams.crashApplication(appUid, appPid, localPackageName,
494 "Bad notification for startForeground: " + e);
Dianne Hackbornb1c4a2a2010-01-19 15:36:42 -0800495 }
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700496 }
Dianne Hackbornb1c4a2a2010-01-19 15:36:42 -0800497 });
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700498 }
499 }
500
501 public void cancelNotification() {
502 if (foregroundId != 0) {
Dianne Hackbornb1c4a2a2010-01-19 15:36:42 -0800503 // Do asynchronous communication with notification manager to
504 // avoid deadlocks.
505 final String localPackageName = packageName;
506 final int localForegroundId = foregroundId;
507 ams.mHandler.post(new Runnable() {
508 public void run() {
509 INotificationManager inm = NotificationManager.getService();
510 if (inm == null) {
511 return;
512 }
513 try {
Dianne Hackborn41203752012-08-31 14:05:51 -0700514 inm.cancelNotificationWithTag(localPackageName, null,
515 localForegroundId, userId);
Joe Onorato34fcf972010-02-18 07:45:17 -0500516 } catch (RuntimeException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800517 Slog.w(ActivityManagerService.TAG,
Dianne Hackborn9e0f5d92010-02-22 15:05:42 -0800518 "Error canceling notification for service", e);
Dianne Hackbornb1c4a2a2010-01-19 15:36:42 -0800519 } catch (RemoteException e) {
520 }
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700521 }
Dianne Hackbornb1c4a2a2010-01-19 15:36:42 -0800522 });
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700523 }
524 }
525
Dianne Hackborn39792d22010-08-19 18:01:52 -0700526 public void clearDeliveredStartsLocked() {
527 for (int i=deliveredStarts.size()-1; i>=0; i--) {
528 deliveredStarts.get(i).removeUriPermissionsLocked();
529 }
530 deliveredStarts.clear();
531 }
532
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800533 public String toString() {
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700534 if (stringName != null) {
535 return stringName;
536 }
537 StringBuilder sb = new StringBuilder(128);
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700538 sb.append("ServiceRecord{")
539 .append(Integer.toHexString(System.identityHashCode(this)))
Dianne Hackbornb12e1352012-09-26 11:39:20 -0700540 .append(" u").append(userId)
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700541 .append(' ').append(shortName).append('}');
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700542 return stringName = sb.toString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800543 }
544}