blob: 4eaebd04a8ad7f52e81dc5641f6053c953f957cc [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 Hackborn24c98e82014-09-14 17:23:54 -070019import android.util.ArraySet;
Yi Jin6b514142017-10-30 14:54:12 -070020import android.util.proto.ProtoOutputStream;
21
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022import java.io.PrintWriter;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023
24/**
25 * An association between a service and one of its client applications.
26 */
Dianne Hackbornbe4e6aa2013-06-07 13:25:29 -070027final class AppBindRecord {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028 final ServiceRecord service; // The running service.
29 final IntentBindRecord intent; // The intent we are bound to.
Dianne Hackbornc68c9132011-07-29 01:25:18 -070030 final ProcessRecord client; // Who has started/bound the service.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031
Dianne Hackborn24c98e82014-09-14 17:23:54 -070032 final ArraySet<ConnectionRecord> connections = new ArraySet<>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033 // All ConnectionRecord for this client.
34
35 void dump(PrintWriter pw, String prefix) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036 pw.println(prefix + "service=" + service);
37 pw.println(prefix + "client=" + client);
Dianne Hackborn1d442e02009-04-20 18:14:05 -070038 dumpInIntentBind(pw, prefix);
39 }
40
41 void dumpInIntentBind(PrintWriter pw, String prefix) {
Dianne Hackborn24c98e82014-09-14 17:23:54 -070042 final int N = connections.size();
43 if (N > 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044 pw.println(prefix + "Per-process Connections:");
Dianne Hackborn24c98e82014-09-14 17:23:54 -070045 for (int i=0; i<N; i++) {
46 ConnectionRecord c = connections.valueAt(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080047 pw.println(prefix + " " + c);
48 }
49 }
50 }
51
52 AppBindRecord(ServiceRecord _service, IntentBindRecord _intent,
53 ProcessRecord _client) {
54 service = _service;
55 intent = _intent;
56 client = _client;
57 }
58
59 public String toString() {
60 return "AppBindRecord{"
61 + Integer.toHexString(System.identityHashCode(this))
62 + " " + service.shortName + ":" + client.processName + "}";
63 }
Yi Jin6b514142017-10-30 14:54:12 -070064
65 void writeToProto(ProtoOutputStream proto, long fieldId) {
66 long token = proto.start(fieldId);
Yi Jin163967f2018-03-15 13:49:44 -070067 proto.write(AppBindRecordProto.SERVICE_NAME, service.shortName);
68 proto.write(AppBindRecordProto.CLIENT_PROC_NAME, client.processName);
Yi Jin6b514142017-10-30 14:54:12 -070069 final int N = connections.size();
70 for (int i=0; i<N; i++) {
Yi Jin163967f2018-03-15 13:49:44 -070071 ConnectionRecord conn = connections.valueAt(i);
72 proto.write(AppBindRecordProto.CONNECTIONS,
73 Integer.toHexString(System.identityHashCode(conn)));
Yi Jin6b514142017-10-30 14:54:12 -070074 }
75 proto.end(token);
76 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080077}