blob: b0ccd8f9a07dced7273a0f169ae68554b84211ef [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;
Dianne Hackborn5ac72a22012-08-29 18:32:08 -070020import android.os.UserHandle;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080021import android.util.PrintWriterPrinter;
Dianne Hackborn1d442e02009-04-20 18:14:05 -070022import android.util.Printer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023
24import java.io.PrintWriter;
25
26class BroadcastFilter extends IntentFilter {
27 // Back-pointer to the list this filter is in.
28 final ReceiverList receiverList;
Dianne Hackborn6c418d52011-06-29 14:05:33 -070029 final String packageName;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030 final String requiredPermission;
Dianne Hackbornb4163a62012-08-02 18:31:26 -070031 final int owningUid;
Dianne Hackborn5ac72a22012-08-29 18:32:08 -070032 final int owningUserId;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033
34 BroadcastFilter(IntentFilter _filter, ReceiverList _receiverList,
Dianne Hackbornb4163a62012-08-02 18:31:26 -070035 String _packageName, String _requiredPermission, int _owningUid) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036 super(_filter);
37 receiverList = _receiverList;
Dianne Hackborn6c418d52011-06-29 14:05:33 -070038 packageName = _packageName;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039 requiredPermission = _requiredPermission;
Dianne Hackbornb4163a62012-08-02 18:31:26 -070040 owningUid = _owningUid;
Dianne Hackborn5ac72a22012-08-29 18:32:08 -070041 owningUserId = UserHandle.getUserId(owningUid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042 }
43
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044 public void dump(PrintWriter pw, String prefix) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -070045 dumpInReceiverList(pw, new PrintWriterPrinter(pw), prefix);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080046 receiverList.dumpLocal(pw, prefix);
47 }
48
Dianne Hackborn12527f92009-11-11 17:39:50 -080049 public void dumpBrief(PrintWriter pw, String prefix) {
50 dumpBroadcastFilterState(pw, prefix);
51 }
52
Dianne Hackborn1d442e02009-04-20 18:14:05 -070053 public void dumpInReceiverList(PrintWriter pw, Printer pr, String prefix) {
54 super.dump(pr, prefix);
Dianne Hackborn12527f92009-11-11 17:39:50 -080055 dumpBroadcastFilterState(pw, prefix);
56 }
57
58 void dumpBroadcastFilterState(PrintWriter pw, String prefix) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -070059 if (requiredPermission != null) {
60 pw.print(prefix); pw.print("requiredPermission="); pw.println(requiredPermission);
61 }
62 }
63
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080064 public String toString() {
Dianne Hackborn1d442e02009-04-20 18:14:05 -070065 StringBuilder sb = new StringBuilder();
66 sb.append("BroadcastFilter{");
67 sb.append(Integer.toHexString(System.identityHashCode(this)));
68 sb.append(' ');
69 sb.append(receiverList);
70 sb.append('}');
71 return sb.toString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080072 }
73}