blob: 6a343f88a2737b640968ee39042e4c13a96af308 [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
Makoto Onuki94986212018-04-11 16:24:46 -0700111 /** Enum value for a sync with other sources. */
112 public static final int SOURCE_OTHER = 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;
Makoto Onuki94986212018-04-11 16:24:46 -0700116
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700117 /** Enum value for a poll-based sync (e.g., upon connection to network) */
Dianne Hackborn231cc602009-04-27 17:10:36 -0700118 public static final int SOURCE_POLL = 2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800119
Dianne Hackborn231cc602009-04-27 17:10:36 -0700120 /** Enum value for a user-initiated sync. */
121 public static final int SOURCE_USER = 3;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800122
Fred Quintanac5d1c6d2010-01-27 12:17:49 -0800123 /** Enum value for a periodic sync. */
124 public static final int SOURCE_PERIODIC = 4;
125
Makoto Onuki94986212018-04-11 16:24:46 -0700126 /** Enum a sync with a "feed" extra */
127 public static final int SOURCE_FEED = 5;
128
Fred Quintana307da1a2010-01-21 14:24:20 -0800129 public static final long NOT_IN_BACKOFF_MODE = -1;
130
Makoto Onukif74cf942018-04-16 17:04:58 -0700131 /**
132 * String names for the sync source types.
133 *
134 * KEEP THIS AND {@link SyncStatusInfo#SOURCE_COUNT} IN SYNC.
135 */
136 public static final String[] SOURCES = {
137 "OTHER",
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000138 "LOCAL",
139 "POLL",
140 "USER",
141 "PERIODIC",
Makoto Onuki94986212018-04-11 16:24:46 -0700142 "FEED"};
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800143
Dianne Hackborn231cc602009-04-27 17:10:36 -0700144 // The MESG column will contain one of these or one of the Error types.
145 public static final String MESG_SUCCESS = "success";
146 public static final String MESG_CANCELED = "canceled";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800147
Dianne Hackborna33e3f72009-09-29 17:28:24 -0700148 public static final int MAX_HISTORY = 100;
Costin Manolache360e4542009-09-04 13:36:04 -0700149
Dianne Hackborn231cc602009-04-27 17:10:36 -0700150 private static final int MSG_WRITE_STATUS = 1;
151 private static final long WRITE_STATUS_DELAY = 1000*60*10; // 10 minutes
Costin Manolache360e4542009-09-04 13:36:04 -0700152
Dianne Hackborn231cc602009-04-27 17:10:36 -0700153 private static final int MSG_WRITE_STATISTICS = 2;
154 private static final long WRITE_STATISTICS_DELAY = 1000*60*30; // 1/2 hour
Joe Onorato8294fad2009-07-15 16:08:44 -0700155
156 private static final boolean SYNC_ENABLED_DEFAULT = false;
Costin Manolache360e4542009-09-04 13:36:04 -0700157
Fred Quintanac2e46912010-03-15 16:10:44 -0700158 // the version of the accounts xml file format
Svet Ganov65712b02016-09-01 10:24:11 -0700159 private static final int ACCOUNTS_VERSION = 3;
Fred Quintanafb084402010-03-23 17:57:03 -0700160
161 private static HashMap<String, String> sAuthorityRenames;
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000162 private static PeriodicSyncAddedListener mPeriodicSyncAddedListener;
Fred Quintanafb084402010-03-23 17:57:03 -0700163
Makoto Onuki94986212018-04-11 16:24:46 -0700164 private volatile boolean mIsClockValid;
165
Fred Quintanafb084402010-03-23 17:57:03 -0700166 static {
167 sAuthorityRenames = new HashMap<String, String>();
168 sAuthorityRenames.put("contacts", "com.android.contacts");
169 sAuthorityRenames.put("calendar", "com.android.calendar");
170 }
Fred Quintanac2e46912010-03-15 16:10:44 -0700171
Dianne Hackborn231cc602009-04-27 17:10:36 -0700172 static class AccountInfo {
Amith Yamasani04e0d262012-02-14 11:50:53 -0800173 final AccountAndUser accountAndUser;
Dianne Hackborn231cc602009-04-27 17:10:36 -0700174 final HashMap<String, AuthorityInfo> authorities =
175 new HashMap<String, AuthorityInfo>();
Costin Manolache360e4542009-09-04 13:36:04 -0700176
Amith Yamasani04e0d262012-02-14 11:50:53 -0800177 AccountInfo(AccountAndUser accountAndUser) {
178 this.accountAndUser = accountAndUser;
Dianne Hackborn231cc602009-04-27 17:10:36 -0700179 }
180 }
Costin Manolache360e4542009-09-04 13:36:04 -0700181
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700182 /** Bare bones representation of a sync target. */
183 public static class EndPoint {
184 public final static EndPoint USER_ALL_PROVIDER_ALL_ACCOUNTS_ALL =
185 new EndPoint(null, null, UserHandle.USER_ALL);
Dianne Hackborn7a135592009-05-06 00:28:37 -0700186 final Account account;
Amith Yamasani04e0d262012-02-14 11:50:53 -0800187 final int userId;
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700188 final String provider;
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700189
190 public EndPoint(Account account, String provider, int userId) {
191 this.account = account;
192 this.provider = provider;
193 this.userId = userId;
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700194 }
195
196 /**
Matthew Williams8ef22042013-07-26 12:56:39 -0700197 * An Endpoint for a sync matches if it targets the same sync adapter for the same user.
198 *
199 * @param spec the Endpoint to match. If the spec has null fields, they indicate a wildcard
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000200 * and match any.
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700201 */
Matthew Williams8ef22042013-07-26 12:56:39 -0700202 public boolean matchesSpec(EndPoint spec) {
203 if (userId != spec.userId
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700204 && userId != UserHandle.USER_ALL
Matthew Williams8ef22042013-07-26 12:56:39 -0700205 && spec.userId != UserHandle.USER_ALL) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700206 return false;
207 }
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000208 boolean accountsMatch;
209 if (spec.account == null) {
210 accountsMatch = true;
211 } else {
212 accountsMatch = account.equals(spec.account);
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700213 }
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000214 boolean providersMatch;
215 if (spec.provider == null) {
216 providersMatch = true;
217 } else {
218 providersMatch = provider.equals(spec.provider);
219 }
220 return accountsMatch && providersMatch;
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700221 }
222
223 public String toString() {
224 StringBuilder sb = new StringBuilder();
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000225 sb.append(account == null ? "ALL ACCS" : account.name)
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700226 .append("/")
227 .append(provider == null ? "ALL PDRS" : provider);
Matthew Williams8ef22042013-07-26 12:56:39 -0700228 sb.append(":u" + userId);
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700229 return sb.toString();
230 }
231 }
232
233 public static class AuthorityInfo {
Matthew Williams53abfdb2015-06-10 20:06:37 -0700234 // Legal values of getIsSyncable
Svet Ganovf6d424f12016-09-20 20:18:53 -0700235
236 /**
237 * The syncable state is undefined.
238 */
239 public static final int UNDEFINED = -2;
240
Matthew Williams53abfdb2015-06-10 20:06:37 -0700241 /**
242 * Default state for a newly installed adapter. An uninitialized adapter will receive an
243 * initialization sync which are governed by a different set of rules to that of regular
244 * syncs.
245 */
246 public static final int NOT_INITIALIZED = -1;
247 /**
248 * The adapter will not receive any syncs. This is behaviourally equivalent to
249 * setSyncAutomatically -> false. However setSyncAutomatically is surfaced to the user
250 * while this is generally meant to be controlled by the developer.
251 */
252 public static final int NOT_SYNCABLE = 0;
253 /**
254 * The adapter is initialized and functioning. This is the normal state for an adapter.
255 */
256 public static final int SYNCABLE = 1;
257 /**
258 * The adapter is syncable but still requires an initialization sync. For example an adapter
259 * than has been restored from a previous device will be in this state. Not meant for
260 * external use.
261 */
262 public static final int SYNCABLE_NOT_INITIALIZED = 2;
263
Svetoslav Ganov5cb29732016-07-11 19:32:30 -0700264 /**
265 * The adapter is syncable but does not have access to the synced account and needs a
266 * user access approval.
267 */
268 public static final int SYNCABLE_NO_ACCOUNT_ACCESS = 3;
269
Matthew Williams8ef22042013-07-26 12:56:39 -0700270 final EndPoint target;
Dianne Hackborn231cc602009-04-27 17:10:36 -0700271 final int ident;
272 boolean enabled;
Fred Quintana5e787c42009-08-16 23:13:53 -0700273 int syncable;
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700274 /** Time at which this sync will run, taking into account backoff. */
Fred Quintana307da1a2010-01-21 14:24:20 -0800275 long backoffTime;
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700276 /** Amount of delay due to backoff. */
Fred Quintana307da1a2010-01-21 14:24:20 -0800277 long backoffDelay;
Matthew Williams8ef22042013-07-26 12:56:39 -0700278 /** Time offset to add to any requests coming to this target. */
Fred Quintana307da1a2010-01-21 14:24:20 -0800279 long delayUntil;
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700280
Matthew Williamsfa774182013-06-18 15:44:11 -0700281 final ArrayList<PeriodicSync> periodicSyncs;
Fred Quintanaac9385e2009-06-22 18:00:59 -0700282
Carlos Valdivia3aca7d72012-05-07 19:03:51 -0700283 /**
284 * Copy constructor for making deep-ish copies. Only the bundles stored
285 * in periodic syncs can make unexpected changes.
286 *
287 * @param toCopy AuthorityInfo to be copied.
288 */
289 AuthorityInfo(AuthorityInfo toCopy) {
Matthew Williams8ef22042013-07-26 12:56:39 -0700290 target = toCopy.target;
Carlos Valdivia3aca7d72012-05-07 19:03:51 -0700291 ident = toCopy.ident;
292 enabled = toCopy.enabled;
293 syncable = toCopy.syncable;
294 backoffTime = toCopy.backoffTime;
295 backoffDelay = toCopy.backoffDelay;
296 delayUntil = toCopy.delayUntil;
Matthew Williamsfa774182013-06-18 15:44:11 -0700297 periodicSyncs = new ArrayList<PeriodicSync>();
298 for (PeriodicSync sync : toCopy.periodicSyncs) {
Carlos Valdivia3aca7d72012-05-07 19:03:51 -0700299 // Still not a perfect copy, because we are just copying the mappings.
Matthew Williamsfa774182013-06-18 15:44:11 -0700300 periodicSyncs.add(new PeriodicSync(sync));
Carlos Valdivia3aca7d72012-05-07 19:03:51 -0700301 }
302 }
303
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700304 AuthorityInfo(EndPoint info, int id) {
Matthew Williams8ef22042013-07-26 12:56:39 -0700305 target = info;
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700306 ident = id;
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000307 enabled = SYNC_ENABLED_DEFAULT;
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700308 periodicSyncs = new ArrayList<PeriodicSync>();
309 defaultInitialisation();
310 }
311
312 private void defaultInitialisation() {
Matthew Williams53abfdb2015-06-10 20:06:37 -0700313 syncable = NOT_INITIALIZED; // default to "unknown"
Fred Quintana307da1a2010-01-21 14:24:20 -0800314 backoffTime = -1; // if < 0 then we aren't in backoff mode
315 backoffDelay = -1; // if < 0 then we aren't in backoff mode
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000316
317 if (mPeriodicSyncAddedListener != null) {
318 mPeriodicSyncAddedListener.onPeriodicSyncAdded(target, new Bundle(),
319 DEFAULT_POLL_FREQUENCY_SECONDS,
320 calculateDefaultFlexTime(DEFAULT_POLL_FREQUENCY_SECONDS));
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700321 }
Dianne Hackborn231cc602009-04-27 17:10:36 -0700322 }
Matthew Williams06485a72013-07-26 12:56:39 -0700323
324 @Override
325 public String toString() {
326 return target + ", enabled=" + enabled + ", syncable=" + syncable + ", backoff="
327 + backoffTime + ", delay=" + delayUntil;
328 }
Dianne Hackborn231cc602009-04-27 17:10:36 -0700329 }
Costin Manolache360e4542009-09-04 13:36:04 -0700330
Dianne Hackborn231cc602009-04-27 17:10:36 -0700331 public static class SyncHistoryItem {
332 int authorityId;
333 int historyId;
334 long eventTime;
335 long elapsedTime;
336 int source;
337 int event;
338 long upstreamActivity;
339 long downstreamActivity;
340 String mesg;
Fred Quintanadc475562012-05-04 15:51:54 -0700341 boolean initialization;
Alon Albert57286f92012-10-09 14:21:38 -0700342 Bundle extras;
343 int reason;
Dianne Hackborn231cc602009-04-27 17:10:36 -0700344 }
Costin Manolache360e4542009-09-04 13:36:04 -0700345
Dianne Hackborn231cc602009-04-27 17:10:36 -0700346 public static class DayStats {
347 public final int day;
348 public int successCount;
349 public long successTime;
350 public int failureCount;
351 public long failureTime;
Costin Manolache360e4542009-09-04 13:36:04 -0700352
Dianne Hackborn231cc602009-04-27 17:10:36 -0700353 public DayStats(int day) {
354 this.day = day;
355 }
356 }
Costin Manolache360e4542009-09-04 13:36:04 -0700357
Amith Yamasani04e0d262012-02-14 11:50:53 -0800358 interface OnSyncRequestListener {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700359
360 /** Called when a sync is needed on an account(s) due to some change in state. */
Makoto Onuki61283ec2018-01-31 17:22:36 -0800361 public void onSyncRequest(EndPoint info, int reason, Bundle extras,
Makoto Onuki75ad2492018-03-28 14:42:42 -0700362 @SyncExemption int syncExemptionFlag);
Amith Yamasani04e0d262012-02-14 11:50:53 -0800363 }
364
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000365 interface PeriodicSyncAddedListener {
366 /** Called when a periodic sync is added. */
367 void onPeriodicSyncAdded(EndPoint target, Bundle extras, long pollFrequency, long flex);
368 }
369
370 interface OnAuthorityRemovedListener {
371 /** Called when an authority is removed. */
372 void onAuthorityRemoved(EndPoint removedAuthority);
373 }
374
Suprabh Shukla042a4782017-05-12 15:26:54 -0700375 /**
376 * Validator that maintains a lazy cache of accounts and providers to tell if an authority or
377 * account is valid.
378 */
379 private static class AccountAuthorityValidator {
380 final private AccountManager mAccountManager;
381 final private PackageManager mPackageManager;
382 final private SparseArray<Account[]> mAccountsCache;
383 final private SparseArray<ArrayMap<String, Boolean>> mProvidersPerUserCache;
384
385 AccountAuthorityValidator(Context context) {
386 mAccountManager = context.getSystemService(AccountManager.class);
387 mPackageManager = context.getPackageManager();
388 mAccountsCache = new SparseArray<>();
389 mProvidersPerUserCache = new SparseArray<>();
390 }
391
392 // An account is valid if an installed authenticator has previously created that account
393 // on the device
394 boolean isAccountValid(Account account, int userId) {
395 Account[] accountsForUser = mAccountsCache.get(userId);
396 if (accountsForUser == null) {
397 accountsForUser = mAccountManager.getAccountsAsUser(userId);
398 mAccountsCache.put(userId, accountsForUser);
399 }
400 return ArrayUtils.contains(accountsForUser, account);
401 }
402
403 // An authority is only valid if it has a content provider installed on the system
404 boolean isAuthorityValid(String authority, int userId) {
405 ArrayMap<String, Boolean> authorityMap = mProvidersPerUserCache.get(userId);
406 if (authorityMap == null) {
407 authorityMap = new ArrayMap<>();
408 mProvidersPerUserCache.put(userId, authorityMap);
409 }
410 if (!authorityMap.containsKey(authority)) {
411 authorityMap.put(authority, mPackageManager.resolveContentProviderAsUser(authority,
412 PackageManager.MATCH_DIRECT_BOOT_AWARE
413 | PackageManager.MATCH_DIRECT_BOOT_UNAWARE, userId) != null);
414 }
415 return authorityMap.get(authority);
416 }
417 }
418
Dianne Hackborn231cc602009-04-27 17:10:36 -0700419 // Primary list of all syncable authorities. Also our global lock.
420 private final SparseArray<AuthorityInfo> mAuthorities =
421 new SparseArray<AuthorityInfo>();
Costin Manolache360e4542009-09-04 13:36:04 -0700422
Amith Yamasani04e0d262012-02-14 11:50:53 -0800423 private final HashMap<AccountAndUser, AccountInfo> mAccounts
424 = new HashMap<AccountAndUser, AccountInfo>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800425
Amith Yamasani04e0d262012-02-14 11:50:53 -0800426 private final SparseArray<ArrayList<SyncInfo>> mCurrentSyncs
427 = new SparseArray<ArrayList<SyncInfo>>();
Costin Manolache360e4542009-09-04 13:36:04 -0700428
Dianne Hackborn231cc602009-04-27 17:10:36 -0700429 private final SparseArray<SyncStatusInfo> mSyncStatus =
430 new SparseArray<SyncStatusInfo>();
Costin Manolache360e4542009-09-04 13:36:04 -0700431
Dianne Hackborn231cc602009-04-27 17:10:36 -0700432 private final ArrayList<SyncHistoryItem> mSyncHistory =
433 new ArrayList<SyncHistoryItem>();
Costin Manolache360e4542009-09-04 13:36:04 -0700434
Dianne Hackborn231cc602009-04-27 17:10:36 -0700435 private final RemoteCallbackList<ISyncStatusObserver> mChangeListeners
436 = new RemoteCallbackList<ISyncStatusObserver>();
Costin Manolache360e4542009-09-04 13:36:04 -0700437
Matthew Williams8ef22042013-07-26 12:56:39 -0700438 /** Reverse mapping for component name -> <userid -> target id>. */
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700439 private final ArrayMap<ComponentName, SparseArray<AuthorityInfo>> mServices =
440 new ArrayMap<ComponentName, SparseArray<AuthorityInfo>>();
Matthew Williamsfa774182013-06-18 15:44:11 -0700441
Fred Quintana77c560f2010-03-29 22:20:26 -0700442 private int mNextAuthorityId = 0;
443
Dianne Hackborn231cc602009-04-27 17:10:36 -0700444 // We keep 4 weeks of stats.
445 private final DayStats[] mDayStats = new DayStats[7*4];
446 private final Calendar mCal;
447 private int mYear;
448 private int mYearInDays;
Costin Manolache360e4542009-09-04 13:36:04 -0700449
Dianne Hackborn231cc602009-04-27 17:10:36 -0700450 private final Context mContext;
Fred Quintanac5d1c6d2010-01-27 12:17:49 -0800451
Dianne Hackborn231cc602009-04-27 17:10:36 -0700452 private static volatile SyncStorageEngine sSyncStorageEngine = null;
Costin Manolache360e4542009-09-04 13:36:04 -0700453
Ashish Sharma69d95de2012-04-11 17:27:24 -0700454 private int mSyncRandomOffset;
455
Dianne Hackborn231cc602009-04-27 17:10:36 -0700456 /**
457 * This file contains the core engine state: all accounts and the
458 * settings for them. It must never be lost, and should be changed
459 * infrequently, so it is stored as an XML file.
460 */
461 private final AtomicFile mAccountInfoFile;
Costin Manolache360e4542009-09-04 13:36:04 -0700462
Dianne Hackborn231cc602009-04-27 17:10:36 -0700463 /**
464 * This file contains the current sync status. We would like to retain
465 * it across boots, but its loss is not the end of the world, so we store
466 * this information as binary data.
467 */
468 private final AtomicFile mStatusFile;
Costin Manolache360e4542009-09-04 13:36:04 -0700469
Dianne Hackborn231cc602009-04-27 17:10:36 -0700470 /**
471 * This file contains sync statistics. This is purely debugging information
472 * so is written infrequently and can be thrown away at any time.
473 */
474 private final AtomicFile mStatisticsFile;
Costin Manolache360e4542009-09-04 13:36:04 -0700475
Dianne Hackborn231cc602009-04-27 17:10:36 -0700476 private int mNextHistoryId = 0;
Amith Yamasani04e0d262012-02-14 11:50:53 -0800477 private SparseArray<Boolean> mMasterSyncAutomatically = new SparseArray<Boolean>();
Yameng Huang2b5d0ea2011-01-11 14:00:19 +0800478 private boolean mDefaultMasterSyncAutomatically;
Amith Yamasani04e0d262012-02-14 11:50:53 -0800479
480 private OnSyncRequestListener mSyncRequestListener;
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000481 private OnAuthorityRemovedListener mAuthorityRemovedListener;
Costin Manolache360e4542009-09-04 13:36:04 -0700482
Svet Ganov65712b02016-09-01 10:24:11 -0700483 private boolean mGrantSyncAdaptersAccountAccess;
484
Makoto Onuki6963bea72017-12-12 10:42:39 -0800485 private final MyHandler mHandler;
Makoto Onukid4764302018-03-30 17:32:57 -0700486 private final SyncLogger mLogger;
Makoto Onuki6963bea72017-12-12 10:42:39 -0800487
488 private SyncStorageEngine(Context context, File dataDir, Looper looper) {
489 mHandler = new MyHandler(looper);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800490 mContext = context;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800491 sSyncStorageEngine = this;
Makoto Onukid4764302018-03-30 17:32:57 -0700492 mLogger = SyncLogger.getInstance();
Costin Manolache360e4542009-09-04 13:36:04 -0700493
Dianne Hackborn231cc602009-04-27 17:10:36 -0700494 mCal = Calendar.getInstance(TimeZone.getTimeZone("GMT+0"));
Costin Manolache360e4542009-09-04 13:36:04 -0700495
Yameng Huang2b5d0ea2011-01-11 14:00:19 +0800496 mDefaultMasterSyncAutomatically = mContext.getResources().getBoolean(
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000497 com.android.internal.R.bool.config_syncstorageengine_masterSyncAutomatically);
Yameng Huang2b5d0ea2011-01-11 14:00:19 +0800498
Dianne Hackborn231cc602009-04-27 17:10:36 -0700499 File systemDir = new File(dataDir, "system");
500 File syncDir = new File(systemDir, "sync");
Fred Quintanac5d1c6d2010-01-27 12:17:49 -0800501 syncDir.mkdirs();
Matthew Williamsba352712013-08-13 15:53:31 -0700502
503 maybeDeleteLegacyPendingInfoLocked(syncDir);
504
Dianne Hackborne17b4452018-01-10 13:15:40 -0800505 mAccountInfoFile = new AtomicFile(new File(syncDir, "accounts.xml"), "sync-accounts");
506 mStatusFile = new AtomicFile(new File(syncDir, "status.bin"), "sync-status");
507 mStatisticsFile = new AtomicFile(new File(syncDir, "stats.bin"), "sync-stats");
Costin Manolache360e4542009-09-04 13:36:04 -0700508
Dianne Hackborn231cc602009-04-27 17:10:36 -0700509 readAccountInfoLocked();
510 readStatusLocked();
Dianne Hackborn231cc602009-04-27 17:10:36 -0700511 readStatisticsLocked();
Fred Quintana77c560f2010-03-29 22:20:26 -0700512 readAndDeleteLegacyAccountInfoLocked();
513 writeAccountInfoLocked();
514 writeStatusLocked();
Fred Quintana77c560f2010-03-29 22:20:26 -0700515 writeStatisticsLocked();
Makoto Onukid4764302018-03-30 17:32:57 -0700516
517 if (mLogger.enabled()) {
518 final int size = mAuthorities.size();
519 mLogger.log("Loaded ", size, " items");
520 for (int i = 0; i < size; i++) {
521 mLogger.log(mAuthorities.valueAt(i));
522 }
523 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800524 }
525
526 public static SyncStorageEngine newTestInstance(Context context) {
Makoto Onuki6963bea72017-12-12 10:42:39 -0800527 return new SyncStorageEngine(context, context.getFilesDir(), Looper.getMainLooper());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800528 }
529
Makoto Onuki6963bea72017-12-12 10:42:39 -0800530 public static void init(Context context, Looper looper) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800531 if (sSyncStorageEngine != null) {
Fred Quintana307da1a2010-01-21 14:24:20 -0800532 return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800533 }
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700534 File dataDir = Environment.getDataDirectory();
Makoto Onuki6963bea72017-12-12 10:42:39 -0800535 sSyncStorageEngine = new SyncStorageEngine(context, dataDir, looper);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800536 }
537
538 public static SyncStorageEngine getSingleton() {
539 if (sSyncStorageEngine == null) {
540 throw new IllegalStateException("not initialized");
541 }
542 return sSyncStorageEngine;
543 }
544
Amith Yamasani04e0d262012-02-14 11:50:53 -0800545 protected void setOnSyncRequestListener(OnSyncRequestListener listener) {
546 if (mSyncRequestListener == null) {
547 mSyncRequestListener = listener;
548 }
549 }
550
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000551 protected void setOnAuthorityRemovedListener(OnAuthorityRemovedListener listener) {
552 if (mAuthorityRemovedListener == null) {
553 mAuthorityRemovedListener = listener;
554 }
555 }
556
557 protected void setPeriodicSyncAddedListener(PeriodicSyncAddedListener listener) {
558 if (mPeriodicSyncAddedListener == null) {
559 mPeriodicSyncAddedListener = listener;
560 }
561 }
562
Makoto Onuki6963bea72017-12-12 10:42:39 -0800563 private class MyHandler extends Handler {
564 public MyHandler(Looper looper) {
565 super(looper);
566 }
567
568 @Override
569 public void handleMessage(Message msg) {
570 if (msg.what == MSG_WRITE_STATUS) {
571 synchronized (mAuthorities) {
572 writeStatusLocked();
573 }
574 } else if (msg.what == MSG_WRITE_STATISTICS) {
575 synchronized (mAuthorities) {
576 writeStatisticsLocked();
577 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800578 }
579 }
580 }
Costin Manolache360e4542009-09-04 13:36:04 -0700581
Ashish Sharma69d95de2012-04-11 17:27:24 -0700582 public int getSyncRandomOffset() {
583 return mSyncRandomOffset;
584 }
585
Dianne Hackborn231cc602009-04-27 17:10:36 -0700586 public void addStatusChangeListener(int mask, ISyncStatusObserver callback) {
587 synchronized (mAuthorities) {
588 mChangeListeners.register(callback, mask);
589 }
590 }
Costin Manolache360e4542009-09-04 13:36:04 -0700591
Dianne Hackborn231cc602009-04-27 17:10:36 -0700592 public void removeStatusChangeListener(ISyncStatusObserver callback) {
593 synchronized (mAuthorities) {
594 mChangeListeners.unregister(callback);
595 }
596 }
Costin Manolache360e4542009-09-04 13:36:04 -0700597
Matthew Williamsfa774182013-06-18 15:44:11 -0700598 /**
599 * Figure out a reasonable flex time for cases where none is provided (old api calls).
600 * @param syncTimeSeconds requested sync time from now.
601 * @return amount of seconds before syncTimeSeconds that the sync can occur.
602 * I.e.
603 * earliest_sync_time = syncTimeSeconds - calculateDefaultFlexTime(syncTimeSeconds)
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700604 * The flex time is capped at a percentage of the {@link #DEFAULT_POLL_FREQUENCY_SECONDS}.
Matthew Williamsfa774182013-06-18 15:44:11 -0700605 */
606 public static long calculateDefaultFlexTime(long syncTimeSeconds) {
607 if (syncTimeSeconds < DEFAULT_MIN_FLEX_ALLOWED_SECS) {
608 // Small enough sync request time that we don't add flex time - developer probably
609 // wants to wait for an operation to occur before syncing so we honour the
610 // request time.
611 return 0L;
612 } else if (syncTimeSeconds < DEFAULT_POLL_FREQUENCY_SECONDS) {
613 return (long) (syncTimeSeconds * DEFAULT_FLEX_PERCENT_SYNC);
614 } else {
615 // Large enough sync request time that we cap the flex time.
616 return (long) (DEFAULT_POLL_FREQUENCY_SECONDS * DEFAULT_FLEX_PERCENT_SYNC);
617 }
618 }
619
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000620 void reportChange(int which) {
Dianne Hackborn231cc602009-04-27 17:10:36 -0700621 ArrayList<ISyncStatusObserver> reports = null;
622 synchronized (mAuthorities) {
623 int i = mChangeListeners.beginBroadcast();
624 while (i > 0) {
625 i--;
626 Integer mask = (Integer)mChangeListeners.getBroadcastCookie(i);
627 if ((which & mask.intValue()) == 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800628 continue;
629 }
Dianne Hackborn231cc602009-04-27 17:10:36 -0700630 if (reports == null) {
631 reports = new ArrayList<ISyncStatusObserver>(i);
632 }
633 reports.add(mChangeListeners.getBroadcastItem(i));
634 }
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700635 mChangeListeners.finishBroadcast();
Dianne Hackborn231cc602009-04-27 17:10:36 -0700636 }
Costin Manolache360e4542009-09-04 13:36:04 -0700637
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700638 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000639 Slog.v(TAG, "reportChange " + which + " to: " + reports);
Fred Quintana77c560f2010-03-29 22:20:26 -0700640 }
Costin Manolache360e4542009-09-04 13:36:04 -0700641
Dianne Hackborn231cc602009-04-27 17:10:36 -0700642 if (reports != null) {
643 int i = reports.size();
644 while (i > 0) {
645 i--;
646 try {
647 reports.get(i).onStatusChanged(which);
648 } catch (RemoteException e) {
649 // The remote callback list will take care of this for us.
650 }
651 }
652 }
653 }
Amith Yamasani70c874b2009-07-06 14:53:25 -0700654
Amith Yamasani04e0d262012-02-14 11:50:53 -0800655 public boolean getSyncAutomatically(Account account, int userId, String providerName) {
Dianne Hackborn231cc602009-04-27 17:10:36 -0700656 synchronized (mAuthorities) {
657 if (account != null) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700658 AuthorityInfo authority = getAuthorityLocked(
659 new EndPoint(account, providerName, userId),
Fred Quintanaac9385e2009-06-22 18:00:59 -0700660 "getSyncAutomatically");
661 return authority != null && authority.enabled;
Dianne Hackborn231cc602009-04-27 17:10:36 -0700662 }
Fred Quintanaac9385e2009-06-22 18:00:59 -0700663
Dianne Hackborn231cc602009-04-27 17:10:36 -0700664 int i = mAuthorities.size();
665 while (i > 0) {
666 i--;
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700667 AuthorityInfo authorityInfo = mAuthorities.valueAt(i);
Matthew Williams8ef22042013-07-26 12:56:39 -0700668 if (authorityInfo.target.matchesSpec(new EndPoint(account, providerName, userId))
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700669 && authorityInfo.enabled) {
Dianne Hackborn231cc602009-04-27 17:10:36 -0700670 return true;
671 }
672 }
673 return false;
674 }
675 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800676
Amith Yamasani04e0d262012-02-14 11:50:53 -0800677 public void setSyncAutomatically(Account account, int userId, String providerName,
Makoto Onukid4764302018-03-30 17:32:57 -0700678 boolean sync, @SyncExemption int syncExemptionFlag, int callingUid) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700679 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000680 Slog.d(TAG, "setSyncAutomatically: " + /* account + */" provider " + providerName
Dianne Hackborn40e9f292012-11-27 19:12:23 -0800681 + ", user " + userId + " -> " + sync);
682 }
Makoto Onukid4764302018-03-30 17:32:57 -0700683 mLogger.log("Set sync auto account=", account,
684 " user=", userId,
685 " authority=", providerName,
686 " value=", Boolean.toString(sync),
687 " callingUid=", callingUid);
Dianne Hackborn231cc602009-04-27 17:10:36 -0700688 synchronized (mAuthorities) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700689 AuthorityInfo authority =
690 getOrCreateAuthorityLocked(
691 new EndPoint(account, providerName, userId),
692 -1 /* ident */,
693 false);
Fred Quintana77c560f2010-03-29 22:20:26 -0700694 if (authority.enabled == sync) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700695 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000696 Slog.d(TAG, "setSyncAutomatically: already set to " + sync + ", doing nothing");
Dianne Hackborn40e9f292012-11-27 19:12:23 -0800697 }
Fred Quintana77c560f2010-03-29 22:20:26 -0700698 return;
699 }
Matthew Williams53abfdb2015-06-10 20:06:37 -0700700 // If the adapter was syncable but missing its initialization sync, set it to
701 // uninitialized now. This is to give it a chance to run any one-time initialization
702 // logic.
703 if (sync && authority.syncable == AuthorityInfo.SYNCABLE_NOT_INITIALIZED) {
704 authority.syncable = AuthorityInfo.NOT_INITIALIZED;
705 }
Joe Onorato8294fad2009-07-15 16:08:44 -0700706 authority.enabled = sync;
Dianne Hackborn231cc602009-04-27 17:10:36 -0700707 writeAccountInfoLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800708 }
Joe Onorato8294fad2009-07-15 16:08:44 -0700709
Fred Quintana77c560f2010-03-29 22:20:26 -0700710 if (sync) {
Alon Albert57286f92012-10-09 14:21:38 -0700711 requestSync(account, userId, SyncOperation.REASON_SYNC_AUTO, providerName,
Makoto Onuki61283ec2018-01-31 17:22:36 -0800712 new Bundle(),
Makoto Onuki75ad2492018-03-28 14:42:42 -0700713 syncExemptionFlag);
Joe Onorato8294fad2009-07-15 16:08:44 -0700714 }
Fred Quintanaac9385e2009-06-22 18:00:59 -0700715 reportChange(ContentResolver.SYNC_OBSERVER_TYPE_SETTINGS);
Marvin Paula6533252014-11-24 12:57:48 -0800716 queueBackup();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800717 }
718
Amith Yamasani04e0d262012-02-14 11:50:53 -0800719 public int getIsSyncable(Account account, int userId, String providerName) {
Fred Quintana5e787c42009-08-16 23:13:53 -0700720 synchronized (mAuthorities) {
721 if (account != null) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700722 AuthorityInfo authority = getAuthorityLocked(
723 new EndPoint(account, providerName, userId),
724 "get authority syncable");
Fred Quintana5e787c42009-08-16 23:13:53 -0700725 if (authority == null) {
Matthew Williams53abfdb2015-06-10 20:06:37 -0700726 return AuthorityInfo.NOT_INITIALIZED;
Fred Quintana5e787c42009-08-16 23:13:53 -0700727 }
728 return authority.syncable;
729 }
730
731 int i = mAuthorities.size();
732 while (i > 0) {
733 i--;
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700734 AuthorityInfo authorityInfo = mAuthorities.valueAt(i);
Matthew Williams8ef22042013-07-26 12:56:39 -0700735 if (authorityInfo.target != null
736 && authorityInfo.target.provider.equals(providerName)) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700737 return authorityInfo.syncable;
Fred Quintana5e787c42009-08-16 23:13:53 -0700738 }
739 }
Matthew Williams53abfdb2015-06-10 20:06:37 -0700740 return AuthorityInfo.NOT_INITIALIZED;
Fred Quintana5e787c42009-08-16 23:13:53 -0700741 }
742 }
743
Makoto Onukid4764302018-03-30 17:32:57 -0700744 public void setIsSyncable(Account account, int userId, String providerName, int syncable,
745 int callingUid) {
746 setSyncableStateForEndPoint(new EndPoint(account, providerName, userId), syncable,
747 callingUid);
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700748 }
749
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700750 /**
751 * An enabled sync service and a syncable provider's adapter both get resolved to the same
752 * persisted variable - namely the "syncable" attribute for an AuthorityInfo in accounts.xml.
Matthew Williams7a2ab3a2013-09-11 14:25:51 -0700753 * @param target target to set value for.
754 * @param syncable 0 indicates unsyncable, <0 unknown, >0 is active/syncable.
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700755 */
Makoto Onukid4764302018-03-30 17:32:57 -0700756 private void setSyncableStateForEndPoint(EndPoint target, int syncable, int callingUid) {
Matthew Williams7a2ab3a2013-09-11 14:25:51 -0700757 AuthorityInfo aInfo;
Makoto Onukid4764302018-03-30 17:32:57 -0700758 mLogger.log("Set syncable ", target, " value=", Integer.toString(syncable),
759 " callingUid=", callingUid);
Matthew Williams7a2ab3a2013-09-11 14:25:51 -0700760 synchronized (mAuthorities) {
761 aInfo = getOrCreateAuthorityLocked(target, -1, false);
Matthew Williams53abfdb2015-06-10 20:06:37 -0700762 if (syncable < AuthorityInfo.NOT_INITIALIZED) {
763 syncable = AuthorityInfo.NOT_INITIALIZED;
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700764 }
Matthew Williams7a2ab3a2013-09-11 14:25:51 -0700765 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000766 Slog.d(TAG, "setIsSyncable: " + aInfo.toString() + " -> " + syncable);
Matthew Williams7a2ab3a2013-09-11 14:25:51 -0700767 }
768 if (aInfo.syncable == syncable) {
769 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000770 Slog.d(TAG, "setIsSyncable: already set to " + syncable + ", doing nothing");
Matthew Williams7a2ab3a2013-09-11 14:25:51 -0700771 }
772 return;
773 }
774 aInfo.syncable = syncable;
775 writeAccountInfoLocked();
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700776 }
Matthew Williams53abfdb2015-06-10 20:06:37 -0700777 if (syncable == AuthorityInfo.SYNCABLE) {
Makoto Onuki61283ec2018-01-31 17:22:36 -0800778 requestSync(aInfo, SyncOperation.REASON_IS_SYNCABLE, new Bundle(),
Makoto Onuki75ad2492018-03-28 14:42:42 -0700779 ContentResolver.SYNC_EXEMPTION_NONE);
Fred Quintana5e787c42009-08-16 23:13:53 -0700780 }
781 reportChange(ContentResolver.SYNC_OBSERVER_TYPE_SETTINGS);
782 }
783
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700784 public Pair<Long, Long> getBackoff(EndPoint info) {
Fred Quintana307da1a2010-01-21 14:24:20 -0800785 synchronized (mAuthorities) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700786 AuthorityInfo authority = getAuthorityLocked(info, "getBackoff");
787 if (authority != null) {
788 return Pair.create(authority.backoffTime, authority.backoffDelay);
Fred Quintana307da1a2010-01-21 14:24:20 -0800789 }
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700790 return null;
Fred Quintana307da1a2010-01-21 14:24:20 -0800791 }
792 }
793
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700794 /**
795 * Update the backoff for the given endpoint. The endpoint may be for a provider/account and
796 * the account or provider info be null, which signifies all accounts or providers.
797 */
798 public void setBackoff(EndPoint info, long nextSyncTime, long nextDelay) {
799 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000800 Slog.v(TAG, "setBackoff: " + info
Fred Quintana307da1a2010-01-21 14:24:20 -0800801 + " -> nextSyncTime " + nextSyncTime + ", nextDelay " + nextDelay);
802 }
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700803 boolean changed;
Fred Quintana307da1a2010-01-21 14:24:20 -0800804 synchronized (mAuthorities) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000805 if (info.account == null || info.provider == null) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700806 // Do more work for a provider sync if the provided info has specified all
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000807 // accounts/providers.
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700808 changed = setBackoffLocked(
809 info.account /* may be null */,
810 info.userId,
811 info.provider /* may be null */,
812 nextSyncTime, nextDelay);
Fred Quintana307da1a2010-01-21 14:24:20 -0800813 } else {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700814 AuthorityInfo authorityInfo =
815 getOrCreateAuthorityLocked(info, -1 /* ident */, true);
816 if (authorityInfo.backoffTime == nextSyncTime
817 && authorityInfo.backoffDelay == nextDelay) {
818 changed = false;
819 } else {
820 authorityInfo.backoffTime = nextSyncTime;
821 authorityInfo.backoffDelay = nextDelay;
822 changed = true;
Fred Quintana307da1a2010-01-21 14:24:20 -0800823 }
Fred Quintana307da1a2010-01-21 14:24:20 -0800824 }
Fred Quintana307da1a2010-01-21 14:24:20 -0800825 }
Fred Quintana307da1a2010-01-21 14:24:20 -0800826 if (changed) {
827 reportChange(ContentResolver.SYNC_OBSERVER_TYPE_SETTINGS);
828 }
829 }
830
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700831 /**
832 * Either set backoff for a specific authority, or set backoff for all the
833 * accounts on a specific adapter/all adapters.
834 *
835 * @param account account for which to set backoff. Null to specify all accounts.
836 * @param userId id of the user making this request.
837 * @param providerName provider for which to set backoff. Null to specify all providers.
Matthew Williams7a2ab3a2013-09-11 14:25:51 -0700838 * @return true if a change occured.
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700839 */
840 private boolean setBackoffLocked(Account account, int userId, String providerName,
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000841 long nextSyncTime, long nextDelay) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700842 boolean changed = false;
843 for (AccountInfo accountInfo : mAccounts.values()) {
844 if (account != null && !account.equals(accountInfo.accountAndUser.account)
845 && userId != accountInfo.accountAndUser.userId) {
846 continue;
847 }
848 for (AuthorityInfo authorityInfo : accountInfo.authorities.values()) {
849 if (providerName != null
Matthew Williams8ef22042013-07-26 12:56:39 -0700850 && !providerName.equals(authorityInfo.target.provider)) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700851 continue;
852 }
853 if (authorityInfo.backoffTime != nextSyncTime
854 || authorityInfo.backoffDelay != nextDelay) {
855 authorityInfo.backoffTime = nextSyncTime;
856 authorityInfo.backoffDelay = nextDelay;
857 changed = true;
858 }
859 }
860 }
861 return changed;
862 }
863
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000864 public void clearAllBackoffsLocked() {
Alon Albert744e310f2010-12-14 11:37:20 -0800865 boolean changed = false;
866 synchronized (mAuthorities) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000867 // Clear backoff for all sync adapters.
868 for (AccountInfo accountInfo : mAccounts.values()) {
869 for (AuthorityInfo authorityInfo : accountInfo.authorities.values()) {
870 if (authorityInfo.backoffTime != NOT_IN_BACKOFF_MODE
871 || authorityInfo.backoffDelay != NOT_IN_BACKOFF_MODE) {
872 if (Log.isLoggable(TAG, Log.VERBOSE)) {
873 Slog.v(TAG, "clearAllBackoffsLocked:"
874 + " authority:" + authorityInfo.target
875 + " account:" + accountInfo.accountAndUser.account.name
876 + " user:" + accountInfo.accountAndUser.userId
877 + " backoffTime was: " + authorityInfo.backoffTime
878 + " backoffDelay was: " + authorityInfo.backoffDelay);
Alon Albert744e310f2010-12-14 11:37:20 -0800879 }
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000880 authorityInfo.backoffTime = NOT_IN_BACKOFF_MODE;
881 authorityInfo.backoffDelay = NOT_IN_BACKOFF_MODE;
882 changed = true;
Alon Albert744e310f2010-12-14 11:37:20 -0800883 }
884 }
885 }
886 }
887
888 if (changed) {
889 reportChange(ContentResolver.SYNC_OBSERVER_TYPE_SETTINGS);
890 }
891 }
892
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700893 public long getDelayUntilTime(EndPoint info) {
Fred Quintana307da1a2010-01-21 14:24:20 -0800894 synchronized (mAuthorities) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700895 AuthorityInfo authority = getAuthorityLocked(info, "getDelayUntil");
Fred Quintana307da1a2010-01-21 14:24:20 -0800896 if (authority == null) {
897 return 0;
898 }
899 return authority.delayUntil;
900 }
901 }
902
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700903 public void setDelayUntilTime(EndPoint info, long delayUntil) {
904 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000905 Slog.v(TAG, "setDelayUntil: " + info
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700906 + " -> delayUntil " + delayUntil);
Fred Quintanac5d1c6d2010-01-27 12:17:49 -0800907 }
908 synchronized (mAuthorities) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700909 AuthorityInfo authority = getOrCreateAuthorityLocked(info, -1, true);
910 if (authority.delayUntil == delayUntil) {
911 return;
Matthew Williamsfa774182013-06-18 15:44:11 -0700912 }
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700913 authority.delayUntil = delayUntil;
914 }
915 reportChange(ContentResolver.SYNC_OBSERVER_TYPE_SETTINGS);
916 }
917
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700918 /**
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000919 * Restore all periodic syncs read from persisted files. Used to restore periodic syncs
920 * after an OS update.
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700921 */
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000922 boolean restoreAllPeriodicSyncs() {
923 if (mPeriodicSyncAddedListener == null) {
924 return false;
Fred Quintanac5d1c6d2010-01-27 12:17:49 -0800925 }
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000926 synchronized (mAuthorities) {
927 for (int i=0; i<mAuthorities.size(); i++) {
928 AuthorityInfo authority = mAuthorities.valueAt(i);
929 for (PeriodicSync periodicSync: authority.periodicSyncs) {
930 mPeriodicSyncAddedListener.onPeriodicSyncAdded(authority.target,
931 periodicSync.extras, periodicSync.period, periodicSync.flexTime);
932 }
933 authority.periodicSyncs.clear();
934 }
935 writeAccountInfoLocked();
936 }
937 return true;
Fred Quintanac5d1c6d2010-01-27 12:17:49 -0800938 }
939
Makoto Onuki75ad2492018-03-28 14:42:42 -0700940 public void setMasterSyncAutomatically(boolean flag, int userId,
Makoto Onukid4764302018-03-30 17:32:57 -0700941 @SyncExemption int syncExemptionFlag, int callingUid) {
942 mLogger.log("Set master enabled=", flag, " user=", userId,
943 " caller=" + callingUid);
Dianne Hackborn231cc602009-04-27 17:10:36 -0700944 synchronized (mAuthorities) {
Amith Yamasani04e0d262012-02-14 11:50:53 -0800945 Boolean auto = mMasterSyncAutomatically.get(userId);
Matthew Williams8ef22042013-07-26 12:56:39 -0700946 if (auto != null && auto.equals(flag)) {
Fred Quintana77c560f2010-03-29 22:20:26 -0700947 return;
948 }
Amith Yamasani04e0d262012-02-14 11:50:53 -0800949 mMasterSyncAutomatically.put(userId, flag);
Dianne Hackborn231cc602009-04-27 17:10:36 -0700950 writeAccountInfoLocked();
951 }
Fred Quintana77c560f2010-03-29 22:20:26 -0700952 if (flag) {
Alon Albert57286f92012-10-09 14:21:38 -0700953 requestSync(null, userId, SyncOperation.REASON_MASTER_SYNC_AUTO, null,
Makoto Onuki61283ec2018-01-31 17:22:36 -0800954 new Bundle(),
Makoto Onuki75ad2492018-03-28 14:42:42 -0700955 syncExemptionFlag);
Joe Onorato8294fad2009-07-15 16:08:44 -0700956 }
Fred Quintanaac9385e2009-06-22 18:00:59 -0700957 reportChange(ContentResolver.SYNC_OBSERVER_TYPE_SETTINGS);
Jeff Sharkey7a96c392012-11-15 14:01:46 -0800958 mContext.sendBroadcast(ContentResolver.ACTION_SYNC_CONN_STATUS_CHANGED);
Marvin Paula6533252014-11-24 12:57:48 -0800959 queueBackup();
Dianne Hackborn231cc602009-04-27 17:10:36 -0700960 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800961
Amith Yamasani04e0d262012-02-14 11:50:53 -0800962 public boolean getMasterSyncAutomatically(int userId) {
Dianne Hackborn231cc602009-04-27 17:10:36 -0700963 synchronized (mAuthorities) {
Amith Yamasani04e0d262012-02-14 11:50:53 -0800964 Boolean auto = mMasterSyncAutomatically.get(userId);
Yameng Huang2b5d0ea2011-01-11 14:00:19 +0800965 return auto == null ? mDefaultMasterSyncAutomatically : auto;
Dianne Hackborn231cc602009-04-27 17:10:36 -0700966 }
967 }
Costin Manolache360e4542009-09-04 13:36:04 -0700968
Makoto Onukib47e8942017-09-18 14:03:03 -0700969 public int getAuthorityCount() {
970 synchronized (mAuthorities) {
971 return mAuthorities.size();
972 }
973 }
974
Dianne Hackborn231cc602009-04-27 17:10:36 -0700975 public AuthorityInfo getAuthority(int authorityId) {
976 synchronized (mAuthorities) {
977 return mAuthorities.get(authorityId);
978 }
979 }
Costin Manolache360e4542009-09-04 13:36:04 -0700980
Dianne Hackborn231cc602009-04-27 17:10:36 -0700981 /**
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700982 * Returns true if there is currently a sync operation being actively processed for the given
Matthew Williams8ef22042013-07-26 12:56:39 -0700983 * target.
Dianne Hackborn231cc602009-04-27 17:10:36 -0700984 */
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700985 public boolean isSyncActive(EndPoint info) {
Dianne Hackborn231cc602009-04-27 17:10:36 -0700986 synchronized (mAuthorities) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -0700987 for (SyncInfo syncInfo : getCurrentSyncs(info.userId)) {
Fred Quintana918339a2010-10-05 14:00:39 -0700988 AuthorityInfo ainfo = getAuthority(syncInfo.authorityId);
Matthew Williams8ef22042013-07-26 12:56:39 -0700989 if (ainfo != null && ainfo.target.matchesSpec(info)) {
Dianne Hackborn231cc602009-04-27 17:10:36 -0700990 return true;
991 }
992 }
993 }
Dianne Hackborn231cc602009-04-27 17:10:36 -0700994 return false;
995 }
Costin Manolache360e4542009-09-04 13:36:04 -0700996
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000997 public void markPending(EndPoint info, boolean pendingValue) {
Dianne Hackborn231cc602009-04-27 17:10:36 -0700998 synchronized (mAuthorities) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000999 AuthorityInfo authority = getOrCreateAuthorityLocked(info,
1000 -1 /* desired identifier */,
1001 true /* write accounts to storage */);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001002 if (authority == null) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001003 return;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001004 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07001005 SyncStatusInfo status = getOrCreateSyncStatusLocked(authority.ident);
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001006 status.pending = pendingValue;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001007 }
Fred Quintanaac9385e2009-06-22 18:00:59 -07001008 reportChange(ContentResolver.SYNC_OBSERVER_TYPE_PENDING);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001009 }
Costin Manolache360e4542009-09-04 13:36:04 -07001010
Dianne Hackborn231cc602009-04-27 17:10:36 -07001011 /**
1012 * Called when the set of account has changed, given the new array of
1013 * active accounts.
1014 */
Amith Yamasani04e0d262012-02-14 11:50:53 -08001015 public void doDatabaseCleanup(Account[] accounts, int userId) {
Dianne Hackborn231cc602009-04-27 17:10:36 -07001016 synchronized (mAuthorities) {
Matthew Williams8ef22042013-07-26 12:56:39 -07001017 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001018 Slog.v(TAG, "Updating for new accounts...");
Matthew Williams8ef22042013-07-26 12:56:39 -07001019 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07001020 SparseArray<AuthorityInfo> removing = new SparseArray<AuthorityInfo>();
1021 Iterator<AccountInfo> accIt = mAccounts.values().iterator();
1022 while (accIt.hasNext()) {
1023 AccountInfo acc = accIt.next();
Amith Yamasani04e0d262012-02-14 11:50:53 -08001024 if (!ArrayUtils.contains(accounts, acc.accountAndUser.account)
1025 && acc.accountAndUser.userId == userId) {
Dianne Hackborn231cc602009-04-27 17:10:36 -07001026 // This account no longer exists...
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001027 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001028 Slog.v(TAG, "Account removed: " + acc.accountAndUser);
Fred Quintana77c560f2010-03-29 22:20:26 -07001029 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07001030 for (AuthorityInfo auth : acc.authorities.values()) {
1031 removing.put(auth.ident, auth);
1032 }
1033 accIt.remove();
1034 }
1035 }
Costin Manolache360e4542009-09-04 13:36:04 -07001036
Dianne Hackborn231cc602009-04-27 17:10:36 -07001037 // Clean out all data structures.
1038 int i = removing.size();
1039 if (i > 0) {
1040 while (i > 0) {
1041 i--;
1042 int ident = removing.keyAt(i);
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001043 AuthorityInfo auth = removing.valueAt(i);
1044 if (mAuthorityRemovedListener != null) {
1045 mAuthorityRemovedListener.onAuthorityRemoved(auth.target);
1046 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07001047 mAuthorities.remove(ident);
1048 int j = mSyncStatus.size();
1049 while (j > 0) {
1050 j--;
1051 if (mSyncStatus.keyAt(j) == ident) {
1052 mSyncStatus.remove(mSyncStatus.keyAt(j));
1053 }
1054 }
1055 j = mSyncHistory.size();
1056 while (j > 0) {
1057 j--;
1058 if (mSyncHistory.get(j).authorityId == ident) {
1059 mSyncHistory.remove(j);
1060 }
1061 }
1062 }
1063 writeAccountInfoLocked();
1064 writeStatusLocked();
Dianne Hackborn231cc602009-04-27 17:10:36 -07001065 writeStatisticsLocked();
1066 }
1067 }
1068 }
1069
1070 /**
Fred Quintana918339a2010-10-05 14:00:39 -07001071 * Called when a sync is starting. Supply a valid ActiveSyncContext with information
1072 * about the sync.
Dianne Hackborn231cc602009-04-27 17:10:36 -07001073 */
Fred Quintana918339a2010-10-05 14:00:39 -07001074 public SyncInfo addActiveSync(SyncManager.ActiveSyncContext activeSyncContext) {
1075 final SyncInfo syncInfo;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001076 synchronized (mAuthorities) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001077 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001078 Slog.v(TAG, "setActiveSync: account="
1079 + " auth=" + activeSyncContext.mSyncOperation.target
1080 + " src=" + activeSyncContext.mSyncOperation.syncSource
1081 + " extras=" + activeSyncContext.mSyncOperation.extras);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001082 }
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001083 final EndPoint info = activeSyncContext.mSyncOperation.target;
1084 AuthorityInfo authorityInfo = getOrCreateAuthorityLocked(
1085 info,
Matthew Williams8ef22042013-07-26 12:56:39 -07001086 -1 /* assign a new identifier if creating a new target */,
Fred Quintana918339a2010-10-05 14:00:39 -07001087 true /* write to storage if this results in a change */);
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001088 syncInfo = new SyncInfo(
1089 authorityInfo.ident,
Matthew Williams8ef22042013-07-26 12:56:39 -07001090 authorityInfo.target.account,
1091 authorityInfo.target.provider,
Fred Quintana918339a2010-10-05 14:00:39 -07001092 activeSyncContext.mStartTime);
Matthew Williams8ef22042013-07-26 12:56:39 -07001093 getCurrentSyncs(authorityInfo.target.userId).add(syncInfo);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001094 }
Fred Quintana918339a2010-10-05 14:00:39 -07001095 reportActiveChange();
1096 return syncInfo;
1097 }
1098
1099 /**
1100 * Called to indicate that a previously active sync is no longer active.
1101 */
Amith Yamasani04e0d262012-02-14 11:50:53 -08001102 public void removeActiveSync(SyncInfo syncInfo, int userId) {
Fred Quintana918339a2010-10-05 14:00:39 -07001103 synchronized (mAuthorities) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001104 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001105 Slog.v(TAG, "removeActiveSync: account=" + syncInfo.account
Amith Yamasani04e0d262012-02-14 11:50:53 -08001106 + " user=" + userId
Matthew Williams5a9decd2014-06-04 09:25:11 -07001107 + " auth=" + syncInfo.authority);
Fred Quintana918339a2010-10-05 14:00:39 -07001108 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08001109 getCurrentSyncs(userId).remove(syncInfo);
Fred Quintana918339a2010-10-05 14:00:39 -07001110 }
1111
1112 reportActiveChange();
Dianne Hackborn231cc602009-04-27 17:10:36 -07001113 }
1114
1115 /**
1116 * To allow others to send active change reports, to poke clients.
1117 */
1118 public void reportActiveChange() {
Fred Quintanaac9385e2009-06-22 18:00:59 -07001119 reportChange(ContentResolver.SYNC_OBSERVER_TYPE_ACTIVE);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001120 }
Costin Manolache360e4542009-09-04 13:36:04 -07001121
Dianne Hackborn231cc602009-04-27 17:10:36 -07001122 /**
Matthew Williams8ef22042013-07-26 12:56:39 -07001123 * Note that sync has started for the given operation.
Dianne Hackborn231cc602009-04-27 17:10:36 -07001124 */
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001125 public long insertStartSyncEvent(SyncOperation op, long now) {
Dianne Hackborn231cc602009-04-27 17:10:36 -07001126 long id;
1127 synchronized (mAuthorities) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001128 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001129 Slog.v(TAG, "insertStartSyncEvent: " + op);
Fred Quintana77c560f2010-03-29 22:20:26 -07001130 }
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001131 AuthorityInfo authority = getAuthorityLocked(op.target, "insertStartSyncEvent");
Dianne Hackborn231cc602009-04-27 17:10:36 -07001132 if (authority == null) {
1133 return -1;
1134 }
1135 SyncHistoryItem item = new SyncHistoryItem();
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001136 item.initialization = op.isInitialization();
Dianne Hackborn231cc602009-04-27 17:10:36 -07001137 item.authorityId = authority.ident;
1138 item.historyId = mNextHistoryId++;
1139 if (mNextHistoryId < 0) mNextHistoryId = 0;
1140 item.eventTime = now;
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001141 item.source = op.syncSource;
1142 item.reason = op.reason;
1143 item.extras = op.extras;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001144 item.event = EVENT_START;
1145 mSyncHistory.add(0, item);
1146 while (mSyncHistory.size() > MAX_HISTORY) {
1147 mSyncHistory.remove(mSyncHistory.size()-1);
1148 }
1149 id = item.historyId;
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001150 if (Log.isLoggable(TAG, Log.VERBOSE)) Slog.v(TAG, "returning historyId " + id);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001151 }
Costin Manolache360e4542009-09-04 13:36:04 -07001152
Fred Quintanaac9385e2009-06-22 18:00:59 -07001153 reportChange(ContentResolver.SYNC_OBSERVER_TYPE_STATUS);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001154 return id;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001155 }
1156
Fred Quintana77c560f2010-03-29 22:20:26 -07001157 public void stopSyncEvent(long historyId, long elapsedTime, String resultMessage,
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001158 long downstreamActivity, long upstreamActivity) {
Dianne Hackborn231cc602009-04-27 17:10:36 -07001159 synchronized (mAuthorities) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001160 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001161 Slog.v(TAG, "stopSyncEvent: historyId=" + historyId);
Fred Quintana77c560f2010-03-29 22:20:26 -07001162 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07001163 SyncHistoryItem item = null;
1164 int i = mSyncHistory.size();
1165 while (i > 0) {
1166 i--;
1167 item = mSyncHistory.get(i);
1168 if (item.historyId == historyId) {
1169 break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001170 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07001171 item = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001172 }
Costin Manolache360e4542009-09-04 13:36:04 -07001173
Dianne Hackborn231cc602009-04-27 17:10:36 -07001174 if (item == null) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001175 Slog.w(TAG, "stopSyncEvent: no history for id " + historyId);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001176 return;
1177 }
Costin Manolache360e4542009-09-04 13:36:04 -07001178
Dianne Hackborn231cc602009-04-27 17:10:36 -07001179 item.elapsedTime = elapsedTime;
1180 item.event = EVENT_STOP;
1181 item.mesg = resultMessage;
1182 item.downstreamActivity = downstreamActivity;
1183 item.upstreamActivity = upstreamActivity;
Costin Manolache360e4542009-09-04 13:36:04 -07001184
Dianne Hackborn231cc602009-04-27 17:10:36 -07001185 SyncStatusInfo status = getOrCreateSyncStatusLocked(item.authorityId);
Costin Manolache360e4542009-09-04 13:36:04 -07001186
Makoto Onuki94986212018-04-11 16:24:46 -07001187 status.maybeResetTodayStats(isClockValid(), /*force=*/ false);
1188
1189 status.totalStats.numSyncs++;
1190 status.todayStats.numSyncs++;
1191 status.totalStats.totalElapsedTime += elapsedTime;
1192 status.todayStats.totalElapsedTime += elapsedTime;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001193 switch (item.source) {
1194 case SOURCE_LOCAL:
Makoto Onuki94986212018-04-11 16:24:46 -07001195 status.totalStats.numSourceLocal++;
1196 status.todayStats.numSourceLocal++;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001197 break;
1198 case SOURCE_POLL:
Makoto Onuki94986212018-04-11 16:24:46 -07001199 status.totalStats.numSourcePoll++;
1200 status.todayStats.numSourcePoll++;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001201 break;
1202 case SOURCE_USER:
Makoto Onuki94986212018-04-11 16:24:46 -07001203 status.totalStats.numSourceUser++;
1204 status.todayStats.numSourceUser++;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001205 break;
Makoto Onuki94986212018-04-11 16:24:46 -07001206 case SOURCE_OTHER:
1207 status.totalStats.numSourceOther++;
1208 status.todayStats.numSourceOther++;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001209 break;
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001210 case SOURCE_PERIODIC:
Makoto Onuki94986212018-04-11 16:24:46 -07001211 status.totalStats.numSourcePeriodic++;
1212 status.todayStats.numSourcePeriodic++;
1213 break;
1214 case SOURCE_FEED:
1215 status.totalStats.numSourceFeed++;
1216 status.todayStats.numSourceFeed++;
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001217 break;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001218 }
Costin Manolache360e4542009-09-04 13:36:04 -07001219
Dianne Hackborn231cc602009-04-27 17:10:36 -07001220 boolean writeStatisticsNow = false;
Dianne Hackborn55280a92009-05-07 15:53:46 -07001221 int day = getCurrentDayLocked();
Dianne Hackborn231cc602009-04-27 17:10:36 -07001222 if (mDayStats[0] == null) {
1223 mDayStats[0] = new DayStats(day);
1224 } else if (day != mDayStats[0].day) {
1225 System.arraycopy(mDayStats, 0, mDayStats, 1, mDayStats.length-1);
1226 mDayStats[0] = new DayStats(day);
1227 writeStatisticsNow = true;
1228 } else if (mDayStats[0] == null) {
1229 }
1230 final DayStats ds = mDayStats[0];
Costin Manolache360e4542009-09-04 13:36:04 -07001231
Dianne Hackborn231cc602009-04-27 17:10:36 -07001232 final long lastSyncTime = (item.eventTime + elapsedTime);
1233 boolean writeStatusNow = false;
1234 if (MESG_SUCCESS.equals(resultMessage)) {
1235 // - if successful, update the successful columns
1236 if (status.lastSuccessTime == 0 || status.lastFailureTime != 0) {
1237 writeStatusNow = true;
1238 }
Makoto Onukif74cf942018-04-16 17:04:58 -07001239 status.setLastSuccess(item.source, lastSyncTime);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001240 ds.successCount++;
1241 ds.successTime += elapsedTime;
1242 } else if (!MESG_CANCELED.equals(resultMessage)) {
1243 if (status.lastFailureTime == 0) {
1244 writeStatusNow = true;
1245 }
Makoto Onuki94986212018-04-11 16:24:46 -07001246 status.totalStats.numFailures++;
1247 status.todayStats.numFailures++;
1248
Makoto Onukif74cf942018-04-16 17:04:58 -07001249 status.setLastFailure(item.source, lastSyncTime, resultMessage);
1250
Dianne Hackborn231cc602009-04-27 17:10:36 -07001251 ds.failureCount++;
1252 ds.failureTime += elapsedTime;
Makoto Onuki94986212018-04-11 16:24:46 -07001253 } else {
1254 // Cancel
1255 status.totalStats.numCancels++;
1256 status.todayStats.numCancels++;
1257 writeStatusNow = true;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001258 }
Makoto Onuki15e7a252017-06-08 17:12:05 -07001259 final StringBuilder event = new StringBuilder();
1260 event.append("" + resultMessage + " Source=" + SyncStorageEngine.SOURCES[item.source]
1261 + " Elapsed=");
1262 SyncManager.formatDurationHMS(event, elapsedTime);
1263 event.append(" Reason=");
1264 event.append(SyncOperation.reasonToString(null, item.reason));
1265 event.append(" Extras=");
1266 SyncOperation.extrasToStringBuilder(item.extras, event);
1267
1268 status.addEvent(event.toString());
Costin Manolache360e4542009-09-04 13:36:04 -07001269
Dianne Hackborn231cc602009-04-27 17:10:36 -07001270 if (writeStatusNow) {
1271 writeStatusLocked();
Makoto Onuki6963bea72017-12-12 10:42:39 -08001272 } else if (!mHandler.hasMessages(MSG_WRITE_STATUS)) {
1273 mHandler.sendMessageDelayed(mHandler.obtainMessage(MSG_WRITE_STATUS),
Dianne Hackborn231cc602009-04-27 17:10:36 -07001274 WRITE_STATUS_DELAY);
1275 }
1276 if (writeStatisticsNow) {
1277 writeStatisticsLocked();
Makoto Onuki6963bea72017-12-12 10:42:39 -08001278 } else if (!mHandler.hasMessages(MSG_WRITE_STATISTICS)) {
1279 mHandler.sendMessageDelayed(mHandler.obtainMessage(MSG_WRITE_STATISTICS),
Dianne Hackborn231cc602009-04-27 17:10:36 -07001280 WRITE_STATISTICS_DELAY);
Costin Manolache360e4542009-09-04 13:36:04 -07001281 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07001282 }
Costin Manolache360e4542009-09-04 13:36:04 -07001283
Fred Quintanaac9385e2009-06-22 18:00:59 -07001284 reportChange(ContentResolver.SYNC_OBSERVER_TYPE_STATUS);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001285 }
1286
1287 /**
Matthew Williamsa7456e42013-11-12 14:41:02 -08001288 * Return a list of the currently active syncs. Note that the returned
1289 * items are the real, live active sync objects, so be careful what you do
1290 * with it.
Fred Quintana918339a2010-10-05 14:00:39 -07001291 */
Matthew Williamsa7456e42013-11-12 14:41:02 -08001292 private List<SyncInfo> getCurrentSyncs(int userId) {
Fred Quintana918339a2010-10-05 14:00:39 -07001293 synchronized (mAuthorities) {
Matthew Williamsa7456e42013-11-12 14:41:02 -08001294 return getCurrentSyncsLocked(userId);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001295 }
1296 }
Costin Manolache360e4542009-09-04 13:36:04 -07001297
Dianne Hackborn231cc602009-04-27 17:10:36 -07001298 /**
Matthew Williamsf39549e2016-01-19 23:04:04 +00001299 * @param userId Id of user to return current sync info.
1300 * @param canAccessAccounts Determines whether to redact Account information from the result.
1301 * @return a copy of the current syncs data structure. Will not return null.
Matthew Williamsa7456e42013-11-12 14:41:02 -08001302 */
Matthew Williamsf39549e2016-01-19 23:04:04 +00001303 public List<SyncInfo> getCurrentSyncsCopy(int userId, boolean canAccessAccounts) {
Matthew Williamsa7456e42013-11-12 14:41:02 -08001304 synchronized (mAuthorities) {
1305 final List<SyncInfo> syncs = getCurrentSyncsLocked(userId);
1306 final List<SyncInfo> syncsCopy = new ArrayList<SyncInfo>();
1307 for (SyncInfo sync : syncs) {
Matthew Williamsf39549e2016-01-19 23:04:04 +00001308 SyncInfo copy;
1309 if (!canAccessAccounts) {
1310 copy = SyncInfo.createAccountRedacted(
1311 sync.authorityId, sync.authority, sync.startTime);
1312 } else {
1313 copy = new SyncInfo(sync);
1314 }
1315 syncsCopy.add(copy);
Matthew Williamsa7456e42013-11-12 14:41:02 -08001316 }
1317 return syncsCopy;
1318 }
1319 }
1320
1321 private List<SyncInfo> getCurrentSyncsLocked(int userId) {
1322 ArrayList<SyncInfo> syncs = mCurrentSyncs.get(userId);
1323 if (syncs == null) {
1324 syncs = new ArrayList<SyncInfo>();
1325 mCurrentSyncs.put(userId, syncs);
1326 }
1327 return syncs;
1328 }
1329
1330 /**
Matthew Williams8ef22042013-07-26 12:56:39 -07001331 * Return a copy of the specified target with the corresponding sync status
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001332 */
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001333 public Pair<AuthorityInfo, SyncStatusInfo> getCopyOfAuthorityWithSyncStatus(EndPoint info) {
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001334 synchronized (mAuthorities) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001335 AuthorityInfo authorityInfo = getOrCreateAuthorityLocked(info,
Matthew Williams8ef22042013-07-26 12:56:39 -07001336 -1 /* assign a new identifier if creating a new target */,
Georgi Nikolovdbe846b2013-06-25 14:09:56 -07001337 true /* write to storage if this results in a change */);
1338 return createCopyPairOfAuthorityWithSyncStatusLocked(authorityInfo);
1339 }
1340 }
1341
1342 /**
Matthew Williams8ef22042013-07-26 12:56:39 -07001343 * Returns the status that matches the target.
Costin Manolacheb7520982009-09-02 18:03:05 -07001344 *
Matthew Williams8ef22042013-07-26 12:56:39 -07001345 * @param info the endpoint target we are querying status info for.
1346 * @return the SyncStatusInfo for the endpoint.
Dianne Hackborn231cc602009-04-27 17:10:36 -07001347 */
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001348 public SyncStatusInfo getStatusByAuthority(EndPoint info) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001349 if (info.account == null || info.provider == null) {
Matthew Williamsd08d6682013-10-14 10:39:41 -07001350 return null;
Costin Manolacheb7520982009-09-02 18:03:05 -07001351 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07001352 synchronized (mAuthorities) {
Dianne Hackborn231cc602009-04-27 17:10:36 -07001353 final int N = mSyncStatus.size();
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001354 for (int i = 0; i < N; i++) {
Costin Manolache360e4542009-09-04 13:36:04 -07001355 SyncStatusInfo cur = mSyncStatus.valueAt(i);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001356 AuthorityInfo ainfo = mAuthorities.get(cur.authorityId);
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001357 if (ainfo != null
Matthew Williams8ef22042013-07-26 12:56:39 -07001358 && ainfo.target.matchesSpec(info)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001359 return cur;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001360 }
1361 }
Costin Manolacheb7520982009-09-02 18:03:05 -07001362 return null;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001363 }
1364 }
Costin Manolache360e4542009-09-04 13:36:04 -07001365
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001366 /** Return true if the pending status is true of any matching authorities. */
1367 public boolean isSyncPending(EndPoint info) {
Dianne Hackborn231cc602009-04-27 17:10:36 -07001368 synchronized (mAuthorities) {
1369 final int N = mSyncStatus.size();
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001370 for (int i = 0; i < N; i++) {
Costin Manolache360e4542009-09-04 13:36:04 -07001371 SyncStatusInfo cur = mSyncStatus.valueAt(i);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001372 AuthorityInfo ainfo = mAuthorities.get(cur.authorityId);
1373 if (ainfo == null) {
1374 continue;
1375 }
Matthew Williams8ef22042013-07-26 12:56:39 -07001376 if (!ainfo.target.matchesSpec(info)) {
Amith Yamasani04e0d262012-02-14 11:50:53 -08001377 continue;
1378 }
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001379 if (cur.pending) {
Dianne Hackborn231cc602009-04-27 17:10:36 -07001380 return true;
1381 }
1382 }
1383 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001384 }
1385 }
1386
1387 /**
Dianne Hackborn231cc602009-04-27 17:10:36 -07001388 * Return an array of the current sync status for all authorities. Note
1389 * that the objects inside the array are the real, live status objects,
1390 * so be careful what you do with them.
1391 */
1392 public ArrayList<SyncHistoryItem> getSyncHistory() {
1393 synchronized (mAuthorities) {
1394 final int N = mSyncHistory.size();
1395 ArrayList<SyncHistoryItem> items = new ArrayList<SyncHistoryItem>(N);
1396 for (int i=0; i<N; i++) {
1397 items.add(mSyncHistory.get(i));
1398 }
1399 return items;
1400 }
1401 }
Costin Manolache360e4542009-09-04 13:36:04 -07001402
Dianne Hackborn231cc602009-04-27 17:10:36 -07001403 /**
1404 * Return an array of the current per-day statistics. Note
1405 * that the objects inside the array are the real, live status objects,
1406 * so be careful what you do with them.
1407 */
1408 public DayStats[] getDayStatistics() {
1409 synchronized (mAuthorities) {
1410 DayStats[] ds = new DayStats[mDayStats.length];
1411 System.arraycopy(mDayStats, 0, ds, 0, ds.length);
1412 return ds;
1413 }
1414 }
Costin Manolache360e4542009-09-04 13:36:04 -07001415
Georgi Nikolovdbe846b2013-06-25 14:09:56 -07001416 private Pair<AuthorityInfo, SyncStatusInfo> createCopyPairOfAuthorityWithSyncStatusLocked(
1417 AuthorityInfo authorityInfo) {
1418 SyncStatusInfo syncStatusInfo = getOrCreateSyncStatusLocked(authorityInfo.ident);
1419 return Pair.create(new AuthorityInfo(authorityInfo), new SyncStatusInfo(syncStatusInfo));
1420 }
1421
Dianne Hackborn55280a92009-05-07 15:53:46 -07001422 private int getCurrentDayLocked() {
Dianne Hackborn231cc602009-04-27 17:10:36 -07001423 mCal.setTimeInMillis(System.currentTimeMillis());
1424 final int dayOfYear = mCal.get(Calendar.DAY_OF_YEAR);
1425 if (mYear != mCal.get(Calendar.YEAR)) {
1426 mYear = mCal.get(Calendar.YEAR);
1427 mCal.clear();
1428 mCal.set(Calendar.YEAR, mYear);
1429 mYearInDays = (int)(mCal.getTimeInMillis()/86400000);
1430 }
1431 return dayOfYear + mYearInDays;
1432 }
Costin Manolache360e4542009-09-04 13:36:04 -07001433
Dianne Hackborn231cc602009-04-27 17:10:36 -07001434 /**
Matthew Williams8ef22042013-07-26 12:56:39 -07001435 * Retrieve a target's full info, returning null if one does not exist.
Costin Manolache360e4542009-09-04 13:36:04 -07001436 *
Matthew Williams8ef22042013-07-26 12:56:39 -07001437 * @param info info of the target to look up.
Dianne Hackborn231cc602009-04-27 17:10:36 -07001438 * @param tag If non-null, this will be used in a log message if the
Matthew Williams8ef22042013-07-26 12:56:39 -07001439 * requested target does not exist.
Dianne Hackborn231cc602009-04-27 17:10:36 -07001440 */
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001441 private AuthorityInfo getAuthorityLocked(EndPoint info, String tag) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001442 AccountAndUser au = new AccountAndUser(info.account, info.userId);
1443 AccountInfo accountInfo = mAccounts.get(au);
1444 if (accountInfo == null) {
1445 if (tag != null) {
1446 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1447 Slog.v(TAG, tag + ": unknown account " + au);
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001448 }
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001449 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07001450 return null;
1451 }
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001452 AuthorityInfo authority = accountInfo.authorities.get(info.provider);
1453 if (authority == null) {
1454 if (tag != null) {
1455 if (Log.isLoggable(TAG, Log.VERBOSE)) {
1456 Slog.v(TAG, tag + ": unknown provider " + info.provider);
1457 }
1458 }
1459 return null;
1460 }
1461 return authority;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001462 }
Costin Manolache360e4542009-09-04 13:36:04 -07001463
Matthew Williamsfa774182013-06-18 15:44:11 -07001464 /**
Matthew Williams8ef22042013-07-26 12:56:39 -07001465 * @param info info identifying target.
1466 * @param ident unique identifier for target. -1 for none.
Matthew Williamsfa774182013-06-18 15:44:11 -07001467 * @param doWrite if true, update the accounts.xml file on the disk.
Matthew Williams8ef22042013-07-26 12:56:39 -07001468 * @return the authority that corresponds to the provided sync target, creating it if none
Matthew Williamsfa774182013-06-18 15:44:11 -07001469 * exists.
1470 */
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001471 private AuthorityInfo getOrCreateAuthorityLocked(EndPoint info, int ident, boolean doWrite) {
1472 AuthorityInfo authority = null;
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001473 AccountAndUser au = new AccountAndUser(info.account, info.userId);
1474 AccountInfo account = mAccounts.get(au);
1475 if (account == null) {
1476 account = new AccountInfo(au);
1477 mAccounts.put(au, account);
1478 }
1479 authority = account.authorities.get(info.provider);
1480 if (authority == null) {
1481 authority = createAuthorityLocked(info, ident, doWrite);
1482 account.authorities.put(info.provider, authority);
Matthew Williamsfa774182013-06-18 15:44:11 -07001483 }
1484 return authority;
1485 }
1486
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001487 private AuthorityInfo createAuthorityLocked(EndPoint info, int ident, boolean doWrite) {
1488 AuthorityInfo authority;
1489 if (ident < 0) {
1490 ident = mNextAuthorityId;
1491 mNextAuthorityId++;
1492 doWrite = true;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001493 }
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001494 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001495 Slog.v(TAG, "created a new AuthorityInfo for " + info);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001496 }
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001497 authority = new AuthorityInfo(info, ident);
1498 mAuthorities.put(ident, authority);
1499 if (doWrite) {
1500 writeAccountInfoLocked();
1501 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07001502 return authority;
1503 }
Costin Manolache360e4542009-09-04 13:36:04 -07001504
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001505 public void removeAuthority(EndPoint info) {
1506 synchronized (mAuthorities) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001507 removeAuthorityLocked(info.account, info.userId, info.provider, true /* doWrite */);
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001508 }
1509 }
1510
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001511
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001512 /**
1513 * Remove an authority associated with a provider. Needs to be a standalone function for
1514 * backward compatibility.
1515 */
Amith Yamasani04e0d262012-02-14 11:50:53 -08001516 private void removeAuthorityLocked(Account account, int userId, String authorityName,
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001517 boolean doWrite) {
Amith Yamasani04e0d262012-02-14 11:50:53 -08001518 AccountInfo accountInfo = mAccounts.get(new AccountAndUser(account, userId));
Fred Quintana7620f1a2010-03-16 15:58:44 -07001519 if (accountInfo != null) {
Fred Quintanafb084402010-03-23 17:57:03 -07001520 final AuthorityInfo authorityInfo = accountInfo.authorities.remove(authorityName);
1521 if (authorityInfo != null) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001522 if (mAuthorityRemovedListener != null) {
1523 mAuthorityRemovedListener.onAuthorityRemoved(authorityInfo.target);
1524 }
Fred Quintanafb084402010-03-23 17:57:03 -07001525 mAuthorities.remove(authorityInfo.ident);
Fred Quintana77c560f2010-03-29 22:20:26 -07001526 if (doWrite) {
1527 writeAccountInfoLocked();
1528 }
Fred Quintana7620f1a2010-03-16 15:58:44 -07001529 }
1530 }
1531 }
1532
Dianne Hackborn231cc602009-04-27 17:10:36 -07001533 private SyncStatusInfo getOrCreateSyncStatusLocked(int authorityId) {
1534 SyncStatusInfo status = mSyncStatus.get(authorityId);
1535 if (status == null) {
1536 status = new SyncStatusInfo(authorityId);
1537 mSyncStatus.put(authorityId, status);
1538 }
1539 return status;
1540 }
Costin Manolache360e4542009-09-04 13:36:04 -07001541
Dianne Hackborn55280a92009-05-07 15:53:46 -07001542 public void writeAllState() {
1543 synchronized (mAuthorities) {
1544 // Account info is always written so no need to do it here.
Dianne Hackborn55280a92009-05-07 15:53:46 -07001545 writeStatusLocked();
1546 writeStatisticsLocked();
1547 }
1548 }
Costin Manolache360e4542009-09-04 13:36:04 -07001549
Svet Ganov65712b02016-09-01 10:24:11 -07001550 public boolean shouldGrantSyncAdaptersAccountAccess() {
1551 return mGrantSyncAdaptersAccountAccess;
1552 }
1553
Dianne Hackborn231cc602009-04-27 17:10:36 -07001554 /**
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001555 * public for testing
1556 */
1557 public void clearAndReadState() {
1558 synchronized (mAuthorities) {
1559 mAuthorities.clear();
1560 mAccounts.clear();
Matthew Williamsfa774182013-06-18 15:44:11 -07001561 mServices.clear();
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001562 mSyncStatus.clear();
1563 mSyncHistory.clear();
1564
1565 readAccountInfoLocked();
1566 readStatusLocked();
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001567 readStatisticsLocked();
Fred Quintana77c560f2010-03-29 22:20:26 -07001568 readAndDeleteLegacyAccountInfoLocked();
1569 writeAccountInfoLocked();
1570 writeStatusLocked();
Fred Quintana77c560f2010-03-29 22:20:26 -07001571 writeStatisticsLocked();
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001572 }
1573 }
1574
1575 /**
Dianne Hackborn231cc602009-04-27 17:10:36 -07001576 * Read all account information back in to the initial engine state.
1577 */
1578 private void readAccountInfoLocked() {
Fred Quintana77c560f2010-03-29 22:20:26 -07001579 int highestAuthorityId = -1;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001580 FileInputStream fis = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001581 try {
Dianne Hackborn231cc602009-04-27 17:10:36 -07001582 fis = mAccountInfoFile.openRead();
Matthew Williamsba352712013-08-13 15:53:31 -07001583 if (Log.isLoggable(TAG_FILE, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001584 Slog.v(TAG_FILE, "Reading " + mAccountInfoFile.getBaseFile());
Matthew Williamsba352712013-08-13 15:53:31 -07001585 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07001586 XmlPullParser parser = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01001587 parser.setInput(fis, StandardCharsets.UTF_8.name());
Dianne Hackborn231cc602009-04-27 17:10:36 -07001588 int eventType = parser.getEventType();
Narayan Kamath2ac3cb72014-01-06 11:31:35 +00001589 while (eventType != XmlPullParser.START_TAG &&
1590 eventType != XmlPullParser.END_DOCUMENT) {
Dianne Hackborn231cc602009-04-27 17:10:36 -07001591 eventType = parser.next();
1592 }
Narayan Kamath2ac3cb72014-01-06 11:31:35 +00001593 if (eventType == XmlPullParser.END_DOCUMENT) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001594 Slog.i(TAG, "No initial accounts");
Narayan Kamath2ac3cb72014-01-06 11:31:35 +00001595 return;
1596 }
1597
Dianne Hackborn231cc602009-04-27 17:10:36 -07001598 String tagName = parser.getName();
1599 if ("accounts".equals(tagName)) {
Amith Yamasani04e0d262012-02-14 11:50:53 -08001600 String listen = parser.getAttributeValue(null, XML_ATTR_LISTEN_FOR_TICKLES);
Fred Quintanac2e46912010-03-15 16:10:44 -07001601 String versionString = parser.getAttributeValue(null, "version");
1602 int version;
1603 try {
1604 version = (versionString == null) ? 0 : Integer.parseInt(versionString);
1605 } catch (NumberFormatException e) {
1606 version = 0;
1607 }
Svet Ganov65712b02016-09-01 10:24:11 -07001608
1609 if (version < 3) {
1610 mGrantSyncAdaptersAccountAccess = true;
1611 }
1612
Amith Yamasani04e0d262012-02-14 11:50:53 -08001613 String nextIdString = parser.getAttributeValue(null, XML_ATTR_NEXT_AUTHORITY_ID);
Fred Quintana77c560f2010-03-29 22:20:26 -07001614 try {
1615 int id = (nextIdString == null) ? 0 : Integer.parseInt(nextIdString);
1616 mNextAuthorityId = Math.max(mNextAuthorityId, id);
1617 } catch (NumberFormatException e) {
1618 // don't care
Fred Quintanac2e46912010-03-15 16:10:44 -07001619 }
Ashish Sharma69d95de2012-04-11 17:27:24 -07001620 String offsetString = parser.getAttributeValue(null, XML_ATTR_SYNC_RANDOM_OFFSET);
1621 try {
1622 mSyncRandomOffset = (offsetString == null) ? 0 : Integer.parseInt(offsetString);
1623 } catch (NumberFormatException e) {
1624 mSyncRandomOffset = 0;
1625 }
1626 if (mSyncRandomOffset == 0) {
1627 Random random = new Random(System.currentTimeMillis());
1628 mSyncRandomOffset = random.nextInt(86400);
1629 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08001630 mMasterSyncAutomatically.put(0, listen == null || Boolean.parseBoolean(listen));
Dianne Hackborn231cc602009-04-27 17:10:36 -07001631 eventType = parser.next();
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001632 AuthorityInfo authority = null;
Matthew Williamsfa774182013-06-18 15:44:11 -07001633 PeriodicSync periodicSync = null;
Suprabh Shukla042a4782017-05-12 15:26:54 -07001634 AccountAuthorityValidator validator = new AccountAuthorityValidator(mContext);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001635 do {
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001636 if (eventType == XmlPullParser.START_TAG) {
Dianne Hackborn231cc602009-04-27 17:10:36 -07001637 tagName = parser.getName();
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001638 if (parser.getDepth() == 2) {
1639 if ("authority".equals(tagName)) {
Suprabh Shukla042a4782017-05-12 15:26:54 -07001640 authority = parseAuthority(parser, version, validator);
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001641 periodicSync = null;
Shreyas Basarge11cb4e22016-01-13 14:27:16 +00001642 if (authority != null) {
1643 if (authority.ident > highestAuthorityId) {
1644 highestAuthorityId = authority.ident;
1645 }
Shreyas Basargebae9ded2016-02-17 13:54:44 +00001646 } else {
1647 EventLog.writeEvent(0x534e4554, "26513719", -1,
1648 "Malformed authority");
Fred Quintana77c560f2010-03-29 22:20:26 -07001649 }
Amith Yamasani04e0d262012-02-14 11:50:53 -08001650 } else if (XML_TAG_LISTEN_FOR_TICKLES.equals(tagName)) {
1651 parseListenForTickles(parser);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001652 }
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001653 } else if (parser.getDepth() == 3) {
1654 if ("periodicSync".equals(tagName) && authority != null) {
1655 periodicSync = parsePeriodicSync(parser, authority);
1656 }
1657 } else if (parser.getDepth() == 4 && periodicSync != null) {
1658 if ("extra".equals(tagName)) {
Matthew Williamsfa774182013-06-18 15:44:11 -07001659 parseExtra(parser, periodicSync.extras);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001660 }
1661 }
1662 }
1663 eventType = parser.next();
1664 } while (eventType != XmlPullParser.END_DOCUMENT);
1665 }
1666 } catch (XmlPullParserException e) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001667 Slog.w(TAG, "Error reading accounts", e);
Fred Quintanac2e46912010-03-15 16:10:44 -07001668 return;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001669 } catch (java.io.IOException e) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001670 if (fis == null) Slog.i(TAG, "No initial accounts");
1671 else Slog.w(TAG, "Error reading accounts", e);
Fred Quintanac2e46912010-03-15 16:10:44 -07001672 return;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001673 } finally {
Fred Quintana77c560f2010-03-29 22:20:26 -07001674 mNextAuthorityId = Math.max(highestAuthorityId + 1, mNextAuthorityId);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001675 if (fis != null) {
1676 try {
1677 fis.close();
1678 } catch (java.io.IOException e1) {
1679 }
1680 }
1681 }
Fred Quintanac2e46912010-03-15 16:10:44 -07001682
Fred Quintana77c560f2010-03-29 22:20:26 -07001683 maybeMigrateSettingsForRenamedAuthorities();
Dianne Hackborn231cc602009-04-27 17:10:36 -07001684 }
Costin Manolache360e4542009-09-04 13:36:04 -07001685
Fred Quintanafb084402010-03-23 17:57:03 -07001686 /**
Matthew Williamsba352712013-08-13 15:53:31 -07001687 * Ensure the old pending.bin is deleted, as it has been changed to pending.xml.
1688 * pending.xml was used starting in KLP.
1689 * @param syncDir directory where the sync files are located.
1690 */
1691 private void maybeDeleteLegacyPendingInfoLocked(File syncDir) {
1692 File file = new File(syncDir, "pending.bin");
1693 if (!file.exists()) {
1694 return;
1695 } else {
1696 file.delete();
1697 }
1698 }
1699
1700 /**
Fred Quintanafb084402010-03-23 17:57:03 -07001701 * some authority names have changed. copy over their settings and delete the old ones
1702 * @return true if a change was made
1703 */
1704 private boolean maybeMigrateSettingsForRenamedAuthorities() {
1705 boolean writeNeeded = false;
1706
1707 ArrayList<AuthorityInfo> authoritiesToRemove = new ArrayList<AuthorityInfo>();
1708 final int N = mAuthorities.size();
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001709 for (int i = 0; i < N; i++) {
Fred Quintanafb084402010-03-23 17:57:03 -07001710 AuthorityInfo authority = mAuthorities.valueAt(i);
1711 // skip this authority if it isn't one of the renamed ones
Matthew Williams8ef22042013-07-26 12:56:39 -07001712 final String newAuthorityName = sAuthorityRenames.get(authority.target.provider);
Fred Quintanafb084402010-03-23 17:57:03 -07001713 if (newAuthorityName == null) {
1714 continue;
1715 }
1716
1717 // remember this authority so we can remove it later. we can't remove it
1718 // now without messing up this loop iteration
1719 authoritiesToRemove.add(authority);
1720
1721 // this authority isn't enabled, no need to copy it to the new authority name since
1722 // the default is "disabled"
1723 if (!authority.enabled) {
1724 continue;
1725 }
1726
1727 // if we already have a record of this new authority then don't copy over the settings
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001728 EndPoint newInfo =
Matthew Williams8ef22042013-07-26 12:56:39 -07001729 new EndPoint(authority.target.account,
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001730 newAuthorityName,
Matthew Williams8ef22042013-07-26 12:56:39 -07001731 authority.target.userId);
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001732 if (getAuthorityLocked(newInfo, "cleanup") != null) {
Fred Quintanafb084402010-03-23 17:57:03 -07001733 continue;
1734 }
1735
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001736 AuthorityInfo newAuthority =
1737 getOrCreateAuthorityLocked(newInfo, -1 /* ident */, false /* doWrite */);
Fred Quintanafb084402010-03-23 17:57:03 -07001738 newAuthority.enabled = true;
1739 writeNeeded = true;
1740 }
1741
1742 for (AuthorityInfo authorityInfo : authoritiesToRemove) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001743 removeAuthorityLocked(
Matthew Williams8ef22042013-07-26 12:56:39 -07001744 authorityInfo.target.account,
1745 authorityInfo.target.userId,
1746 authorityInfo.target.provider,
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001747 false /* doWrite */);
Fred Quintanafb084402010-03-23 17:57:03 -07001748 writeNeeded = true;
1749 }
1750
1751 return writeNeeded;
1752 }
1753
Amith Yamasani04e0d262012-02-14 11:50:53 -08001754 private void parseListenForTickles(XmlPullParser parser) {
1755 String user = parser.getAttributeValue(null, XML_ATTR_USER);
1756 int userId = 0;
1757 try {
1758 userId = Integer.parseInt(user);
1759 } catch (NumberFormatException e) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001760 Slog.e(TAG, "error parsing the user for listen-for-tickles", e);
Amith Yamasani04e0d262012-02-14 11:50:53 -08001761 } catch (NullPointerException e) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001762 Slog.e(TAG, "the user in listen-for-tickles is null", e);
Amith Yamasani04e0d262012-02-14 11:50:53 -08001763 }
1764 String enabled = parser.getAttributeValue(null, XML_ATTR_ENABLED);
1765 boolean listen = enabled == null || Boolean.parseBoolean(enabled);
1766 mMasterSyncAutomatically.put(userId, listen);
1767 }
1768
Suprabh Shukla042a4782017-05-12 15:26:54 -07001769 private AuthorityInfo parseAuthority(XmlPullParser parser, int version,
1770 AccountAuthorityValidator validator) {
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001771 AuthorityInfo authority = null;
1772 int id = -1;
1773 try {
Matthew Williamsfa774182013-06-18 15:44:11 -07001774 id = Integer.parseInt(parser.getAttributeValue(null, "id"));
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001775 } catch (NumberFormatException e) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001776 Slog.e(TAG, "error parsing the id of the authority", e);
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001777 } catch (NullPointerException e) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001778 Slog.e(TAG, "the id of the authority is null", e);
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001779 }
1780 if (id >= 0) {
Fred Quintanafb084402010-03-23 17:57:03 -07001781 String authorityName = parser.getAttributeValue(null, "authority");
Amith Yamasani04e0d262012-02-14 11:50:53 -08001782 String enabled = parser.getAttributeValue(null, XML_ATTR_ENABLED);
Fred Quintanafb084402010-03-23 17:57:03 -07001783 String syncable = parser.getAttributeValue(null, "syncable");
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001784 String accountName = parser.getAttributeValue(null, "account");
1785 String accountType = parser.getAttributeValue(null, "type");
Amith Yamasani04e0d262012-02-14 11:50:53 -08001786 String user = parser.getAttributeValue(null, XML_ATTR_USER);
Matthew Williamsfa774182013-06-18 15:44:11 -07001787 String packageName = parser.getAttributeValue(null, "package");
1788 String className = parser.getAttributeValue(null, "class");
Amith Yamasani04e0d262012-02-14 11:50:53 -08001789 int userId = user == null ? 0 : Integer.parseInt(user);
Matthew Williams8ef22042013-07-26 12:56:39 -07001790 if (accountType == null && packageName == null) {
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001791 accountType = "com.google";
Matthew Williams53abfdb2015-06-10 20:06:37 -07001792 syncable = String.valueOf(AuthorityInfo.NOT_INITIALIZED);
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001793 }
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001794 authority = mAuthorities.get(id);
Matthew Williamsba352712013-08-13 15:53:31 -07001795 if (Log.isLoggable(TAG_FILE, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001796 Slog.v(TAG_FILE, "Adding authority:"
Matthew Williams8ef22042013-07-26 12:56:39 -07001797 + " account=" + accountName
1798 + " accountType=" + accountType
1799 + " auth=" + authorityName
1800 + " package=" + packageName
1801 + " class=" + className
Matthew Williamsba352712013-08-13 15:53:31 -07001802 + " user=" + userId
1803 + " enabled=" + enabled
1804 + " syncable=" + syncable);
1805 }
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001806 if (authority == null) {
Matthew Williamsba352712013-08-13 15:53:31 -07001807 if (Log.isLoggable(TAG_FILE, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001808 Slog.v(TAG_FILE, "Creating authority entry");
Matthew Williamsfa774182013-06-18 15:44:11 -07001809 }
Matthew Williams8ef22042013-07-26 12:56:39 -07001810 if (accountName != null && authorityName != null) {
Suprabh Shukla042a4782017-05-12 15:26:54 -07001811 EndPoint info = new EndPoint(
Matthew Williams8ef22042013-07-26 12:56:39 -07001812 new Account(accountName, accountType),
1813 authorityName, userId);
Suprabh Shukla042a4782017-05-12 15:26:54 -07001814 if (validator.isAccountValid(info.account, userId)
1815 && validator.isAuthorityValid(authorityName, userId)) {
1816 authority = getOrCreateAuthorityLocked(info, id, false);
1817 // If the version is 0 then we are upgrading from a file format that did not
1818 // know about periodic syncs. In that case don't clear the list since we
1819 // want the default, which is a daily periodic sync.
1820 // Otherwise clear out this default list since we will populate it later
1821 // with
1822 // the periodic sync descriptions that are read from the configuration file.
1823 if (version > 0) {
1824 authority.periodicSyncs.clear();
1825 }
1826 } else {
1827 EventLog.writeEvent(0x534e4554, "35028827", -1,
1828 "account:" + info.account + " provider:" + authorityName + " user:"
1829 + userId);
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001830 }
Fred Quintanac2e46912010-03-15 16:10:44 -07001831 }
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001832 }
1833 if (authority != null) {
1834 authority.enabled = enabled == null || Boolean.parseBoolean(enabled);
Matthew Williams53abfdb2015-06-10 20:06:37 -07001835 try {
1836 authority.syncable = (syncable == null) ?
1837 AuthorityInfo.NOT_INITIALIZED : Integer.parseInt(syncable);
1838 } catch (NumberFormatException e) {
1839 // On L we stored this as {"unknown", "true", "false"} so fall back to this
1840 // format.
1841 if ("unknown".equals(syncable)) {
1842 authority.syncable = AuthorityInfo.NOT_INITIALIZED;
1843 } else {
1844 authority.syncable = Boolean.parseBoolean(syncable) ?
1845 AuthorityInfo.SYNCABLE : AuthorityInfo.NOT_SYNCABLE;
1846 }
1847
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001848 }
1849 } else {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001850 Slog.w(TAG, "Failure adding authority: account="
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001851 + accountName + " auth=" + authorityName
1852 + " enabled=" + enabled
1853 + " syncable=" + syncable);
1854 }
1855 }
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001856 return authority;
1857 }
1858
Matthew Williamsfa774182013-06-18 15:44:11 -07001859 /**
1860 * Parse a periodic sync from accounts.xml. Sets the bundle to be empty.
1861 */
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001862 private PeriodicSync parsePeriodicSync(XmlPullParser parser, AuthorityInfo authorityInfo) {
Matthew Williamsfa774182013-06-18 15:44:11 -07001863 Bundle extras = new Bundle(); // Gets filled in later.
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001864 String periodValue = parser.getAttributeValue(null, "period");
Matthew Williamsfa774182013-06-18 15:44:11 -07001865 String flexValue = parser.getAttributeValue(null, "flex");
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001866 final long period;
Matthew Williamsfa774182013-06-18 15:44:11 -07001867 long flextime;
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001868 try {
1869 period = Long.parseLong(periodValue);
1870 } catch (NumberFormatException e) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001871 Slog.e(TAG, "error parsing the period of a periodic sync", e);
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001872 return null;
1873 } catch (NullPointerException e) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001874 Slog.e(TAG, "the period of a periodic sync is null", e);
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001875 return null;
1876 }
Matthew Williamsfa774182013-06-18 15:44:11 -07001877 try {
1878 flextime = Long.parseLong(flexValue);
1879 } catch (NumberFormatException e) {
Matthew Williamsfa774182013-06-18 15:44:11 -07001880 flextime = calculateDefaultFlexTime(period);
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001881 Slog.e(TAG, "Error formatting value parsed for periodic sync flex: " + flexValue
Matthew Williams8ef22042013-07-26 12:56:39 -07001882 + ", using default: "
1883 + flextime);
Matthew Williamsfa774182013-06-18 15:44:11 -07001884 } catch (NullPointerException expected) {
1885 flextime = calculateDefaultFlexTime(period);
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001886 Slog.d(TAG, "No flex time specified for this sync, using a default. period: "
1887 + period + " flex: " + flextime);
Matthew Williamsfa774182013-06-18 15:44:11 -07001888 }
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001889 PeriodicSync periodicSync;
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001890 periodicSync =
Matthew Williams8ef22042013-07-26 12:56:39 -07001891 new PeriodicSync(authorityInfo.target.account,
1892 authorityInfo.target.provider,
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001893 extras,
Matthew Williamsfa774182013-06-18 15:44:11 -07001894 period, flextime);
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001895 authorityInfo.periodicSyncs.add(periodicSync);
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001896 return periodicSync;
1897 }
1898
Matthew Williamsfa774182013-06-18 15:44:11 -07001899 private void parseExtra(XmlPullParser parser, Bundle extras) {
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001900 String name = parser.getAttributeValue(null, "name");
1901 String type = parser.getAttributeValue(null, "type");
1902 String value1 = parser.getAttributeValue(null, "value1");
1903 String value2 = parser.getAttributeValue(null, "value2");
1904
1905 try {
1906 if ("long".equals(type)) {
1907 extras.putLong(name, Long.parseLong(value1));
1908 } else if ("integer".equals(type)) {
1909 extras.putInt(name, Integer.parseInt(value1));
1910 } else if ("double".equals(type)) {
1911 extras.putDouble(name, Double.parseDouble(value1));
1912 } else if ("float".equals(type)) {
1913 extras.putFloat(name, Float.parseFloat(value1));
1914 } else if ("boolean".equals(type)) {
1915 extras.putBoolean(name, Boolean.parseBoolean(value1));
1916 } else if ("string".equals(type)) {
1917 extras.putString(name, value1);
1918 } else if ("account".equals(type)) {
1919 extras.putParcelable(name, new Account(value1, value2));
1920 }
1921 } catch (NumberFormatException e) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001922 Slog.e(TAG, "error parsing bundle value", e);
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001923 } catch (NullPointerException e) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001924 Slog.e(TAG, "error parsing bundle value", e);
Fred Quintanac5d1c6d2010-01-27 12:17:49 -08001925 }
1926 }
1927
Dianne Hackborn231cc602009-04-27 17:10:36 -07001928 /**
1929 * Write all account information to the account file.
1930 */
1931 private void writeAccountInfoLocked() {
Matthew Williamsba352712013-08-13 15:53:31 -07001932 if (Log.isLoggable(TAG_FILE, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001933 Slog.v(TAG_FILE, "Writing new " + mAccountInfoFile.getBaseFile());
Matthew Williamsba352712013-08-13 15:53:31 -07001934 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07001935 FileOutputStream fos = null;
Costin Manolache360e4542009-09-04 13:36:04 -07001936
Dianne Hackborn231cc602009-04-27 17:10:36 -07001937 try {
1938 fos = mAccountInfoFile.startWrite();
1939 XmlSerializer out = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01001940 out.setOutput(fos, StandardCharsets.UTF_8.name());
Dianne Hackborn231cc602009-04-27 17:10:36 -07001941 out.startDocument(null, true);
1942 out.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
Costin Manolache360e4542009-09-04 13:36:04 -07001943
Dianne Hackborn231cc602009-04-27 17:10:36 -07001944 out.startTag(null, "accounts");
Fred Quintanac2e46912010-03-15 16:10:44 -07001945 out.attribute(null, "version", Integer.toString(ACCOUNTS_VERSION));
Amith Yamasani04e0d262012-02-14 11:50:53 -08001946 out.attribute(null, XML_ATTR_NEXT_AUTHORITY_ID, Integer.toString(mNextAuthorityId));
Ashish Sharma69d95de2012-04-11 17:27:24 -07001947 out.attribute(null, XML_ATTR_SYNC_RANDOM_OFFSET, Integer.toString(mSyncRandomOffset));
Amith Yamasani04e0d262012-02-14 11:50:53 -08001948
1949 // Write the Sync Automatically flags for each user
1950 final int M = mMasterSyncAutomatically.size();
1951 for (int m = 0; m < M; m++) {
1952 int userId = mMasterSyncAutomatically.keyAt(m);
1953 Boolean listen = mMasterSyncAutomatically.valueAt(m);
1954 out.startTag(null, XML_TAG_LISTEN_FOR_TICKLES);
1955 out.attribute(null, XML_ATTR_USER, Integer.toString(userId));
1956 out.attribute(null, XML_ATTR_ENABLED, Boolean.toString(listen));
1957 out.endTag(null, XML_TAG_LISTEN_FOR_TICKLES);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001958 }
Costin Manolache360e4542009-09-04 13:36:04 -07001959
Dianne Hackborn231cc602009-04-27 17:10:36 -07001960 final int N = mAuthorities.size();
Matthew Williamsfa774182013-06-18 15:44:11 -07001961 for (int i = 0; i < N; i++) {
Costin Manolache360e4542009-09-04 13:36:04 -07001962 AuthorityInfo authority = mAuthorities.valueAt(i);
Matthew Williams8ef22042013-07-26 12:56:39 -07001963 EndPoint info = authority.target;
Dianne Hackborn231cc602009-04-27 17:10:36 -07001964 out.startTag(null, "authority");
1965 out.attribute(null, "id", Integer.toString(authority.ident));
Matthew Williams56dbf8f2013-07-26 12:56:39 -07001966 out.attribute(null, XML_ATTR_USER, Integer.toString(info.userId));
Amith Yamasani04e0d262012-02-14 11:50:53 -08001967 out.attribute(null, XML_ATTR_ENABLED, Boolean.toString(authority.enabled));
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001968 out.attribute(null, "account", info.account.name);
1969 out.attribute(null, "type", info.account.type);
1970 out.attribute(null, "authority", info.provider);
Matthew Williams53abfdb2015-06-10 20:06:37 -07001971 out.attribute(null, "syncable", Integer.toString(authority.syncable));
Dianne Hackborn231cc602009-04-27 17:10:36 -07001972 out.endTag(null, "authority");
1973 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07001974 out.endTag(null, "accounts");
Dianne Hackborn231cc602009-04-27 17:10:36 -07001975 out.endDocument();
Dianne Hackborn231cc602009-04-27 17:10:36 -07001976 mAccountInfoFile.finishWrite(fos);
1977 } catch (java.io.IOException e1) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00001978 Slog.w(TAG, "Error writing accounts", e1);
Dianne Hackborn231cc602009-04-27 17:10:36 -07001979 if (fos != null) {
1980 mAccountInfoFile.failWrite(fos);
1981 }
1982 }
1983 }
Costin Manolache360e4542009-09-04 13:36:04 -07001984
Dianne Hackborn231cc602009-04-27 17:10:36 -07001985 static int getIntColumn(Cursor c, String name) {
1986 return c.getInt(c.getColumnIndex(name));
1987 }
Costin Manolache360e4542009-09-04 13:36:04 -07001988
Dianne Hackborn231cc602009-04-27 17:10:36 -07001989 static long getLongColumn(Cursor c, String name) {
1990 return c.getLong(c.getColumnIndex(name));
1991 }
Costin Manolache360e4542009-09-04 13:36:04 -07001992
Dianne Hackborn231cc602009-04-27 17:10:36 -07001993 /**
Makoto Onuki94986212018-04-11 16:24:46 -07001994 * TODO Remove it. It's super old code that was used to migrate the information from a sqlite
1995 * database that we used a long time ago, and is no longer relevant.
Dianne Hackborn231cc602009-04-27 17:10:36 -07001996 */
Fred Quintana77c560f2010-03-29 22:20:26 -07001997 private void readAndDeleteLegacyAccountInfoLocked() {
Dianne Hackborn231cc602009-04-27 17:10:36 -07001998 // Look for old database to initialize from.
1999 File file = mContext.getDatabasePath("syncmanager.db");
2000 if (!file.exists()) {
2001 return;
2002 }
2003 String path = file.getPath();
2004 SQLiteDatabase db = null;
2005 try {
2006 db = SQLiteDatabase.openDatabase(path, null,
2007 SQLiteDatabase.OPEN_READONLY);
2008 } catch (SQLiteException e) {
2009 }
Costin Manolache360e4542009-09-04 13:36:04 -07002010
Dianne Hackborn231cc602009-04-27 17:10:36 -07002011 if (db != null) {
Dianne Hackborn2d5ed1f2009-05-06 15:22:38 -07002012 final boolean hasType = db.getVersion() >= 11;
Costin Manolache360e4542009-09-04 13:36:04 -07002013
Dianne Hackborn231cc602009-04-27 17:10:36 -07002014 // Copy in all of the status information, as well as accounts.
Matthew Williamsba352712013-08-13 15:53:31 -07002015 if (Log.isLoggable(TAG_FILE, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00002016 Slog.v(TAG_FILE, "Reading legacy sync accounts db");
Matthew Williamsba352712013-08-13 15:53:31 -07002017 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07002018 SQLiteQueryBuilder qb = new SQLiteQueryBuilder();
2019 qb.setTables("stats, status");
2020 HashMap<String,String> map = new HashMap<String,String>();
2021 map.put("_id", "status._id as _id");
2022 map.put("account", "stats.account as account");
Dianne Hackborn2d5ed1f2009-05-06 15:22:38 -07002023 if (hasType) {
2024 map.put("account_type", "stats.account_type as account_type");
2025 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07002026 map.put("authority", "stats.authority as authority");
2027 map.put("totalElapsedTime", "totalElapsedTime");
2028 map.put("numSyncs", "numSyncs");
2029 map.put("numSourceLocal", "numSourceLocal");
2030 map.put("numSourcePoll", "numSourcePoll");
2031 map.put("numSourceServer", "numSourceServer");
2032 map.put("numSourceUser", "numSourceUser");
2033 map.put("lastSuccessSource", "lastSuccessSource");
2034 map.put("lastSuccessTime", "lastSuccessTime");
2035 map.put("lastFailureSource", "lastFailureSource");
2036 map.put("lastFailureTime", "lastFailureTime");
2037 map.put("lastFailureMesg", "lastFailureMesg");
2038 map.put("pending", "pending");
2039 qb.setProjectionMap(map);
2040 qb.appendWhere("stats._id = status.stats_id");
2041 Cursor c = qb.query(db, null, null, null, null, null, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002042 while (c.moveToNext()) {
Dianne Hackborn231cc602009-04-27 17:10:36 -07002043 String accountName = c.getString(c.getColumnIndex("account"));
Dianne Hackborn2d5ed1f2009-05-06 15:22:38 -07002044 String accountType = hasType
2045 ? c.getString(c.getColumnIndex("account_type")) : null;
Dianne Hackborn7a135592009-05-06 00:28:37 -07002046 if (accountType == null) {
Costin Manolache3348f142009-09-29 18:58:36 -07002047 accountType = "com.google";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002048 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07002049 String authorityName = c.getString(c.getColumnIndex("authority"));
Matthew Williams56dbf8f2013-07-26 12:56:39 -07002050 AuthorityInfo authority =
2051 this.getOrCreateAuthorityLocked(
2052 new EndPoint(new Account(accountName, accountType),
2053 authorityName,
2054 0 /* legacy is single-user */)
2055 , -1,
2056 false);
Dianne Hackborn231cc602009-04-27 17:10:36 -07002057 if (authority != null) {
2058 int i = mSyncStatus.size();
2059 boolean found = false;
2060 SyncStatusInfo st = null;
2061 while (i > 0) {
2062 i--;
Costin Manolache360e4542009-09-04 13:36:04 -07002063 st = mSyncStatus.valueAt(i);
Dianne Hackborn231cc602009-04-27 17:10:36 -07002064 if (st.authorityId == authority.ident) {
2065 found = true;
2066 break;
2067 }
2068 }
2069 if (!found) {
2070 st = new SyncStatusInfo(authority.ident);
2071 mSyncStatus.put(authority.ident, st);
2072 }
Makoto Onuki94986212018-04-11 16:24:46 -07002073 st.totalStats.totalElapsedTime = getLongColumn(c, "totalElapsedTime");
2074 st.totalStats.numSyncs = getIntColumn(c, "numSyncs");
2075 st.totalStats.numSourceLocal = getIntColumn(c, "numSourceLocal");
2076 st.totalStats.numSourcePoll = getIntColumn(c, "numSourcePoll");
2077 st.totalStats.numSourceOther = getIntColumn(c, "numSourceServer");
2078 st.totalStats.numSourceUser = getIntColumn(c, "numSourceUser");
2079 st.totalStats.numSourcePeriodic = 0;
Dianne Hackborn231cc602009-04-27 17:10:36 -07002080 st.lastSuccessSource = getIntColumn(c, "lastSuccessSource");
2081 st.lastSuccessTime = getLongColumn(c, "lastSuccessTime");
2082 st.lastFailureSource = getIntColumn(c, "lastFailureSource");
2083 st.lastFailureTime = getLongColumn(c, "lastFailureTime");
2084 st.lastFailureMesg = c.getString(c.getColumnIndex("lastFailureMesg"));
2085 st.pending = getIntColumn(c, "pending") != 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002086 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002087 }
Costin Manolache360e4542009-09-04 13:36:04 -07002088
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002089 c.close();
Costin Manolache360e4542009-09-04 13:36:04 -07002090
Dianne Hackborn231cc602009-04-27 17:10:36 -07002091 // Retrieve the settings.
2092 qb = new SQLiteQueryBuilder();
2093 qb.setTables("settings");
2094 c = qb.query(db, null, null, null, null, null, null);
2095 while (c.moveToNext()) {
2096 String name = c.getString(c.getColumnIndex("name"));
2097 String value = c.getString(c.getColumnIndex("value"));
2098 if (name == null) continue;
2099 if (name.equals("listen_for_tickles")) {
Makoto Onuki75ad2492018-03-28 14:42:42 -07002100 setMasterSyncAutomatically(value == null || Boolean.parseBoolean(value), 0,
Makoto Onukid4764302018-03-30 17:32:57 -07002101 ContentResolver.SYNC_EXEMPTION_NONE, SyncLogger.CALLING_UID_SELF);
Dianne Hackborn231cc602009-04-27 17:10:36 -07002102 } else if (name.startsWith("sync_provider_")) {
2103 String provider = name.substring("sync_provider_".length(),
2104 name.length());
Fred Quintanaac9385e2009-06-22 18:00:59 -07002105 int i = mAuthorities.size();
2106 while (i > 0) {
2107 i--;
Costin Manolache360e4542009-09-04 13:36:04 -07002108 AuthorityInfo authority = mAuthorities.valueAt(i);
Matthew Williams8ef22042013-07-26 12:56:39 -07002109 if (authority.target.provider.equals(provider)) {
Fred Quintanaac9385e2009-06-22 18:00:59 -07002110 authority.enabled = value == null || Boolean.parseBoolean(value);
Fred Quintana5e787c42009-08-16 23:13:53 -07002111 authority.syncable = 1;
Fred Quintanaac9385e2009-06-22 18:00:59 -07002112 }
2113 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07002114 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002115 }
Costin Manolache360e4542009-09-04 13:36:04 -07002116
Dianne Hackborn231cc602009-04-27 17:10:36 -07002117 c.close();
Costin Manolache360e4542009-09-04 13:36:04 -07002118
Dianne Hackborn231cc602009-04-27 17:10:36 -07002119 db.close();
Costin Manolache360e4542009-09-04 13:36:04 -07002120
Dianne Hackborn231cc602009-04-27 17:10:36 -07002121 (new File(path)).delete();
2122 }
2123 }
Costin Manolache360e4542009-09-04 13:36:04 -07002124
Dianne Hackborn231cc602009-04-27 17:10:36 -07002125 public static final int STATUS_FILE_END = 0;
2126 public static final int STATUS_FILE_ITEM = 100;
Costin Manolache360e4542009-09-04 13:36:04 -07002127
Dianne Hackborn231cc602009-04-27 17:10:36 -07002128 /**
2129 * Read all sync status back in to the initial engine state.
2130 */
2131 private void readStatusLocked() {
Matthew Williamsba352712013-08-13 15:53:31 -07002132 if (Log.isLoggable(TAG_FILE, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00002133 Slog.v(TAG_FILE, "Reading " + mStatusFile.getBaseFile());
Matthew Williamsba352712013-08-13 15:53:31 -07002134 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07002135 try {
2136 byte[] data = mStatusFile.readFully();
2137 Parcel in = Parcel.obtain();
2138 in.unmarshall(data, 0, data.length);
2139 in.setDataPosition(0);
2140 int token;
2141 while ((token=in.readInt()) != STATUS_FILE_END) {
2142 if (token == STATUS_FILE_ITEM) {
2143 SyncStatusInfo status = new SyncStatusInfo(in);
2144 if (mAuthorities.indexOfKey(status.authorityId) >= 0) {
2145 status.pending = false;
Matthew Williamsba352712013-08-13 15:53:31 -07002146 if (Log.isLoggable(TAG_FILE, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00002147 Slog.v(TAG_FILE, "Adding status for id " + status.authorityId);
Matthew Williamsba352712013-08-13 15:53:31 -07002148 }
Dianne Hackborn231cc602009-04-27 17:10:36 -07002149 mSyncStatus.put(status.authorityId, status);
2150 }
2151 } else {
2152 // Ooops.
Shreyas Basarge8c834c02016-01-07 13:53:16 +00002153 Slog.w(TAG, "Unknown status token: " + token);
Dianne Hackborn231cc602009-04-27 17:10:36 -07002154 break;
2155 }
2156 }
2157 } catch (java.io.IOException e) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00002158 Slog.i(TAG, "No initial status");
Dianne Hackborn231cc602009-04-27 17:10:36 -07002159 }
2160 }
Costin Manolache360e4542009-09-04 13:36:04 -07002161
Dianne Hackborn231cc602009-04-27 17:10:36 -07002162 /**
2163 * Write all sync status to the sync status file.
2164 */
2165 private void writeStatusLocked() {
Matthew Williamsba352712013-08-13 15:53:31 -07002166 if (Log.isLoggable(TAG_FILE, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00002167 Slog.v(TAG_FILE, "Writing new " + mStatusFile.getBaseFile());
Matthew Williamsba352712013-08-13 15:53:31 -07002168 }
Costin Manolache360e4542009-09-04 13:36:04 -07002169
Dianne Hackborn231cc602009-04-27 17:10:36 -07002170 // The file is being written, so we don't need to have a scheduled
2171 // write until the next change.
Makoto Onuki6963bea72017-12-12 10:42:39 -08002172 mHandler.removeMessages(MSG_WRITE_STATUS);
Costin Manolache360e4542009-09-04 13:36:04 -07002173
Dianne Hackborn231cc602009-04-27 17:10:36 -07002174 FileOutputStream fos = null;
2175 try {
2176 fos = mStatusFile.startWrite();
2177 Parcel out = Parcel.obtain();
2178 final int N = mSyncStatus.size();
2179 for (int i=0; i<N; i++) {
2180 SyncStatusInfo status = mSyncStatus.valueAt(i);
2181 out.writeInt(STATUS_FILE_ITEM);
2182 status.writeToParcel(out, 0);
2183 }
2184 out.writeInt(STATUS_FILE_END);
2185 fos.write(out.marshall());
2186 out.recycle();
Costin Manolache360e4542009-09-04 13:36:04 -07002187
Dianne Hackborn231cc602009-04-27 17:10:36 -07002188 mStatusFile.finishWrite(fos);
2189 } catch (java.io.IOException e1) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00002190 Slog.w(TAG, "Error writing status", e1);
Dianne Hackborn231cc602009-04-27 17:10:36 -07002191 if (fos != null) {
2192 mStatusFile.failWrite(fos);
2193 }
2194 }
2195 }
Costin Manolache360e4542009-09-04 13:36:04 -07002196
Makoto Onuki61283ec2018-01-31 17:22:36 -08002197 private void requestSync(AuthorityInfo authorityInfo, int reason, Bundle extras,
Makoto Onuki75ad2492018-03-28 14:42:42 -07002198 @SyncExemption int syncExemptionFlag) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -07002199 if (android.os.Process.myUid() == android.os.Process.SYSTEM_UID
2200 && mSyncRequestListener != null) {
Makoto Onuki61283ec2018-01-31 17:22:36 -08002201 mSyncRequestListener.onSyncRequest(authorityInfo.target, reason, extras,
Makoto Onuki75ad2492018-03-28 14:42:42 -07002202 syncExemptionFlag);
Matthew Williams56dbf8f2013-07-26 12:56:39 -07002203 } else {
2204 SyncRequest.Builder req =
2205 new SyncRequest.Builder()
Nick Kralevich69002ae2013-10-19 08:43:08 -07002206 .syncOnce()
Matthew Williams8ef22042013-07-26 12:56:39 -07002207 .setExtras(extras);
Shreyas Basarge8c834c02016-01-07 13:53:16 +00002208 req.setSyncAdapter(authorityInfo.target.account, authorityInfo.target.provider);
Matthew Williams56dbf8f2013-07-26 12:56:39 -07002209 ContentResolver.requestSync(req.build());
2210 }
2211 }
2212
Alon Albert57286f92012-10-09 14:21:38 -07002213 private void requestSync(Account account, int userId, int reason, String authority,
Makoto Onuki75ad2492018-03-28 14:42:42 -07002214 Bundle extras, @SyncExemption int syncExemptionFlag) {
Amith Yamasani04e0d262012-02-14 11:50:53 -08002215 // If this is happening in the system process, then call the syncrequest listener
2216 // to make a request back to the SyncManager directly.
2217 // If this is probably a test instance, then call back through the ContentResolver
2218 // which will know which userId to apply based on the Binder id.
2219 if (android.os.Process.myUid() == android.os.Process.SYSTEM_UID
2220 && mSyncRequestListener != null) {
Matthew Williams56dbf8f2013-07-26 12:56:39 -07002221 mSyncRequestListener.onSyncRequest(
Shreyas Basarge8c834c02016-01-07 13:53:16 +00002222 new EndPoint(account, authority, userId),
Makoto Onuki75ad2492018-03-28 14:42:42 -07002223 reason, extras, syncExemptionFlag);
Amith Yamasani04e0d262012-02-14 11:50:53 -08002224 } else {
2225 ContentResolver.requestSync(account, authority, extras);
2226 }
2227 }
2228
Dianne Hackborn231cc602009-04-27 17:10:36 -07002229 public static final int STATISTICS_FILE_END = 0;
2230 public static final int STATISTICS_FILE_ITEM_OLD = 100;
2231 public static final int STATISTICS_FILE_ITEM = 101;
Costin Manolache360e4542009-09-04 13:36:04 -07002232
Dianne Hackborn231cc602009-04-27 17:10:36 -07002233 /**
2234 * Read all sync statistics back in to the initial engine state.
2235 */
2236 private void readStatisticsLocked() {
2237 try {
2238 byte[] data = mStatisticsFile.readFully();
2239 Parcel in = Parcel.obtain();
2240 in.unmarshall(data, 0, data.length);
2241 in.setDataPosition(0);
2242 int token;
2243 int index = 0;
2244 while ((token=in.readInt()) != STATISTICS_FILE_END) {
2245 if (token == STATISTICS_FILE_ITEM
2246 || token == STATISTICS_FILE_ITEM_OLD) {
2247 int day = in.readInt();
2248 if (token == STATISTICS_FILE_ITEM_OLD) {
2249 day = day - 2009 + 14245; // Magic!
2250 }
2251 DayStats ds = new DayStats(day);
2252 ds.successCount = in.readInt();
2253 ds.successTime = in.readLong();
2254 ds.failureCount = in.readInt();
2255 ds.failureTime = in.readLong();
2256 if (index < mDayStats.length) {
2257 mDayStats[index] = ds;
2258 index++;
2259 }
2260 } else {
2261 // Ooops.
Shreyas Basarge8c834c02016-01-07 13:53:16 +00002262 Slog.w(TAG, "Unknown stats token: " + token);
Dianne Hackborn231cc602009-04-27 17:10:36 -07002263 break;
2264 }
2265 }
2266 } catch (java.io.IOException e) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00002267 Slog.i(TAG, "No initial statistics");
Dianne Hackborn231cc602009-04-27 17:10:36 -07002268 }
2269 }
Costin Manolache360e4542009-09-04 13:36:04 -07002270
Dianne Hackborn231cc602009-04-27 17:10:36 -07002271 /**
2272 * Write all sync statistics to the sync status file.
2273 */
2274 private void writeStatisticsLocked() {
Matthew Williamsba352712013-08-13 15:53:31 -07002275 if (Log.isLoggable(TAG_FILE, Log.VERBOSE)) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00002276 Slog.v(TAG, "Writing new " + mStatisticsFile.getBaseFile());
Matthew Williamsba352712013-08-13 15:53:31 -07002277 }
Costin Manolache360e4542009-09-04 13:36:04 -07002278
Dianne Hackborn231cc602009-04-27 17:10:36 -07002279 // The file is being written, so we don't need to have a scheduled
2280 // write until the next change.
Makoto Onuki6963bea72017-12-12 10:42:39 -08002281 mHandler.removeMessages(MSG_WRITE_STATISTICS);
Costin Manolache360e4542009-09-04 13:36:04 -07002282
Dianne Hackborn231cc602009-04-27 17:10:36 -07002283 FileOutputStream fos = null;
2284 try {
2285 fos = mStatisticsFile.startWrite();
2286 Parcel out = Parcel.obtain();
2287 final int N = mDayStats.length;
2288 for (int i=0; i<N; i++) {
2289 DayStats ds = mDayStats[i];
2290 if (ds == null) {
2291 break;
2292 }
2293 out.writeInt(STATISTICS_FILE_ITEM);
2294 out.writeInt(ds.day);
2295 out.writeInt(ds.successCount);
2296 out.writeLong(ds.successTime);
2297 out.writeInt(ds.failureCount);
2298 out.writeLong(ds.failureTime);
2299 }
2300 out.writeInt(STATISTICS_FILE_END);
2301 fos.write(out.marshall());
2302 out.recycle();
Costin Manolache360e4542009-09-04 13:36:04 -07002303
Dianne Hackborn231cc602009-04-27 17:10:36 -07002304 mStatisticsFile.finishWrite(fos);
2305 } catch (java.io.IOException e1) {
Shreyas Basarge8c834c02016-01-07 13:53:16 +00002306 Slog.w(TAG, "Error writing stats", e1);
Dianne Hackborn231cc602009-04-27 17:10:36 -07002307 if (fos != null) {
2308 mStatisticsFile.failWrite(fos);
2309 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002310 }
2311 }
Matthew Williamsfa774182013-06-18 15:44:11 -07002312
2313 /**
Marvin Paula6533252014-11-24 12:57:48 -08002314 * Let the BackupManager know that account sync settings have changed. This will trigger
2315 * {@link com.android.server.backup.SystemBackupAgent} to run.
2316 */
2317 public void queueBackup() {
2318 BackupManager.dataChanged("android");
2319 }
Makoto Onuki94986212018-04-11 16:24:46 -07002320
2321 public void setClockValid() {
2322 if (!mIsClockValid) {
2323 mIsClockValid = true;
2324 Slog.w(TAG, "Clock is valid now.");
2325 }
2326 }
2327
2328 public boolean isClockValid() {
2329 return mIsClockValid;
2330 }
2331
2332 public void resetTodayStats(boolean force) {
2333 if (force) {
2334 Log.w(TAG, "Force resetting today stats.");
2335 }
2336 synchronized (mAuthorities) {
2337 final int N = mSyncStatus.size();
2338 for (int i = 0; i < N; i++) {
2339 SyncStatusInfo cur = mSyncStatus.valueAt(i);
2340 cur.maybeResetTodayStats(isClockValid(), force);
2341 }
2342 writeStatusLocked();
2343 }
2344 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002345}