blob: 24c1d59660206639fc1e67ce8763cdd368bd91ab [file] [log] [blame]
Chris Wrenf9536642014-04-17 10:01:54 -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.Context;
20
21/**
22 * Extracts signals that will be useful to the {@link NotificationComparator} and caches them
Chris Wren333a61c2014-05-28 16:40:57 -040023 * on the {@link NotificationRecord} object. These annotations will
Chris Wrenf9536642014-04-17 10:01:54 -040024 * not be passed on to {@link android.service.notification.NotificationListenerService}s.
Julia Reynoldsc861a3d2018-02-15 10:34:49 -050025 *
26 * If you add a new Extractor be sure to add it to R.array.config_notificationSignalExtractors.
Chris Wrenf9536642014-04-17 10:01:54 -040027 */
28public interface NotificationSignalExtractor {
29
30 /** One-time initialization. */
Chris Wren5eab2b72015-06-16 13:56:22 -040031 public void initialize(Context context, NotificationUsageStats usageStats);
Chris Wrenf9536642014-04-17 10:01:54 -040032
33 /**
34 * Called once per notification that is posted or updated.
35 *
36 * @return null if the work is done, or a future if there is more to do. The
Chris Wren470c1ac2014-05-21 15:28:10 -040037 * {@link RankingReconsideration} will be run on a worker thread, and if notifications
38 * are re-ordered by that execution, the {@link NotificationManagerService} may send order
39 * update events to the {@link android.service.notification.NotificationListenerService}s.
Chris Wrenf9536642014-04-17 10:01:54 -040040 */
Chris Wren470c1ac2014-05-21 15:28:10 -040041 public RankingReconsideration process(NotificationRecord notification);
Chris Wrenf9536642014-04-17 10:01:54 -040042
Chris Wren54bbef42014-07-09 18:37:56 -040043 /**
44 * Called whenever the {@link RankingConfig} changes.
45 *
46 * @param config information about which signals are important.
47 */
48 void setConfig(RankingConfig config);
Julia Reynoldsc861a3d2018-02-15 10:34:49 -050049
50 /**
51 * @param helper Helper to determine what components of notifications should be blocked due to
52 * DND.
53 */
54 void setZenHelper(ZenModeHelper helper);
Chris Wrenf9536642014-04-17 10:01:54 -040055}