blob: 4e6d0fad05b27914795d0aa567745db7b1c6271f [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
19import android.content.IntentFilter;
20import android.util.PrintWriterPrinter;
Dianne Hackborn1d442e02009-04-20 18:14:05 -070021import android.util.Printer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022
23import java.io.PrintWriter;
24
25class BroadcastFilter extends IntentFilter {
26 // Back-pointer to the list this filter is in.
27 final ReceiverList receiverList;
Dianne Hackborn6c418d52011-06-29 14:05:33 -070028 final String packageName;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029 final String requiredPermission;
Dianne Hackbornb4163a62012-08-02 18:31:26 -070030 final int owningUid;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031
32 BroadcastFilter(IntentFilter _filter, ReceiverList _receiverList,
Dianne Hackbornb4163a62012-08-02 18:31:26 -070033 String _packageName, String _requiredPermission, int _owningUid) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080034 super(_filter);
35 receiverList = _receiverList;
Dianne Hackborn6c418d52011-06-29 14:05:33 -070036 packageName = _packageName;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037 requiredPermission = _requiredPermission;
Dianne Hackbornb4163a62012-08-02 18:31:26 -070038 owningUid = _owningUid;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039 }
40
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080041 public void dump(PrintWriter pw, String prefix) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -070042 dumpInReceiverList(pw, new PrintWriterPrinter(pw), prefix);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080043 receiverList.dumpLocal(pw, prefix);
44 }
45
Dianne Hackborn12527f92009-11-11 17:39:50 -080046 public void dumpBrief(PrintWriter pw, String prefix) {
47 dumpBroadcastFilterState(pw, prefix);
48 }
49
Dianne Hackborn1d442e02009-04-20 18:14:05 -070050 public void dumpInReceiverList(PrintWriter pw, Printer pr, String prefix) {
51 super.dump(pr, prefix);
Dianne Hackborn12527f92009-11-11 17:39:50 -080052 dumpBroadcastFilterState(pw, prefix);
53 }
54
55 void dumpBroadcastFilterState(PrintWriter pw, String prefix) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -070056 if (requiredPermission != null) {
57 pw.print(prefix); pw.print("requiredPermission="); pw.println(requiredPermission);
58 }
59 }
60
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080061 public String toString() {
Dianne Hackborn1d442e02009-04-20 18:14:05 -070062 StringBuilder sb = new StringBuilder();
63 sb.append("BroadcastFilter{");
64 sb.append(Integer.toHexString(System.identityHashCode(this)));
65 sb.append(' ');
66 sb.append(receiverList);
67 sb.append('}');
68 return sb.toString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080069 }
70}