am 0408187e: Merge "[ActivityManager] Avoid unnecessary restart provider process"
* commit '0408187e7d2e7bdb6d0cb0521f49859a3d9a7396': [ActivityManager] Avoid unnecessary restart provider process
This commit is contained in:
@@ -14891,7 +14891,7 @@ public final class ActivityManagerService extends ActivityManagerNative
|
||||
}
|
||||
}
|
||||
|
||||
for (int i=0; i<cpr.connections.size(); i++) {
|
||||
for (int i = cpr.connections.size() - 1; i >= 0; i--) {
|
||||
ContentProviderConnection conn = cpr.connections.get(i);
|
||||
if (conn.waiting) {
|
||||
// If this connection is waiting for the provider, then we don't
|
||||
@@ -14983,10 +14983,11 @@ public final class ActivityManagerService extends ActivityManagerNative
|
||||
boolean restart = false;
|
||||
|
||||
// Remove published content providers.
|
||||
for (int i=app.pubProviders.size()-1; i>=0; i--) {
|
||||
for (int i = app.pubProviders.size() - 1; i >= 0; i--) {
|
||||
ContentProviderRecord cpr = app.pubProviders.valueAt(i);
|
||||
final boolean always = app.bad || !allowRestart;
|
||||
if (removeDyingProviderLocked(app, cpr, always) || always) {
|
||||
boolean inLaunching = removeDyingProviderLocked(app, cpr, always);
|
||||
if ((inLaunching || always) && !cpr.connections.isEmpty()) {
|
||||
// We left the provider in the launching list, need to
|
||||
// restart it.
|
||||
restart = true;
|
||||
@@ -15004,7 +15005,7 @@ public final class ActivityManagerService extends ActivityManagerNative
|
||||
|
||||
// Unregister from connected content providers.
|
||||
if (!app.conProviders.isEmpty()) {
|
||||
for (int i=0; i<app.conProviders.size(); i++) {
|
||||
for (int i = app.conProviders.size() - 1; i >= 0; i--) {
|
||||
ContentProviderConnection conn = app.conProviders.get(i);
|
||||
conn.provider.connections.remove(conn);
|
||||
stopAssociationLocked(app.uid, app.processName, conn.provider.uid,
|
||||
@@ -15019,9 +15020,8 @@ public final class ActivityManagerService extends ActivityManagerNative
|
||||
// XXX Commented out for now. Trying to figure out a way to reproduce
|
||||
// the actual situation to identify what is actually going on.
|
||||
if (false) {
|
||||
for (int i=0; i<mLaunchingProviders.size(); i++) {
|
||||
ContentProviderRecord cpr = (ContentProviderRecord)
|
||||
mLaunchingProviders.get(i);
|
||||
for (int i = mLaunchingProviders.size() - 1; i >= 0; i--) {
|
||||
ContentProviderRecord cpr = mLaunchingProviders.get(i);
|
||||
if (cpr.connections.size() <= 0 && !cpr.hasExternalProcessHandles()) {
|
||||
synchronized (cpr) {
|
||||
cpr.launchingApp = null;
|
||||
@@ -15034,7 +15034,7 @@ public final class ActivityManagerService extends ActivityManagerNative
|
||||
skipCurrentReceiverLocked(app);
|
||||
|
||||
// Unregister any receivers.
|
||||
for (int i=app.receivers.size()-1; i>=0; i--) {
|
||||
for (int i = app.receivers.size() - 1; i >= 0; i--) {
|
||||
removeReceiverLocked(app.receivers.valueAt(i));
|
||||
}
|
||||
app.receivers.clear();
|
||||
@@ -15052,7 +15052,7 @@ public final class ActivityManagerService extends ActivityManagerNative
|
||||
}
|
||||
}
|
||||
|
||||
for (int i = mPendingProcessChanges.size()-1; i>=0; i--) {
|
||||
for (int i = mPendingProcessChanges.size() - 1; i >= 0; i--) {
|
||||
ProcessChangeItem item = mPendingProcessChanges.get(i);
|
||||
if (item.pid == app.pid) {
|
||||
mPendingProcessChanges.remove(i);
|
||||
@@ -15127,18 +15127,14 @@ public final class ActivityManagerService extends ActivityManagerNative
|
||||
// and if any run in this process then either schedule a restart of
|
||||
// the process or kill the client waiting for it if this process has
|
||||
// gone bad.
|
||||
int NL = mLaunchingProviders.size();
|
||||
boolean restart = false;
|
||||
for (int i=0; i<NL; i++) {
|
||||
for (int i = mLaunchingProviders.size() - 1; i >= 0; i--) {
|
||||
ContentProviderRecord cpr = mLaunchingProviders.get(i);
|
||||
if (cpr.launchingApp == app) {
|
||||
if (!alwaysBad && !app.bad) {
|
||||
if (!alwaysBad && !app.bad && !cpr.connections.isEmpty()) {
|
||||
restart = true;
|
||||
} else {
|
||||
removeDyingProviderLocked(app, cpr, true);
|
||||
// cpr should have been removed from mLaunchingProviders
|
||||
NL = mLaunchingProviders.size();
|
||||
i--;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user