blob: be290e9539601b41b86d841125be833169e4512d [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 Hackborn0c380492012-08-20 17:23:30 -070019import android.content.Context;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080020import android.content.Intent;
21import android.os.IBinder;
Dianne Hackbornc8230512013-07-13 21:32:12 -070022import android.util.ArrayMap;
Dianne Hackborn24c98e82014-09-14 17:23:54 -070023import android.util.ArraySet;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024
25import java.io.PrintWriter;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026
27/**
28 * A particular Intent that has been bound to a Service.
29 */
Dianne Hackbornbe4e6aa2013-06-07 13:25:29 -070030final class IntentBindRecord {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031 /** The running service. */
32 final ServiceRecord service;
33 /** The intent that is bound.*/
34 final Intent.FilterComparison intent; //
35 /** All apps that have bound to this Intent. */
Dianne Hackbornc8230512013-07-13 21:32:12 -070036 final ArrayMap<ProcessRecord, AppBindRecord> apps
37 = new ArrayMap<ProcessRecord, AppBindRecord>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080038 /** Binder published from service. */
39 IBinder binder;
40 /** Set when we have initiated a request for this binder. */
41 boolean requested;
42 /** Set when we have received the requested binder. */
43 boolean received;
44 /** Set when we still need to tell the service all clients are unbound. */
45 boolean hasBound;
46 /** Set when the service's onUnbind() has asked to be told about new clients. */
47 boolean doRebind;
48
Dianne Hackborn1d442e02009-04-20 18:14:05 -070049 String stringName; // caching of toString
50
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080051 void dump(PrintWriter pw, String prefix) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -070052 pw.print(prefix); pw.print("service="); pw.println(service);
53 dumpInService(pw, prefix);
54 }
55
56 void dumpInService(PrintWriter pw, String prefix) {
57 pw.print(prefix); pw.print("intent={");
Dianne Hackborn21c241e2012-03-08 13:57:23 -080058 pw.print(intent.getIntent().toShortString(false, true, false, false));
Dianne Hackborn1d442e02009-04-20 18:14:05 -070059 pw.println('}');
60 pw.print(prefix); pw.print("binder="); pw.println(binder);
61 pw.print(prefix); pw.print("requested="); pw.print(requested);
62 pw.print(" received="); pw.print(received);
63 pw.print(" hasBound="); pw.print(hasBound);
64 pw.print(" doRebind="); pw.println(doRebind);
Dianne Hackbornc8230512013-07-13 21:32:12 -070065 for (int i=0; i<apps.size(); i++) {
66 AppBindRecord a = apps.valueAt(i);
67 pw.print(prefix); pw.print("* Client AppBindRecord{");
68 pw.print(Integer.toHexString(System.identityHashCode(a)));
69 pw.print(' '); pw.print(a.client); pw.println('}');
70 a.dumpInIntentBind(pw, prefix + " ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080071 }
72 }
73
74 IntentBindRecord(ServiceRecord _service, Intent.FilterComparison _intent) {
75 service = _service;
76 intent = _intent;
77 }
78
Dianne Hackborn0c380492012-08-20 17:23:30 -070079 int collectFlags() {
80 int flags = 0;
Dianne Hackbornc8230512013-07-13 21:32:12 -070081 for (int i=apps.size()-1; i>=0; i--) {
Dianne Hackborn24c98e82014-09-14 17:23:54 -070082 final ArraySet<ConnectionRecord> connections = apps.valueAt(i).connections;
83 for (int j=connections.size()-1; j>=0; j--) {
84 flags |= connections.valueAt(j).flags;
Dianne Hackborn0c380492012-08-20 17:23:30 -070085 }
86 }
87 return flags;
88 }
89
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080090 public String toString() {
Dianne Hackborn1d442e02009-04-20 18:14:05 -070091 if (stringName != null) {
92 return stringName;
93 }
94 StringBuilder sb = new StringBuilder(128);
95 sb.append("IntentBindRecord{");
96 sb.append(Integer.toHexString(System.identityHashCode(this)));
97 sb.append(' ');
Dianne Hackborn0c380492012-08-20 17:23:30 -070098 if ((collectFlags()&Context.BIND_AUTO_CREATE) != 0) {
99 sb.append("CR ");
100 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700101 sb.append(service.shortName);
102 sb.append(':');
103 if (intent != null) {
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800104 intent.getIntent().toShortString(sb, false, false, false, false);
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700105 }
106 sb.append('}');
107 return stringName = sb.toString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800108 }
109}