1/*
2 * Copyright (C) 2017 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
17syntax = "proto2";
18package android.content;
19
20option java_multiple_files = true;
21
22import "frameworks/base/core/proto/android/content/component_name.proto";
23import "frameworks/base/core/proto/android/os/patternmatcher.proto";
24import "frameworks/base/core/proto/android/os/persistablebundle.proto";
25import "frameworks/base/core/proto/android/privacy.proto";
26
27// Next Tag: 14
28message IntentProto {
29    option (.android.msg_privacy).dest = DEST_AUTOMATIC;
30
31    enum DockState {
32        // Used as an int value for Intent#EXTRA_DOCK_STATE to represent that
33        // the phone is not in any dock.
34        DOCK_STATE_UNDOCKED = 0;
35
36        // Used as an int value for Intent#EXTRA_DOCK_STATE to represent that
37        // the phone is in a desk dock.
38        DOCK_STATE_DESK = 1;
39
40        // Used as an int value for Intent#EXTRA_DOCK_STATE to represent that
41        // the phone is in a car dock.
42        DOCK_STATE_CAR = 2;
43
44        // Used as an int value for Intent#EXTRA_DOCK_STATE to represent that
45        // the phone is in a analog (low end) dock.
46        DOCK_STATE_LE_DESK = 3;
47
48        // Used as an int value for Intent#EXTRA_DOCK_STATE to represent that
49        // the phone is in a digital (high end) dock.
50        DOCK_STATE_HE_DESK = 4;
51    }
52
53    optional string action = 1;
54    repeated string categories = 2;
55    optional string data = 3 [ (.android.privacy).dest = DEST_EXPLICIT ];
56    optional string type = 4;
57    optional string flag = 5;
58    optional string package = 6;
59    optional ComponentNameProto component = 7;
60    optional string source_bounds = 8;
61    optional string clip_data = 9 [ (.android.privacy).dest = DEST_LOCAL ];
62    optional string extras = 10 [ (.android.privacy).dest = DEST_LOCAL ];
63    // UserHandle value (similar to user_id in other protos).
64    optional int32 content_user_hint = 11;
65    optional string selector = 12;
66    optional string identifier = 13 [ (.android.privacy).dest = DEST_EXPLICIT ];
67}
68
69// Next Tag: 12
70message IntentFilterProto {
71    option (.android.msg_privacy).dest = DEST_AUTOMATIC;
72
73    repeated string actions = 1;
74    repeated string categories = 2;
75    // https://developer.android.com/guide/topics/manifest/data-element#scheme:
76    // The scheme part of a URI. This is the minimal essential attribute for
77    // specifying a URI; at least one scheme attribute must be set for the filter,
78    // or none of the other URI attributes are meaningful. A scheme is specified
79    // without the trailing colon (for example, http, rather than http:). If the
80    // filter has a data type set (the mimeType attribute) but no scheme, the
81    // content: and file: schemes are assumed.
82    repeated string data_schemes = 3  [ (.android.privacy).dest = DEST_EXPLICIT ];
83    repeated android.os.PatternMatcherProto data_scheme_specs = 4;
84    repeated AuthorityEntryProto data_authorities = 5;
85    repeated android.os.PatternMatcherProto data_paths = 6;
86    repeated string data_types = 7;
87    optional int32 priority = 8;
88    optional bool has_partial_types = 9;
89    optional bool get_auto_verify = 10;
90    repeated string mime_groups = 11;
91    optional android.os.PersistableBundleProto extras = 12;
92}
93
94message AuthorityEntryProto {
95    option (.android.msg_privacy).dest = DEST_AUTOMATIC;
96
97    optional string host = 1;
98    optional bool wild = 2;
99    optional int32 port = 3;
100}
101