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
135
|
/*
* 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.
*/
package android.provider;
import android.net.Uri;
/**
* A set of constants for implementing a time zone data content provider, which is used by the time
* zone updater application.
*
* @hide
*/
// TODO(nfuller): Expose necessary APIs for OEMs with @SystemApi. http://b/31008728
public final class TimeZoneRulesDataContract {
private TimeZoneRulesDataContract() {}
/**
* The authority that <em>must</em> be used for the time zone data content provider.
* To be accepted by the time zone updater application it <em>must</em> be exposed by the
* package specified in the config_timeZoneRulesDataPackage config value.
*/
public static final String AUTHORITY = "com.android.timezone";
/** A content:// style uri to the authority for the time zone data content provider */
private static final Uri AUTHORITY_URI = Uri.parse("content://" + AUTHORITY);
/**
* Defines fields exposed through the {@link Operation#CONTENT_URI} for describing a time zone
* distro operation.
*/
public static final class Operation {
/** Not instantiable. */
private Operation() {
}
/**
* The content:// style URI for determining what type of update is available.
*
* <p>The URI can be queried using
* {@link android.content.ContentProvider#query(Uri, String[], String, String[], String)};
* the result will be a cursor with a single row. If the {@link Operation#TYPE}
* column is {@link Operation#TYPE_INSTALL} then see {@link Data#CONTENT_URI} for how
* to obtain the binary data.
*/
public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "operation");
/**
* The {@code String} column of the {@link #CONTENT_URI} that provides an int specifying
* the type of operation to perform. See {@link #TYPE_NO_OP},
* {@link #TYPE_UNINSTALL} and {@link #TYPE_INSTALL}.
*/
public static final String TYPE = "type";
/**
* An operation type used when the current time zone rules on device should be replaced by
* a new set obtained via the {@link android.content.ContentProvider#openFile(Uri, String)}
* method.
*/
public static final String TYPE_INSTALL = "INSTALL";
/**
* An operation type used when the current time zone rules on device should be uninstalled,
* returning to the values held in the system partition.
*/
public static final String TYPE_UNINSTALL = "UNINSTALL";
/**
* An operation type used when the time zone rules on device should be left as they are.
* This is not expected to be used in normal operation but a safe result in the event of an
* error that cannot be recovered from.
*/
public static final String TYPE_NO_OP = "NOOP";
/**
* The {@code nullable int} column of the {@link #CONTENT_URI} that describes the major
* version of the distro to be installed.
* Only non-null if {@link #TYPE} contains {@link #TYPE_INSTALL}.
*/
public static final String DISTRO_MAJOR_VERSION = "distro_major_version";
/**
* The {@code nullable int} column of the {@link #CONTENT_URI} that describes the minor
* version of the distro to be installed.
* Only non-null if {@link #TYPE} contains {@link #TYPE_INSTALL}.
*/
public static final String DISTRO_MINOR_VERSION = "distro_minor_version";
/**
* The {@code nullable String} column of the {@link #CONTENT_URI} that describes the IANA
* rules version of the distro to be installed.
* Only non-null if {@link #TYPE} contains {@link #TYPE_INSTALL}.
*/
public static final String RULES_VERSION = "rules_version";
/**
* The {@code nullable int} column of the {@link #CONTENT_URI} that describes the revision
* number of the distro to be installed.
* Only non-null if {@link #TYPE} contains {@link #TYPE_INSTALL}.
*/
public static final String REVISION = "revision";
}
/**
* Defines the {@link Data#CONTENT_URI} for obtaining time zone distro binary data.
*/
public static final class Data {
/** Not instantiable. */
private Data() {
}
/**
* The content:// style URI for obtaining time zone bundle data.
*
* <p>Use {@link android.content.ContentProvider#openFile(Uri, String)} with "r" mode.
*/
public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "data");
}
}
|