blob: ade889e3e44b6c9b0867270ccd198fe72980e91b [file] [log] [blame]
/*
* Copyright (C) 2008 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.
*/
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;
/**
* This is not instantiated - we just provide data for other classes to use
*/
public class Policy {
/**
* No constructor - use static methods only
*/
private Policy() {}
/**
* This location (in the build system) of the preloaded-classes file.
*/
private static final String PRELOADED_CLASS_FILE
= "frameworks/base/preloaded-classes";
/**
* Long running services. These are restricted in their contribution to the
* preloader because their launch time is less critical.
*/
private static final Set<String> SERVICES = new HashSet<String>(Arrays.asList(
"system_server",
"com.google.process.content",
"android.process.media",
"com.google.process.gapps"
));
/**
* Classes which we shouldn't load from the Zygote.
*/
private static final Set<String> EXCLUDED_CLASSES
= new HashSet<String>(Arrays.asList(
// Binders
"android.app.AlarmManager",
"android.app.SearchManager",
"android.os.FileObserver",
"com.android.server.PackageManagerService$AppDirObserver",
// Threads
"android.os.AsyncTask",
"android.pim.ContactsAsyncHelper",
"java.lang.ProcessManager"
));
/**
* Returns the path/file name of the preloaded classes file that will be written
* by WritePreloadedClassFile.
*/
public static String getPreloadedClassFileName() {
return PRELOADED_CLASS_FILE;
}
/**
* Reports if the given process name is a "long running" process or service
*/
public static boolean isService(String processName) {
return SERVICES.contains(processName);
}
/**
* Reports if the given class should never be preloaded
*/
public static boolean isPreloadableClass(String className) {
return !EXCLUDED_CLASSES.contains(className);
}
}