summaryrefslogtreecommitdiff
path: root/java/com/google/android/libraries/mobiledatadownload/Flags.java
blob: 6a5beadda53e48a1970989541eb8a89f724852a0 (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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
/*
 * Copyright 2022 Google LLC
 *
 * 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.google.android.libraries.mobiledatadownload;

/**
 * Responsible for configuring MDD.
 *
 * <p>All default implementations match default_value from GCL ignoring conditional_values, etc,
 * unless noted otherwise.
 */
public interface Flags {
  // LINT.IfChange

  // FeatureFlags
  default boolean clearStateOnMddDisabled() {
    return false;
  }

  default boolean mddDeleteGroupsRemovedAccounts() {
    return false;
  }

  default boolean broadcastNewlyDownloadedGroups() {
    return true;
  }

  default boolean logFileGroupsWithFilesMissing() {
    return true;
  }

  default boolean deleteFileGroupsWithFilesMissing() {
    return true;
  }

  default boolean dumpMddInfo() {
    return false;
  }

  default boolean enableDebugUi() {
    return false;
  }

  default boolean enableClientErrorLogging() {
    return false;
  }

  default int fileKeyVersion() {
    return 2;
  }

  default boolean testOnlyFileKeyVersion() {
    return false;
  }

  default boolean enableCompressedFile() {
    return true;
  }

  default boolean enableZipFolder() {
    return true;
  }

  default boolean enableDeltaDownload() {
    return true;
  }

  default boolean enableMddGcmService() {
    return true;
  }

  default boolean enableSilentFeedback() {
    return true;
  }

  default boolean migrateToNewFileKey() {
    return true;
  }

  default boolean migrateFileExpirationPolicy() {
    return true;
  }

  default boolean downloadFirstOnWifiThenOnAnyNetwork() {
    return true;
  }

  default boolean logStorageStats() {
    return true;
  }

  default boolean logNetworkStats() {
    return true;
  }

  default boolean removeGroupkeysWithDownloadedFieldNotSet() {
    return true;
  }

  default boolean cacheLastLocation() {
    return true;
  }

  default int locationCustomParamS2Level() {
    return 10;
  }

  default int locationTaskTimeoutSec() {
    return 5;
  }

  default boolean addConfigsFromPhenotype() {
    return true;
  }

  default boolean enableMobileDataDownload() {
    return true;
  }

  default int mddResetTrigger() {
    return 0;
  }

  default boolean mddEnableDownloadPendingGroups() {
    return true;
  }

  default boolean mddEnableVerifyPendingGroups() {
    return true;
  }

  default boolean mddEnableGarbageCollection() {
    return true;
  }

  default boolean mddDeleteUninstalledApps() {
    return true;
  }

  default boolean enableMobstoreFileService() {
    return true;
  }

  default boolean enableDelayedDownload() {
    return true;
  }

  default boolean gcmRescheduleOnlyOncePerProcessStart() {
    return true;
  }

  default boolean gmsMddSwitchToCronet() {
    return false;
  }

  default boolean enableDaysSinceLastMaintenanceTracking() {
    return true;
  }

  default boolean enableSideloading() {
    return false;
  }

  default boolean enableDownloadStageExperimentIdPropagation() {
    return false; // TODO(b/201463803): flip to true once rolled out.
  }

  // Controls verification of isolated symlink structures.
  // By default, verification is ON. if this flag is set to false, verification will be turned OFF.
  default boolean enableIsolatedStructureVerification() {
    return true;
  }

  default boolean enableRngBasedDeviceStableSampling() {
    return false; // TODO(b/144684763): Switch to true after fully rolled out.
  }

  // PeriodTaskFlags
  default long maintenanceGcmTaskPeriod() {
    return 86400;
  }

  default long chargingGcmTaskPeriod() {
    return 21600;
  }

  default long cellularChargingGcmTaskPeriod() {
    return 21600;
  }

  default long wifiChargingGcmTaskPeriod() {
    return 21600;
  }

  // MddSampleIntervals
  default int mddDefaultSampleInterval() {
    return 100;
  }

  default int mddDownloadEventsSampleInterval() {
    return 1;
  }

  default int groupStatsLoggingSampleInterval() {
    return 100;
  }

  default int apiLoggingSampleInterval() {
    return 100;
  }

  default int cleanupLogLoggingSampleInterval() {
    return 1000;
  }

  default int silentFeedbackSampleInterval() {
    return 100;
  }

  default int storageStatsLoggingSampleInterval() {
    return 100;
  }

  default int networkStatsLoggingSampleInterval() {
    return 100;
  }

  default int mobstoreFileServiceStatsSampleInterval() {
    return 100;
  }

  default int mddAndroidSharingSampleInterval() {
    return 100;
  }

  // DownloaderFlags
  default boolean downloaderEnforceHttps() {
    return true;
  }

  default boolean enforceLowStorageBehavior() {
    return true;
  }

  default int absFreeSpaceAfterDownload() {
    return 500 * 1024 * 1024; // 500mb
  }

  default int absFreeSpaceAfterDownloadLowStorageAllowed() {
    return 100 * 1024 * 1024; // 100mb
  }

  default int absFreeSpaceAfterDownloadExtremelyLowStorageAllowed() {
    return 2 * 1024 * 1024; // 2mb
  }

  default float fractionFreeSpaceAfterDownload() {
    return 0.1F;
  }

  default int timeToWaitForDownloader() {
    return 120000; // 2 minutes
  }

  default int downloaderMaxThreads() {
    return 2;
  }

  default int downloaderMaxRetryOnChecksumMismatchCount() {
    return 5;
  }

  // LINT.ThenChange(<internal>)
}