Skip to content

Commit

Permalink
Merge "Add BackgroundDexOptService"
Browse files Browse the repository at this point in the history
  • Loading branch information
bdcgoogle authored and Gerrit Code Review committed May 7, 2014
2 parents edb88bc + 7395a8a commit a21ba5b
Show file tree
Hide file tree
Showing 4 changed files with 183 additions and 2 deletions.
2 changes: 1 addition & 1 deletion services/java/com/android/server/MountService.java
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ class VoldResponseCode {
public static final int FstrimCompleted = 700;
}

private Context mContext;
private final Context mContext;
private NativeDaemonConnector mConnector;

private final Object mVolumesLock = new Object();
Expand Down
8 changes: 8 additions & 0 deletions services/java/com/android/server/SystemServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
import com.android.server.net.NetworkPolicyManagerService;
import com.android.server.net.NetworkStatsService;
import com.android.server.os.SchedulingPolicyService;
import com.android.server.pm.BackgroundDexOptService;
import com.android.server.pm.Installer;
import com.android.server.pm.PackageManagerService;
import com.android.server.pm.UserManagerService;
Expand Down Expand Up @@ -815,6 +816,13 @@ public void run() {
} catch (Throwable e) {
reportWtf("starting MediaRouterService", e);
}

try {
Slog.i(TAG, "BackgroundDexOptService");
new BackgroundDexOptService(context);
} catch (Throwable e) {
reportWtf("starting BackgroundDexOptService", e);
}
}
}

Expand Down
91 changes: 91 additions & 0 deletions services/java/com/android/server/pm/BackgroundDexOptService.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
/*
* Copyright (C) 2014 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.android.server.pm;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.os.ServiceManager;
import android.os.UserHandle;
import android.util.Log;

import java.util.HashSet;
import java.util.concurrent.atomic.AtomicBoolean;

/**
* {@hide}
*/
public class BackgroundDexOptService {

static final String TAG = "BackgroundDexOptService";

private final BroadcastReceiver mIdleMaintenanceReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
if (Intent.ACTION_IDLE_MAINTENANCE_START.equals(action)) {
onIdleStart();
} else if (Intent.ACTION_IDLE_MAINTENANCE_END.equals(action)) {
onIdleStop();
}
}
};

final PackageManagerService mPackageManager;

final AtomicBoolean mIdleTime = new AtomicBoolean(false);

public BackgroundDexOptService(Context context) {
mPackageManager = (PackageManagerService)ServiceManager.getService("package");

IntentFilter idleMaintenanceFilter = new IntentFilter();
idleMaintenanceFilter.addAction(Intent.ACTION_IDLE_MAINTENANCE_START);
idleMaintenanceFilter.addAction(Intent.ACTION_IDLE_MAINTENANCE_END);
context.registerReceiverAsUser(mIdleMaintenanceReceiver, UserHandle.ALL,
idleMaintenanceFilter, null, null);
}

public boolean onIdleStart() {
Log.i(TAG, "onIdleStart");
if (mPackageManager.isStorageLow()) {
return false;
}
final HashSet<String> pkgs = mPackageManager.getPackagesThatNeedDexOpt();
if (pkgs == null) {
return false;
}
mIdleTime.set(true);
new Thread("BackgroundDexOptService_DexOpter") {
@Override
public void run() {
for (String pkg : pkgs) {
if (!mIdleTime.get()) {
break;
}
mPackageManager.performDexOpt(pkg, false);
}
}
}.start();
return true;
}

public void onIdleStop() {
Log.i(TAG, "onIdleStop");
mIdleTime.set(false);
}
}
Loading

0 comments on commit a21ba5b

Please sign in to comment.