Revert "Clearing up invalid entries when SyncStorageEngine starts"

API getSystemService(Class) was not present in lmp-dev.

This reverts commit 89c0dbca0f.

Bug: 35028827
Change-Id: I19846d2a3ee27aecbae2367a74ee49082eea154d
This commit is contained in:
Suprabh Shukla
2017-09-11 19:50:51 +00:00
parent 89c0dbca0f
commit 4a9d358448

View File

@@ -18,7 +18,6 @@ package com.android.server.content;
import android.accounts.Account; import android.accounts.Account;
import android.accounts.AccountAndUser; import android.accounts.AccountAndUser;
import android.accounts.AccountManager;
import android.content.ComponentName; import android.content.ComponentName;
import android.content.ContentResolver; import android.content.ContentResolver;
import android.content.Context; import android.content.Context;
@@ -27,7 +26,6 @@ import android.content.PeriodicSync;
import android.content.SyncInfo; import android.content.SyncInfo;
import android.content.SyncRequest; import android.content.SyncRequest;
import android.content.SyncStatusInfo; import android.content.SyncStatusInfo;
import android.content.pm.PackageManager;
import android.database.Cursor; import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteException; import android.database.sqlite.SQLiteException;
@@ -406,49 +404,6 @@ public class SyncStorageEngine extends Handler {
public void onSyncRequest(EndPoint info, int reason, Bundle extras); public void onSyncRequest(EndPoint info, int reason, Bundle extras);
} }
/**
* Validator that maintains a lazy cache of accounts and providers to tell if an authority or
* account is valid.
*/
private static class AccountAuthorityValidator {
final private AccountManager mAccountManager;
final private PackageManager mPackageManager;
final private SparseArray<Account[]> mAccountsCache;
final private SparseArray<ArrayMap<String, Boolean>> mProvidersPerUserCache;
AccountAuthorityValidator(Context context) {
mAccountManager = context.getSystemService(AccountManager.class);
mPackageManager = context.getPackageManager();
mAccountsCache = new SparseArray<>();
mProvidersPerUserCache = new SparseArray<>();
}
// An account is valid if an installed authenticator has previously created that account
// on the device
boolean isAccountValid(Account account, int userId) {
Account[] accountsForUser = mAccountsCache.get(userId);
if (accountsForUser == null) {
accountsForUser = mAccountManager.getAccountsAsUser(userId);
mAccountsCache.put(userId, accountsForUser);
}
return ArrayUtils.contains(accountsForUser, account);
}
// An authority is only valid if it has a content provider installed on the system
boolean isAuthorityValid(String authority, int userId) {
ArrayMap<String, Boolean> authorityMap = mProvidersPerUserCache.get(userId);
if (authorityMap == null) {
authorityMap = new ArrayMap<>();
mProvidersPerUserCache.put(userId, authorityMap);
}
if (!authorityMap.containsKey(authority)) {
authorityMap.put(authority,
mPackageManager.resolveContentProviderAsUser(authority, 0, userId) != null);
}
return authorityMap.get(authority);
}
}
// Primary list of all syncable authorities. Also our global lock. // Primary list of all syncable authorities. Also our global lock.
private final SparseArray<AuthorityInfo> mAuthorities = private final SparseArray<AuthorityInfo> mAuthorities =
new SparseArray<AuthorityInfo>(); new SparseArray<AuthorityInfo>();
@@ -1907,13 +1862,12 @@ public class SyncStorageEngine extends Handler {
eventType = parser.next(); eventType = parser.next();
AuthorityInfo authority = null; AuthorityInfo authority = null;
PeriodicSync periodicSync = null; PeriodicSync periodicSync = null;
AccountAuthorityValidator validator = new AccountAuthorityValidator(mContext);
do { do {
if (eventType == XmlPullParser.START_TAG) { if (eventType == XmlPullParser.START_TAG) {
tagName = parser.getName(); tagName = parser.getName();
if (parser.getDepth() == 2) { if (parser.getDepth() == 2) {
if ("authority".equals(tagName)) { if ("authority".equals(tagName)) {
authority = parseAuthority(parser, version, validator); authority = parseAuthority(parser, version);
periodicSync = null; periodicSync = null;
if (authority != null) { if (authority != null) {
if (authority.ident > highestAuthorityId) { if (authority.ident > highestAuthorityId) {
@@ -2046,8 +2000,7 @@ public class SyncStorageEngine extends Handler {
mMasterSyncAutomatically.put(userId, listen); mMasterSyncAutomatically.put(userId, listen);
} }
private AuthorityInfo parseAuthority(XmlPullParser parser, int version, private AuthorityInfo parseAuthority(XmlPullParser parser, int version) {
AccountAuthorityValidator validator) {
AuthorityInfo authority = null; AuthorityInfo authority = null;
int id = -1; int id = -1;
try { try {
@@ -2092,22 +2045,12 @@ public class SyncStorageEngine extends Handler {
info = new EndPoint( info = new EndPoint(
new Account(accountName, accountType), new Account(accountName, accountType),
authorityName, userId); authorityName, userId);
if (validator.isAccountValid(info.account, userId)
&& validator.isAuthorityValid(authorityName, userId)) {
authority = getOrCreateAuthorityLocked(info, id, false);
} else {
EventLog.writeEvent(0x534e4554, "35028827", -1,
"account:" + info.account + " provider:" + authorityName + " user:"
+ userId);
}
} else { } else {
info = new EndPoint( info = new EndPoint(
new ComponentName(packageName, className), new ComponentName(packageName, className),
userId); userId);
authority = getOrCreateAuthorityLocked(info, id, false);
} }
} authority = getOrCreateAuthorityLocked(info, id, false);
if (authority != null) {
// If the version is 0 then we are upgrading from a file format that did not // If the version is 0 then we are upgrading from a file format that did not
// know about periodic syncs. In that case don't clear the list since we // know about periodic syncs. In that case don't clear the list since we
// want the default, which is a daily periodic sync. // want the default, which is a daily periodic sync.
@@ -2116,6 +2059,8 @@ public class SyncStorageEngine extends Handler {
if (version > 0) { if (version > 0) {
authority.periodicSyncs.clear(); authority.periodicSyncs.clear();
} }
}
if (authority != null) {
authority.enabled = enabled == null || Boolean.parseBoolean(enabled); authority.enabled = enabled == null || Boolean.parseBoolean(enabled);
if ("unknown".equals(syncable)) { if ("unknown".equals(syncable)) {
authority.syncable = -1; authority.syncable = -1;