blob: 7a0e152c84518205e8da44103d3c479356f95e72 [file] [log] [blame]
/*
* Copyright (C) 2017 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.
*/
syntax = "proto2";
package android.service.notification;
option java_multiple_files = true;
option java_outer_classname = "NotificationServiceProto";
import "frameworks/base/core/proto/android/app/notification_channel.proto";
import "frameworks/base/core/proto/android/app/notification_channel_group.proto";
import "frameworks/base/core/proto/android/app/notificationmanager.proto";
import "frameworks/base/core/proto/android/content/component_name.proto";
message NotificationServiceDumpProto {
repeated NotificationRecordProto records = 1;
optional ZenModeProto zen = 2;
optional ManagedServicesProto notification_listeners = 3;
optional int32 listener_hints = 4;
repeated ListenersDisablingEffectsProto listeners_disabling_effects = 5;
optional ManagedServicesProto notification_assistants = 6;
optional ManagedServicesProto condition_providers = 7;
optional RankingHelperProto ranking_config = 8;
}
message NotificationRecordProto {
optional string key = 1;
enum State {
ENQUEUED = 0;
POSTED = 1;
SNOOZED = 2;
}
optional State state = 2;
optional int32 flags = 3;
optional string channelId = 4;
optional string sound = 5;
optional int32 sound_usage = 6;
optional bool can_vibrate = 7;
optional bool can_show_light = 8;
optional string group_key = 9;
optional int32 importance = 10;
}
message ListenersDisablingEffectsProto {
optional int32 hint = 1;
repeated ManagedServiceInfoProto listeners = 2;
}
message ManagedServiceInfoProto {
optional android.content.ComponentNameProto component = 1;
optional int32 user_id = 2;
optional string service = 3;
optional bool is_system = 4;
optional bool is_guest = 5;
}
message ManagedServicesProto {
optional string caption = 1;
message ServiceProto {
repeated string name = 1;
optional int32 user_id = 2;
optional bool is_primary = 3;
}
repeated ServiceProto approved = 2;
// All of this type/caption enabled for current profiles.
repeated android.content.ComponentNameProto enabled = 3;
repeated ManagedServiceInfoProto live_services = 4;
// Snoozed for current profiles.
repeated android.content.ComponentNameProto snoozed = 5;
}
message RankingHelperProto {
repeated string notification_signal_extractors = 1;
message RecordProto {
optional string package = 1;
// Default value is UNKNOWN_UID = USER_NULL = -10000.
optional int32 uid = 2;
// Default is IMPORTANCE_UNSPECIFIED (-1000).
optional int32 importance = 3;
// Default is PRIORITY_DEFAULT (0).
optional int32 priority = 4;
// Default is VISIBILITY_NO_OVERRIDE (-1000).
optional int32 visibility = 5;
// Default is true.
optional bool show_badge = 6;
repeated android.app.NotificationChannelProto channels = 7;
repeated android.app.NotificationChannelGroupProto channel_groups = 8;
}
repeated RecordProto records = 2;
repeated RecordProto records_restored_without_uid = 3;
}
message ZenModeProto {
enum ZenMode {
ZEN_MODE_OFF = 0;
ZEN_MODE_IMPORTANT_INTERRUPTIONS = 1;
ZEN_MODE_NO_INTERRUPTIONS = 2;
ZEN_MODE_ALARMS = 3;
}
optional ZenMode zen_mode = 1;
repeated string enabled_active_conditions = 2;
optional int32 suppressed_effects = 3;
repeated string suppressors = 4;
optional android.app.PolicyProto policy = 5;
}