blob: b49bc220ac03e81066ef488ff167908ac961d2ca [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;
30
31 BroadcastFilter(IntentFilter _filter, ReceiverList _receiverList,
Dianne Hackborn6c418d52011-06-29 14:05:33 -070032 String _packageName, String _requiredPermission) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033 super(_filter);
34 receiverList = _receiverList;
Dianne Hackborn6c418d52011-06-29 14:05:33 -070035 packageName = _packageName;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036 requiredPermission = _requiredPermission;
37 }
38
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039 public void dump(PrintWriter pw, String prefix) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -070040 dumpInReceiverList(pw, new PrintWriterPrinter(pw), prefix);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080041 receiverList.dumpLocal(pw, prefix);
42 }
43
Dianne Hackborn12527f92009-11-11 17:39:50 -080044 public void dumpBrief(PrintWriter pw, String prefix) {
45 dumpBroadcastFilterState(pw, prefix);
46 }
47
Dianne Hackborn1d442e02009-04-20 18:14:05 -070048 public void dumpInReceiverList(PrintWriter pw, Printer pr, String prefix) {
49 super.dump(pr, prefix);
Dianne Hackborn12527f92009-11-11 17:39:50 -080050 dumpBroadcastFilterState(pw, prefix);
51 }
52
53 void dumpBroadcastFilterState(PrintWriter pw, String prefix) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -070054 if (requiredPermission != null) {
55 pw.print(prefix); pw.print("requiredPermission="); pw.println(requiredPermission);
56 }
57 }
58
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059 public String toString() {
Dianne Hackborn1d442e02009-04-20 18:14:05 -070060 StringBuilder sb = new StringBuilder();
61 sb.append("BroadcastFilter{");
62 sb.append(Integer.toHexString(System.identityHashCode(this)));
63 sb.append(' ');
64 sb.append(receiverList);
65 sb.append('}');
66 return sb.toString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080067 }
68}