blob: 69601594b629c548589deb5b6a2bfa803c7c03dd [file] [log] [blame]
John Spurlock6ae82a72014-07-16 16:23:01 -04001/**
2 * Copyright (c) 2014, 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.notification;
18
19import android.content.ComponentName;
20import android.media.AudioManager;
21import android.net.Uri;
22import android.os.Build;
23import android.os.RemoteException;
24import android.provider.Settings.Global;
John Spurlock4db0d982014-08-13 09:19:03 -040025import android.service.notification.Condition;
John Spurlock6ae82a72014-07-16 16:23:01 -040026import android.service.notification.IConditionProvider;
27import android.service.notification.ZenModeConfig;
John Spurlock4db0d982014-08-13 09:19:03 -040028import android.util.ArraySet;
John Spurlock6ae82a72014-07-16 16:23:01 -040029import android.util.Slog;
30
31import java.io.PrintWriter;
32import java.text.SimpleDateFormat;
John Spurlock6ae82a72014-07-16 16:23:01 -040033import java.util.Date;
34
35public class ZenLog {
36 private static final String TAG = "ZenLog";
Griff Hazen1aad1442014-10-20 14:02:59 -070037 private static final boolean DEBUG = Build.IS_DEBUGGABLE;
John Spurlock6ae82a72014-07-16 16:23:01 -040038
39 private static final int SIZE = Build.IS_DEBUGGABLE ? 100 : 20;
40
41 private static final long[] TIMES = new long[SIZE];
42 private static final int[] TYPES = new int[SIZE];
43 private static final String[] MSGS = new String[SIZE];
44
45 private static final SimpleDateFormat FORMAT = new SimpleDateFormat("MM-dd HH:mm:ss.SSS");
46
47 private static final int TYPE_INTERCEPTED = 1;
48 private static final int TYPE_ALLOW_DISABLE = 2;
John Spurlock661f2cf2014-11-17 10:29:10 -050049 private static final int TYPE_SET_RINGER_MODE_EXTERNAL = 3;
50 private static final int TYPE_SET_RINGER_MODE_INTERNAL = 4;
51 private static final int TYPE_DOWNTIME = 5;
52 private static final int TYPE_SET_ZEN_MODE = 6;
53 private static final int TYPE_UPDATE_ZEN_MODE = 7;
54 private static final int TYPE_EXIT_CONDITION = 8;
55 private static final int TYPE_SUBSCRIBE = 9;
56 private static final int TYPE_UNSUBSCRIBE = 10;
57 private static final int TYPE_CONFIG = 11;
John Spurlock4db0d982014-08-13 09:19:03 -040058 private static final int TYPE_NOT_INTERCEPTED = 12;
John Spurlock32fe4c62014-10-02 12:16:02 -040059 private static final int TYPE_DISABLE_EFFECTS = 13;
John Spurlock6ae82a72014-07-16 16:23:01 -040060
61 private static int sNext;
62 private static int sSize;
63
64 public static void traceIntercepted(NotificationRecord record, String reason) {
65 if (record != null && record.isIntercepted()) return; // already logged
66 append(TYPE_INTERCEPTED, record.getKey() + "," + reason);
67 }
68
John Spurlock6ac5f8d2014-07-18 11:27:54 -040069 public static void traceNotIntercepted(NotificationRecord record, String reason) {
70 if (record != null && record.isUpdate) return; // already logged
71 append(TYPE_NOT_INTERCEPTED, record.getKey() + "," + reason);
72 }
73
John Spurlock661f2cf2014-11-17 10:29:10 -050074 public static void traceSetRingerModeExternal(int ringerModeOld, int ringerModeNew,
75 String caller, int ringerModeInternalIn, int ringerModeInternalOut) {
76 append(TYPE_SET_RINGER_MODE_EXTERNAL, caller + ",e:" +
77 ringerModeToString(ringerModeOld) + "->" +
78 ringerModeToString(ringerModeNew) + ",i:" +
79 ringerModeToString(ringerModeInternalIn) + "->" +
80 ringerModeToString(ringerModeInternalOut));
81 }
82
83 public static void traceSetRingerModeInternal(int ringerModeOld, int ringerModeNew,
84 String caller, int ringerModeExternalIn, int ringerModeExternalOut) {
85 append(TYPE_SET_RINGER_MODE_INTERNAL, caller + ",i:" +
86 ringerModeToString(ringerModeOld) + "->" +
87 ringerModeToString(ringerModeNew) + ",e:" +
88 ringerModeToString(ringerModeExternalIn) + "->" +
89 ringerModeToString(ringerModeExternalOut));
John Spurlock6ae82a72014-07-16 16:23:01 -040090 }
91
John Spurlockcc30c8d2014-11-05 09:13:30 -050092 public static void traceDowntime(int downtimeMode, int day, ArraySet<Integer> days) {
93 append(TYPE_DOWNTIME, zenModeToString(downtimeMode) + ",day=" + day + ",days=" + days);
John Spurlock4db0d982014-08-13 09:19:03 -040094 }
95
96 public static void traceSetZenMode(int mode, String reason) {
97 append(TYPE_SET_ZEN_MODE, zenModeToString(mode) + "," + reason);
John Spurlock6ae82a72014-07-16 16:23:01 -040098 }
99
100 public static void traceUpdateZenMode(int fromMode, int toMode) {
John Spurlock4db0d982014-08-13 09:19:03 -0400101 append(TYPE_UPDATE_ZEN_MODE, zenModeToString(fromMode) + " -> " + zenModeToString(toMode));
John Spurlock6ae82a72014-07-16 16:23:01 -0400102 }
103
John Spurlock4db0d982014-08-13 09:19:03 -0400104 public static void traceExitCondition(Condition c, ComponentName component, String reason) {
105 append(TYPE_EXIT_CONDITION, c + "," + componentToString(component) + "," + reason);
John Spurlock6ae82a72014-07-16 16:23:01 -0400106 }
107
108 public static void traceSubscribe(Uri uri, IConditionProvider provider, RemoteException e) {
109 append(TYPE_SUBSCRIBE, uri + "," + subscribeResult(provider, e));
110 }
111
112 public static void traceUnsubscribe(Uri uri, IConditionProvider provider, RemoteException e) {
113 append(TYPE_UNSUBSCRIBE, uri + "," + subscribeResult(provider, e));
114 }
115
116 public static void traceConfig(ZenModeConfig oldConfig, ZenModeConfig newConfig) {
117 append(TYPE_CONFIG, newConfig != null ? newConfig.toString() : null);
118 }
119
John Spurlock32fe4c62014-10-02 12:16:02 -0400120 public static void traceDisableEffects(NotificationRecord record, String reason) {
121 append(TYPE_DISABLE_EFFECTS, record.getKey() + "," + reason);
122 }
123
John Spurlock6ae82a72014-07-16 16:23:01 -0400124 private static String subscribeResult(IConditionProvider provider, RemoteException e) {
125 return provider == null ? "no provider" : e != null ? e.getMessage() : "ok";
126 }
127
128 private static String typeToString(int type) {
129 switch (type) {
130 case TYPE_INTERCEPTED: return "intercepted";
131 case TYPE_ALLOW_DISABLE: return "allow_disable";
John Spurlock661f2cf2014-11-17 10:29:10 -0500132 case TYPE_SET_RINGER_MODE_EXTERNAL: return "set_ringer_mode_external";
133 case TYPE_SET_RINGER_MODE_INTERNAL: return "set_ringer_mode_internal";
John Spurlock6ae82a72014-07-16 16:23:01 -0400134 case TYPE_DOWNTIME: return "downtime";
John Spurlock4db0d982014-08-13 09:19:03 -0400135 case TYPE_SET_ZEN_MODE: return "set_zen_mode";
136 case TYPE_UPDATE_ZEN_MODE: return "update_zen_mode";
John Spurlock6ae82a72014-07-16 16:23:01 -0400137 case TYPE_EXIT_CONDITION: return "exit_condition";
138 case TYPE_SUBSCRIBE: return "subscribe";
139 case TYPE_UNSUBSCRIBE: return "unsubscribe";
140 case TYPE_CONFIG: return "config";
John Spurlock6ac5f8d2014-07-18 11:27:54 -0400141 case TYPE_NOT_INTERCEPTED: return "not_intercepted";
John Spurlock32fe4c62014-10-02 12:16:02 -0400142 case TYPE_DISABLE_EFFECTS: return "disable_effects";
John Spurlock6ae82a72014-07-16 16:23:01 -0400143 default: return "unknown";
144 }
145 }
146
147 private static String ringerModeToString(int ringerMode) {
148 switch (ringerMode) {
149 case AudioManager.RINGER_MODE_SILENT: return "silent";
150 case AudioManager.RINGER_MODE_VIBRATE: return "vibrate";
151 case AudioManager.RINGER_MODE_NORMAL: return "normal";
152 default: return "unknown";
153 }
154 }
155
156 private static String zenModeToString(int zenMode) {
157 switch (zenMode) {
158 case Global.ZEN_MODE_OFF: return "off";
159 case Global.ZEN_MODE_IMPORTANT_INTERRUPTIONS: return "important_interruptions";
160 case Global.ZEN_MODE_NO_INTERRUPTIONS: return "no_interruptions";
161 default: return "unknown";
162 }
163 }
164
165 private static String componentToString(ComponentName component) {
166 return component != null ? component.toShortString() : null;
167 }
168
169 private static void append(int type, String msg) {
170 synchronized(MSGS) {
171 TIMES[sNext] = System.currentTimeMillis();
172 TYPES[sNext] = type;
173 MSGS[sNext] = msg;
174 sNext = (sNext + 1) % SIZE;
175 if (sSize < SIZE) {
176 sSize++;
177 }
178 }
Griff Hazen1aad1442014-10-20 14:02:59 -0700179 if (DEBUG) Slog.d(TAG, typeToString(type) + ": " + msg);
John Spurlock6ae82a72014-07-16 16:23:01 -0400180 }
181
182 public static void dump(PrintWriter pw, String prefix) {
183 synchronized(MSGS) {
184 final int start = (sNext - sSize + SIZE) % SIZE;
185 for (int i = 0; i < sSize; i++) {
186 final int j = (start + i) % SIZE;
187 pw.print(prefix);
188 pw.print(FORMAT.format(new Date(TIMES[j])));
189 pw.print(' ');
190 pw.print(typeToString(TYPES[j]));
191 pw.print(": ");
192 pw.println(MSGS[j]);
193 }
194 }
195 }
196}