blob: 5ca13c95309ffabfb600a541a797ee1ec83d5548 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
/*
* Copyright (C) 2020 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.systemui.statusbar.notification.logging;
import static com.android.systemui.statusbar.notification.stack.NotificationPriorityBucketKt.BUCKET_ALERTING;
import static com.android.systemui.statusbar.notification.stack.NotificationPriorityBucketKt.BUCKET_FOREGROUND_SERVICE;
import static com.android.systemui.statusbar.notification.stack.NotificationPriorityBucketKt.BUCKET_HEADS_UP;
import static com.android.systemui.statusbar.notification.stack.NotificationPriorityBucketKt.BUCKET_MEDIA_CONTROLS;
import static com.android.systemui.statusbar.notification.stack.NotificationPriorityBucketKt.BUCKET_PEOPLE;
import static com.android.systemui.statusbar.notification.stack.NotificationPriorityBucketKt.BUCKET_SILENT;
import android.annotation.Nullable;
import android.service.notification.StatusBarNotification;
import com.android.internal.logging.UiEvent;
import com.android.internal.logging.UiEventLogger;
import com.android.systemui.statusbar.notification.collection.NotificationEntry;
import com.android.systemui.statusbar.notification.logging.nano.Notifications;
import com.android.systemui.statusbar.notification.stack.PriorityBucket;
import java.util.List;
/**
* Statsd logging for notification panel.
*/
public interface NotificationPanelLogger {
/**
* Log a NOTIFICATION_PANEL_REPORTED statsd event.
* @param visibleNotifications as provided by NotificationEntryManager.getVisibleNotifications()
*/
void logPanelShown(boolean isLockscreen,
@Nullable List<NotificationEntry> visibleNotifications);
/**
* Log a NOTIFICATION_PANEL_REPORTED statsd event, with
* {@link NotificationPanelEvent#NOTIFICATION_DRAG} as the eventID.
*
* @param draggedNotification the notification that is being dragged
*/
void logNotificationDrag(NotificationEntry draggedNotification);
enum NotificationPanelEvent implements UiEventLogger.UiEventEnum {
@UiEvent(doc = "Notification panel shown from status bar.")
NOTIFICATION_PANEL_OPEN_STATUS_BAR(200),
@UiEvent(doc = "Notification panel shown from lockscreen.")
NOTIFICATION_PANEL_OPEN_LOCKSCREEN(201),
@UiEvent(doc = "Notification was dragged")
NOTIFICATION_DRAG(1226);
private final int mId;
NotificationPanelEvent(int id) {
mId = id;
}
@Override public int getId() {
return mId;
}
public static NotificationPanelEvent fromLockscreen(boolean isLockscreen) {
return isLockscreen ? NOTIFICATION_PANEL_OPEN_LOCKSCREEN :
NOTIFICATION_PANEL_OPEN_STATUS_BAR;
}
}
/**
* Composes a NotificationsList proto from the list of visible notifications.
* @param visibleNotifications as provided by NotificationEntryManager.getVisibleNotifications()
* @return NotificationList proto suitable for SysUiStatsLog.write(NOTIFICATION_PANEL_REPORTED)
*/
static Notifications.NotificationList toNotificationProto(
@Nullable List<NotificationEntry> visibleNotifications) {
Notifications.NotificationList notificationList = new Notifications.NotificationList();
if (visibleNotifications == null) {
return notificationList;
}
final Notifications.Notification[] proto_array =
new Notifications.Notification[visibleNotifications.size()];
int i = 0;
for (NotificationEntry ne : visibleNotifications) {
final StatusBarNotification n = ne.getSbn();
if (n != null) {
final Notifications.Notification proto = new Notifications.Notification();
proto.uid = n.getUid();
proto.packageName = n.getPackageName();
if (n.getInstanceId() != null) {
proto.instanceId = n.getInstanceId().getId();
}
// TODO set np.groupInstanceId
if (n.getNotification() != null) {
proto.isGroupSummary = n.getNotification().isGroupSummary();
}
proto.section = toNotificationSection(ne.getBucket());
proto_array[i] = proto;
}
++i;
}
notificationList.notifications = proto_array;
return notificationList;
}
/**
* Maps PriorityBucket enum to Notification.SECTION constant. The two lists should generally
* use matching names, but the values may differ, because PriorityBucket order changes from
* time to time, while logs need to have stable meanings.
* @param bucket PriorityBucket constant
* @return Notification.SECTION constant
*/
static int toNotificationSection(@PriorityBucket int bucket) {
switch(bucket) {
case BUCKET_MEDIA_CONTROLS : return Notifications.Notification.SECTION_MEDIA_CONTROLS;
case BUCKET_HEADS_UP: return Notifications.Notification.SECTION_HEADS_UP;
case BUCKET_FOREGROUND_SERVICE:
return Notifications.Notification.SECTION_FOREGROUND_SERVICE;
case BUCKET_PEOPLE: return Notifications.Notification.SECTION_PEOPLE;
case BUCKET_ALERTING: return Notifications.Notification.SECTION_ALERTING;
case BUCKET_SILENT: return Notifications.Notification.SECTION_SILENT;
}
return Notifications.Notification.SECTION_UNKNOWN;
}
}
|