blob: 8dd229c3280973dfcbc69b884ae6728b567bb5fc [file] [log] [blame]
Dianne Hackborn231cc602009-04-27 17:10:36 -07001/*
2 * Copyright (C) 2009 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
Jeff Sharkey7a96c392012-11-15 14:01:46 -080017package com.android.server.content;
Jason parksa3cdaa52011-01-13 14:15:43 -060018
Fred Quintanad9d2f112009-04-23 13:36:27 -070019import android.accounts.Account;
Amith Yamasanif29f2362012-04-05 18:29:52 -070020import android.accounts.AccountAndUser;
Suprabh Shukla042a4782017-05-12 15:26:54 -070021import android.accounts.AccountManager;
Marvin Paula6533252014-11-24 12:57:48 -080022import android.app.backup.BackupManager;
Matthew Williamsfa774182013-06-18 15:44:11 -070023import android.content.ComponentName;
Jeff Sharkey7a96c392012-11-15 14:01:46 -080024import android.content.ContentResolver;
Makoto Onuki75ad2492018-03-28 14:42:42 -070025import android.content.ContentResolver.SyncExemption;
Jeff Sharkey7a96c392012-11-15 14:01:46 -080026import android.content.Context;
27import android.content.ISyncStatusObserver;
28import android.content.PeriodicSync;
29import android.content.SyncInfo;
Matthew Williams56dbf8f2013-07-26 12:56:39 -070030import android.content.SyncRequest;
Jeff Sharkey7a96c392012-11-15 14:01:46 -080031import android.content.SyncStatusInfo;
Suprabh Shukla042a4782017-05-12 15:26:54 -070032import android.content.pm.PackageManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033import android.database.Cursor;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080034import android.database.sqlite.SQLiteDatabase;
Dianne Hackborn231cc602009-04-27 17:10:36 -070035import android.database.sqlite.SQLiteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036import android.database.sqlite.SQLiteQueryBuilder;
Dianne Hackborn231cc602009-04-27 17:10:36 -070037import android.os.Bundle;
38import android.os.Environment;
39import android.os.Handler;
Makoto Onuki6963bea72017-12-12 10:42:39 -080040import android.os.Looper;
Dianne Hackborn231cc602009-04-27 17:10:36 -070041import android.os.Message;
42import android.os.Parcel;
43import android.os.RemoteCallbackList;
44import android.os.RemoteException;
Matthew Williams56dbf8f2013-07-26 12:56:39 -070045import android.os.UserHandle;
Makoto Onukid4764302018-03-30 17:32:57 -070046import android.util.ArrayMap;
47import android.util.AtomicFile;
48import android.util.EventLog;
49import android.util.Log;
50import android.util.Pair;
51import android.util.Slog;
52import android.util.SparseArray;
53import android.util.Xml;
Jeff Sharkey7a96c392012-11-15 14:01:46 -080054
55import com.android.internal.annotations.VisibleForTesting;
56import com.android.internal.util.ArrayUtils;
57import com.android.internal.util.FastXmlSerializer;
58
59import org.xmlpull.v1.XmlPullParser;
60import org.xmlpull.v1.XmlPullParserException;
61import org.xmlpull.v1.XmlSerializer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080062
Dianne Hackborn231cc602009-04-27 17:10:36 -070063import java.io.File;
64import java.io.FileInputStream;
65import java.io.FileOutputStream;
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +010066import java.nio.charset.StandardCharsets;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080067import java.util.ArrayList;
Dianne Hackborn231cc602009-04-27 17:10:36 -070068import java.util.Calendar;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080069import java.util.HashMap;
Dianne Hackborn231cc602009-04-27 17:10:36 -070070import java.util.Iterator;
Jeff Sharkey7a96c392012-11-15 14:01:46 -080071import java.util.List;
Ashish Sharma69d95de2012-04-11 17:27:24 -070072import java.util.Random;
Jason parks1125d782011-01-12 09:47:26 -060073import java.util.TimeZone;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080074
75/**
Dianne Hackborn231cc602009-04-27 17:10:36 -070076 * Singleton that tracks the sync data and overall sync
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080077 * history on the device.
Costin Manolache360e4542009-09-04 13:36:04 -070078 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080079 * @hide
80 */
Makoto Onuki6963bea72017-12-12 10:42:39 -080081public class SyncStorageEngine {
Amith Yamasani04e0d262012-02-14 11:50:53 -080082
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080083 private static final String TAG = "SyncManager";
Matthew Williamsba352712013-08-13 15:53:31 -070084 private static final String TAG_FILE = "SyncManagerFile";
Costin Manolache360e4542009-09-04 13:36:04 -070085
Amith Yamasani04e0d262012-02-14 11:50:53 -080086 private static final String XML_ATTR_NEXT_AUTHORITY_ID = "nextAuthorityId";
87 private static final String XML_ATTR_LISTEN_FOR_TICKLES = "listen-for-tickles";
Ashish Sharma69d95de2012-04-11 17:27:24 -070088 private static final String XML_ATTR_SYNC_RANDOM_OFFSET = "offsetInSeconds";
Amith Yamasani04e0d262012-02-14 11:50:53 -080089 private static final String XML_ATTR_ENABLED = "enabled";
90 private static final String XML_ATTR_USER = "user";
91 private static final String XML_TAG_LISTEN_FOR_TICKLES = "listenForTickles";
92
Matthew Williamsfa774182013-06-18 15:44:11 -070093 /** Default time for a periodic sync. */
Shreyas Basargecf939c12016-02-19 15:45:29 +000094 private static final long DEFAULT_POLL_FREQUENCY_SECONDS = 60 * 60 * 24; // One day
Fred Quintanac5d1c6d2010-01-27 12:17:49 -080095
Shreyas Basarge8c834c02016-01-07 13:53:16 +000096 /** Percentage of period that is flex by default, if no flexMillis is set. */
Matthew Williamsfa774182013-06-18 15:44:11 -070097 private static final double DEFAULT_FLEX_PERCENT_SYNC = 0.04;
98
99 /** Lower bound on sync time from which we assign a default flex time. */
100 private static final long DEFAULT_MIN_FLEX_ALLOWED_SECS = 5;
101
Jeff Sharkey8b2c3a142012-11-12 11:45:05 -0800102 @VisibleForTesting
Dianne Hackborn231cc602009-04-27 17:10:36 -0700103 static final long MILLIS_IN_4WEEKS = 1000L * 60 * 60 * 24 * 7 * 4;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800104
Dianne Hackborn231cc602009-04-27 17:10:36 -0700105 /** Enum value for a sync start event. */
106 public static final int EVENT_START = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800107
Dianne Hackborn231cc602009-04-27 17:10:36 -0700108 /** Enum value for a sync stop event. */
109 public static final int EVENT_STOP = 1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800110
Dianne Hackborn231cc602009-04-27 17:10:36 -0700111 /** Enum value for a server-initiated sync. */
112 public static final int SOURCE_SERVER = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800113
Dianne Hackborn231cc602009-04-27 17:10:36 -0700114 /** Enum value for a local-initiated sync. */
115 public static final int SOURCE_LOCAL = 1;
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700116 /** Enum value for a poll-based sync (e.g., upon connection to network) */
Dianne Hackborn231cc602009-04-27 17:10:36 -0700117 public static final int SOURCE_POLL = 2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800118
Dianne Hackborn231cc602009-04-27 17:10:36 -0700119 /** Enum value for a user-initiated sync. */
120 public static final int SOURCE_USER = 3;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800121
Fred Quintanac5d1c6d2010-01-27 12:17:49 -0800122 /** Enum value for a periodic sync. */
123 public static final int SOURCE_PERIODIC = 4;
124
Fred Quintana307da1a2010-01-21 14:24:20 -0800125 public static final long NOT_IN_BACKOFF_MODE = -1;
126
Dianne Hackborn231cc602009-04-27 17:10:36 -0700127 // TODO: i18n -- grab these out of resources.
128 /** String names for the sync source types. */
129 public static final String[] SOURCES = { "SERVER",
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000130 "LOCAL",
131 "POLL",
132 "USER",
133 "PERIODIC",
134 "SERVICE"};
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800135
Dianne Hackborn231cc602009-04-27 17:10:36 -0700136 // The MESG column will contain one of these or one of the Error types.
137 public static final String MESG_SUCCESS = "success";
138 public static final String MESG_CANCELED = "canceled";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800139
Dianne Hackborna33e3f72009-09-29 17:28:24 -0700140 public static final int MAX_HISTORY = 100;
Costin Manolache360e4542009-09-04 13:36:04 -0700141
Dianne Hackborn231cc602009-04-27 17:10:36 -0700142 private static final int MSG_WRITE_STATUS = 1;
143 private static final long WRITE_STATUS_DELAY = 1000*60*10; // 10 minutes
Costin Manolache360e4542009-09-04 13:36:04 -0700144
Dianne Hackborn231cc602009-04-27 17:10:36 -0700145 private static final int MSG_WRITE_STATISTICS = 2;
146 private static final long WRITE_STATISTICS_DELAY = 1000*60*30; // 1/2 hour
Joe Onorato8294fad2009-07-15 16:08:44 -0700147
148 private static final boolean SYNC_ENABLED_DEFAULT = false;
Costin Manolache360e4542009-09-04 13:36:04 -0700149
Fred Quintanac2e46912010-03-15 16:10:44 -0700150 // the version of the accounts xml file format
Svet Ganov65712b02016-09-01 10:24:11 -0700151 private static final int ACCOUNTS_VERSION = 3;
Fred Quintanafb084402010-03-23 17:57:03 -0700152
153 private static HashMap<String, String> sAuthorityRenames;
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000154 private static PeriodicSyncAddedListener mPeriodicSyncAddedListener;
Fred Quintanafb084402010-03-23 17:57:03 -0700155
156 static {
157 sAuthorityRenames = new HashMap<String, String>();
158 sAuthorityRenames.put("contacts", "com.android.contacts");
159 sAuthorityRenames.put("calendar", "com.android.calendar");
160 }
Fred Quintanac2e46912010-03-15 16:10:44 -0700161
Dianne Hackborn231cc602009-04-27 17:10:36 -0700162 static class AccountInfo {
Amith Yamasani04e0d262012-02-14 11:50:53 -0800163 final AccountAndUser accountAndUser;
Dianne Hackborn231cc602009-04-27 17:10:36 -0700164 final HashMap<String, AuthorityInfo> authorities =
165 new HashMap<String, AuthorityInfo>();
Costin Manolache360e4542009-09-04 13:36:04 -0700166
Amith Yamasani04e0d262012-02-14 11:50:53 -0800167 AccountInfo(AccountAndUser accountAndUser) {
168 this.accountAndUser = accountAndUser;
Dianne Hackborn231cc602009-04-27 17:10:36 -0700169 }
170 }
Costin Manolache360e4542009-09-04 13:36:04 -0700171
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700172 /** Bare bones representation of a sync target. */
173 public static class EndPoint {
174 public final static EndPoint USER_ALL_PROVIDER_ALL_ACCOUNTS_ALL =
175 new EndPoint(null, null, UserHandle.USER_ALL);
Dianne Hackborn7a135592009-05-06 00:28:37 -0700176 final Account account;
Amith Yamasani04e0d262012-02-14 11:50:53 -0800177 final int userId;
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700178 final String provider;
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700179
180 public EndPoint(Account account, String provider, int userId) {
181 this.account = account;
182 this.provider = provider;
183 this.userId = userId;
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700184 }
185
186 /**
Matthew Williams8ef22042013-07-26 12:56:39 -0700187 * An Endpoint for a sync matches if it targets the same sync adapter for the same user.
188 *
189 * @param spec the Endpoint to match. If the spec has null fields, they indicate a wildcard
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000190 * and match any.
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700191 */
Matthew Williams8ef22042013-07-26 12:56:39 -0700192 public boolean matchesSpec(EndPoint spec) {
193 if (userId != spec.userId
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700194 && userId != UserHandle.USER_ALL
Matthew Williams8ef22042013-07-26 12:56:39 -0700195 && spec.userId != UserHandle.USER_ALL) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700196 return false;
197 }
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000198 boolean accountsMatch;
199 if (spec.account == null) {
200 accountsMatch = true;
201 } else {
202 accountsMatch = account.equals(spec.account);
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700203 }
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000204 boolean providersMatch;
205 if (spec.provider == null) {
206 providersMatch = true;
207 } else {
208 providersMatch = provider.equals(spec.provider);
209 }
210 return accountsMatch && providersMatch;
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700211 }
212
213 public String toString() {
214 StringBuilder sb = new StringBuilder();
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000215 sb.append(account == null ? "ALL ACCS" : account.name)
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700216 .append("/")
217 .append(provider == null ? "ALL PDRS" : provider);
Matthew Williams8ef22042013-07-26 12:56:39 -0700218 sb.append(":u" + userId);
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700219 return sb.toString();
220 }
221 }
222
223 public static class AuthorityInfo {
Matthew Williams53abfdb2015-06-10 20:06:37 -0700224 // Legal values of getIsSyncable
Svet Ganovf6d424f12016-09-20 20:18:53 -0700225
226 /**
227 * The syncable state is undefined.
228 */
229 public static final int UNDEFINED = -2;
230
Matthew Williams53abfdb2015-06-10 20:06:37 -0700231 /**
232 * Default state for a newly installed adapter. An uninitialized adapter will receive an
233 * initialization sync which are governed by a different set of rules to that of regular
234 * syncs.
235 */
236 public static final int NOT_INITIALIZED = -1;
237 /**
238 * The adapter will not receive any syncs. This is behaviourally equivalent to
239 * setSyncAutomatically -> false. However setSyncAutomatically is surfaced to the user
240 * while this is generally meant to be controlled by the developer.
241 */
242 public static final int NOT_SYNCABLE = 0;
243 /**
244 * The adapter is initialized and functioning. This is the normal state for an adapter.
245 */
246 public static final int SYNCABLE = 1;
247 /**
248 * The adapter is syncable but still requires an initialization sync. For example an adapter
249 * than has been restored from a previous device will be in this state. Not meant for
250 * external use.
251 */
252 public static final int SYNCABLE_NOT_INITIALIZED = 2;
253
Svetoslav Ganov5cb29732016-07-11 19:32:30 -0700254 /**
255 * The adapter is syncable but does not have access to the synced account and needs a
256 * user access approval.
257 */
258 public static final int SYNCABLE_NO_ACCOUNT_ACCESS = 3;
259
Matthew Williams8ef22042013-07-26 12:56:39 -0700260 final EndPoint target;
Dianne Hackborn231cc602009-04-27 17:10:36 -0700261 final int ident;
262 boolean enabled;
Fred Quintana5e787c42009-08-16 23:13:53 -0700263 int syncable;
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700264 /** Time at which this sync will run, taking into account backoff. */
Fred Quintana307da1a2010-01-21 14:24:20 -0800265 long backoffTime;
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700266 /** Amount of delay due to backoff. */
Fred Quintana307da1a2010-01-21 14:24:20 -0800267 long backoffDelay;
Matthew Williams8ef22042013-07-26 12:56:39 -0700268 /** Time offset to add to any requests coming to this target. */
Fred Quintana307da1a2010-01-21 14:24:20 -0800269 long delayUntil;
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700270
Matthew Williamsfa774182013-06-18 15:44:11 -0700271 final ArrayList<PeriodicSync> periodicSyncs;
Fred Quintanaac9385e2009-06-22 18:00:59 -0700272
Carlos Valdivia3aca7d72012-05-07 19:03:51 -0700273 /**
274 * Copy constructor for making deep-ish copies. Only the bundles stored
275 * in periodic syncs can make unexpected changes.
276 *
277 * @param toCopy AuthorityInfo to be copied.
278 */
279 AuthorityInfo(AuthorityInfo toCopy) {
Matthew Williams8ef22042013-07-26 12:56:39 -0700280 target = toCopy.target;
Carlos Valdivia3aca7d72012-05-07 19:03:51 -0700281 ident = toCopy.ident;
282 enabled = toCopy.enabled;
283 syncable = toCopy.syncable;
284 backoffTime = toCopy.backoffTime;
285 backoffDelay = toCopy.backoffDelay;
286 delayUntil = toCopy.delayUntil;
Matthew Williamsfa774182013-06-18 15:44:11 -0700287 periodicSyncs = new ArrayList<PeriodicSync>();
288 for (PeriodicSync sync : toCopy.periodicSyncs) {
Carlos Valdivia3aca7d72012-05-07 19:03:51 -0700289 // Still not a perfect copy, because we are just copying the mappings.
Matthew Williamsfa774182013-06-18 15:44:11 -0700290 periodicSyncs.add(new PeriodicSync(sync));
Carlos Valdivia3aca7d72012-05-07 19:03:51 -0700291 }
292 }
293
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700294 AuthorityInfo(EndPoint info, int id) {
Matthew Williams8ef22042013-07-26 12:56:39 -0700295 target = info;
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700296 ident = id;
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000297 enabled = SYNC_ENABLED_DEFAULT;
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700298 periodicSyncs = new ArrayList<PeriodicSync>();
299 defaultInitialisation();
300 }
301
302 private void defaultInitialisation() {
Matthew Williams53abfdb2015-06-10 20:06:37 -0700303 syncable = NOT_INITIALIZED; // default to "unknown"
Fred Quintana307da1a2010-01-21 14:24:20 -0800304 backoffTime = -1; // if < 0 then we aren't in backoff mode
305 backoffDelay = -1; // if < 0 then we aren't in backoff mode
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000306
307 if (mPeriodicSyncAddedListener != null) {
308 mPeriodicSyncAddedListener.onPeriodicSyncAdded(target, new Bundle(),
309 DEFAULT_POLL_FREQUENCY_SECONDS,
310 calculateDefaultFlexTime(DEFAULT_POLL_FREQUENCY_SECONDS));
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700311 }
Dianne Hackborn231cc602009-04-27 17:10:36 -0700312 }
Matthew Williams06485a72013-07-26 12:56:39 -0700313
314 @Override
315 public String toString() {
316 return target + ", enabled=" + enabled + ", syncable=" + syncable + ", backoff="
317 + backoffTime + ", delay=" + delayUntil;
318 }
Dianne Hackborn231cc602009-04-27 17:10:36 -0700319 }
Costin Manolache360e4542009-09-04 13:36:04 -0700320
Dianne Hackborn231cc602009-04-27 17:10:36 -0700321 public static class SyncHistoryItem {
322 int authorityId;
323 int historyId;
324 long eventTime;
325 long elapsedTime;
326 int source;
327 int event;
328 long upstreamActivity;
329 long downstreamActivity;
330 String mesg;
Fred Quintanadc475562012-05-04 15:51:54 -0700331 boolean initialization;
Alon Albert57286f92012-10-09 14:21:38 -0700332 Bundle extras;
333 int reason;
Dianne Hackborn231cc602009-04-27 17:10:36 -0700334 }
Costin Manolache360e4542009-09-04 13:36:04 -0700335
Dianne Hackborn231cc602009-04-27 17:10:36 -0700336 public static class DayStats {
337 public final int day;
338 public int successCount;
339 public long successTime;
340 public int failureCount;
341 public long failureTime;
Costin Manolache360e4542009-09-04 13:36:04 -0700342
Dianne Hackborn231cc602009-04-27 17:10:36 -0700343 public DayStats(int day) {
344 this.day = day;
345 }
346 }
Costin Manolache360e4542009-09-04 13:36:04 -0700347
Amith Yamasani04e0d262012-02-14 11:50:53 -0800348 interface OnSyncRequestListener {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700349
350 /** Called when a sync is needed on an account(s) due to some change in state. */
Makoto Onuki61283ec2018-01-31 17:22:36 -0800351 public void onSyncRequest(EndPoint info, int reason, Bundle extras,
Makoto Onuki75ad2492018-03-28 14:42:42 -0700352 @SyncExemption int syncExemptionFlag);
Amith Yamasani04e0d262012-02-14 11:50:53 -0800353 }
354
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000355 interface PeriodicSyncAddedListener {
356 /** Called when a periodic sync is added. */
357 void onPeriodicSyncAdded(EndPoint target, Bundle extras, long pollFrequency, long flex);
358 }
359
360 interface OnAuthorityRemovedListener {
361 /** Called when an authority is removed. */
362 void onAuthorityRemoved(EndPoint removedAuthority);
363 }
364
Suprabh Shukla042a4782017-05-12 15:26:54 -0700365 /**
366 * Validator that maintains a lazy cache of accounts and providers to tell if an authority or
367 * account is valid.
368 */
369 private static class AccountAuthorityValidator {
370 final private AccountManager mAccountManager;
371 final private PackageManager mPackageManager;
372 final private SparseArray<Account[]> mAccountsCache;
373 final private SparseArray<ArrayMap<String, Boolean>> mProvidersPerUserCache;
374
375 AccountAuthorityValidator(Context context) {
376 mAccountManager = context.getSystemService(AccountManager.class);
377 mPackageManager = context.getPackageManager();
378 mAccountsCache = new SparseArray<>();
379 mProvidersPerUserCache = new SparseArray<>();
380 }
381
382 // An account is valid if an installed authenticator has previously created that account
383 // on the device
384 boolean isAccountValid(Account account, int userId) {
385 Account[] accountsForUser = mAccountsCache.get(userId);
386 if (accountsForUser == null) {
387 accountsForUser = mAccountManager.getAccountsAsUser(userId);
388 mAccountsCache.put(userId, accountsForUser);
389 }
390 return ArrayUtils.contains(accountsForUser, account);
391 }
392
393 // An authority is only valid if it has a content provider installed on the system
394 boolean isAuthorityValid(String authority, int userId) {
395 ArrayMap<String, Boolean> authorityMap = mProvidersPerUserCache.get(userId);
396 if (authorityMap == null) {
397 authorityMap = new ArrayMap<>();
398 mProvidersPerUserCache.put(userId, authorityMap);
399 }
400 if (!authorityMap.containsKey(authority)) {
401 authorityMap.put(authority, mPackageManager.resolveContentProviderAsUser(authority,
402 PackageManager.MATCH_DIRECT_BOOT_AWARE
403 | PackageManager.MATCH_DIRECT_BOOT_UNAWARE, userId) != null);
404 }
405 return authorityMap.get(authority);
406 }
407 }
408
Dianne Hackborn231cc602009-04-27 17:10:36 -0700409 // Primary list of all syncable authorities. Also our global lock.
410 private final SparseArray<AuthorityInfo> mAuthorities =
411 new SparseArray<AuthorityInfo>();
Costin Manolache360e4542009-09-04 13:36:04 -0700412
Amith Yamasani04e0d262012-02-14 11:50:53 -0800413 private final HashMap<AccountAndUser, AccountInfo> mAccounts
414 = new HashMap<AccountAndUser, AccountInfo>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800415
Amith Yamasani04e0d262012-02-14 11:50:53 -0800416 private final SparseArray<ArrayList<SyncInfo>> mCurrentSyncs
417 = new SparseArray<ArrayList<SyncInfo>>();
Costin Manolache360e4542009-09-04 13:36:04 -0700418
Dianne Hackborn231cc602009-04-27 17:10:36 -0700419 private final SparseArray<SyncStatusInfo> mSyncStatus =
420 new SparseArray<SyncStatusInfo>();
Costin Manolache360e4542009-09-04 13:36:04 -0700421
Dianne Hackborn231cc602009-04-27 17:10:36 -0700422 private final ArrayList<SyncHistoryItem> mSyncHistory =
423 new ArrayList<SyncHistoryItem>();
Costin Manolache360e4542009-09-04 13:36:04 -0700424
Dianne Hackborn231cc602009-04-27 17:10:36 -0700425 private final RemoteCallbackList<ISyncStatusObserver> mChangeListeners
426 = new RemoteCallbackList<ISyncStatusObserver>();
Costin Manolache360e4542009-09-04 13:36:04 -0700427
Matthew Williams8ef22042013-07-26 12:56:39 -0700428 /** Reverse mapping for component name -> <userid -> target id>. */
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700429 private final ArrayMap<ComponentName, SparseArray<AuthorityInfo>> mServices =
430 new ArrayMap<ComponentName, SparseArray<AuthorityInfo>>();
Matthew Williamsfa774182013-06-18 15:44:11 -0700431
Fred Quintana77c560f2010-03-29 22:20:26 -0700432 private int mNextAuthorityId = 0;
433
Dianne Hackborn231cc602009-04-27 17:10:36 -0700434 // We keep 4 weeks of stats.
435 private final DayStats[] mDayStats = new DayStats[7*4];
436 private final Calendar mCal;
437 private int mYear;
438 private int mYearInDays;
Costin Manolache360e4542009-09-04 13:36:04 -0700439
Dianne Hackborn231cc602009-04-27 17:10:36 -0700440 private final Context mContext;
Fred Quintanac5d1c6d2010-01-27 12:17:49 -0800441
Dianne Hackborn231cc602009-04-27 17:10:36 -0700442 private static volatile SyncStorageEngine sSyncStorageEngine = null;
Costin Manolache360e4542009-09-04 13:36:04 -0700443
Ashish Sharma69d95de2012-04-11 17:27:24 -0700444 private int mSyncRandomOffset;
445
Dianne Hackborn231cc602009-04-27 17:10:36 -0700446 /**
447 * This file contains the core engine state: all accounts and the
448 * settings for them. It must never be lost, and should be changed
449 * infrequently, so it is stored as an XML file.
450 */
451 private final AtomicFile mAccountInfoFile;
Costin Manolache360e4542009-09-04 13:36:04 -0700452
Dianne Hackborn231cc602009-04-27 17:10:36 -0700453 /**
454 * This file contains the current sync status. We would like to retain
455 * it across boots, but its loss is not the end of the world, so we store
456 * this information as binary data.
457 */
458 private final AtomicFile mStatusFile;
Costin Manolache360e4542009-09-04 13:36:04 -0700459
Dianne Hackborn231cc602009-04-27 17:10:36 -0700460 /**
461 * This file contains sync statistics. This is purely debugging information
462 * so is written infrequently and can be thrown away at any time.
463 */
464 private final AtomicFile mStatisticsFile;
Costin Manolache360e4542009-09-04 13:36:04 -0700465
Dianne Hackborn231cc602009-04-27 17:10:36 -0700466 private int mNextHistoryId = 0;
Amith Yamasani04e0d262012-02-14 11:50:53 -0800467 private SparseArray<Boolean> mMasterSyncAutomatically = new SparseArray<Boolean>();
Yameng Huang2b5d0ea2011-01-11 14:00:19 +0800468 private boolean mDefaultMasterSyncAutomatically;
Amith Yamasani04e0d262012-02-14 11:50:53 -0800469
470 private OnSyncRequestListener mSyncRequestListener;
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000471 private OnAuthorityRemovedListener mAuthorityRemovedListener;
Costin Manolache360e4542009-09-04 13:36:04 -0700472
Svet Ganov65712b02016-09-01 10:24:11 -0700473 private boolean mGrantSyncAdaptersAccountAccess;
474
Makoto Onuki6963bea72017-12-12 10:42:39 -0800475 private final MyHandler mHandler;
Makoto Onukid4764302018-03-30 17:32:57 -0700476 private final SyncLogger mLogger;
Makoto Onuki6963bea72017-12-12 10:42:39 -0800477
478 private SyncStorageEngine(Context context, File dataDir, Looper looper) {
479 mHandler = new MyHandler(looper);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800480 mContext = context;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800481 sSyncStorageEngine = this;
Makoto Onukid4764302018-03-30 17:32:57 -0700482 mLogger = SyncLogger.getInstance();
Costin Manolache360e4542009-09-04 13:36:04 -0700483
Dianne Hackborn231cc602009-04-27 17:10:36 -0700484 mCal = Calendar.getInstance(TimeZone.getTimeZone("GMT+0"));
Costin Manolache360e4542009-09-04 13:36:04 -0700485
Yameng Huang2b5d0ea2011-01-11 14:00:19 +0800486 mDefaultMasterSyncAutomatically = mContext.getResources().getBoolean(
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000487 com.android.internal.R.bool.config_syncstorageengine_masterSyncAutomatically);
Yameng Huang2b5d0ea2011-01-11 14:00:19 +0800488
Dianne Hackborn231cc602009-04-27 17:10:36 -0700489 File systemDir = new File(dataDir, "system");
490 File syncDir = new File(systemDir, "sync");
Fred Quintanac5d1c6d2010-01-27 12:17:49 -0800491 syncDir.mkdirs();
Matthew Williamsba352712013-08-13 15:53:31 -0700492
493 maybeDeleteLegacyPendingInfoLocked(syncDir);
494
Dianne Hackborne17b4452018-01-10 13:15:40 -0800495 mAccountInfoFile = new AtomicFile(new File(syncDir, "accounts.xml"), "sync-accounts");
496 mStatusFile = new AtomicFile(new File(syncDir, "status.bin"), "sync-status");
497 mStatisticsFile = new AtomicFile(new File(syncDir, "stats.bin"), "sync-stats");
Costin Manolache360e4542009-09-04 13:36:04 -0700498
Dianne Hackborn231cc602009-04-27 17:10:36 -0700499 readAccountInfoLocked();
500 readStatusLocked();
Dianne Hackborn231cc602009-04-27 17:10:36 -0700501 readStatisticsLocked();
Fred Quintana77c560f2010-03-29 22:20:26 -0700502 readAndDeleteLegacyAccountInfoLocked();
503 writeAccountInfoLocked();
504 writeStatusLocked();
Fred Quintana77c560f2010-03-29 22:20:26 -0700505 writeStatisticsLocked();
Makoto Onukid4764302018-03-30 17:32:57 -0700506
507 if (mLogger.enabled()) {
508 final int size = mAuthorities.size();
509 mLogger.log("Loaded ", size, " items");
510 for (int i = 0; i < size; i++) {
511 mLogger.log(mAuthorities.valueAt(i));
512 }
513 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800514 }
515
516 public static SyncStorageEngine newTestInstance(Context context) {
Makoto Onuki6963bea72017-12-12 10:42:39 -0800517 return new SyncStorageEngine(context, context.getFilesDir(), Looper.getMainLooper());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800518 }
519
Makoto Onuki6963bea72017-12-12 10:42:39 -0800520 public static void init(Context context, Looper looper) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800521 if (sSyncStorageEngine != null) {
Fred Quintana307da1a2010-01-21 14:24:20 -0800522 return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800523 }
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700524 File dataDir = Environment.getDataDirectory();
Makoto Onuki6963bea72017-12-12 10:42:39 -0800525 sSyncStorageEngine = new SyncStorageEngine(context, dataDir, looper);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800526 }
527
528 public static SyncStorageEngine getSingleton() {
529 if (sSyncStorageEngine == null) {
530 throw new IllegalStateException("not initialized");
531 }
532 return sSyncStorageEngine;
533 }
534
Amith Yamasani04e0d262012-02-14 11:50:53 -0800535 protected void setOnSyncRequestListener(OnSyncRequestListener listener) {
536 if (mSyncRequestListener == null) {
537 mSyncRequestListener = listener;
538 }
539 }
540
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000541 protected void setOnAuthorityRemovedListener(OnAuthorityRemovedListener listener) {
542 if (mAuthorityRemovedListener == null) {
543 mAuthorityRemovedListener = listener;
544 }
545 }
546
547 protected void setPeriodicSyncAddedListener(PeriodicSyncAddedListener listener) {
548 if (mPeriodicSyncAddedListener == null) {
549 mPeriodicSyncAddedListener = listener;
550 }
551 }
552
Makoto Onuki6963bea72017-12-12 10:42:39 -0800553 private class MyHandler extends Handler {
554 public MyHandler(Looper looper) {
555 super(looper);
556 }
557
558 @Override
559 public void handleMessage(Message msg) {
560 if (msg.what == MSG_WRITE_STATUS) {
561 synchronized (mAuthorities) {
562 writeStatusLocked();
563 }
564 } else if (msg.what == MSG_WRITE_STATISTICS) {
565 synchronized (mAuthorities) {
566 writeStatisticsLocked();
567 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800568 }
569 }
570 }
Costin Manolache360e4542009-09-04 13:36:04 -0700571
Ashish Sharma69d95de2012-04-11 17:27:24 -0700572 public int getSyncRandomOffset() {
573 return mSyncRandomOffset;
574 }
575
Dianne Hackborn231cc602009-04-27 17:10:36 -0700576 public void addStatusChangeListener(int mask, ISyncStatusObserver callback) {
577 synchronized (mAuthorities) {
578 mChangeListeners.register(callback, mask);
579 }
580 }
Costin Manolache360e4542009-09-04 13:36:04 -0700581
Dianne Hackborn231cc602009-04-27 17:10:36 -0700582 public void removeStatusChangeListener(ISyncStatusObserver callback) {
583 synchronized (mAuthorities) {
584 mChangeListeners.unregister(callback);
585 }
586 }
Costin Manolache360e4542009-09-04 13:36:04 -0700587
Matthew Williamsfa774182013-06-18 15:44:11 -0700588 /**
589 * Figure out a reasonable flex time for cases where none is provided (old api calls).
590 * @param syncTimeSeconds requested sync time from now.
591 * @return amount of seconds before syncTimeSeconds that the sync can occur.
592 * I.e.
593 * earliest_sync_time = syncTimeSeconds - calculateDefaultFlexTime(syncTimeSeconds)
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700594 * The flex time is capped at a percentage of the {@link #DEFAULT_POLL_FREQUENCY_SECONDS}.
Matthew Williamsfa774182013-06-18 15:44:11 -0700595 */
596 public static long calculateDefaultFlexTime(long syncTimeSeconds) {
597 if (syncTimeSeconds < DEFAULT_MIN_FLEX_ALLOWED_SECS) {
598 // Small enough sync request time that we don't add flex time - developer probably
599 // wants to wait for an operation to occur before syncing so we honour the
600 // request time.
601 return 0L;
602 } else if (syncTimeSeconds < DEFAULT_POLL_FREQUENCY_SECONDS) {
603 return (long) (syncTimeSeconds * DEFAULT_FLEX_PERCENT_SYNC);
604 } else {
605 // Large enough sync request time that we cap the flex time.
606 return (long) (DEFAULT_POLL_FREQUENCY_SECONDS * DEFAULT_FLEX_PERCENT_SYNC);
607 }
608 }
609
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000610 void reportChange(int which) {
Dianne Hackborn231cc602009-04-27 17:10:36 -0700611 ArrayList<ISyncStatusObserver> reports = null;
612 synchronized (mAuthorities) {
613 int i = mChangeListeners.beginBroadcast();
614 while (i > 0) {
615 i--;
616 Integer mask = (Integer)mChangeListeners.getBroadcastCookie(i);
617 if ((which & mask.intValue()) == 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800618 continue;
619 }
Dianne Hackborn231cc602009-04-27 17:10:36 -0700620 if (reports == null) {
621 reports = new ArrayList<ISyncStatusObserver>(i);
622 }
623 reports.add(mChangeListeners.getBroadcastItem(i));
624 }
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700625 mChangeListeners.finishBroadcast();
Dianne Hackborn231cc602009-04-27 17:10:36 -0700626 }
Costin Manolache360e4542009-09-04 13:36:04 -0700627
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700628 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000629 Slog.v(TAG, "reportChange " + which + " to: " + reports);
Fred Quintana77c560f2010-03-29 22:20:26 -0700630 }
Costin Manolache360e4542009-09-04 13:36:04 -0700631
Dianne Hackborn231cc602009-04-27 17:10:36 -0700632 if (reports != null) {
633 int i = reports.size();
634 while (i > 0) {
635 i--;
636 try {
637 reports.get(i).onStatusChanged(which);
638 } catch (RemoteException e) {
639 // The remote callback list will take care of this for us.
640 }
641 }
642 }
643 }
Amith Yamasani70c874b2009-07-06 14:53:25 -0700644
Amith Yamasani04e0d262012-02-14 11:50:53 -0800645 public boolean getSyncAutomatically(Account account, int userId, String providerName) {
Dianne Hackborn231cc602009-04-27 17:10:36 -0700646 synchronized (mAuthorities) {
647 if (account != null) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700648 AuthorityInfo authority = getAuthorityLocked(
649 new EndPoint(account, providerName, userId),
Fred Quintanaac9385e2009-06-22 18:00:59 -0700650 "getSyncAutomatically");
651 return authority != null && authority.enabled;
Dianne Hackborn231cc602009-04-27 17:10:36 -0700652 }
Fred Quintanaac9385e2009-06-22 18:00:59 -0700653
Dianne Hackborn231cc602009-04-27 17:10:36 -0700654 int i = mAuthorities.size();
655 while (i > 0) {
656 i--;
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700657 AuthorityInfo authorityInfo = mAuthorities.valueAt(i);
Matthew Williams8ef22042013-07-26 12:56:39 -0700658 if (authorityInfo.target.matchesSpec(new EndPoint(account, providerName, userId))
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700659 && authorityInfo.enabled) {
Dianne Hackborn231cc602009-04-27 17:10:36 -0700660 return true;
661 }
662 }
663 return false;
664 }
665 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800666
Amith Yamasani04e0d262012-02-14 11:50:53 -0800667 public void setSyncAutomatically(Account account, int userId, String providerName,
Makoto Onukid4764302018-03-30 17:32:57 -0700668 boolean sync, @SyncExemption int syncExemptionFlag, int callingUid) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700669 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000670 Slog.d(TAG, "setSyncAutomatically: " + /* account + */" provider " + providerName
Dianne Hackborn40e9f292012-11-27 19:12:23 -0800671 + ", user " + userId + " -> " + sync);
672 }
Makoto Onukid4764302018-03-30 17:32:57 -0700673 mLogger.log("Set sync auto account=", account,
674 " user=", userId,
675 " authority=", providerName,
676 " value=", Boolean.toString(sync),
677 " callingUid=", callingUid);
Dianne Hackborn231cc602009-04-27 17:10:36 -0700678 synchronized (mAuthorities) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700679 AuthorityInfo authority =
680 getOrCreateAuthorityLocked(
681 new EndPoint(account, providerName, userId),
682 -1 /* ident */,
683 false);
Fred Quintana77c560f2010-03-29 22:20:26 -0700684 if (authority.enabled == sync) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700685 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000686 Slog.d(TAG, "setSyncAutomatically: already set to " + sync + ", doing nothing");
Dianne Hackborn40e9f292012-11-27 19:12:23 -0800687 }
Fred Quintana77c560f2010-03-29 22:20:26 -0700688 return;
689 }
Matthew Williams53abfdb2015-06-10 20:06:37 -0700690 // If the adapter was syncable but missing its initialization sync, set it to
691 // uninitialized now. This is to give it a chance to run any one-time initialization
692 // logic.
693 if (sync && authority.syncable == AuthorityInfo.SYNCABLE_NOT_INITIALIZED) {
694 authority.syncable = AuthorityInfo.NOT_INITIALIZED;
695 }
Joe Onorato8294fad2009-07-15 16:08:44 -0700696 authority.enabled = sync;
Dianne Hackborn231cc602009-04-27 17:10:36 -0700697 writeAccountInfoLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800698 }
Joe Onorato8294fad2009-07-15 16:08:44 -0700699
Fred Quintana77c560f2010-03-29 22:20:26 -0700700 if (sync) {
Alon Albert57286f92012-10-09 14:21:38 -0700701 requestSync(account, userId, SyncOperation.REASON_SYNC_AUTO, providerName,
Makoto Onuki61283ec2018-01-31 17:22:36 -0800702 new Bundle(),
Makoto Onuki75ad2492018-03-28 14:42:42 -0700703 syncExemptionFlag);
Joe Onorato8294fad2009-07-15 16:08:44 -0700704 }
Fred Quintanaac9385e2009-06-22 18:00:59 -0700705 reportChange(ContentResolver.SYNC_OBSERVER_TYPE_SETTINGS);
Marvin Paula6533252014-11-24 12:57:48 -0800706 queueBackup();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800707 }
708
Amith Yamasani04e0d262012-02-14 11:50:53 -0800709 public int getIsSyncable(Account account, int userId, String providerName) {
Fred Quintana5e787c42009-08-16 23:13:53 -0700710 synchronized (mAuthorities) {
711 if (account != null) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700712 AuthorityInfo authority = getAuthorityLocked(
713 new EndPoint(account, providerName, userId),
714 "get authority syncable");
Fred Quintana5e787c42009-08-16 23:13:53 -0700715 if (authority == null) {
Matthew Williams53abfdb2015-06-10 20:06:37 -0700716 return AuthorityInfo.NOT_INITIALIZED;
Fred Quintana5e787c42009-08-16 23:13:53 -0700717 }
718 return authority.syncable;
719 }
720
721 int i = mAuthorities.size();
722 while (i > 0) {
723 i--;
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700724 AuthorityInfo authorityInfo = mAuthorities.valueAt(i);
Matthew Williams8ef22042013-07-26 12:56:39 -0700725 if (authorityInfo.target != null
726 && authorityInfo.target.provider.equals(providerName)) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700727 return authorityInfo.syncable;
Fred Quintana5e787c42009-08-16 23:13:53 -0700728 }
729 }
Matthew Williams53abfdb2015-06-10 20:06:37 -0700730 return AuthorityInfo.NOT_INITIALIZED;
Fred Quintana5e787c42009-08-16 23:13:53 -0700731 }
732 }
733
Makoto Onukid4764302018-03-30 17:32:57 -0700734 public void setIsSyncable(Account account, int userId, String providerName, int syncable,
735 int callingUid) {
736 setSyncableStateForEndPoint(new EndPoint(account, providerName, userId), syncable,
737 callingUid);
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700738 }
739
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700740 /**
741 * An enabled sync service and a syncable provider's adapter both get resolved to the same
742 * persisted variable - namely the "syncable" attribute for an AuthorityInfo in accounts.xml.
Matthew Williams7a2ab3a2013-09-11 14:25:51 -0700743 * @param target target to set value for.
744 * @param syncable 0 indicates unsyncable, <0 unknown, >0 is active/syncable.
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700745 */
Makoto Onukid4764302018-03-30 17:32:57 -0700746 private void setSyncableStateForEndPoint(EndPoint target, int syncable, int callingUid) {
Matthew Williams7a2ab3a2013-09-11 14:25:51 -0700747 AuthorityInfo aInfo;
Makoto Onukid4764302018-03-30 17:32:57 -0700748 mLogger.log("Set syncable ", target, " value=", Integer.toString(syncable),
749 " callingUid=", callingUid);
Matthew Williams7a2ab3a2013-09-11 14:25:51 -0700750 synchronized (mAuthorities) {
751 aInfo = getOrCreateAuthorityLocked(target, -1, false);
Matthew Williams53abfdb2015-06-10 20:06:37 -0700752 if (syncable < AuthorityInfo.NOT_INITIALIZED) {
753 syncable = AuthorityInfo.NOT_INITIALIZED;
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700754 }
Matthew Williams7a2ab3a2013-09-11 14:25:51 -0700755 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000756 Slog.d(TAG, "setIsSyncable: " + aInfo.toString() + " -> " + syncable);
Matthew Williams7a2ab3a2013-09-11 14:25:51 -0700757 }
758 if (aInfo.syncable == syncable) {
759 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000760 Slog.d(TAG, "setIsSyncable: already set to " + syncable + ", doing nothing");
Matthew Williams7a2ab3a2013-09-11 14:25:51 -0700761 }
762 return;
763 }
764 aInfo.syncable = syncable;
765 writeAccountInfoLocked();
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700766 }
Matthew Williams53abfdb2015-06-10 20:06:37 -0700767 if (syncable == AuthorityInfo.SYNCABLE) {
Makoto Onuki61283ec2018-01-31 17:22:36 -0800768 requestSync(aInfo, SyncOperation.REASON_IS_SYNCABLE, new Bundle(),
Makoto Onuki75ad2492018-03-28 14:42:42 -0700769 ContentResolver.SYNC_EXEMPTION_NONE);
Fred Quintana5e787c42009-08-16 23:13:53 -0700770 }
771 reportChange(ContentResolver.SYNC_OBSERVER_TYPE_SETTINGS);
772 }
773
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700774 public Pair<Long, Long> getBackoff(EndPoint info) {
Fred Quintana307da1a2010-01-21 14:24:20 -0800775 synchronized (mAuthorities) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700776 AuthorityInfo authority = getAuthorityLocked(info, "getBackoff");
777 if (authority != null) {
778 return Pair.create(authority.backoffTime, authority.backoffDelay);
Fred Quintana307da1a2010-01-21 14:24:20 -0800779 }
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700780 return null;
Fred Quintana307da1a2010-01-21 14:24:20 -0800781 }
782 }
783
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700784 /**
785 * Update the backoff for the given endpoint. The endpoint may be for a provider/account and
786 * the account or provider info be null, which signifies all accounts or providers.
787 */
788 public void setBackoff(EndPoint info, long nextSyncTime, long nextDelay) {
789 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000790 Slog.v(TAG, "setBackoff: " + info
Fred Quintana307da1a2010-01-21 14:24:20 -0800791 + " -> nextSyncTime " + nextSyncTime + ", nextDelay " + nextDelay);
792 }
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700793 boolean changed;
Fred Quintana307da1a2010-01-21 14:24:20 -0800794 synchronized (mAuthorities) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000795 if (info.account == null || info.provider == null) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700796 // Do more work for a provider sync if the provided info has specified all
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000797 // accounts/providers.
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700798 changed = setBackoffLocked(
799 info.account /* may be null */,
800 info.userId,
801 info.provider /* may be null */,
802 nextSyncTime, nextDelay);
Fred Quintana307da1a2010-01-21 14:24:20 -0800803 } else {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700804 AuthorityInfo authorityInfo =
805 getOrCreateAuthorityLocked(info, -1 /* ident */, true);
806 if (authorityInfo.backoffTime == nextSyncTime
807 && authorityInfo.backoffDelay == nextDelay) {
808 changed = false;
809 } else {
810 authorityInfo.backoffTime = nextSyncTime;
811 authorityInfo.backoffDelay = nextDelay;
812 changed = true;
Fred Quintana307da1a2010-01-21 14:24:20 -0800813 }
Fred Quintana307da1a2010-01-21 14:24:20 -0800814 }
Fred Quintana307da1a2010-01-21 14:24:20 -0800815 }
Fred Quintana307da1a2010-01-21 14:24:20 -0800816 if (changed) {
817 reportChange(ContentResolver.SYNC_OBSERVER_TYPE_SETTINGS);
818 }
819 }
820
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700821 /**
822 * Either set backoff for a specific authority, or set backoff for all the
823 * accounts on a specific adapter/all adapters.
824 *
825 * @param account account for which to set backoff. Null to specify all accounts.
826 * @param userId id of the user making this request.
827 * @param providerName provider for which to set backoff. Null to specify all providers.
Matthew Williams7a2ab3a2013-09-11 14:25:51 -0700828 * @return true if a change occured.
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700829 */
830 private boolean setBackoffLocked(Account account, int userId, String providerName,
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000831 long nextSyncTime, long nextDelay) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700832 boolean changed = false;
833 for (AccountInfo accountInfo : mAccounts.values()) {
834 if (account != null && !account.equals(accountInfo.accountAndUser.account)
835 && userId != accountInfo.accountAndUser.userId) {
836 continue;
837 }
838 for (AuthorityInfo authorityInfo : accountInfo.authorities.values()) {
839 if (providerName != null
Matthew Williams8ef22042013-07-26 12:56:39 -0700840 && !providerName.equals(authorityInfo.target.provider)) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700841 continue;
842 }
843 if (authorityInfo.backoffTime != nextSyncTime
844 || authorityInfo.backoffDelay != nextDelay) {
845 authorityInfo.backoffTime = nextSyncTime;
846 authorityInfo.backoffDelay = nextDelay;
847 changed = true;
848 }
849 }
850 }
851 return changed;
852 }
853
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000854 public void clearAllBackoffsLocked() {
Alon Albert744e310f2010-12-14 11:37:20 -0800855 boolean changed = false;
856 synchronized (mAuthorities) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000857 // Clear backoff for all sync adapters.
858 for (AccountInfo accountInfo : mAccounts.values()) {
859 for (AuthorityInfo authorityInfo : accountInfo.authorities.values()) {
860 if (authorityInfo.backoffTime != NOT_IN_BACKOFF_MODE
861 || authorityInfo.backoffDelay != NOT_IN_BACKOFF_MODE) {
862 if (Log.isLoggable(TAG, Log.VERBOSE)) {
863 Slog.v(TAG, "clearAllBackoffsLocked:"
864 + " authority:" + authorityInfo.target
865 + " account:" + accountInfo.accountAndUser.account.name
866 + " user:" + accountInfo.accountAndUser.userId
867 + " backoffTime was: " + authorityInfo.backoffTime
868 + " backoffDelay was: " + authorityInfo.backoffDelay);
Alon Albert744e310f2010-12-14 11:37:20 -0800869 }
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000870 authorityInfo.backoffTime = NOT_IN_BACKOFF_MODE;
871 authorityInfo.backoffDelay = NOT_IN_BACKOFF_MODE;
872 changed = true;
Alon Albert744e310f2010-12-14 11:37:20 -0800873 }
874 }
875 }
876 }
877
878 if (changed) {
879 reportChange(ContentResolver.SYNC_OBSERVER_TYPE_SETTINGS);
880 }
881 }
882
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700883 public long getDelayUntilTime(EndPoint info) {
Fred Quintana307da1a2010-01-21 14:24:20 -0800884 synchronized (mAuthorities) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700885 AuthorityInfo authority = getAuthorityLocked(info, "getDelayUntil");
Fred Quintana307da1a2010-01-21 14:24:20 -0800886 if (authority == null) {
887 return 0;
888 }
889 return authority.delayUntil;
890 }
891 }
892
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700893 public void setDelayUntilTime(EndPoint info, long delayUntil) {
894 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000895 Slog.v(TAG, "setDelayUntil: " + info
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700896 + " -> delayUntil " + delayUntil);
Fred Quintanac5d1c6d2010-01-27 12:17:49 -0800897 }
898 synchronized (mAuthorities) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700899 AuthorityInfo authority = getOrCreateAuthorityLocked(info, -1, true);
900 if (authority.delayUntil == delayUntil) {
901 return;
Matthew Williamsfa774182013-06-18 15:44:11 -0700902 }
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700903 authority.delayUntil = delayUntil;
904 }
905 reportChange(ContentResolver.SYNC_OBSERVER_TYPE_SETTINGS);
906 }
907
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700908 /**
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000909 * Restore all periodic syncs read from persisted files. Used to restore periodic syncs
910 * after an OS update.
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700911 */
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000912 boolean restoreAllPeriodicSyncs() {
913 if (mPeriodicSyncAddedListener == null) {
914 return false;
Fred Quintanac5d1c6d2010-01-27 12:17:49 -0800915 }
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000916 synchronized (mAuthorities) {
917 for (int i=0; i<mAuthorities.size(); i++) {
918 AuthorityInfo authority = mAuthorities.valueAt(i);
919 for (PeriodicSync periodicSync: authority.periodicSyncs) {
920 mPeriodicSyncAddedListener.onPeriodicSyncAdded(authority.target,
921 periodicSync.extras, periodicSync.period, periodicSync.flexTime);
922 }
923 authority.periodicSyncs.clear();
924 }
925 writeAccountInfoLocked();
926 }
927 return true;
Fred Quintanac5d1c6d2010-01-27 12:17:49 -0800928 }
929
Makoto Onuki75ad2492018-03-28 14:42:42 -0700930 public void setMasterSyncAutomatically(boolean flag, int userId,
Makoto Onukid4764302018-03-30 17:32:57 -0700931 @SyncExemption int syncExemptionFlag, int callingUid) {
932 mLogger.log("Set master enabled=", flag, " user=", userId,
933 " caller=" + callingUid);
Dianne Hackborn231cc602009-04-27 17:10:36 -0700934 synchronized (mAuthorities) {
Amith Yamasani04e0d262012-02-14 11:50:53 -0800935 Boolean auto = mMasterSyncAutomatically.get(userId);
Matthew Williams8ef22042013-07-26 12:56:39 -0700936 if (auto != null && auto.equals(flag)) {
Fred Quintana77c560f2010-03-29 22:20:26 -0700937 return;
938 }
Amith Yamasani04e0d262012-02-14 11:50:53 -0800939 mMasterSyncAutomatically.put(userId, flag);
Dianne Hackborn231cc602009-04-27 17:10:36 -0700940 writeAccountInfoLocked();
941 }
Fred Quintana77c560f2010-03-29 22:20:26 -0700942 if (flag) {
Alon Albert57286f92012-10-09 14:21:38 -0700943 requestSync(null, userId, SyncOperation.REASON_MASTER_SYNC_AUTO, null,
Makoto Onuki61283ec2018-01-31 17:22:36 -0800944 new Bundle(),
Makoto Onuki75ad2492018-03-28 14:42:42 -0700945 syncExemptionFlag);
Joe Onorato8294fad2009-07-15 16:08:44 -0700946 }
Fred Quintanaac9385e2009-06-22 18:00:59 -0700947 reportChange(ContentResolver.SYNC_OBSERVER_TYPE_SETTINGS);
Jeff Sharkey7a96c392012-11-15 14:01:46 -0800948 mContext.sendBroadcast(ContentResolver.ACTION_SYNC_CONN_STATUS_CHANGED);
Marvin Paula6533252014-11-24 12:57:48 -0800949 queueBackup();
Dianne Hackborn231cc602009-04-27 17:10:36 -0700950 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800951
Amith Yamasani04e0d262012-02-14 11:50:53 -0800952 public boolean getMasterSyncAutomatically(int userId) {
Dianne Hackborn231cc602009-04-27 17:10:36 -0700953 synchronized (mAuthorities) {
Amith Yamasani04e0d262012-02-14 11:50:53 -0800954 Boolean auto = mMasterSyncAutomatically.get(userId);
Yameng Huang2b5d0ea2011-01-11 14:00:19 +0800955 return auto == null ? mDefaultMasterSyncAutomatically : auto;
Dianne Hackborn231cc602009-04-27 17:10:36 -0700956 }
957 }
Costin Manolache360e4542009-09-04 13:36:04 -0700958
Makoto Onukib47e8942017-09-18 14:03:03 -0700959 public int getAuthorityCount() {
960 synchronized (mAuthorities) {
961 return mAuthorities.size();
962 }
963 }
964
Dianne Hackborn231cc602009-04-27 17:10:36 -0700965 public AuthorityInfo getAuthority(int authorityId) {
966 synchronized (mAuthorities) {
967 return mAuthorities.get(authorityId);
968 }
969 }
Costin Manolache360e4542009-09-04 13:36:04 -0700970
Dianne Hackborn231cc602009-04-27 17:10:36 -0700971 /**
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700972 * Returns true if there is currently a sync operation being actively processed for the given
Matthew Williams8ef22042013-07-26 12:56:39 -0700973 * target.
Dianne Hackborn231cc602009-04-27 17:10:36 -0700974 */
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700975 public boolean isSyncActive(EndPoint info) {
Dianne Hackborn231cc602009-04-27 17:10:36 -0700976 synchronized (mAuthorities) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700977 for (SyncInfo syncInfo : getCurrentSyncs(info.userId)) {
Fred Quintana918339a2010-10-05 14:00:39 -0700978 AuthorityInfo ainfo = getAuthority(syncInfo.authorityId);
Matthew Williams8ef22042013-07-26 12:56:39 -0700979 if (ainfo != null && ainfo.target.matchesSpec(info)) {
Dianne Hackborn231cc602009-04-27 17:10:36 -0700980 return true;
981 }
982 }
983 }
Dianne Hackborn231cc602009-04-27 17:10:36 -0700984 return false;
985 }
Costin Manolache360e4542009-09-04 13:36:04 -0700986
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000987 public void markPending(EndPoint info, boolean pendingValue) {
Dianne Hackborn231cc602009-04-27 17:10:36 -0700988 synchronized (mAuthorities) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000989 AuthorityInfo authority = getOrCreateAuthorityLocked(info,
990 -1 /* desired identifier */,
991 true /* write accounts to storage */);
Dianne Hackborn231cc602009-04-27 17:10:36 -0700992 if (authority == null) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000993 return;
Dianne Hackborn231cc602009-04-27 17:10:36 -0700994 }
Dianne Hackborn231cc602009-04-27 17:10:36 -0700995 SyncStatusInfo status = getOrCreateSyncStatusLocked(authority.ident);
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000996 status.pending = pendingValue;
Dianne Hackborn231cc602009-04-27 17:10:36 -0700997 }
Fred Quintanaac9385e2009-06-22 18:00:59 -0700998 reportChange(ContentResolver.SYNC_OBSERVER_TYPE_PENDING);
Dianne Hackborn231cc602009-04-27 17:10:36 -0700999 }
Costin Manolache360e4542009-09-04 13:36:04 -07001000
Dianne Hackborn231cc602009-04-27 17:10:36 -07001001 /**
1002 * Called when the set of account has changed, given the new array of
1003 * active accounts.
1004 */
Amith Yamasani04e0d262012-02-14 11:50:53 -08001005 public void doDatabaseCleanup(Account[] accounts, int userId) {
Dianne Hackborn231cc602009-04-27 17:10:36 -07001006 synchronized (mAuthorities) {
Matthew Williams8ef22042013-07-26 12:56:39 -07001007 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001008 Slog.v(TAG, "Updating for new accounts...");
Matthew Williams8ef22042013-07-26 12:56:39 -07001009 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07001010 SparseArray<AuthorityInfo> removing = new SparseArray<AuthorityInfo>();
1011 Iterator<AccountInfo> accIt = mAccounts.values().iterator();
1012 while (accIt.hasNext()) {
1013 AccountInfo acc = accIt.next();
Amith Yamasani04e0d262012-02-14 11:50:53 -08001014 if (!ArrayUtils.contains(accounts, acc.accountAndUser.account)
1015 && acc.accountAndUser.userId == userId) {
Dianne Hackborn231cc602009-04-27 17:10:36 -07001016 // This account no longer exists...
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001017 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001018 Slog.v(TAG, "Account removed: " + acc.accountAndUser);
Fred Quintana77c560f2010-03-29 22:20:26 -07001019 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07001020 for (AuthorityInfo auth : acc.authorities.values()) {
1021 removing.put(auth.ident, auth);
1022 }
1023 accIt.remove();
1024 }
1025 }
Costin Manolache360e4542009-09-04 13:36:04 -07001026
Dianne Hackborn231cc602009-04-27 17:10:36 -07001027 // Clean out all data structures.
1028 int i = removing.size();
1029 if (i > 0) {
1030 while (i > 0) {
1031 i--;
1032 int ident = removing.keyAt(i);
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001033 AuthorityInfo auth = removing.valueAt(i);
1034 if (mAuthorityRemovedListener != null) {
1035 mAuthorityRemovedListener.onAuthorityRemoved(auth.target);
1036 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07001037 mAuthorities.remove(ident);
1038 int j = mSyncStatus.size();
1039 while (j > 0) {
1040 j--;
1041 if (mSyncStatus.keyAt(j) == ident) {
1042 mSyncStatus.remove(mSyncStatus.keyAt(j));
1043 }
1044 }
1045 j = mSyncHistory.size();
1046 while (j > 0) {
1047 j--;
1048 if (mSyncHistory.get(j).authorityId == ident) {
1049 mSyncHistory.remove(j);
1050 }
1051 }
1052 }
1053 writeAccountInfoLocked();
1054 writeStatusLocked();
Dianne Hackborn231cc602009-04-27 17:10:36 -07001055 writeStatisticsLocked();
1056 }
1057 }
1058 }
1059
1060 /**
Fred Quintana918339a2010-10-05 14:00:39 -07001061 * Called when a sync is starting. Supply a valid ActiveSyncContext with information
1062 * about the sync.
Dianne Hackborn231cc602009-04-27 17:10:36 -07001063 */
Fred Quintana918339a2010-10-05 14:00:39 -07001064 public SyncInfo addActiveSync(SyncManager.ActiveSyncContext activeSyncContext) {
1065 final SyncInfo syncInfo;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001066 synchronized (mAuthorities) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001067 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001068 Slog.v(TAG, "setActiveSync: account="
1069 + " auth=" + activeSyncContext.mSyncOperation.target
1070 + " src=" + activeSyncContext.mSyncOperation.syncSource
1071 + " extras=" + activeSyncContext.mSyncOperation.extras);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001072 }
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001073 final EndPoint info = activeSyncContext.mSyncOperation.target;
1074 AuthorityInfo authorityInfo = getOrCreateAuthorityLocked(
1075 info,
Matthew Williams8ef22042013-07-26 12:56:39 -07001076 -1 /* assign a new identifier if creating a new target */,
Fred Quintana918339a2010-10-05 14:00:39 -07001077 true /* write to storage if this results in a change */);
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001078 syncInfo = new SyncInfo(
1079 authorityInfo.ident,
Matthew Williams8ef22042013-07-26 12:56:39 -07001080 authorityInfo.target.account,
1081 authorityInfo.target.provider,
Fred Quintana918339a2010-10-05 14:00:39 -07001082 activeSyncContext.mStartTime);
Matthew Williams8ef22042013-07-26 12:56:39 -07001083 getCurrentSyncs(authorityInfo.target.userId).add(syncInfo);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001084 }
Fred Quintana918339a2010-10-05 14:00:39 -07001085 reportActiveChange();
1086 return syncInfo;
1087 }
1088
1089 /**
1090 * Called to indicate that a previously active sync is no longer active.
1091 */
Amith Yamasani04e0d262012-02-14 11:50:53 -08001092 public void removeActiveSync(SyncInfo syncInfo, int userId) {
Fred Quintana918339a2010-10-05 14:00:39 -07001093 synchronized (mAuthorities) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001094 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001095 Slog.v(TAG, "removeActiveSync: account=" + syncInfo.account
Amith Yamasani04e0d262012-02-14 11:50:53 -08001096 + " user=" + userId
Matthew Williams5a9decd2014-06-04 09:25:11 -07001097 + " auth=" + syncInfo.authority);
Fred Quintana918339a2010-10-05 14:00:39 -07001098 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08001099 getCurrentSyncs(userId).remove(syncInfo);
Fred Quintana918339a2010-10-05 14:00:39 -07001100 }
1101
1102 reportActiveChange();
Dianne Hackborn231cc602009-04-27 17:10:36 -07001103 }
1104
1105 /**
1106 * To allow others to send active change reports, to poke clients.
1107 */
1108 public void reportActiveChange() {
Fred Quintanaac9385e2009-06-22 18:00:59 -07001109 reportChange(ContentResolver.SYNC_OBSERVER_TYPE_ACTIVE);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001110 }
Costin Manolache360e4542009-09-04 13:36:04 -07001111
Dianne Hackborn231cc602009-04-27 17:10:36 -07001112 /**
Matthew Williams8ef22042013-07-26 12:56:39 -07001113 * Note that sync has started for the given operation.
Dianne Hackborn231cc602009-04-27 17:10:36 -07001114 */
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001115 public long insertStartSyncEvent(SyncOperation op, long now) {
Dianne Hackborn231cc602009-04-27 17:10:36 -07001116 long id;
1117 synchronized (mAuthorities) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001118 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001119 Slog.v(TAG, "insertStartSyncEvent: " + op);
Fred Quintana77c560f2010-03-29 22:20:26 -07001120 }
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001121 AuthorityInfo authority = getAuthorityLocked(op.target, "insertStartSyncEvent");
Dianne Hackborn231cc602009-04-27 17:10:36 -07001122 if (authority == null) {
1123 return -1;
1124 }
1125 SyncHistoryItem item = new SyncHistoryItem();
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001126 item.initialization = op.isInitialization();
Dianne Hackborn231cc602009-04-27 17:10:36 -07001127 item.authorityId = authority.ident;
1128 item.historyId = mNextHistoryId++;
1129 if (mNextHistoryId < 0) mNextHistoryId = 0;
1130 item.eventTime = now;
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001131 item.source = op.syncSource;
1132 item.reason = op.reason;
1133 item.extras = op.extras;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001134 item.event = EVENT_START;
1135 mSyncHistory.add(0, item);
1136 while (mSyncHistory.size() > MAX_HISTORY) {
1137 mSyncHistory.remove(mSyncHistory.size()-1);
1138 }
1139 id = item.historyId;
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001140 if (Log.isLoggable(TAG, Log.VERBOSE)) Slog.v(TAG, "returning historyId " + id);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001141 }
Costin Manolache360e4542009-09-04 13:36:04 -07001142
Fred Quintanaac9385e2009-06-22 18:00:59 -07001143 reportChange(ContentResolver.SYNC_OBSERVER_TYPE_STATUS);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001144 return id;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001145 }
1146
Fred Quintana77c560f2010-03-29 22:20:26 -07001147 public void stopSyncEvent(long historyId, long elapsedTime, String resultMessage,
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001148 long downstreamActivity, long upstreamActivity) {
Dianne Hackborn231cc602009-04-27 17:10:36 -07001149 synchronized (mAuthorities) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001150 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001151 Slog.v(TAG, "stopSyncEvent: historyId=" + historyId);
Fred Quintana77c560f2010-03-29 22:20:26 -07001152 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07001153 SyncHistoryItem item = null;
1154 int i = mSyncHistory.size();
1155 while (i > 0) {
1156 i--;
1157 item = mSyncHistory.get(i);
1158 if (item.historyId == historyId) {
1159 break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001160 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07001161 item = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001162 }
Costin Manolache360e4542009-09-04 13:36:04 -07001163
Dianne Hackborn231cc602009-04-27 17:10:36 -07001164 if (item == null) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001165 Slog.w(TAG, "stopSyncEvent: no history for id " + historyId);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001166 return;
1167 }
Costin Manolache360e4542009-09-04 13:36:04 -07001168
Dianne Hackborn231cc602009-04-27 17:10:36 -07001169 item.elapsedTime = elapsedTime;
1170 item.event = EVENT_STOP;
1171 item.mesg = resultMessage;
1172 item.downstreamActivity = downstreamActivity;
1173 item.upstreamActivity = upstreamActivity;
Costin Manolache360e4542009-09-04 13:36:04 -07001174
Dianne Hackborn231cc602009-04-27 17:10:36 -07001175 SyncStatusInfo status = getOrCreateSyncStatusLocked(item.authorityId);
Costin Manolache360e4542009-09-04 13:36:04 -07001176
Dianne Hackborn231cc602009-04-27 17:10:36 -07001177 status.numSyncs++;
1178 status.totalElapsedTime += elapsedTime;
1179 switch (item.source) {
1180 case SOURCE_LOCAL:
1181 status.numSourceLocal++;
1182 break;
1183 case SOURCE_POLL:
1184 status.numSourcePoll++;
1185 break;
1186 case SOURCE_USER:
1187 status.numSourceUser++;
1188 break;
1189 case SOURCE_SERVER:
1190 status.numSourceServer++;
1191 break;
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001192 case SOURCE_PERIODIC:
1193 status.numSourcePeriodic++;
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001194 break;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001195 }
Costin Manolache360e4542009-09-04 13:36:04 -07001196
Dianne Hackborn231cc602009-04-27 17:10:36 -07001197 boolean writeStatisticsNow = false;
Dianne Hackborn55280a92009-05-07 15:53:46 -07001198 int day = getCurrentDayLocked();
Dianne Hackborn231cc602009-04-27 17:10:36 -07001199 if (mDayStats[0] == null) {
1200 mDayStats[0] = new DayStats(day);
1201 } else if (day != mDayStats[0].day) {
1202 System.arraycopy(mDayStats, 0, mDayStats, 1, mDayStats.length-1);
1203 mDayStats[0] = new DayStats(day);
1204 writeStatisticsNow = true;
1205 } else if (mDayStats[0] == null) {
1206 }
1207 final DayStats ds = mDayStats[0];
Costin Manolache360e4542009-09-04 13:36:04 -07001208
Dianne Hackborn231cc602009-04-27 17:10:36 -07001209 final long lastSyncTime = (item.eventTime + elapsedTime);
1210 boolean writeStatusNow = false;
1211 if (MESG_SUCCESS.equals(resultMessage)) {
1212 // - if successful, update the successful columns
1213 if (status.lastSuccessTime == 0 || status.lastFailureTime != 0) {
1214 writeStatusNow = true;
1215 }
1216 status.lastSuccessTime = lastSyncTime;
1217 status.lastSuccessSource = item.source;
1218 status.lastFailureTime = 0;
1219 status.lastFailureSource = -1;
1220 status.lastFailureMesg = null;
1221 status.initialFailureTime = 0;
1222 ds.successCount++;
1223 ds.successTime += elapsedTime;
1224 } else if (!MESG_CANCELED.equals(resultMessage)) {
1225 if (status.lastFailureTime == 0) {
1226 writeStatusNow = true;
1227 }
1228 status.lastFailureTime = lastSyncTime;
1229 status.lastFailureSource = item.source;
1230 status.lastFailureMesg = resultMessage;
1231 if (status.initialFailureTime == 0) {
1232 status.initialFailureTime = lastSyncTime;
1233 }
1234 ds.failureCount++;
1235 ds.failureTime += elapsedTime;
1236 }
Makoto Onuki15e7a252017-06-08 17:12:05 -07001237 final StringBuilder event = new StringBuilder();
1238 event.append("" + resultMessage + " Source=" + SyncStorageEngine.SOURCES[item.source]
1239 + " Elapsed=");
1240 SyncManager.formatDurationHMS(event, elapsedTime);
1241 event.append(" Reason=");
1242 event.append(SyncOperation.reasonToString(null, item.reason));
1243 event.append(" Extras=");
1244 SyncOperation.extrasToStringBuilder(item.extras, event);
1245
1246 status.addEvent(event.toString());
Costin Manolache360e4542009-09-04 13:36:04 -07001247
Dianne Hackborn231cc602009-04-27 17:10:36 -07001248 if (writeStatusNow) {
1249 writeStatusLocked();
Makoto Onuki6963bea72017-12-12 10:42:39 -08001250 } else if (!mHandler.hasMessages(MSG_WRITE_STATUS)) {
1251 mHandler.sendMessageDelayed(mHandler.obtainMessage(MSG_WRITE_STATUS),
Dianne Hackborn231cc602009-04-27 17:10:36 -07001252 WRITE_STATUS_DELAY);
1253 }
1254 if (writeStatisticsNow) {
1255 writeStatisticsLocked();
Makoto Onuki6963bea72017-12-12 10:42:39 -08001256 } else if (!mHandler.hasMessages(MSG_WRITE_STATISTICS)) {
1257 mHandler.sendMessageDelayed(mHandler.obtainMessage(MSG_WRITE_STATISTICS),
Dianne Hackborn231cc602009-04-27 17:10:36 -07001258 WRITE_STATISTICS_DELAY);
Costin Manolache360e4542009-09-04 13:36:04 -07001259 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07001260 }
Costin Manolache360e4542009-09-04 13:36:04 -07001261
Fred Quintanaac9385e2009-06-22 18:00:59 -07001262 reportChange(ContentResolver.SYNC_OBSERVER_TYPE_STATUS);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001263 }
1264
1265 /**
Matthew Williamsa7456e42013-11-12 14:41:02 -08001266 * Return a list of the currently active syncs. Note that the returned
1267 * items are the real, live active sync objects, so be careful what you do
1268 * with it.
Fred Quintana918339a2010-10-05 14:00:39 -07001269 */
Matthew Williamsa7456e42013-11-12 14:41:02 -08001270 private List<SyncInfo> getCurrentSyncs(int userId) {
Fred Quintana918339a2010-10-05 14:00:39 -07001271 synchronized (mAuthorities) {
Matthew Williamsa7456e42013-11-12 14:41:02 -08001272 return getCurrentSyncsLocked(userId);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001273 }
1274 }
Costin Manolache360e4542009-09-04 13:36:04 -07001275
Dianne Hackborn231cc602009-04-27 17:10:36 -07001276 /**
Matthew Williamsf39549e2016-01-19 23:04:04 +00001277 * @param userId Id of user to return current sync info.
1278 * @param canAccessAccounts Determines whether to redact Account information from the result.
1279 * @return a copy of the current syncs data structure. Will not return null.
Matthew Williamsa7456e42013-11-12 14:41:02 -08001280 */
Matthew Williamsf39549e2016-01-19 23:04:04 +00001281 public List<SyncInfo> getCurrentSyncsCopy(int userId, boolean canAccessAccounts) {
Matthew Williamsa7456e42013-11-12 14:41:02 -08001282 synchronized (mAuthorities) {
1283 final List<SyncInfo> syncs = getCurrentSyncsLocked(userId);
1284 final List<SyncInfo> syncsCopy = new ArrayList<SyncInfo>();
1285 for (SyncInfo sync : syncs) {
Matthew Williamsf39549e2016-01-19 23:04:04 +00001286 SyncInfo copy;
1287 if (!canAccessAccounts) {
1288 copy = SyncInfo.createAccountRedacted(
1289 sync.authorityId, sync.authority, sync.startTime);
1290 } else {
1291 copy = new SyncInfo(sync);
1292 }
1293 syncsCopy.add(copy);
Matthew Williamsa7456e42013-11-12 14:41:02 -08001294 }
1295 return syncsCopy;
1296 }
1297 }
1298
1299 private List<SyncInfo> getCurrentSyncsLocked(int userId) {
1300 ArrayList<SyncInfo> syncs = mCurrentSyncs.get(userId);
1301 if (syncs == null) {
1302 syncs = new ArrayList<SyncInfo>();
1303 mCurrentSyncs.put(userId, syncs);
1304 }
1305 return syncs;
1306 }
1307
1308 /**
Matthew Williams8ef22042013-07-26 12:56:39 -07001309 * Return a copy of the specified target with the corresponding sync status
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001310 */
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001311 public Pair<AuthorityInfo, SyncStatusInfo> getCopyOfAuthorityWithSyncStatus(EndPoint info) {
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001312 synchronized (mAuthorities) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001313 AuthorityInfo authorityInfo = getOrCreateAuthorityLocked(info,
Matthew Williams8ef22042013-07-26 12:56:39 -07001314 -1 /* assign a new identifier if creating a new target */,
Georgi Nikolovdbe846b2013-06-25 14:09:56 -07001315 true /* write to storage if this results in a change */);
1316 return createCopyPairOfAuthorityWithSyncStatusLocked(authorityInfo);
1317 }
1318 }
1319
1320 /**
Matthew Williams8ef22042013-07-26 12:56:39 -07001321 * Returns the status that matches the target.
Costin Manolacheb7520982009-09-02 18:03:05 -07001322 *
Matthew Williams8ef22042013-07-26 12:56:39 -07001323 * @param info the endpoint target we are querying status info for.
1324 * @return the SyncStatusInfo for the endpoint.
Dianne Hackborn231cc602009-04-27 17:10:36 -07001325 */
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001326 public SyncStatusInfo getStatusByAuthority(EndPoint info) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001327 if (info.account == null || info.provider == null) {
Matthew Williamsd08d6682013-10-14 10:39:41 -07001328 return null;
Costin Manolacheb7520982009-09-02 18:03:05 -07001329 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07001330 synchronized (mAuthorities) {
Dianne Hackborn231cc602009-04-27 17:10:36 -07001331 final int N = mSyncStatus.size();
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001332 for (int i = 0; i < N; i++) {
Costin Manolache360e4542009-09-04 13:36:04 -07001333 SyncStatusInfo cur = mSyncStatus.valueAt(i);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001334 AuthorityInfo ainfo = mAuthorities.get(cur.authorityId);
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001335 if (ainfo != null
Matthew Williams8ef22042013-07-26 12:56:39 -07001336 && ainfo.target.matchesSpec(info)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001337 return cur;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001338 }
1339 }
Costin Manolacheb7520982009-09-02 18:03:05 -07001340 return null;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001341 }
1342 }
Costin Manolache360e4542009-09-04 13:36:04 -07001343
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001344 /** Return true if the pending status is true of any matching authorities. */
1345 public boolean isSyncPending(EndPoint info) {
Dianne Hackborn231cc602009-04-27 17:10:36 -07001346 synchronized (mAuthorities) {
1347 final int N = mSyncStatus.size();
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001348 for (int i = 0; i < N; i++) {
Costin Manolache360e4542009-09-04 13:36:04 -07001349 SyncStatusInfo cur = mSyncStatus.valueAt(i);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001350 AuthorityInfo ainfo = mAuthorities.get(cur.authorityId);
1351 if (ainfo == null) {
1352 continue;
1353 }
Matthew Williams8ef22042013-07-26 12:56:39 -07001354 if (!ainfo.target.matchesSpec(info)) {
Amith Yamasani04e0d262012-02-14 11:50:53 -08001355 continue;
1356 }
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001357 if (cur.pending) {
Dianne Hackborn231cc602009-04-27 17:10:36 -07001358 return true;
1359 }
1360 }
1361 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001362 }
1363 }
1364
1365 /**
Dianne Hackborn231cc602009-04-27 17:10:36 -07001366 * Return an array of the current sync status for all authorities. Note
1367 * that the objects inside the array are the real, live status objects,
1368 * so be careful what you do with them.
1369 */
1370 public ArrayList<SyncHistoryItem> getSyncHistory() {
1371 synchronized (mAuthorities) {
1372 final int N = mSyncHistory.size();
1373 ArrayList<SyncHistoryItem> items = new ArrayList<SyncHistoryItem>(N);
1374 for (int i=0; i<N; i++) {
1375 items.add(mSyncHistory.get(i));
1376 }
1377 return items;
1378 }
1379 }
Costin Manolache360e4542009-09-04 13:36:04 -07001380
Dianne Hackborn231cc602009-04-27 17:10:36 -07001381 /**
1382 * Return an array of the current per-day statistics. Note
1383 * that the objects inside the array are the real, live status objects,
1384 * so be careful what you do with them.
1385 */
1386 public DayStats[] getDayStatistics() {
1387 synchronized (mAuthorities) {
1388 DayStats[] ds = new DayStats[mDayStats.length];
1389 System.arraycopy(mDayStats, 0, ds, 0, ds.length);
1390 return ds;
1391 }
1392 }
Costin Manolache360e4542009-09-04 13:36:04 -07001393
Georgi Nikolovdbe846b2013-06-25 14:09:56 -07001394 private Pair<AuthorityInfo, SyncStatusInfo> createCopyPairOfAuthorityWithSyncStatusLocked(
1395 AuthorityInfo authorityInfo) {
1396 SyncStatusInfo syncStatusInfo = getOrCreateSyncStatusLocked(authorityInfo.ident);
1397 return Pair.create(new AuthorityInfo(authorityInfo), new SyncStatusInfo(syncStatusInfo));
1398 }
1399
Dianne Hackborn55280a92009-05-07 15:53:46 -07001400 private int getCurrentDayLocked() {
Dianne Hackborn231cc602009-04-27 17:10:36 -07001401 mCal.setTimeInMillis(System.currentTimeMillis());
1402 final int dayOfYear = mCal.get(Calendar.DAY_OF_YEAR);
1403 if (mYear != mCal.get(Calendar.YEAR)) {
1404 mYear = mCal.get(Calendar.YEAR);
1405 mCal.clear();
1406 mCal.set(Calendar.YEAR, mYear);
1407 mYearInDays = (int)(mCal.getTimeInMillis()/86400000);
1408 }
1409 return dayOfYear + mYearInDays;
1410 }
Costin Manolache360e4542009-09-04 13:36:04 -07001411
Dianne Hackborn231cc602009-04-27 17:10:36 -07001412 /**
Matthew Williams8ef22042013-07-26 12:56:39 -07001413 * Retrieve a target's full info, returning null if one does not exist.
Costin Manolache360e4542009-09-04 13:36:04 -07001414 *
Matthew Williams8ef22042013-07-26 12:56:39 -07001415 * @param info info of the target to look up.
Dianne Hackborn231cc602009-04-27 17:10:36 -07001416 * @param tag If non-null, this will be used in a log message if the
Matthew Williams8ef22042013-07-26 12:56:39 -07001417 * requested target does not exist.
Dianne Hackborn231cc602009-04-27 17:10:36 -07001418 */
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001419 private AuthorityInfo getAuthorityLocked(EndPoint info, String tag) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001420 AccountAndUser au = new AccountAndUser(info.account, info.userId);
1421 AccountInfo accountInfo = mAccounts.get(au);
1422 if (accountInfo == null) {
1423 if (tag != null) {
1424 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1425 Slog.v(TAG, tag + ": unknown account " + au);
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001426 }
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001427 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07001428 return null;
1429 }
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001430 AuthorityInfo authority = accountInfo.authorities.get(info.provider);
1431 if (authority == null) {
1432 if (tag != null) {
1433 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1434 Slog.v(TAG, tag + ": unknown provider " + info.provider);
1435 }
1436 }
1437 return null;
1438 }
1439 return authority;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001440 }
Costin Manolache360e4542009-09-04 13:36:04 -07001441
Matthew Williamsfa774182013-06-18 15:44:11 -07001442 /**
Matthew Williams8ef22042013-07-26 12:56:39 -07001443 * @param info info identifying target.
1444 * @param ident unique identifier for target. -1 for none.
Matthew Williamsfa774182013-06-18 15:44:11 -07001445 * @param doWrite if true, update the accounts.xml file on the disk.
Matthew Williams8ef22042013-07-26 12:56:39 -07001446 * @return the authority that corresponds to the provided sync target, creating it if none
Matthew Williamsfa774182013-06-18 15:44:11 -07001447 * exists.
1448 */
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001449 private AuthorityInfo getOrCreateAuthorityLocked(EndPoint info, int ident, boolean doWrite) {
1450 AuthorityInfo authority = null;
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001451 AccountAndUser au = new AccountAndUser(info.account, info.userId);
1452 AccountInfo account = mAccounts.get(au);
1453 if (account == null) {
1454 account = new AccountInfo(au);
1455 mAccounts.put(au, account);
1456 }
1457 authority = account.authorities.get(info.provider);
1458 if (authority == null) {
1459 authority = createAuthorityLocked(info, ident, doWrite);
1460 account.authorities.put(info.provider, authority);
Matthew Williamsfa774182013-06-18 15:44:11 -07001461 }
1462 return authority;
1463 }
1464
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001465 private AuthorityInfo createAuthorityLocked(EndPoint info, int ident, boolean doWrite) {
1466 AuthorityInfo authority;
1467 if (ident < 0) {
1468 ident = mNextAuthorityId;
1469 mNextAuthorityId++;
1470 doWrite = true;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001471 }
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001472 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001473 Slog.v(TAG, "created a new AuthorityInfo for " + info);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001474 }
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001475 authority = new AuthorityInfo(info, ident);
1476 mAuthorities.put(ident, authority);
1477 if (doWrite) {
1478 writeAccountInfoLocked();
1479 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07001480 return authority;
1481 }
Costin Manolache360e4542009-09-04 13:36:04 -07001482
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001483 public void removeAuthority(EndPoint info) {
1484 synchronized (mAuthorities) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001485 removeAuthorityLocked(info.account, info.userId, info.provider, true /* doWrite */);
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001486 }
1487 }
1488
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001489
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001490 /**
1491 * Remove an authority associated with a provider. Needs to be a standalone function for
1492 * backward compatibility.
1493 */
Amith Yamasani04e0d262012-02-14 11:50:53 -08001494 private void removeAuthorityLocked(Account account, int userId, String authorityName,
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001495 boolean doWrite) {
Amith Yamasani04e0d262012-02-14 11:50:53 -08001496 AccountInfo accountInfo = mAccounts.get(new AccountAndUser(account, userId));
Fred Quintana7620f1a2010-03-16 15:58:44 -07001497 if (accountInfo != null) {
Fred Quintanafb084402010-03-23 17:57:03 -07001498 final AuthorityInfo authorityInfo = accountInfo.authorities.remove(authorityName);
1499 if (authorityInfo != null) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001500 if (mAuthorityRemovedListener != null) {
1501 mAuthorityRemovedListener.onAuthorityRemoved(authorityInfo.target);
1502 }
Fred Quintanafb084402010-03-23 17:57:03 -07001503 mAuthorities.remove(authorityInfo.ident);
Fred Quintana77c560f2010-03-29 22:20:26 -07001504 if (doWrite) {
1505 writeAccountInfoLocked();
1506 }
Fred Quintana7620f1a2010-03-16 15:58:44 -07001507 }
1508 }
1509 }
1510
Dianne Hackborn231cc602009-04-27 17:10:36 -07001511 private SyncStatusInfo getOrCreateSyncStatusLocked(int authorityId) {
1512 SyncStatusInfo status = mSyncStatus.get(authorityId);
1513 if (status == null) {
1514 status = new SyncStatusInfo(authorityId);
1515 mSyncStatus.put(authorityId, status);
1516 }
1517 return status;
1518 }
Costin Manolache360e4542009-09-04 13:36:04 -07001519
Dianne Hackborn55280a92009-05-07 15:53:46 -07001520 public void writeAllState() {
1521 synchronized (mAuthorities) {
1522 // Account info is always written so no need to do it here.
Dianne Hackborn55280a92009-05-07 15:53:46 -07001523 writeStatusLocked();
1524 writeStatisticsLocked();
1525 }
1526 }
Costin Manolache360e4542009-09-04 13:36:04 -07001527
Svet Ganov65712b02016-09-01 10:24:11 -07001528 public boolean shouldGrantSyncAdaptersAccountAccess() {
1529 return mGrantSyncAdaptersAccountAccess;
1530 }
1531
Dianne Hackborn231cc602009-04-27 17:10:36 -07001532 /**
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001533 * public for testing
1534 */
1535 public void clearAndReadState() {
1536 synchronized (mAuthorities) {
1537 mAuthorities.clear();
1538 mAccounts.clear();
Matthew Williamsfa774182013-06-18 15:44:11 -07001539 mServices.clear();
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001540 mSyncStatus.clear();
1541 mSyncHistory.clear();
1542
1543 readAccountInfoLocked();
1544 readStatusLocked();
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001545 readStatisticsLocked();
Fred Quintana77c560f2010-03-29 22:20:26 -07001546 readAndDeleteLegacyAccountInfoLocked();
1547 writeAccountInfoLocked();
1548 writeStatusLocked();
Fred Quintana77c560f2010-03-29 22:20:26 -07001549 writeStatisticsLocked();
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001550 }
1551 }
1552
1553 /**
Dianne Hackborn231cc602009-04-27 17:10:36 -07001554 * Read all account information back in to the initial engine state.
1555 */
1556 private void readAccountInfoLocked() {
Fred Quintana77c560f2010-03-29 22:20:26 -07001557 int highestAuthorityId = -1;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001558 FileInputStream fis = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001559 try {
Dianne Hackborn231cc602009-04-27 17:10:36 -07001560 fis = mAccountInfoFile.openRead();
Matthew Williamsba352712013-08-13 15:53:31 -07001561 if (Log.isLoggable(TAG_FILE, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001562 Slog.v(TAG_FILE, "Reading " + mAccountInfoFile.getBaseFile());
Matthew Williamsba352712013-08-13 15:53:31 -07001563 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07001564 XmlPullParser parser = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01001565 parser.setInput(fis, StandardCharsets.UTF_8.name());
Dianne Hackborn231cc602009-04-27 17:10:36 -07001566 int eventType = parser.getEventType();
Narayan Kamath2ac3cb72014-01-06 11:31:35 +00001567 while (eventType != XmlPullParser.START_TAG &&
1568 eventType != XmlPullParser.END_DOCUMENT) {
Dianne Hackborn231cc602009-04-27 17:10:36 -07001569 eventType = parser.next();
1570 }
Narayan Kamath2ac3cb72014-01-06 11:31:35 +00001571 if (eventType == XmlPullParser.END_DOCUMENT) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001572 Slog.i(TAG, "No initial accounts");
Narayan Kamath2ac3cb72014-01-06 11:31:35 +00001573 return;
1574 }
1575
Dianne Hackborn231cc602009-04-27 17:10:36 -07001576 String tagName = parser.getName();
1577 if ("accounts".equals(tagName)) {
Amith Yamasani04e0d262012-02-14 11:50:53 -08001578 String listen = parser.getAttributeValue(null, XML_ATTR_LISTEN_FOR_TICKLES);
Fred Quintanac2e46912010-03-15 16:10:44 -07001579 String versionString = parser.getAttributeValue(null, "version");
1580 int version;
1581 try {
1582 version = (versionString == null) ? 0 : Integer.parseInt(versionString);
1583 } catch (NumberFormatException e) {
1584 version = 0;
1585 }
Svet Ganov65712b02016-09-01 10:24:11 -07001586
1587 if (version < 3) {
1588 mGrantSyncAdaptersAccountAccess = true;
1589 }
1590
Amith Yamasani04e0d262012-02-14 11:50:53 -08001591 String nextIdString = parser.getAttributeValue(null, XML_ATTR_NEXT_AUTHORITY_ID);
Fred Quintana77c560f2010-03-29 22:20:26 -07001592 try {
1593 int id = (nextIdString == null) ? 0 : Integer.parseInt(nextIdString);
1594 mNextAuthorityId = Math.max(mNextAuthorityId, id);
1595 } catch (NumberFormatException e) {
1596 // don't care
Fred Quintanac2e46912010-03-15 16:10:44 -07001597 }
Ashish Sharma69d95de2012-04-11 17:27:24 -07001598 String offsetString = parser.getAttributeValue(null, XML_ATTR_SYNC_RANDOM_OFFSET);
1599 try {
1600 mSyncRandomOffset = (offsetString == null) ? 0 : Integer.parseInt(offsetString);
1601 } catch (NumberFormatException e) {
1602 mSyncRandomOffset = 0;
1603 }
1604 if (mSyncRandomOffset == 0) {
1605 Random random = new Random(System.currentTimeMillis());
1606 mSyncRandomOffset = random.nextInt(86400);
1607 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08001608 mMasterSyncAutomatically.put(0, listen == null || Boolean.parseBoolean(listen));
Dianne Hackborn231cc602009-04-27 17:10:36 -07001609 eventType = parser.next();
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001610 AuthorityInfo authority = null;
Matthew Williamsfa774182013-06-18 15:44:11 -07001611 PeriodicSync periodicSync = null;
Suprabh Shukla042a4782017-05-12 15:26:54 -07001612 AccountAuthorityValidator validator = new AccountAuthorityValidator(mContext);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001613 do {
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001614 if (eventType == XmlPullParser.START_TAG) {
Dianne Hackborn231cc602009-04-27 17:10:36 -07001615 tagName = parser.getName();
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001616 if (parser.getDepth() == 2) {
1617 if ("authority".equals(tagName)) {
Suprabh Shukla042a4782017-05-12 15:26:54 -07001618 authority = parseAuthority(parser, version, validator);
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001619 periodicSync = null;
Shreyas Basarge11cb4e22016-01-13 14:27:16 +00001620 if (authority != null) {
1621 if (authority.ident > highestAuthorityId) {
1622 highestAuthorityId = authority.ident;
1623 }
Shreyas Basargebae9ded2016-02-17 13:54:44 +00001624 } else {
1625 EventLog.writeEvent(0x534e4554, "26513719", -1,
1626 "Malformed authority");
Fred Quintana77c560f2010-03-29 22:20:26 -07001627 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08001628 } else if (XML_TAG_LISTEN_FOR_TICKLES.equals(tagName)) {
1629 parseListenForTickles(parser);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001630 }
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001631 } else if (parser.getDepth() == 3) {
1632 if ("periodicSync".equals(tagName) && authority != null) {
1633 periodicSync = parsePeriodicSync(parser, authority);
1634 }
1635 } else if (parser.getDepth() == 4 && periodicSync != null) {
1636 if ("extra".equals(tagName)) {
Matthew Williamsfa774182013-06-18 15:44:11 -07001637 parseExtra(parser, periodicSync.extras);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001638 }
1639 }
1640 }
1641 eventType = parser.next();
1642 } while (eventType != XmlPullParser.END_DOCUMENT);
1643 }
1644 } catch (XmlPullParserException e) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001645 Slog.w(TAG, "Error reading accounts", e);
Fred Quintanac2e46912010-03-15 16:10:44 -07001646 return;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001647 } catch (java.io.IOException e) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001648 if (fis == null) Slog.i(TAG, "No initial accounts");
1649 else Slog.w(TAG, "Error reading accounts", e);
Fred Quintanac2e46912010-03-15 16:10:44 -07001650 return;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001651 } finally {
Fred Quintana77c560f2010-03-29 22:20:26 -07001652 mNextAuthorityId = Math.max(highestAuthorityId + 1, mNextAuthorityId);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001653 if (fis != null) {
1654 try {
1655 fis.close();
1656 } catch (java.io.IOException e1) {
1657 }
1658 }
1659 }
Fred Quintanac2e46912010-03-15 16:10:44 -07001660
Fred Quintana77c560f2010-03-29 22:20:26 -07001661 maybeMigrateSettingsForRenamedAuthorities();
Dianne Hackborn231cc602009-04-27 17:10:36 -07001662 }
Costin Manolache360e4542009-09-04 13:36:04 -07001663
Fred Quintanafb084402010-03-23 17:57:03 -07001664 /**
Matthew Williamsba352712013-08-13 15:53:31 -07001665 * Ensure the old pending.bin is deleted, as it has been changed to pending.xml.
1666 * pending.xml was used starting in KLP.
1667 * @param syncDir directory where the sync files are located.
1668 */
1669 private void maybeDeleteLegacyPendingInfoLocked(File syncDir) {
1670 File file = new File(syncDir, "pending.bin");
1671 if (!file.exists()) {
1672 return;
1673 } else {
1674 file.delete();
1675 }
1676 }
1677
1678 /**
Fred Quintanafb084402010-03-23 17:57:03 -07001679 * some authority names have changed. copy over their settings and delete the old ones
1680 * @return true if a change was made
1681 */
1682 private boolean maybeMigrateSettingsForRenamedAuthorities() {
1683 boolean writeNeeded = false;
1684
1685 ArrayList<AuthorityInfo> authoritiesToRemove = new ArrayList<AuthorityInfo>();
1686 final int N = mAuthorities.size();
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001687 for (int i = 0; i < N; i++) {
Fred Quintanafb084402010-03-23 17:57:03 -07001688 AuthorityInfo authority = mAuthorities.valueAt(i);
1689 // skip this authority if it isn't one of the renamed ones
Matthew Williams8ef22042013-07-26 12:56:39 -07001690 final String newAuthorityName = sAuthorityRenames.get(authority.target.provider);
Fred Quintanafb084402010-03-23 17:57:03 -07001691 if (newAuthorityName == null) {
1692 continue;
1693 }
1694
1695 // remember this authority so we can remove it later. we can't remove it
1696 // now without messing up this loop iteration
1697 authoritiesToRemove.add(authority);
1698
1699 // this authority isn't enabled, no need to copy it to the new authority name since
1700 // the default is "disabled"
1701 if (!authority.enabled) {
1702 continue;
1703 }
1704
1705 // if we already have a record of this new authority then don't copy over the settings
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001706 EndPoint newInfo =
Matthew Williams8ef22042013-07-26 12:56:39 -07001707 new EndPoint(authority.target.account,
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001708 newAuthorityName,
Matthew Williams8ef22042013-07-26 12:56:39 -07001709 authority.target.userId);
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001710 if (getAuthorityLocked(newInfo, "cleanup") != null) {
Fred Quintanafb084402010-03-23 17:57:03 -07001711 continue;
1712 }
1713
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001714 AuthorityInfo newAuthority =
1715 getOrCreateAuthorityLocked(newInfo, -1 /* ident */, false /* doWrite */);
Fred Quintanafb084402010-03-23 17:57:03 -07001716 newAuthority.enabled = true;
1717 writeNeeded = true;
1718 }
1719
1720 for (AuthorityInfo authorityInfo : authoritiesToRemove) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001721 removeAuthorityLocked(
Matthew Williams8ef22042013-07-26 12:56:39 -07001722 authorityInfo.target.account,
1723 authorityInfo.target.userId,
1724 authorityInfo.target.provider,
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001725 false /* doWrite */);
Fred Quintanafb084402010-03-23 17:57:03 -07001726 writeNeeded = true;
1727 }
1728
1729 return writeNeeded;
1730 }
1731
Amith Yamasani04e0d262012-02-14 11:50:53 -08001732 private void parseListenForTickles(XmlPullParser parser) {
1733 String user = parser.getAttributeValue(null, XML_ATTR_USER);
1734 int userId = 0;
1735 try {
1736 userId = Integer.parseInt(user);
1737 } catch (NumberFormatException e) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001738 Slog.e(TAG, "error parsing the user for listen-for-tickles", e);
Amith Yamasani04e0d262012-02-14 11:50:53 -08001739 } catch (NullPointerException e) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001740 Slog.e(TAG, "the user in listen-for-tickles is null", e);
Amith Yamasani04e0d262012-02-14 11:50:53 -08001741 }
1742 String enabled = parser.getAttributeValue(null, XML_ATTR_ENABLED);
1743 boolean listen = enabled == null || Boolean.parseBoolean(enabled);
1744 mMasterSyncAutomatically.put(userId, listen);
1745 }
1746
Suprabh Shukla042a4782017-05-12 15:26:54 -07001747 private AuthorityInfo parseAuthority(XmlPullParser parser, int version,
1748 AccountAuthorityValidator validator) {
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001749 AuthorityInfo authority = null;
1750 int id = -1;
1751 try {
Matthew Williamsfa774182013-06-18 15:44:11 -07001752 id = Integer.parseInt(parser.getAttributeValue(null, "id"));
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001753 } catch (NumberFormatException e) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001754 Slog.e(TAG, "error parsing the id of the authority", e);
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001755 } catch (NullPointerException e) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001756 Slog.e(TAG, "the id of the authority is null", e);
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001757 }
1758 if (id >= 0) {
Fred Quintanafb084402010-03-23 17:57:03 -07001759 String authorityName = parser.getAttributeValue(null, "authority");
Amith Yamasani04e0d262012-02-14 11:50:53 -08001760 String enabled = parser.getAttributeValue(null, XML_ATTR_ENABLED);
Fred Quintanafb084402010-03-23 17:57:03 -07001761 String syncable = parser.getAttributeValue(null, "syncable");
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001762 String accountName = parser.getAttributeValue(null, "account");
1763 String accountType = parser.getAttributeValue(null, "type");
Amith Yamasani04e0d262012-02-14 11:50:53 -08001764 String user = parser.getAttributeValue(null, XML_ATTR_USER);
Matthew Williamsfa774182013-06-18 15:44:11 -07001765 String packageName = parser.getAttributeValue(null, "package");
1766 String className = parser.getAttributeValue(null, "class");
Amith Yamasani04e0d262012-02-14 11:50:53 -08001767 int userId = user == null ? 0 : Integer.parseInt(user);
Matthew Williams8ef22042013-07-26 12:56:39 -07001768 if (accountType == null && packageName == null) {
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001769 accountType = "com.google";
Matthew Williams53abfdb2015-06-10 20:06:37 -07001770 syncable = String.valueOf(AuthorityInfo.NOT_INITIALIZED);
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001771 }
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001772 authority = mAuthorities.get(id);
Matthew Williamsba352712013-08-13 15:53:31 -07001773 if (Log.isLoggable(TAG_FILE, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001774 Slog.v(TAG_FILE, "Adding authority:"
Matthew Williams8ef22042013-07-26 12:56:39 -07001775 + " account=" + accountName
1776 + " accountType=" + accountType
1777 + " auth=" + authorityName
1778 + " package=" + packageName
1779 + " class=" + className
Matthew Williamsba352712013-08-13 15:53:31 -07001780 + " user=" + userId
1781 + " enabled=" + enabled
1782 + " syncable=" + syncable);
1783 }
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001784 if (authority == null) {
Matthew Williamsba352712013-08-13 15:53:31 -07001785 if (Log.isLoggable(TAG_FILE, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001786 Slog.v(TAG_FILE, "Creating authority entry");
Matthew Williamsfa774182013-06-18 15:44:11 -07001787 }
Matthew Williams8ef22042013-07-26 12:56:39 -07001788 if (accountName != null && authorityName != null) {
Suprabh Shukla042a4782017-05-12 15:26:54 -07001789 EndPoint info = new EndPoint(
Matthew Williams8ef22042013-07-26 12:56:39 -07001790 new Account(accountName, accountType),
1791 authorityName, userId);
Suprabh Shukla042a4782017-05-12 15:26:54 -07001792 if (validator.isAccountValid(info.account, userId)
1793 && validator.isAuthorityValid(authorityName, userId)) {
1794 authority = getOrCreateAuthorityLocked(info, id, false);
1795 // If the version is 0 then we are upgrading from a file format that did not
1796 // know about periodic syncs. In that case don't clear the list since we
1797 // want the default, which is a daily periodic sync.
1798 // Otherwise clear out this default list since we will populate it later
1799 // with
1800 // the periodic sync descriptions that are read from the configuration file.
1801 if (version > 0) {
1802 authority.periodicSyncs.clear();
1803 }
1804 } else {
1805 EventLog.writeEvent(0x534e4554, "35028827", -1,
1806 "account:" + info.account + " provider:" + authorityName + " user:"
1807 + userId);
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001808 }
Fred Quintanac2e46912010-03-15 16:10:44 -07001809 }
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001810 }
1811 if (authority != null) {
1812 authority.enabled = enabled == null || Boolean.parseBoolean(enabled);
Matthew Williams53abfdb2015-06-10 20:06:37 -07001813 try {
1814 authority.syncable = (syncable == null) ?
1815 AuthorityInfo.NOT_INITIALIZED : Integer.parseInt(syncable);
1816 } catch (NumberFormatException e) {
1817 // On L we stored this as {"unknown", "true", "false"} so fall back to this
1818 // format.
1819 if ("unknown".equals(syncable)) {
1820 authority.syncable = AuthorityInfo.NOT_INITIALIZED;
1821 } else {
1822 authority.syncable = Boolean.parseBoolean(syncable) ?
1823 AuthorityInfo.SYNCABLE : AuthorityInfo.NOT_SYNCABLE;
1824 }
1825
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001826 }
1827 } else {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001828 Slog.w(TAG, "Failure adding authority: account="
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001829 + accountName + " auth=" + authorityName
1830 + " enabled=" + enabled
1831 + " syncable=" + syncable);
1832 }
1833 }
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001834 return authority;
1835 }
1836
Matthew Williamsfa774182013-06-18 15:44:11 -07001837 /**
1838 * Parse a periodic sync from accounts.xml. Sets the bundle to be empty.
1839 */
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001840 private PeriodicSync parsePeriodicSync(XmlPullParser parser, AuthorityInfo authorityInfo) {
Matthew Williamsfa774182013-06-18 15:44:11 -07001841 Bundle extras = new Bundle(); // Gets filled in later.
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001842 String periodValue = parser.getAttributeValue(null, "period");
Matthew Williamsfa774182013-06-18 15:44:11 -07001843 String flexValue = parser.getAttributeValue(null, "flex");
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001844 final long period;
Matthew Williamsfa774182013-06-18 15:44:11 -07001845 long flextime;
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001846 try {
1847 period = Long.parseLong(periodValue);
1848 } catch (NumberFormatException e) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001849 Slog.e(TAG, "error parsing the period of a periodic sync", e);
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001850 return null;
1851 } catch (NullPointerException e) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001852 Slog.e(TAG, "the period of a periodic sync is null", e);
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001853 return null;
1854 }
Matthew Williamsfa774182013-06-18 15:44:11 -07001855 try {
1856 flextime = Long.parseLong(flexValue);
1857 } catch (NumberFormatException e) {
Matthew Williamsfa774182013-06-18 15:44:11 -07001858 flextime = calculateDefaultFlexTime(period);
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001859 Slog.e(TAG, "Error formatting value parsed for periodic sync flex: " + flexValue
Matthew Williams8ef22042013-07-26 12:56:39 -07001860 + ", using default: "
1861 + flextime);
Matthew Williamsfa774182013-06-18 15:44:11 -07001862 } catch (NullPointerException expected) {
1863 flextime = calculateDefaultFlexTime(period);
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001864 Slog.d(TAG, "No flex time specified for this sync, using a default. period: "
1865 + period + " flex: " + flextime);
Matthew Williamsfa774182013-06-18 15:44:11 -07001866 }
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001867 PeriodicSync periodicSync;
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001868 periodicSync =
Matthew Williams8ef22042013-07-26 12:56:39 -07001869 new PeriodicSync(authorityInfo.target.account,
1870 authorityInfo.target.provider,
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001871 extras,
Matthew Williamsfa774182013-06-18 15:44:11 -07001872 period, flextime);
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001873 authorityInfo.periodicSyncs.add(periodicSync);
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001874 return periodicSync;
1875 }
1876
Matthew Williamsfa774182013-06-18 15:44:11 -07001877 private void parseExtra(XmlPullParser parser, Bundle extras) {
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001878 String name = parser.getAttributeValue(null, "name");
1879 String type = parser.getAttributeValue(null, "type");
1880 String value1 = parser.getAttributeValue(null, "value1");
1881 String value2 = parser.getAttributeValue(null, "value2");
1882
1883 try {
1884 if ("long".equals(type)) {
1885 extras.putLong(name, Long.parseLong(value1));
1886 } else if ("integer".equals(type)) {
1887 extras.putInt(name, Integer.parseInt(value1));
1888 } else if ("double".equals(type)) {
1889 extras.putDouble(name, Double.parseDouble(value1));
1890 } else if ("float".equals(type)) {
1891 extras.putFloat(name, Float.parseFloat(value1));
1892 } else if ("boolean".equals(type)) {
1893 extras.putBoolean(name, Boolean.parseBoolean(value1));
1894 } else if ("string".equals(type)) {
1895 extras.putString(name, value1);
1896 } else if ("account".equals(type)) {
1897 extras.putParcelable(name, new Account(value1, value2));
1898 }
1899 } catch (NumberFormatException e) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001900 Slog.e(TAG, "error parsing bundle value", e);
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001901 } catch (NullPointerException e) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001902 Slog.e(TAG, "error parsing bundle value", e);
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001903 }
1904 }
1905
Dianne Hackborn231cc602009-04-27 17:10:36 -07001906 /**
1907 * Write all account information to the account file.
1908 */
1909 private void writeAccountInfoLocked() {
Matthew Williamsba352712013-08-13 15:53:31 -07001910 if (Log.isLoggable(TAG_FILE, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001911 Slog.v(TAG_FILE, "Writing new " + mAccountInfoFile.getBaseFile());
Matthew Williamsba352712013-08-13 15:53:31 -07001912 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07001913 FileOutputStream fos = null;
Costin Manolache360e4542009-09-04 13:36:04 -07001914
Dianne Hackborn231cc602009-04-27 17:10:36 -07001915 try {
1916 fos = mAccountInfoFile.startWrite();
1917 XmlSerializer out = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01001918 out.setOutput(fos, StandardCharsets.UTF_8.name());
Dianne Hackborn231cc602009-04-27 17:10:36 -07001919 out.startDocument(null, true);
1920 out.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
Costin Manolache360e4542009-09-04 13:36:04 -07001921
Dianne Hackborn231cc602009-04-27 17:10:36 -07001922 out.startTag(null, "accounts");
Fred Quintanac2e46912010-03-15 16:10:44 -07001923 out.attribute(null, "version", Integer.toString(ACCOUNTS_VERSION));
Amith Yamasani04e0d262012-02-14 11:50:53 -08001924 out.attribute(null, XML_ATTR_NEXT_AUTHORITY_ID, Integer.toString(mNextAuthorityId));
Ashish Sharma69d95de2012-04-11 17:27:24 -07001925 out.attribute(null, XML_ATTR_SYNC_RANDOM_OFFSET, Integer.toString(mSyncRandomOffset));
Amith Yamasani04e0d262012-02-14 11:50:53 -08001926
1927 // Write the Sync Automatically flags for each user
1928 final int M = mMasterSyncAutomatically.size();
1929 for (int m = 0; m < M; m++) {
1930 int userId = mMasterSyncAutomatically.keyAt(m);
1931 Boolean listen = mMasterSyncAutomatically.valueAt(m);
1932 out.startTag(null, XML_TAG_LISTEN_FOR_TICKLES);
1933 out.attribute(null, XML_ATTR_USER, Integer.toString(userId));
1934 out.attribute(null, XML_ATTR_ENABLED, Boolean.toString(listen));
1935 out.endTag(null, XML_TAG_LISTEN_FOR_TICKLES);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001936 }
Costin Manolache360e4542009-09-04 13:36:04 -07001937
Dianne Hackborn231cc602009-04-27 17:10:36 -07001938 final int N = mAuthorities.size();
Matthew Williamsfa774182013-06-18 15:44:11 -07001939 for (int i = 0; i < N; i++) {
Costin Manolache360e4542009-09-04 13:36:04 -07001940 AuthorityInfo authority = mAuthorities.valueAt(i);
Matthew Williams8ef22042013-07-26 12:56:39 -07001941 EndPoint info = authority.target;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001942 out.startTag(null, "authority");
1943 out.attribute(null, "id", Integer.toString(authority.ident));
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001944 out.attribute(null, XML_ATTR_USER, Integer.toString(info.userId));
Amith Yamasani04e0d262012-02-14 11:50:53 -08001945 out.attribute(null, XML_ATTR_ENABLED, Boolean.toString(authority.enabled));
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001946 out.attribute(null, "account", info.account.name);
1947 out.attribute(null, "type", info.account.type);
1948 out.attribute(null, "authority", info.provider);
Matthew Williams53abfdb2015-06-10 20:06:37 -07001949 out.attribute(null, "syncable", Integer.toString(authority.syncable));
Dianne Hackborn231cc602009-04-27 17:10:36 -07001950 out.endTag(null, "authority");
1951 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07001952 out.endTag(null, "accounts");
Dianne Hackborn231cc602009-04-27 17:10:36 -07001953 out.endDocument();
Dianne Hackborn231cc602009-04-27 17:10:36 -07001954 mAccountInfoFile.finishWrite(fos);
1955 } catch (java.io.IOException e1) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001956 Slog.w(TAG, "Error writing accounts", e1);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001957 if (fos != null) {
1958 mAccountInfoFile.failWrite(fos);
1959 }
1960 }
1961 }
Costin Manolache360e4542009-09-04 13:36:04 -07001962
Dianne Hackborn231cc602009-04-27 17:10:36 -07001963 static int getIntColumn(Cursor c, String name) {
1964 return c.getInt(c.getColumnIndex(name));
1965 }
Costin Manolache360e4542009-09-04 13:36:04 -07001966
Dianne Hackborn231cc602009-04-27 17:10:36 -07001967 static long getLongColumn(Cursor c, String name) {
1968 return c.getLong(c.getColumnIndex(name));
1969 }
Costin Manolache360e4542009-09-04 13:36:04 -07001970
Dianne Hackborn231cc602009-04-27 17:10:36 -07001971 /**
1972 * Load sync engine state from the old syncmanager database, and then
1973 * erase it. Note that we don't deal with pending operations, active
1974 * sync, or history.
1975 */
Fred Quintana77c560f2010-03-29 22:20:26 -07001976 private void readAndDeleteLegacyAccountInfoLocked() {
Dianne Hackborn231cc602009-04-27 17:10:36 -07001977 // Look for old database to initialize from.
1978 File file = mContext.getDatabasePath("syncmanager.db");
1979 if (!file.exists()) {
1980 return;
1981 }
1982 String path = file.getPath();
1983 SQLiteDatabase db = null;
1984 try {
1985 db = SQLiteDatabase.openDatabase(path, null,
1986 SQLiteDatabase.OPEN_READONLY);
1987 } catch (SQLiteException e) {
1988 }
Costin Manolache360e4542009-09-04 13:36:04 -07001989
Dianne Hackborn231cc602009-04-27 17:10:36 -07001990 if (db != null) {
Dianne Hackborn2d5ed1f2009-05-06 15:22:38 -07001991 final boolean hasType = db.getVersion() >= 11;
Costin Manolache360e4542009-09-04 13:36:04 -07001992
Dianne Hackborn231cc602009-04-27 17:10:36 -07001993 // Copy in all of the status information, as well as accounts.
Matthew Williamsba352712013-08-13 15:53:31 -07001994 if (Log.isLoggable(TAG_FILE, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001995 Slog.v(TAG_FILE, "Reading legacy sync accounts db");
Matthew Williamsba352712013-08-13 15:53:31 -07001996 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07001997 SQLiteQueryBuilder qb = new SQLiteQueryBuilder();
1998 qb.setTables("stats, status");
1999 HashMap<String,String> map = new HashMap<String,String>();
2000 map.put("_id", "status._id as _id");
2001 map.put("account", "stats.account as account");
Dianne Hackborn2d5ed1f2009-05-06 15:22:38 -07002002 if (hasType) {
2003 map.put("account_type", "stats.account_type as account_type");
2004 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07002005 map.put("authority", "stats.authority as authority");
2006 map.put("totalElapsedTime", "totalElapsedTime");
2007 map.put("numSyncs", "numSyncs");
2008 map.put("numSourceLocal", "numSourceLocal");
2009 map.put("numSourcePoll", "numSourcePoll");
2010 map.put("numSourceServer", "numSourceServer");
2011 map.put("numSourceUser", "numSourceUser");
2012 map.put("lastSuccessSource", "lastSuccessSource");
2013 map.put("lastSuccessTime", "lastSuccessTime");
2014 map.put("lastFailureSource", "lastFailureSource");
2015 map.put("lastFailureTime", "lastFailureTime");
2016 map.put("lastFailureMesg", "lastFailureMesg");
2017 map.put("pending", "pending");
2018 qb.setProjectionMap(map);
2019 qb.appendWhere("stats._id = status.stats_id");
2020 Cursor c = qb.query(db, null, null, null, null, null, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002021 while (c.moveToNext()) {
Dianne Hackborn231cc602009-04-27 17:10:36 -07002022 String accountName = c.getString(c.getColumnIndex("account"));
Dianne Hackborn2d5ed1f2009-05-06 15:22:38 -07002023 String accountType = hasType
2024 ? c.getString(c.getColumnIndex("account_type")) : null;
Dianne Hackborn7a135592009-05-06 00:28:37 -07002025 if (accountType == null) {
Costin Manolache3348f142009-09-29 18:58:36 -07002026 accountType = "com.google";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002027 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07002028 String authorityName = c.getString(c.getColumnIndex("authority"));
Matthew Williams56dbf8f2013-07-26 12:56:39 -07002029 AuthorityInfo authority =
2030 this.getOrCreateAuthorityLocked(
2031 new EndPoint(new Account(accountName, accountType),
2032 authorityName,
2033 0 /* legacy is single-user */)
2034 , -1,
2035 false);
Dianne Hackborn231cc602009-04-27 17:10:36 -07002036 if (authority != null) {
2037 int i = mSyncStatus.size();
2038 boolean found = false;
2039 SyncStatusInfo st = null;
2040 while (i > 0) {
2041 i--;
Costin Manolache360e4542009-09-04 13:36:04 -07002042 st = mSyncStatus.valueAt(i);
Dianne Hackborn231cc602009-04-27 17:10:36 -07002043 if (st.authorityId == authority.ident) {
2044 found = true;
2045 break;
2046 }
2047 }
2048 if (!found) {
2049 st = new SyncStatusInfo(authority.ident);
2050 mSyncStatus.put(authority.ident, st);
2051 }
2052 st.totalElapsedTime = getLongColumn(c, "totalElapsedTime");
2053 st.numSyncs = getIntColumn(c, "numSyncs");
2054 st.numSourceLocal = getIntColumn(c, "numSourceLocal");
2055 st.numSourcePoll = getIntColumn(c, "numSourcePoll");
2056 st.numSourceServer = getIntColumn(c, "numSourceServer");
2057 st.numSourceUser = getIntColumn(c, "numSourceUser");
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08002058 st.numSourcePeriodic = 0;
Dianne Hackborn231cc602009-04-27 17:10:36 -07002059 st.lastSuccessSource = getIntColumn(c, "lastSuccessSource");
2060 st.lastSuccessTime = getLongColumn(c, "lastSuccessTime");
2061 st.lastFailureSource = getIntColumn(c, "lastFailureSource");
2062 st.lastFailureTime = getLongColumn(c, "lastFailureTime");
2063 st.lastFailureMesg = c.getString(c.getColumnIndex("lastFailureMesg"));
2064 st.pending = getIntColumn(c, "pending") != 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002065 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002066 }
Costin Manolache360e4542009-09-04 13:36:04 -07002067
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002068 c.close();
Costin Manolache360e4542009-09-04 13:36:04 -07002069
Dianne Hackborn231cc602009-04-27 17:10:36 -07002070 // Retrieve the settings.
2071 qb = new SQLiteQueryBuilder();
2072 qb.setTables("settings");
2073 c = qb.query(db, null, null, null, null, null, null);
2074 while (c.moveToNext()) {
2075 String name = c.getString(c.getColumnIndex("name"));
2076 String value = c.getString(c.getColumnIndex("value"));
2077 if (name == null) continue;
2078 if (name.equals("listen_for_tickles")) {
Makoto Onuki75ad2492018-03-28 14:42:42 -07002079 setMasterSyncAutomatically(value == null || Boolean.parseBoolean(value), 0,
Makoto Onukid4764302018-03-30 17:32:57 -07002080 ContentResolver.SYNC_EXEMPTION_NONE, SyncLogger.CALLING_UID_SELF);
Dianne Hackborn231cc602009-04-27 17:10:36 -07002081 } else if (name.startsWith("sync_provider_")) {
2082 String provider = name.substring("sync_provider_".length(),
2083 name.length());
Fred Quintanaac9385e2009-06-22 18:00:59 -07002084 int i = mAuthorities.size();
2085 while (i > 0) {
2086 i--;
Costin Manolache360e4542009-09-04 13:36:04 -07002087 AuthorityInfo authority = mAuthorities.valueAt(i);
Matthew Williams8ef22042013-07-26 12:56:39 -07002088 if (authority.target.provider.equals(provider)) {
Fred Quintanaac9385e2009-06-22 18:00:59 -07002089 authority.enabled = value == null || Boolean.parseBoolean(value);
Fred Quintana5e787c42009-08-16 23:13:53 -07002090 authority.syncable = 1;
Fred Quintanaac9385e2009-06-22 18:00:59 -07002091 }
2092 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07002093 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002094 }
Costin Manolache360e4542009-09-04 13:36:04 -07002095
Dianne Hackborn231cc602009-04-27 17:10:36 -07002096 c.close();
Costin Manolache360e4542009-09-04 13:36:04 -07002097
Dianne Hackborn231cc602009-04-27 17:10:36 -07002098 db.close();
Costin Manolache360e4542009-09-04 13:36:04 -07002099
Dianne Hackborn231cc602009-04-27 17:10:36 -07002100 (new File(path)).delete();
2101 }
2102 }
Costin Manolache360e4542009-09-04 13:36:04 -07002103
Dianne Hackborn231cc602009-04-27 17:10:36 -07002104 public static final int STATUS_FILE_END = 0;
2105 public static final int STATUS_FILE_ITEM = 100;
Costin Manolache360e4542009-09-04 13:36:04 -07002106
Dianne Hackborn231cc602009-04-27 17:10:36 -07002107 /**
2108 * Read all sync status back in to the initial engine state.
2109 */
2110 private void readStatusLocked() {
Matthew Williamsba352712013-08-13 15:53:31 -07002111 if (Log.isLoggable(TAG_FILE, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00002112 Slog.v(TAG_FILE, "Reading " + mStatusFile.getBaseFile());
Matthew Williamsba352712013-08-13 15:53:31 -07002113 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07002114 try {
2115 byte[] data = mStatusFile.readFully();
2116 Parcel in = Parcel.obtain();
2117 in.unmarshall(data, 0, data.length);
2118 in.setDataPosition(0);
2119 int token;
2120 while ((token=in.readInt()) != STATUS_FILE_END) {
2121 if (token == STATUS_FILE_ITEM) {
2122 SyncStatusInfo status = new SyncStatusInfo(in);
2123 if (mAuthorities.indexOfKey(status.authorityId) >= 0) {
2124 status.pending = false;
Matthew Williamsba352712013-08-13 15:53:31 -07002125 if (Log.isLoggable(TAG_FILE, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00002126 Slog.v(TAG_FILE, "Adding status for id " + status.authorityId);
Matthew Williamsba352712013-08-13 15:53:31 -07002127 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07002128 mSyncStatus.put(status.authorityId, status);
2129 }
2130 } else {
2131 // Ooops.
Shreyas Basarge8c834c02016-01-07 13:53:16 +00002132 Slog.w(TAG, "Unknown status token: " + token);
Dianne Hackborn231cc602009-04-27 17:10:36 -07002133 break;
2134 }
2135 }
2136 } catch (java.io.IOException e) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00002137 Slog.i(TAG, "No initial status");
Dianne Hackborn231cc602009-04-27 17:10:36 -07002138 }
2139 }
Costin Manolache360e4542009-09-04 13:36:04 -07002140
Dianne Hackborn231cc602009-04-27 17:10:36 -07002141 /**
2142 * Write all sync status to the sync status file.
2143 */
2144 private void writeStatusLocked() {
Matthew Williamsba352712013-08-13 15:53:31 -07002145 if (Log.isLoggable(TAG_FILE, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00002146 Slog.v(TAG_FILE, "Writing new " + mStatusFile.getBaseFile());
Matthew Williamsba352712013-08-13 15:53:31 -07002147 }
Costin Manolache360e4542009-09-04 13:36:04 -07002148
Dianne Hackborn231cc602009-04-27 17:10:36 -07002149 // The file is being written, so we don't need to have a scheduled
2150 // write until the next change.
Makoto Onuki6963bea72017-12-12 10:42:39 -08002151 mHandler.removeMessages(MSG_WRITE_STATUS);
Costin Manolache360e4542009-09-04 13:36:04 -07002152
Dianne Hackborn231cc602009-04-27 17:10:36 -07002153 FileOutputStream fos = null;
2154 try {
2155 fos = mStatusFile.startWrite();
2156 Parcel out = Parcel.obtain();
2157 final int N = mSyncStatus.size();
2158 for (int i=0; i<N; i++) {
2159 SyncStatusInfo status = mSyncStatus.valueAt(i);
2160 out.writeInt(STATUS_FILE_ITEM);
2161 status.writeToParcel(out, 0);
2162 }
2163 out.writeInt(STATUS_FILE_END);
2164 fos.write(out.marshall());
2165 out.recycle();
Costin Manolache360e4542009-09-04 13:36:04 -07002166
Dianne Hackborn231cc602009-04-27 17:10:36 -07002167 mStatusFile.finishWrite(fos);
2168 } catch (java.io.IOException e1) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00002169 Slog.w(TAG, "Error writing status", e1);
Dianne Hackborn231cc602009-04-27 17:10:36 -07002170 if (fos != null) {
2171 mStatusFile.failWrite(fos);
2172 }
2173 }
2174 }
Costin Manolache360e4542009-09-04 13:36:04 -07002175
Makoto Onuki61283ec2018-01-31 17:22:36 -08002176 private void requestSync(AuthorityInfo authorityInfo, int reason, Bundle extras,
Makoto Onuki75ad2492018-03-28 14:42:42 -07002177 @SyncExemption int syncExemptionFlag) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -07002178 if (android.os.Process.myUid() == android.os.Process.SYSTEM_UID
2179 && mSyncRequestListener != null) {
Makoto Onuki61283ec2018-01-31 17:22:36 -08002180 mSyncRequestListener.onSyncRequest(authorityInfo.target, reason, extras,
Makoto Onuki75ad2492018-03-28 14:42:42 -07002181 syncExemptionFlag);
Matthew Williams56dbf8f2013-07-26 12:56:39 -07002182 } else {
2183 SyncRequest.Builder req =
2184 new SyncRequest.Builder()
Nick Kralevich69002ae2013-10-19 08:43:08 -07002185 .syncOnce()
Matthew Williams8ef22042013-07-26 12:56:39 -07002186 .setExtras(extras);
Shreyas Basarge8c834c02016-01-07 13:53:16 +00002187 req.setSyncAdapter(authorityInfo.target.account, authorityInfo.target.provider);
Matthew Williams56dbf8f2013-07-26 12:56:39 -07002188 ContentResolver.requestSync(req.build());
2189 }
2190 }
2191
Alon Albert57286f92012-10-09 14:21:38 -07002192 private void requestSync(Account account, int userId, int reason, String authority,
Makoto Onuki75ad2492018-03-28 14:42:42 -07002193 Bundle extras, @SyncExemption int syncExemptionFlag) {
Amith Yamasani04e0d262012-02-14 11:50:53 -08002194 // If this is happening in the system process, then call the syncrequest listener
2195 // to make a request back to the SyncManager directly.
2196 // If this is probably a test instance, then call back through the ContentResolver
2197 // which will know which userId to apply based on the Binder id.
2198 if (android.os.Process.myUid() == android.os.Process.SYSTEM_UID
2199 && mSyncRequestListener != null) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -07002200 mSyncRequestListener.onSyncRequest(
Shreyas Basarge8c834c02016-01-07 13:53:16 +00002201 new EndPoint(account, authority, userId),
Makoto Onuki75ad2492018-03-28 14:42:42 -07002202 reason, extras, syncExemptionFlag);
Amith Yamasani04e0d262012-02-14 11:50:53 -08002203 } else {
2204 ContentResolver.requestSync(account, authority, extras);
2205 }
2206 }
2207
Dianne Hackborn231cc602009-04-27 17:10:36 -07002208 public static final int STATISTICS_FILE_END = 0;
2209 public static final int STATISTICS_FILE_ITEM_OLD = 100;
2210 public static final int STATISTICS_FILE_ITEM = 101;
Costin Manolache360e4542009-09-04 13:36:04 -07002211
Dianne Hackborn231cc602009-04-27 17:10:36 -07002212 /**
2213 * Read all sync statistics back in to the initial engine state.
2214 */
2215 private void readStatisticsLocked() {
2216 try {
2217 byte[] data = mStatisticsFile.readFully();
2218 Parcel in = Parcel.obtain();
2219 in.unmarshall(data, 0, data.length);
2220 in.setDataPosition(0);
2221 int token;
2222 int index = 0;
2223 while ((token=in.readInt()) != STATISTICS_FILE_END) {
2224 if (token == STATISTICS_FILE_ITEM
2225 || token == STATISTICS_FILE_ITEM_OLD) {
2226 int day = in.readInt();
2227 if (token == STATISTICS_FILE_ITEM_OLD) {
2228 day = day - 2009 + 14245; // Magic!
2229 }
2230 DayStats ds = new DayStats(day);
2231 ds.successCount = in.readInt();
2232 ds.successTime = in.readLong();
2233 ds.failureCount = in.readInt();
2234 ds.failureTime = in.readLong();
2235 if (index < mDayStats.length) {
2236 mDayStats[index] = ds;
2237 index++;
2238 }
2239 } else {
2240 // Ooops.
Shreyas Basarge8c834c02016-01-07 13:53:16 +00002241 Slog.w(TAG, "Unknown stats token: " + token);
Dianne Hackborn231cc602009-04-27 17:10:36 -07002242 break;
2243 }
2244 }
2245 } catch (java.io.IOException e) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00002246 Slog.i(TAG, "No initial statistics");
Dianne Hackborn231cc602009-04-27 17:10:36 -07002247 }
2248 }
Costin Manolache360e4542009-09-04 13:36:04 -07002249
Dianne Hackborn231cc602009-04-27 17:10:36 -07002250 /**
2251 * Write all sync statistics to the sync status file.
2252 */
2253 private void writeStatisticsLocked() {
Matthew Williamsba352712013-08-13 15:53:31 -07002254 if (Log.isLoggable(TAG_FILE, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00002255 Slog.v(TAG, "Writing new " + mStatisticsFile.getBaseFile());
Matthew Williamsba352712013-08-13 15:53:31 -07002256 }
Costin Manolache360e4542009-09-04 13:36:04 -07002257
Dianne Hackborn231cc602009-04-27 17:10:36 -07002258 // The file is being written, so we don't need to have a scheduled
2259 // write until the next change.
Makoto Onuki6963bea72017-12-12 10:42:39 -08002260 mHandler.removeMessages(MSG_WRITE_STATISTICS);
Costin Manolache360e4542009-09-04 13:36:04 -07002261
Dianne Hackborn231cc602009-04-27 17:10:36 -07002262 FileOutputStream fos = null;
2263 try {
2264 fos = mStatisticsFile.startWrite();
2265 Parcel out = Parcel.obtain();
2266 final int N = mDayStats.length;
2267 for (int i=0; i<N; i++) {
2268 DayStats ds = mDayStats[i];
2269 if (ds == null) {
2270 break;
2271 }
2272 out.writeInt(STATISTICS_FILE_ITEM);
2273 out.writeInt(ds.day);
2274 out.writeInt(ds.successCount);
2275 out.writeLong(ds.successTime);
2276 out.writeInt(ds.failureCount);
2277 out.writeLong(ds.failureTime);
2278 }
2279 out.writeInt(STATISTICS_FILE_END);
2280 fos.write(out.marshall());
2281 out.recycle();
Costin Manolache360e4542009-09-04 13:36:04 -07002282
Dianne Hackborn231cc602009-04-27 17:10:36 -07002283 mStatisticsFile.finishWrite(fos);
2284 } catch (java.io.IOException e1) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00002285 Slog.w(TAG, "Error writing stats", e1);
Dianne Hackborn231cc602009-04-27 17:10:36 -07002286 if (fos != null) {
2287 mStatisticsFile.failWrite(fos);
2288 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002289 }
2290 }
Matthew Williamsfa774182013-06-18 15:44:11 -07002291
2292 /**
Marvin Paula6533252014-11-24 12:57:48 -08002293 * Let the BackupManager know that account sync settings have changed. This will trigger
2294 * {@link com.android.server.backup.SystemBackupAgent} to run.
2295 */
2296 public void queueBackup() {
2297 BackupManager.dataChanged("android");
2298 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002299}