The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2006 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 | |
| 17 | package com.android.server; |
| 18 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 19 | import android.app.ActivityManagerNative; |
Nick Pelly | f242b7b | 2009-10-08 00:12:45 +0200 | [diff] [blame] | 20 | import android.bluetooth.BluetoothAdapter; |
Joe Onorato | f3c3c4f | 2010-10-21 11:09:02 -0400 | [diff] [blame] | 21 | import android.content.ComponentName; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 22 | import android.content.ContentResolver; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 23 | import android.content.Context; |
Joe Onorato | f3c3c4f | 2010-10-21 11:09:02 -0400 | [diff] [blame] | 24 | import android.content.Intent; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 25 | import android.content.pm.IPackageManager; |
Matthew Xie | 1dd01eb3 | 2013-04-26 12:37:54 -0700 | [diff] [blame] | 26 | import android.content.pm.PackageManager; |
Joe Onorato | dc565f4 | 2010-10-04 15:27:22 -0400 | [diff] [blame] | 27 | import android.content.res.Configuration; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 28 | import android.media.AudioService; |
Irfan Sheriff | f6d0984 | 2011-08-03 15:37:08 -0700 | [diff] [blame] | 29 | import android.net.wifi.p2p.WifiP2pService; |
Jeff Sharkey | 48749fc | 2013-04-19 13:25:04 -0700 | [diff] [blame] | 30 | import android.os.Environment; |
Jeff Brown | bd6e150 | 2012-08-28 03:27:37 -0700 | [diff] [blame] | 31 | import android.os.Handler; |
| 32 | import android.os.HandlerThread; |
Jeff Hamilton | 35eef70 | 2010-06-09 15:45:18 -0500 | [diff] [blame] | 33 | import android.os.Looper; |
| 34 | import android.os.RemoteException; |
| 35 | import android.os.ServiceManager; |
Brad Fitzpatrick | c74a1b44 | 2010-09-10 16:03:29 -0700 | [diff] [blame] | 36 | import android.os.StrictMode; |
Jeff Hamilton | 35eef70 | 2010-06-09 15:45:18 -0500 | [diff] [blame] | 37 | import android.os.SystemClock; |
| 38 | import android.os.SystemProperties; |
Amith Yamasani | cd75706 | 2012-10-19 18:23:52 -0700 | [diff] [blame] | 39 | import android.os.UserHandle; |
Dianne Hackborn | be87e2f | 2012-09-28 16:31:34 -0700 | [diff] [blame] | 40 | import android.service.dreams.DreamService; |
Joe Onorato | dc565f4 | 2010-10-04 15:27:22 -0400 | [diff] [blame] | 41 | import android.util.DisplayMetrics; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 42 | import android.util.EventLog; |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 43 | import android.util.Log; |
Joe Onorato | 8a9b220 | 2010-02-26 18:56:32 -0800 | [diff] [blame] | 44 | import android.util.Slog; |
Brad Fitzpatrick | 5fdc0c7 | 2010-10-12 13:12:18 -0700 | [diff] [blame] | 45 | import android.view.WindowManager; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 46 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 47 | import com.android.internal.R; |
Jeff Sharkey | c006f1a | 2011-05-19 17:12:49 -0700 | [diff] [blame] | 48 | import com.android.internal.os.BinderInternal; |
| 49 | import com.android.internal.os.SamplingProfilerIntegration; |
| 50 | import com.android.server.accessibility.AccessibilityManagerService; |
Jeff Sharkey | 7a96c39 | 2012-11-15 14:01:46 -0800 | [diff] [blame] | 51 | import com.android.server.accounts.AccountManagerService; |
Jeff Sharkey | c006f1a | 2011-05-19 17:12:49 -0700 | [diff] [blame] | 52 | import com.android.server.am.ActivityManagerService; |
Jeff Brown | 9630704 | 2012-07-27 15:51:34 -0700 | [diff] [blame] | 53 | import com.android.server.am.BatteryStatsService; |
Jeff Sharkey | 7a96c39 | 2012-11-15 14:01:46 -0800 | [diff] [blame] | 54 | import com.android.server.content.ContentService; |
Jeff Brown | fa25bf5 | 2012-07-23 19:26:30 -0700 | [diff] [blame] | 55 | import com.android.server.display.DisplayManagerService; |
Jeff Brown | cef440f | 2012-09-25 18:58:48 -0700 | [diff] [blame] | 56 | import com.android.server.dreams.DreamManagerService; |
Jeff Brown | 6ec6f79 | 2012-04-17 16:52:41 -0700 | [diff] [blame] | 57 | import com.android.server.input.InputManagerService; |
Jeff Sharkey | c006f1a | 2011-05-19 17:12:49 -0700 | [diff] [blame] | 58 | import com.android.server.net.NetworkPolicyManagerService; |
Jeff Sharkey | 7527990 | 2011-05-24 18:39:45 -0700 | [diff] [blame] | 59 | import com.android.server.net.NetworkStatsService; |
Jeff Sharkey | 7a96c39 | 2012-11-15 14:01:46 -0800 | [diff] [blame] | 60 | import com.android.server.os.SchedulingPolicyService; |
Jeff Brown | f69c812 | 2012-09-12 17:00:34 -0700 | [diff] [blame] | 61 | import com.android.server.pm.Installer; |
Jeff Sharkey | c006f1a | 2011-05-19 17:12:49 -0700 | [diff] [blame] | 62 | import com.android.server.pm.PackageManagerService; |
Amith Yamasani | 258848d | 2012-08-10 17:06:33 -0700 | [diff] [blame] | 63 | import com.android.server.pm.UserManagerService; |
Jeff Brown | 4f8ecd8 | 2012-06-18 18:29:13 -0700 | [diff] [blame] | 64 | import com.android.server.power.PowerManagerService; |
| 65 | import com.android.server.power.ShutdownThread; |
Svetoslav Ganov | 4b9a4d1 | 2013-06-11 15:20:06 -0700 | [diff] [blame] | 66 | import com.android.server.print.PrintManagerService; |
Jeff Sharkey | 7a96c39 | 2012-11-15 14:01:46 -0800 | [diff] [blame] | 67 | import com.android.server.search.SearchManagerService; |
Jeff Sharkey | c006f1a | 2011-05-19 17:12:49 -0700 | [diff] [blame] | 68 | import com.android.server.usb.UsbService; |
Irfan Sheriff | d017f35 | 2013-02-20 13:30:44 -0800 | [diff] [blame] | 69 | import com.android.server.wifi.WifiService; |
Jeff Sharkey | c006f1a | 2011-05-19 17:12:49 -0700 | [diff] [blame] | 70 | import com.android.server.wm.WindowManagerService; |
| 71 | |
| 72 | import dalvik.system.VMRuntime; |
| 73 | import dalvik.system.Zygote; |
| 74 | |
Dan Egnor | 4410ec8 | 2009-09-11 16:40:01 -0700 | [diff] [blame] | 75 | import java.io.File; |
Bob Lee | e540833 | 2009-09-04 18:31:17 -0700 | [diff] [blame] | 76 | import java.util.Timer; |
| 77 | import java.util.TimerTask; |
| 78 | |
Dianne Hackborn | efa92b2 | 2013-05-03 14:11:43 -0700 | [diff] [blame] | 79 | class ServerThread { |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 80 | private static final String TAG = "SystemServer"; |
Ben Komalo | 553acf0 | 2011-09-19 14:25:28 -0700 | [diff] [blame] | 81 | private static final String ENCRYPTING_STATE = "trigger_restart_min_framework"; |
Ben Komalo | 3573d40 | 2011-09-23 15:08:24 -0700 | [diff] [blame] | 82 | private static final String ENCRYPTED_STATE = "1"; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 83 | |
Jeff Hamilton | 35eef70 | 2010-06-09 15:45:18 -0500 | [diff] [blame] | 84 | ContentResolver mContentResolver; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 85 | |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 86 | void reportWtf(String msg, Throwable e) { |
| 87 | Slog.w(TAG, "***********************************************"); |
| 88 | Log.wtf(TAG, "BOOT FAILURE " + msg, e); |
| 89 | } |
| 90 | |
Dianne Hackborn | efa92b2 | 2013-05-03 14:11:43 -0700 | [diff] [blame] | 91 | public void initAndLoop() { |
Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 92 | EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_SYSTEM_RUN, |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 93 | SystemClock.uptimeMillis()); |
| 94 | |
Vairavan Srinivasan | 04b74ec | 2012-02-02 22:12:19 -0800 | [diff] [blame] | 95 | Looper.prepareMainLooper(); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 96 | |
| 97 | android.os.Process.setThreadPriority( |
| 98 | android.os.Process.THREAD_PRIORITY_FOREGROUND); |
| 99 | |
Dianne Hackborn | 887f355 | 2009-12-07 17:59:37 -0800 | [diff] [blame] | 100 | BinderInternal.disableBackgroundScheduling(true); |
Christopher Tate | 160edb3 | 2010-06-30 17:46:30 -0700 | [diff] [blame] | 101 | android.os.Process.setCanSelfBackground(false); |
Sen Hu | bde7570 | 2010-05-28 01:54:03 -0700 | [diff] [blame] | 102 | |
Kenny Root | f547d67 | 2010-09-22 10:36:48 -0700 | [diff] [blame] | 103 | // Check whether we failed to shut down last time we tried. |
| 104 | { |
| 105 | final String shutdownAction = SystemProperties.get( |
| 106 | ShutdownThread.SHUTDOWN_ACTION_PROPERTY, ""); |
| 107 | if (shutdownAction != null && shutdownAction.length() > 0) { |
| 108 | boolean reboot = (shutdownAction.charAt(0) == '1'); |
| 109 | |
| 110 | final String reason; |
| 111 | if (shutdownAction.length() > 1) { |
| 112 | reason = shutdownAction.substring(1, shutdownAction.length()); |
| 113 | } else { |
| 114 | reason = null; |
| 115 | } |
| 116 | |
| 117 | ShutdownThread.rebootOrShutdown(reboot, reason); |
| 118 | } |
| 119 | } |
| 120 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 121 | String factoryTestStr = SystemProperties.get("ro.factorytest"); |
| 122 | int factoryTest = "".equals(factoryTestStr) ? SystemServer.FACTORY_TEST_OFF |
| 123 | : Integer.parseInt(factoryTestStr); |
Mike Lockwood | 3a74bd3 | 2011-08-12 13:55:22 -0700 | [diff] [blame] | 124 | final boolean headless = "1".equals(SystemProperties.get("ro.config.headless", "0")); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 125 | |
Jeff Brown | f69c812 | 2012-09-12 17:00:34 -0700 | [diff] [blame] | 126 | Installer installer = null; |
Kenny Root | 26ff662 | 2012-07-30 12:58:03 -0700 | [diff] [blame] | 127 | AccountManagerService accountManager = null; |
| 128 | ContentService contentService = null; |
Mike Lockwood | 3a32213 | 2009-11-24 00:30:52 -0500 | [diff] [blame] | 129 | LightsService lights = null; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 130 | PowerManagerService power = null; |
Jeff Brown | fa25bf5 | 2012-07-23 19:26:30 -0700 | [diff] [blame] | 131 | DisplayManagerService display = null; |
Mike Lockwood | 07a500f | 2009-08-12 09:56:44 -0400 | [diff] [blame] | 132 | BatteryService battery = null; |
Jeff Brown | 7f6c231 | 2012-04-13 20:38:38 -0700 | [diff] [blame] | 133 | VibratorService vibrator = null; |
Jeff Sharkey | 7527990 | 2011-05-24 18:39:45 -0700 | [diff] [blame] | 134 | AlarmManagerService alarm = null; |
Jeff Sharkey | b049e21 | 2012-09-07 23:16:01 -0700 | [diff] [blame] | 135 | MountService mountService = null; |
Jeff Sharkey | c006f1a | 2011-05-19 17:12:49 -0700 | [diff] [blame] | 136 | NetworkManagementService networkManagement = null; |
Jeff Sharkey | 7527990 | 2011-05-24 18:39:45 -0700 | [diff] [blame] | 137 | NetworkStatsService networkStats = null; |
Jeff Sharkey | a462079 | 2011-05-20 15:29:23 -0700 | [diff] [blame] | 138 | NetworkPolicyManagerService networkPolicy = null; |
Mike Lockwood | 0f79b54 | 2009-08-14 14:18:49 -0400 | [diff] [blame] | 139 | ConnectivityService connectivity = null; |
repo sync | 55bc5f3 | 2011-06-24 14:23:07 -0700 | [diff] [blame] | 140 | WifiP2pService wifiP2p = null; |
repo sync | aea743a | 2011-07-29 23:55:49 -0700 | [diff] [blame] | 141 | WifiService wifi = null; |
Irfan Sheriff | 7d024d3 | 2012-03-22 17:01:39 -0700 | [diff] [blame] | 142 | NsdService serviceDiscovery= null; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 143 | IPackageManager pm = null; |
| 144 | Context context = null; |
| 145 | WindowManagerService wm = null; |
fredc | 0f42037 | 2012-04-12 00:02:00 -0700 | [diff] [blame] | 146 | BluetoothManagerService bluetooth = null; |
Dan Murphy | c9f4eaf | 2009-08-12 15:15:43 -0500 | [diff] [blame] | 147 | DockObserver dock = null; |
Mike Lockwood | 770126a | 2010-12-09 22:30:37 -0800 | [diff] [blame] | 148 | UsbService usb = null; |
Mike Lockwood | b01e8bf | 2011-08-29 20:11:07 -0400 | [diff] [blame] | 149 | SerialService serial = null; |
Jeff Brown | 2416e09 | 2012-08-21 22:12:20 -0700 | [diff] [blame] | 150 | TwilightService twilight = null; |
Dianne Hackborn | 7299c41 | 2010-03-04 18:41:49 -0800 | [diff] [blame] | 151 | UiModeManagerService uiMode = null; |
Dianne Hackborn | 21f1bd1 | 2010-02-19 17:02:21 -0800 | [diff] [blame] | 152 | RecognitionManagerService recognition = null; |
Amith Yamasani | 6734b9f6 | 2010-09-13 16:24:08 -0700 | [diff] [blame] | 153 | NetworkTimeUpdateService networkTimeUpdater = null; |
John Grossman | c157673 | 2012-02-01 15:23:33 -0800 | [diff] [blame] | 154 | CommonTimeManagementService commonTimeMgmtService = null; |
Jeff Brown | 6ec6f79 | 2012-04-17 16:52:41 -0700 | [diff] [blame] | 155 | InputManagerService inputManager = null; |
Wink Saville | a12a7b3 | 2012-09-20 10:09:45 -0700 | [diff] [blame] | 156 | TelephonyRegistry telephonyRegistry = null; |
Erik Gilling | 51e95df | 2013-06-26 11:06:51 -0700 | [diff] [blame^] | 157 | ConsumerIrService consumerIr = null; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 158 | |
Jeff Brown | bd6e150 | 2012-08-28 03:27:37 -0700 | [diff] [blame] | 159 | // Create a handler thread just for the window manager to enjoy. |
| 160 | HandlerThread wmHandlerThread = new HandlerThread("WindowManager"); |
| 161 | wmHandlerThread.start(); |
| 162 | Handler wmHandler = new Handler(wmHandlerThread.getLooper()); |
| 163 | wmHandler.post(new Runnable() { |
| 164 | @Override |
| 165 | public void run() { |
| 166 | //Looper.myLooper().setMessageLogging(new LogPrinter( |
| 167 | // android.util.Log.DEBUG, TAG, android.util.Log.LOG_ID_SYSTEM)); |
| 168 | android.os.Process.setThreadPriority( |
| 169 | android.os.Process.THREAD_PRIORITY_DISPLAY); |
| 170 | android.os.Process.setCanSelfBackground(false); |
| 171 | |
| 172 | // For debug builds, log event loop stalls to dropbox for analysis. |
| 173 | if (StrictMode.conditionallyEnableDebugLogging()) { |
Jeff Brown | 89d5546 | 2012-09-19 11:33:42 -0700 | [diff] [blame] | 174 | Slog.i(TAG, "Enabled StrictMode logging for WM Looper"); |
Jeff Brown | bd6e150 | 2012-08-28 03:27:37 -0700 | [diff] [blame] | 175 | } |
| 176 | } |
| 177 | }); |
| 178 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 179 | // bootstrap services |
Jeff Brown | bd6e150 | 2012-08-28 03:27:37 -0700 | [diff] [blame] | 180 | boolean onlyCore = false; |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 181 | boolean firstBoot = false; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 182 | try { |
Jeff Brown | f69c812 | 2012-09-12 17:00:34 -0700 | [diff] [blame] | 183 | // Wait for installd to finished starting up so that it has a chance to |
| 184 | // create critical directories such as /data/user with the appropriate |
| 185 | // permissions. We need this to complete before we initialize other services. |
| 186 | Slog.i(TAG, "Waiting for installd to be ready."); |
| 187 | installer = new Installer(); |
| 188 | installer.ping(); |
| 189 | |
Joe Onorato | 8a9b220 | 2010-02-26 18:56:32 -0800 | [diff] [blame] | 190 | Slog.i(TAG, "Power Manager"); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 191 | power = new PowerManagerService(); |
| 192 | ServiceManager.addService(Context.POWER_SERVICE, power); |
| 193 | |
Joe Onorato | 8a9b220 | 2010-02-26 18:56:32 -0800 | [diff] [blame] | 194 | Slog.i(TAG, "Activity Manager"); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 195 | context = ActivityManagerService.main(factoryTest); |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 196 | } catch (RuntimeException e) { |
| 197 | Slog.e("System", "******************************************"); |
| 198 | Slog.e("System", "************ Failure starting bootstrap service", e); |
| 199 | } |
Jeff Brown | 848c2dc | 2012-08-19 20:18:08 -0700 | [diff] [blame] | 200 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 201 | boolean disableStorage = SystemProperties.getBoolean("config.disable_storage", false); |
| 202 | boolean disableMedia = SystemProperties.getBoolean("config.disable_media", false); |
| 203 | boolean disableBluetooth = SystemProperties.getBoolean("config.disable_bluetooth", false); |
| 204 | boolean disableTelephony = SystemProperties.getBoolean("config.disable_telephony", false); |
| 205 | boolean disableLocation = SystemProperties.getBoolean("config.disable_location", false); |
| 206 | boolean disableSystemUI = SystemProperties.getBoolean("config.disable_systemui", false); |
| 207 | boolean disableNonCoreServices = SystemProperties.getBoolean("config.disable_noncore", false); |
| 208 | boolean disableNetwork = SystemProperties.getBoolean("config.disable_network", false); |
| 209 | |
| 210 | try { |
Jeff Brown | 848c2dc | 2012-08-19 20:18:08 -0700 | [diff] [blame] | 211 | Slog.i(TAG, "Display Manager"); |
Dianne Hackborn | 8d044e8 | 2013-04-30 17:24:15 -0700 | [diff] [blame] | 212 | display = new DisplayManagerService(context, wmHandler); |
Jeff Brown | 848c2dc | 2012-08-19 20:18:08 -0700 | [diff] [blame] | 213 | ServiceManager.addService(Context.DISPLAY_SERVICE, display, true); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 214 | |
Joe Onorato | 8a9b220 | 2010-02-26 18:56:32 -0800 | [diff] [blame] | 215 | Slog.i(TAG, "Telephony Registry"); |
Wink Saville | a12a7b3 | 2012-09-20 10:09:45 -0700 | [diff] [blame] | 216 | telephonyRegistry = new TelephonyRegistry(context); |
| 217 | ServiceManager.addService("telephony.registry", telephonyRegistry); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 218 | |
Glenn Kasten | 07b0465 | 2012-04-23 15:00:43 -0700 | [diff] [blame] | 219 | Slog.i(TAG, "Scheduling Policy"); |
| 220 | ServiceManager.addService(Context.SCHEDULING_POLICY_SERVICE, |
| 221 | new SchedulingPolicyService()); |
| 222 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 223 | AttributeCache.init(context); |
| 224 | |
Jeff Brown | bd6e150 | 2012-08-28 03:27:37 -0700 | [diff] [blame] | 225 | if (!display.waitForDefaultDisplay()) { |
| 226 | reportWtf("Timeout waiting for default display to be initialized.", |
| 227 | new Throwable()); |
| 228 | } |
| 229 | |
Joe Onorato | 8a9b220 | 2010-02-26 18:56:32 -0800 | [diff] [blame] | 230 | Slog.i(TAG, "Package Manager"); |
Ben Komalo | 553acf0 | 2011-09-19 14:25:28 -0700 | [diff] [blame] | 231 | // Only run "core" apps if we're encrypting the device. |
| 232 | String cryptState = SystemProperties.get("vold.decrypt"); |
Ben Komalo | 3573d40 | 2011-09-23 15:08:24 -0700 | [diff] [blame] | 233 | if (ENCRYPTING_STATE.equals(cryptState)) { |
Ben Komalo | 553acf0 | 2011-09-19 14:25:28 -0700 | [diff] [blame] | 234 | Slog.w(TAG, "Detected encryption in progress - only parsing core apps"); |
Ben Komalo | 3573d40 | 2011-09-23 15:08:24 -0700 | [diff] [blame] | 235 | onlyCore = true; |
| 236 | } else if (ENCRYPTED_STATE.equals(cryptState)) { |
| 237 | Slog.w(TAG, "Device encrypted - only parsing core apps"); |
| 238 | onlyCore = true; |
Ben Komalo | 553acf0 | 2011-09-19 14:25:28 -0700 | [diff] [blame] | 239 | } |
Ben Komalo | 3573d40 | 2011-09-23 15:08:24 -0700 | [diff] [blame] | 240 | |
Jeff Brown | f69c812 | 2012-09-12 17:00:34 -0700 | [diff] [blame] | 241 | pm = PackageManagerService.main(context, installer, |
Dianne Hackborn | d2509fd | 2011-09-12 12:29:43 -0700 | [diff] [blame] | 242 | factoryTest != SystemServer.FACTORY_TEST_OFF, |
Ben Komalo | 553acf0 | 2011-09-19 14:25:28 -0700 | [diff] [blame] | 243 | onlyCore); |
Dianne Hackborn | 58f42a5 | 2011-10-10 13:46:34 -0700 | [diff] [blame] | 244 | try { |
| 245 | firstBoot = pm.isFirstBoot(); |
| 246 | } catch (RemoteException e) { |
| 247 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 248 | |
| 249 | ActivityManagerService.setSystemProcess(); |
Svetoslav | b3038ec | 2013-02-13 14:39:30 -0800 | [diff] [blame] | 250 | |
Nick Kralevich | 79619dd | 2013-03-04 13:05:32 -0800 | [diff] [blame] | 251 | Slog.i(TAG, "Entropy Mixer"); |
| 252 | ServiceManager.addService("entropy", new EntropyMixer(context)); |
| 253 | |
Amith Yamasani | 258848d | 2012-08-10 17:06:33 -0700 | [diff] [blame] | 254 | Slog.i(TAG, "User Service"); |
| 255 | ServiceManager.addService(Context.USER_SERVICE, |
Dianne Hackborn | 4428e17c | 2012-08-24 17:43:05 -0700 | [diff] [blame] | 256 | UserManagerService.getInstance()); |
Amith Yamasani | 258848d | 2012-08-10 17:06:33 -0700 | [diff] [blame] | 257 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 258 | mContentResolver = context.getContentResolver(); |
| 259 | |
Fred Quintana | e91ebe2 | 2009-09-29 20:44:30 -0700 | [diff] [blame] | 260 | // The AccountManager must come before the ContentService |
Fred Quintana | 6030734 | 2009-03-24 22:48:12 -0700 | [diff] [blame] | 261 | try { |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 262 | // TODO: seems like this should be disable-able, but req'd by ContentService |
Joe Onorato | 8a9b220 | 2010-02-26 18:56:32 -0800 | [diff] [blame] | 263 | Slog.i(TAG, "Account Manager"); |
Kenny Root | 26ff662 | 2012-07-30 12:58:03 -0700 | [diff] [blame] | 264 | accountManager = new AccountManagerService(context); |
| 265 | ServiceManager.addService(Context.ACCOUNT_SERVICE, accountManager); |
Fred Quintana | 6030734 | 2009-03-24 22:48:12 -0700 | [diff] [blame] | 266 | } catch (Throwable e) { |
Joe Onorato | 8a9b220 | 2010-02-26 18:56:32 -0800 | [diff] [blame] | 267 | Slog.e(TAG, "Failure starting Account Manager", e); |
Fred Quintana | 6030734 | 2009-03-24 22:48:12 -0700 | [diff] [blame] | 268 | } |
| 269 | |
Joe Onorato | 8a9b220 | 2010-02-26 18:56:32 -0800 | [diff] [blame] | 270 | Slog.i(TAG, "Content Manager"); |
Kenny Root | 26ff662 | 2012-07-30 12:58:03 -0700 | [diff] [blame] | 271 | contentService = ContentService.main(context, |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 272 | factoryTest == SystemServer.FACTORY_TEST_LOW_LEVEL); |
| 273 | |
Joe Onorato | 8a9b220 | 2010-02-26 18:56:32 -0800 | [diff] [blame] | 274 | Slog.i(TAG, "System Content Providers"); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 275 | ActivityManagerService.installSystemProviders(); |
| 276 | |
Joe Onorato | 8a9b220 | 2010-02-26 18:56:32 -0800 | [diff] [blame] | 277 | Slog.i(TAG, "Lights Service"); |
Mike Lockwood | 3a32213 | 2009-11-24 00:30:52 -0500 | [diff] [blame] | 278 | lights = new LightsService(context); |
| 279 | |
Joe Onorato | de1b359 | 2010-10-25 20:36:47 -0700 | [diff] [blame] | 280 | Slog.i(TAG, "Battery Service"); |
| 281 | battery = new BatteryService(context, lights); |
| 282 | ServiceManager.addService("battery", battery); |
| 283 | |
Joe Onorato | 8a9b220 | 2010-02-26 18:56:32 -0800 | [diff] [blame] | 284 | Slog.i(TAG, "Vibrator Service"); |
Jeff Brown | 7f6c231 | 2012-04-13 20:38:38 -0700 | [diff] [blame] | 285 | vibrator = new VibratorService(context); |
| 286 | ServiceManager.addService("vibrator", vibrator); |
The Android Open Source Project | 1059253 | 2009-03-18 17:39:46 -0700 | [diff] [blame] | 287 | |
Erik Gilling | 51e95df | 2013-06-26 11:06:51 -0700 | [diff] [blame^] | 288 | Slog.i(TAG, "Consumer IR Service"); |
| 289 | consumerIr = new ConsumerIrService(context); |
| 290 | ServiceManager.addService(Context.CONSUMER_IR_SERVICE, consumerIr); |
| 291 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 292 | // only initialize the power service after we have started the |
Mike Lockwood | 3a32213 | 2009-11-24 00:30:52 -0500 | [diff] [blame] | 293 | // lights service, content providers and the battery service. |
Jeff Brown | 9630704 | 2012-07-27 15:51:34 -0700 | [diff] [blame] | 294 | power.init(context, lights, ActivityManagerService.self(), battery, |
Dianne Hackborn | 713df15 | 2013-05-17 11:27:57 -0700 | [diff] [blame] | 295 | BatteryStatsService.getService(), |
| 296 | ActivityManagerService.self().getAppOpsService(), display); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 297 | |
Joe Onorato | 8a9b220 | 2010-02-26 18:56:32 -0800 | [diff] [blame] | 298 | Slog.i(TAG, "Alarm Manager"); |
Jeff Sharkey | 7527990 | 2011-05-24 18:39:45 -0700 | [diff] [blame] | 299 | alarm = new AlarmManagerService(context); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 300 | ServiceManager.addService(Context.ALARM_SERVICE, alarm); |
| 301 | |
Joe Onorato | 8a9b220 | 2010-02-26 18:56:32 -0800 | [diff] [blame] | 302 | Slog.i(TAG, "Init Watchdog"); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 303 | Watchdog.getInstance().init(context, battery, power, alarm, |
| 304 | ActivityManagerService.self()); |
Dianne Hackborn | 8d044e8 | 2013-04-30 17:24:15 -0700 | [diff] [blame] | 305 | Watchdog.getInstance().addThread(wmHandler, "WindowManager thread"); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 306 | |
Jeff Brown | a9d131c | 2012-09-20 16:48:17 -0700 | [diff] [blame] | 307 | Slog.i(TAG, "Input Manager"); |
| 308 | inputManager = new InputManagerService(context, wmHandler); |
| 309 | |
Joe Onorato | 8a9b220 | 2010-02-26 18:56:32 -0800 | [diff] [blame] | 310 | Slog.i(TAG, "Window Manager"); |
Jeff Brown | a9d131c | 2012-09-20 16:48:17 -0700 | [diff] [blame] | 311 | wm = WindowManagerService.main(context, power, display, inputManager, |
Dianne Hackborn | 8d044e8 | 2013-04-30 17:24:15 -0700 | [diff] [blame] | 312 | wmHandler, factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL, |
Jeff Brown | 780c46f | 2012-06-24 12:15:38 -0700 | [diff] [blame] | 313 | !firstBoot, onlyCore); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 314 | ServiceManager.addService(Context.WINDOW_SERVICE, wm); |
Jeff Brown | 6ec6f79 | 2012-04-17 16:52:41 -0700 | [diff] [blame] | 315 | ServiceManager.addService(Context.INPUT_SERVICE, inputManager); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 316 | |
Dianne Hackborn | 295e3c2 | 2011-08-25 13:19:08 -0700 | [diff] [blame] | 317 | ActivityManagerService.self().setWindowManager(wm); |
Jeff Brown | a9d131c | 2012-09-20 16:48:17 -0700 | [diff] [blame] | 318 | |
| 319 | inputManager.setWindowManagerCallbacks(wm.getInputMonitor()); |
| 320 | inputManager.start(); |
| 321 | |
Jeff Brown | 4ed8fe7 | 2012-08-30 18:18:29 -0700 | [diff] [blame] | 322 | display.setWindowManager(wm); |
Jeff Brown | d728bf5 | 2012-09-08 18:05:28 -0700 | [diff] [blame] | 323 | display.setInputManager(inputManager); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 324 | |
| 325 | // Skip Bluetooth if we have an emulator kernel |
| 326 | // TODO: Use a more reliable check to see if this product should |
| 327 | // support Bluetooth - see bug 988521 |
| 328 | if (SystemProperties.get("ro.kernel.qemu").equals("1")) { |
David 'Digit' Turner | e2a5e86 | 2011-01-17 00:32:33 +0100 | [diff] [blame] | 329 | Slog.i(TAG, "No Bluetooh Service (emulator)"); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 330 | } else if (factoryTest == SystemServer.FACTORY_TEST_LOW_LEVEL) { |
David 'Digit' Turner | e2a5e86 | 2011-01-17 00:32:33 +0100 | [diff] [blame] | 331 | Slog.i(TAG, "No Bluetooth Service (factory test)"); |
Matthew Xie | 1dd01eb3 | 2013-04-26 12:37:54 -0700 | [diff] [blame] | 332 | } else if (!context.getPackageManager().hasSystemFeature |
| 333 | (PackageManager.FEATURE_BLUETOOTH)) { |
| 334 | Slog.i(TAG, "No Bluetooth Service (Bluetooth Hardware Not Present)"); |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 335 | } else if (disableBluetooth) { |
| 336 | Slog.i(TAG, "Bluetooth Service disabled by config"); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 337 | } else { |
fredc | 0f42037 | 2012-04-12 00:02:00 -0700 | [diff] [blame] | 338 | Slog.i(TAG, "Bluetooth Manager Service"); |
| 339 | bluetooth = new BluetoothManagerService(context); |
| 340 | ServiceManager.addService(BluetoothAdapter.BLUETOOTH_MANAGER_SERVICE, bluetooth); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 341 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 342 | } catch (RuntimeException e) { |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 343 | Slog.e("System", "******************************************"); |
| 344 | Slog.e("System", "************ Failure starting core service", e); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 345 | } |
| 346 | |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 347 | DevicePolicyManagerService devicePolicy = null; |
Joe Onorato | 089de88 | 2010-04-12 08:18:45 -0700 | [diff] [blame] | 348 | StatusBarManagerService statusBar = null; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 349 | InputMethodManagerService imm = null; |
The Android Open Source Project | c39a6e0 | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 350 | AppWidgetService appWidget = null; |
Joe Onorato | 3027548 | 2009-07-08 17:09:14 -0700 | [diff] [blame] | 351 | NotificationManagerService notification = null; |
Dianne Hackborn | f21adf6 | 2009-08-13 10:20:21 -0700 | [diff] [blame] | 352 | WallpaperManagerService wallpaper = null; |
Mike Lockwood | 46db504 | 2010-02-22 16:36:44 -0500 | [diff] [blame] | 353 | LocationManagerService location = null; |
Bai Tao | a58a875 | 2010-07-13 15:32:16 +0800 | [diff] [blame] | 354 | CountryDetectorService countryDetector = null; |
satok | 988323c | 2011-06-22 16:38:13 +0900 | [diff] [blame] | 355 | TextServicesManagerService tsms = null; |
Amith Yamasani | 52c489c | 2012-03-28 11:42:42 -0700 | [diff] [blame] | 356 | LockSettingsService lockSettings = null; |
Daniel Sandler | 7d276c3 | 2012-01-30 14:33:52 -0500 | [diff] [blame] | 357 | DreamManagerService dreamy = null; |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 358 | AssetAtlasService atlas = null; |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 359 | PrintManagerService printManager = null; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 360 | |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 361 | // Bring up services needed for UI. |
| 362 | if (factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL) { |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 363 | //if (!disableNonCoreServices) { // TODO: View depends on these; mock them? |
| 364 | if (true) { |
| 365 | try { |
| 366 | Slog.i(TAG, "Input Method Service"); |
| 367 | imm = new InputMethodManagerService(context, wm); |
| 368 | ServiceManager.addService(Context.INPUT_METHOD_SERVICE, imm); |
| 369 | } catch (Throwable e) { |
| 370 | reportWtf("starting Input Manager Service", e); |
| 371 | } |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 372 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 373 | try { |
| 374 | Slog.i(TAG, "Accessibility Manager"); |
| 375 | ServiceManager.addService(Context.ACCESSIBILITY_SERVICE, |
| 376 | new AccessibilityManagerService(context)); |
| 377 | } catch (Throwable e) { |
| 378 | reportWtf("starting Accessibility Manager", e); |
| 379 | } |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 380 | } |
| 381 | } |
| 382 | |
| 383 | try { |
| 384 | wm.displayReady(); |
| 385 | } catch (Throwable e) { |
| 386 | reportWtf("making display ready", e); |
| 387 | } |
Dianne Hackborn | 8795b60 | 2011-08-25 13:30:53 -0700 | [diff] [blame] | 388 | |
Dianne Hackborn | 295e3c2 | 2011-08-25 13:19:08 -0700 | [diff] [blame] | 389 | try { |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 390 | pm.performBootDexOpt(); |
| 391 | } catch (Throwable e) { |
| 392 | reportWtf("performing boot dexopt", e); |
| 393 | } |
| 394 | |
| 395 | try { |
| 396 | ActivityManagerNative.getDefault().showBootMessage( |
| 397 | context.getResources().getText( |
| 398 | com.android.internal.R.string.android_upgrading_starting_apps), |
| 399 | false); |
| 400 | } catch (RemoteException e) { |
| 401 | } |
| 402 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 403 | if (factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL) { |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 404 | if (!disableStorage && |
| 405 | !"0".equals(SystemProperties.get("system_init.startmountservice"))) { |
Kenny Root | 51a573c | 2012-05-17 13:30:28 -0700 | [diff] [blame] | 406 | try { |
| 407 | /* |
| 408 | * NotificationManagerService is dependant on MountService, |
| 409 | * (for media / usb notifications) so we must start MountService first. |
| 410 | */ |
| 411 | Slog.i(TAG, "Mount Service"); |
| 412 | mountService = new MountService(context); |
| 413 | ServiceManager.addService("mount", mountService); |
| 414 | } catch (Throwable e) { |
| 415 | reportWtf("starting Mount Service", e); |
| 416 | } |
| 417 | } |
| 418 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 419 | if (!disableNonCoreServices) { |
| 420 | try { |
| 421 | Slog.i(TAG, "LockSettingsService"); |
| 422 | lockSettings = new LockSettingsService(context); |
| 423 | ServiceManager.addService("lock_settings", lockSettings); |
| 424 | } catch (Throwable e) { |
| 425 | reportWtf("starting LockSettingsService service", e); |
| 426 | } |
| 427 | |
| 428 | try { |
| 429 | Slog.i(TAG, "Device Policy"); |
| 430 | devicePolicy = new DevicePolicyManagerService(context); |
| 431 | ServiceManager.addService(Context.DEVICE_POLICY_SERVICE, devicePolicy); |
| 432 | } catch (Throwable e) { |
| 433 | reportWtf("starting DevicePolicyService", e); |
| 434 | } |
Amith Yamasani | 52c489c | 2012-03-28 11:42:42 -0700 | [diff] [blame] | 435 | } |
| 436 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 437 | if (!disableSystemUI) { |
| 438 | try { |
| 439 | Slog.i(TAG, "Status Bar"); |
| 440 | statusBar = new StatusBarManagerService(context, wm); |
| 441 | ServiceManager.addService(Context.STATUS_BAR_SERVICE, statusBar); |
| 442 | } catch (Throwable e) { |
| 443 | reportWtf("starting StatusBarManagerService", e); |
| 444 | } |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 445 | } |
| 446 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 447 | if (!disableNonCoreServices) { |
| 448 | try { |
| 449 | Slog.i(TAG, "Clipboard Service"); |
| 450 | ServiceManager.addService(Context.CLIPBOARD_SERVICE, |
| 451 | new ClipboardService(context)); |
| 452 | } catch (Throwable e) { |
| 453 | reportWtf("starting Clipboard Service", e); |
| 454 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 455 | } |
| 456 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 457 | if (!disableNetwork) { |
| 458 | try { |
| 459 | Slog.i(TAG, "NetworkManagement Service"); |
| 460 | networkManagement = NetworkManagementService.create(context); |
| 461 | ServiceManager.addService(Context.NETWORKMANAGEMENT_SERVICE, networkManagement); |
| 462 | } catch (Throwable e) { |
| 463 | reportWtf("starting NetworkManagement Service", e); |
| 464 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 465 | } |
| 466 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 467 | if (!disableNonCoreServices) { |
| 468 | try { |
| 469 | Slog.i(TAG, "Text Service Manager Service"); |
| 470 | tsms = new TextServicesManagerService(context); |
| 471 | ServiceManager.addService(Context.TEXT_SERVICES_MANAGER_SERVICE, tsms); |
| 472 | } catch (Throwable e) { |
| 473 | reportWtf("starting Text Service Manager Service", e); |
| 474 | } |
San Mehat | d1df8ac | 2010-01-26 06:17:26 -0800 | [diff] [blame] | 475 | } |
| 476 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 477 | if (!disableNetwork) { |
| 478 | try { |
| 479 | Slog.i(TAG, "NetworkStats Service"); |
| 480 | networkStats = new NetworkStatsService(context, networkManagement, alarm); |
| 481 | ServiceManager.addService(Context.NETWORK_STATS_SERVICE, networkStats); |
| 482 | } catch (Throwable e) { |
| 483 | reportWtf("starting NetworkStats Service", e); |
| 484 | } |
| 485 | |
| 486 | try { |
| 487 | Slog.i(TAG, "NetworkPolicy Service"); |
| 488 | networkPolicy = new NetworkPolicyManagerService( |
| 489 | context, ActivityManagerService.self(), power, |
| 490 | networkStats, networkManagement); |
| 491 | ServiceManager.addService(Context.NETWORK_POLICY_SERVICE, networkPolicy); |
| 492 | } catch (Throwable e) { |
| 493 | reportWtf("starting NetworkPolicy Service", e); |
| 494 | } |
| 495 | |
| 496 | try { |
| 497 | Slog.i(TAG, "Wi-Fi P2pService"); |
| 498 | wifiP2p = new WifiP2pService(context); |
| 499 | ServiceManager.addService(Context.WIFI_P2P_SERVICE, wifiP2p); |
| 500 | } catch (Throwable e) { |
| 501 | reportWtf("starting Wi-Fi P2pService", e); |
| 502 | } |
| 503 | |
| 504 | try { |
| 505 | Slog.i(TAG, "Wi-Fi Service"); |
| 506 | wifi = new WifiService(context); |
| 507 | ServiceManager.addService(Context.WIFI_SERVICE, wifi); |
| 508 | } catch (Throwable e) { |
| 509 | reportWtf("starting Wi-Fi Service", e); |
| 510 | } |
| 511 | |
| 512 | try { |
| 513 | Slog.i(TAG, "Connectivity Service"); |
| 514 | connectivity = new ConnectivityService( |
| 515 | context, networkManagement, networkStats, networkPolicy); |
| 516 | ServiceManager.addService(Context.CONNECTIVITY_SERVICE, connectivity); |
| 517 | networkStats.bindConnectivityManager(connectivity); |
| 518 | networkPolicy.bindConnectivityManager(connectivity); |
| 519 | wifi.checkAndStartWifi(); |
| 520 | wifiP2p.connectivityServiceReady(); |
| 521 | } catch (Throwable e) { |
| 522 | reportWtf("starting Connectivity Service", e); |
| 523 | } |
| 524 | |
| 525 | try { |
| 526 | Slog.i(TAG, "Network Service Discovery Service"); |
| 527 | serviceDiscovery = NsdService.create(context); |
| 528 | ServiceManager.addService( |
| 529 | Context.NSD_SERVICE, serviceDiscovery); |
| 530 | } catch (Throwable e) { |
| 531 | reportWtf("starting Service Discovery Service", e); |
| 532 | } |
satok | 988323c | 2011-06-22 16:38:13 +0900 | [diff] [blame] | 533 | } |
| 534 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 535 | if (!disableNonCoreServices) { |
| 536 | try { |
| 537 | Slog.i(TAG, "UpdateLock Service"); |
| 538 | ServiceManager.addService(Context.UPDATE_LOCK_SERVICE, |
| 539 | new UpdateLockService(context)); |
| 540 | } catch (Throwable e) { |
| 541 | reportWtf("starting UpdateLockService", e); |
| 542 | } |
Christopher Tate | 8662cab5 | 2012-02-23 14:59:36 -0800 | [diff] [blame] | 543 | } |
| 544 | |
Kenny Root | 51a573c | 2012-05-17 13:30:28 -0700 | [diff] [blame] | 545 | /* |
| 546 | * MountService has a few dependencies: Notification Manager and |
| 547 | * AppWidget Provider. Make sure MountService is completely started |
| 548 | * first before continuing. |
| 549 | */ |
Ken Sumrall | 025adc4 | 2013-06-05 22:08:12 -0700 | [diff] [blame] | 550 | if (mountService != null && !onlyCore) { |
Kenny Root | 51a573c | 2012-05-17 13:30:28 -0700 | [diff] [blame] | 551 | mountService.waitForAsecScan(); |
San Mehat | 1bf3f8b | 2010-02-03 14:43:09 -0800 | [diff] [blame] | 552 | } |
| 553 | |
| 554 | try { |
Kenny Root | 26ff662 | 2012-07-30 12:58:03 -0700 | [diff] [blame] | 555 | if (accountManager != null) |
| 556 | accountManager.systemReady(); |
| 557 | } catch (Throwable e) { |
| 558 | reportWtf("making Account Manager Service ready", e); |
| 559 | } |
| 560 | |
| 561 | try { |
| 562 | if (contentService != null) |
| 563 | contentService.systemReady(); |
| 564 | } catch (Throwable e) { |
| 565 | reportWtf("making Content Service ready", e); |
| 566 | } |
| 567 | |
| 568 | try { |
Joe Onorato | 8a9b220 | 2010-02-26 18:56:32 -0800 | [diff] [blame] | 569 | Slog.i(TAG, "Notification Manager"); |
Mike Lockwood | 3a32213 | 2009-11-24 00:30:52 -0500 | [diff] [blame] | 570 | notification = new NotificationManagerService(context, statusBar, lights); |
Joe Onorato | 3027548 | 2009-07-08 17:09:14 -0700 | [diff] [blame] | 571 | ServiceManager.addService(Context.NOTIFICATION_SERVICE, notification); |
Jeff Sharkey | 497e443 | 2011-06-14 17:27:29 -0700 | [diff] [blame] | 572 | networkPolicy.bindNotificationManager(notification); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 573 | } catch (Throwable e) { |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 574 | reportWtf("starting Notification Manager", e); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 575 | } |
| 576 | |
| 577 | try { |
Joe Onorato | 8a9b220 | 2010-02-26 18:56:32 -0800 | [diff] [blame] | 578 | Slog.i(TAG, "Device Storage Monitor"); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 579 | ServiceManager.addService(DeviceStorageMonitorService.SERVICE, |
| 580 | new DeviceStorageMonitorService(context)); |
| 581 | } catch (Throwable e) { |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 582 | reportWtf("starting DeviceStorageMonitor service", e); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 583 | } |
| 584 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 585 | if (!disableLocation) { |
| 586 | try { |
| 587 | Slog.i(TAG, "Location Manager"); |
| 588 | location = new LocationManagerService(context); |
| 589 | ServiceManager.addService(Context.LOCATION_SERVICE, location); |
| 590 | } catch (Throwable e) { |
| 591 | reportWtf("starting Location Manager", e); |
| 592 | } |
| 593 | |
| 594 | try { |
| 595 | Slog.i(TAG, "Country Detector"); |
| 596 | countryDetector = new CountryDetectorService(context); |
| 597 | ServiceManager.addService(Context.COUNTRY_DETECTOR, countryDetector); |
| 598 | } catch (Throwable e) { |
| 599 | reportWtf("starting Country Detector", e); |
| 600 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 601 | } |
| 602 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 603 | if (!disableNonCoreServices) { |
| 604 | try { |
| 605 | Slog.i(TAG, "Search Service"); |
| 606 | ServiceManager.addService(Context.SEARCH_SERVICE, |
| 607 | new SearchManagerService(context)); |
| 608 | } catch (Throwable e) { |
| 609 | reportWtf("starting Search Service", e); |
| 610 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 611 | } |
| 612 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 613 | try { |
Joe Onorato | 8a9b220 | 2010-02-26 18:56:32 -0800 | [diff] [blame] | 614 | Slog.i(TAG, "DropBox Service"); |
Dan Egnor | 9524027 | 2009-10-27 18:23:39 -0700 | [diff] [blame] | 615 | ServiceManager.addService(Context.DROPBOX_SERVICE, |
Dan Egnor | f18a01c | 2009-11-12 11:32:50 -0800 | [diff] [blame] | 616 | new DropBoxManagerService(context, new File("/data/system/dropbox"))); |
Dan Egnor | 4410ec8 | 2009-09-11 16:40:01 -0700 | [diff] [blame] | 617 | } catch (Throwable e) { |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 618 | reportWtf("starting DropBoxManagerService", e); |
Dan Egnor | 4410ec8 | 2009-09-11 16:40:01 -0700 | [diff] [blame] | 619 | } |
| 620 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 621 | if (!disableNonCoreServices && context.getResources().getBoolean( |
| 622 | R.bool.config_enableWallpaperService)) { |
Mike Lockwood | c067c9c | 2011-10-31 12:50:12 -0400 | [diff] [blame] | 623 | try { |
| 624 | Slog.i(TAG, "Wallpaper Service"); |
| 625 | if (!headless) { |
| 626 | wallpaper = new WallpaperManagerService(context); |
| 627 | ServiceManager.addService(Context.WALLPAPER_SERVICE, wallpaper); |
| 628 | } |
| 629 | } catch (Throwable e) { |
| 630 | reportWtf("starting Wallpaper Service", e); |
Mike Lockwood | 3a74bd3 | 2011-08-12 13:55:22 -0700 | [diff] [blame] | 631 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 632 | } |
| 633 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 634 | if (!disableMedia && !"0".equals(SystemProperties.get("system_init.startaudioservice"))) { |
Mike Lockwood | cba928c | 2011-08-17 15:58:52 -0700 | [diff] [blame] | 635 | try { |
| 636 | Slog.i(TAG, "Audio Service"); |
| 637 | ServiceManager.addService(Context.AUDIO_SERVICE, new AudioService(context)); |
| 638 | } catch (Throwable e) { |
| 639 | reportWtf("starting Audio Service", e); |
| 640 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 641 | } |
| 642 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 643 | if (!disableNonCoreServices) { |
| 644 | try { |
| 645 | Slog.i(TAG, "Dock Observer"); |
| 646 | // Listen for dock station changes |
| 647 | dock = new DockObserver(context); |
| 648 | } catch (Throwable e) { |
| 649 | reportWtf("starting DockObserver", e); |
| 650 | } |
Dan Murphy | c9f4eaf | 2009-08-12 15:15:43 -0500 | [diff] [blame] | 651 | } |
| 652 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 653 | if (!disableMedia) { |
| 654 | try { |
| 655 | Slog.i(TAG, "Wired Accessory Manager"); |
| 656 | // Listen for wired headset changes |
| 657 | inputManager.setWiredAccessoryCallbacks( |
| 658 | new WiredAccessoryManager(context, inputManager)); |
| 659 | } catch (Throwable e) { |
| 660 | reportWtf("starting WiredAccessoryManager", e); |
| 661 | } |
Praveen Bharathi | 21e941b | 2010-10-06 15:23:14 -0500 | [diff] [blame] | 662 | } |
| 663 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 664 | if (!disableNonCoreServices) { |
| 665 | try { |
| 666 | Slog.i(TAG, "USB Service"); |
| 667 | // Manage USB host and device support |
| 668 | usb = new UsbService(context); |
| 669 | ServiceManager.addService(Context.USB_SERVICE, usb); |
| 670 | } catch (Throwable e) { |
| 671 | reportWtf("starting UsbService", e); |
| 672 | } |
Mike Lockwood | 57c798a | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 673 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 674 | try { |
| 675 | Slog.i(TAG, "Serial Service"); |
| 676 | // Serial port support |
| 677 | serial = new SerialService(context); |
| 678 | ServiceManager.addService(Context.SERIAL_SERVICE, serial); |
| 679 | } catch (Throwable e) { |
| 680 | Slog.e(TAG, "Failure starting SerialService", e); |
| 681 | } |
Mike Lockwood | b01e8bf | 2011-08-29 20:11:07 -0400 | [diff] [blame] | 682 | } |
| 683 | |
| 684 | try { |
Jeff Brown | 2416e09 | 2012-08-21 22:12:20 -0700 | [diff] [blame] | 685 | Slog.i(TAG, "Twilight Service"); |
| 686 | twilight = new TwilightService(context); |
| 687 | } catch (Throwable e) { |
| 688 | reportWtf("starting TwilightService", e); |
| 689 | } |
| 690 | |
| 691 | try { |
Dianne Hackborn | 7299c41 | 2010-03-04 18:41:49 -0800 | [diff] [blame] | 692 | Slog.i(TAG, "UI Mode Manager Service"); |
Mike Lockwood | 57c798a | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 693 | // Listen for UI mode changes |
Jeff Brown | 2416e09 | 2012-08-21 22:12:20 -0700 | [diff] [blame] | 694 | uiMode = new UiModeManagerService(context, twilight); |
Dianne Hackborn | 7299c41 | 2010-03-04 18:41:49 -0800 | [diff] [blame] | 695 | } catch (Throwable e) { |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 696 | reportWtf("starting UiModeManagerService", e); |
Dianne Hackborn | 7299c41 | 2010-03-04 18:41:49 -0800 | [diff] [blame] | 697 | } |
| 698 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 699 | if (!disableNonCoreServices) { |
| 700 | try { |
| 701 | Slog.i(TAG, "Backup Service"); |
| 702 | ServiceManager.addService(Context.BACKUP_SERVICE, |
| 703 | new BackupManagerService(context)); |
| 704 | } catch (Throwable e) { |
| 705 | Slog.e(TAG, "Failure starting Backup Service", e); |
| 706 | } |
Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 707 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 708 | try { |
| 709 | Slog.i(TAG, "AppWidget Service"); |
| 710 | appWidget = new AppWidgetService(context); |
| 711 | ServiceManager.addService(Context.APPWIDGET_SERVICE, appWidget); |
| 712 | } catch (Throwable e) { |
| 713 | reportWtf("starting AppWidget Service", e); |
| 714 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 715 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 716 | try { |
| 717 | Slog.i(TAG, "Recognition Service"); |
| 718 | recognition = new RecognitionManagerService(context); |
| 719 | } catch (Throwable e) { |
| 720 | reportWtf("starting Recognition Service", e); |
| 721 | } |
Dianne Hackborn | 21f1bd1 | 2010-02-19 17:02:21 -0800 | [diff] [blame] | 722 | } |
Jaikumar Ganesh | 7d0548d | 2010-10-18 15:29:09 -0700 | [diff] [blame] | 723 | |
Nick Pelly | 038cabe | 2010-09-23 16:12:11 -0700 | [diff] [blame] | 724 | try { |
Dan Egnor | 621bc54 | 2010-03-25 16:20:14 -0700 | [diff] [blame] | 725 | Slog.i(TAG, "DiskStats Service"); |
| 726 | ServiceManager.addService("diskstats", new DiskStatsService(context)); |
| 727 | } catch (Throwable e) { |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 728 | reportWtf("starting DiskStats Service", e); |
Dan Egnor | 621bc54 | 2010-03-25 16:20:14 -0700 | [diff] [blame] | 729 | } |
Sen Hu | bde7570 | 2010-05-28 01:54:03 -0700 | [diff] [blame] | 730 | |
| 731 | try { |
| 732 | // need to add this service even if SamplingProfilerIntegration.isEnabled() |
| 733 | // is false, because it is this service that detects system property change and |
| 734 | // turns on SamplingProfilerIntegration. Plus, when sampling profiler doesn't work, |
| 735 | // there is little overhead for running this service. |
| 736 | Slog.i(TAG, "SamplingProfiler Service"); |
| 737 | ServiceManager.addService("samplingprofiler", |
| 738 | new SamplingProfilerService(context)); |
| 739 | } catch (Throwable e) { |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 740 | reportWtf("starting SamplingProfiler Service", e); |
Sen Hu | bde7570 | 2010-05-28 01:54:03 -0700 | [diff] [blame] | 741 | } |
Chung-yih Wang | 024d596 | 2010-08-06 12:06:04 +0800 | [diff] [blame] | 742 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 743 | if (!disableNetwork) { |
| 744 | try { |
| 745 | Slog.i(TAG, "NetworkTimeUpdateService"); |
| 746 | networkTimeUpdater = new NetworkTimeUpdateService(context); |
| 747 | } catch (Throwable e) { |
| 748 | reportWtf("starting NetworkTimeUpdate service", e); |
| 749 | } |
Amith Yamasani | 6734b9f6 | 2010-09-13 16:24:08 -0700 | [diff] [blame] | 750 | } |
John Grossman | c157673 | 2012-02-01 15:23:33 -0800 | [diff] [blame] | 751 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 752 | if (!disableMedia) { |
| 753 | try { |
| 754 | Slog.i(TAG, "CommonTimeManagementService"); |
| 755 | commonTimeMgmtService = new CommonTimeManagementService(context); |
| 756 | ServiceManager.addService("commontime_management", commonTimeMgmtService); |
| 757 | } catch (Throwable e) { |
| 758 | reportWtf("starting CommonTimeManagementService service", e); |
| 759 | } |
John Grossman | c157673 | 2012-02-01 15:23:33 -0800 | [diff] [blame] | 760 | } |
Geremy Condra | 3d33c26 | 2012-05-06 18:32:19 -0700 | [diff] [blame] | 761 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 762 | if (!disableNetwork) { |
| 763 | try { |
| 764 | Slog.i(TAG, "CertBlacklister"); |
| 765 | CertBlacklister blacklister = new CertBlacklister(context); |
| 766 | } catch (Throwable e) { |
| 767 | reportWtf("starting CertBlacklister", e); |
| 768 | } |
Geremy Condra | 3d33c26 | 2012-05-06 18:32:19 -0700 | [diff] [blame] | 769 | } |
Jim Miller | 5ecd811 | 2013-01-09 18:50:26 -0800 | [diff] [blame] | 770 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 771 | if (!disableNonCoreServices && |
| 772 | context.getResources().getBoolean(R.bool.config_dreamsSupported)) { |
Daniel Sandler | 7d276c3 | 2012-01-30 14:33:52 -0500 | [diff] [blame] | 773 | try { |
| 774 | Slog.i(TAG, "Dreams Service"); |
| 775 | // Dreams (interactive idle-time views, a/k/a screen savers) |
Jeff Brown | 62c82e4 | 2012-09-26 01:30:41 -0700 | [diff] [blame] | 776 | dreamy = new DreamManagerService(context, wmHandler); |
Dianne Hackborn | be87e2f | 2012-09-28 16:31:34 -0700 | [diff] [blame] | 777 | ServiceManager.addService(DreamService.DREAM_SERVICE, dreamy); |
Daniel Sandler | 7d276c3 | 2012-01-30 14:33:52 -0500 | [diff] [blame] | 778 | } catch (Throwable e) { |
| 779 | reportWtf("starting DreamManagerService", e); |
| 780 | } |
| 781 | } |
Svetoslav | b3038ec | 2013-02-13 14:39:30 -0800 | [diff] [blame] | 782 | |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 783 | if (!disableNonCoreServices) { |
| 784 | try { |
| 785 | Slog.i(TAG, "Assets Atlas Service"); |
| 786 | atlas = new AssetAtlasService(context); |
| 787 | ServiceManager.addService(AssetAtlasService.ASSET_ATLAS_SERVICE, atlas); |
| 788 | } catch (Throwable e) { |
| 789 | reportWtf("starting AssetAtlasService", e); |
| 790 | } |
| 791 | } |
| 792 | |
Svetoslav | b3038ec | 2013-02-13 14:39:30 -0800 | [diff] [blame] | 793 | try { |
| 794 | Slog.i(TAG, "IdleMaintenanceService"); |
Svetoslav | 6a08a12 | 2013-05-03 11:24:26 -0700 | [diff] [blame] | 795 | new IdleMaintenanceService(context, battery); |
Svetoslav | b3038ec | 2013-02-13 14:39:30 -0800 | [diff] [blame] | 796 | } catch (Throwable e) { |
| 797 | reportWtf("starting IdleMaintenanceService", e); |
| 798 | } |
Svetoslav Ganov | 4b9a4d1 | 2013-06-11 15:20:06 -0700 | [diff] [blame] | 799 | |
| 800 | try { |
| 801 | Slog.i(TAG, "Print Service"); |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 802 | printManager = new PrintManagerService(context); |
| 803 | ServiceManager.addService(Context.PRINT_SERVICE, printManager); |
Svetoslav Ganov | 4b9a4d1 | 2013-06-11 15:20:06 -0700 | [diff] [blame] | 804 | } catch (Throwable e) { |
| 805 | reportWtf("starting Print Service", e); |
| 806 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 807 | } |
| 808 | |
Dianne Hackborn | 6af0d50 | 2009-09-28 13:25:46 -0700 | [diff] [blame] | 809 | // Before things start rolling, be sure we have decided whether |
| 810 | // we are in safe mode. |
Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 811 | final boolean safeMode = wm.detectSafeMode(); |
Dianne Hackborn | 6af0d50 | 2009-09-28 13:25:46 -0700 | [diff] [blame] | 812 | if (safeMode) { |
Jeff Brown | b09abc1 | 2011-01-13 21:08:27 -0800 | [diff] [blame] | 813 | ActivityManagerService.self().enterSafeMode(); |
| 814 | // Post the safe mode state in the Zygote class |
| 815 | Zygote.systemInSafeMode = true; |
| 816 | // Disable the JIT for the system_server process |
| 817 | VMRuntime.getRuntime().disableJitCompilation(); |
Ben Cheng | 6c0afff | 2010-02-14 16:18:56 -0800 | [diff] [blame] | 818 | } else { |
| 819 | // Enable the JIT for the system_server process |
| 820 | VMRuntime.getRuntime().startJitCompilation(); |
Dianne Hackborn | 6af0d50 | 2009-09-28 13:25:46 -0700 | [diff] [blame] | 821 | } |
Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 822 | |
Dianne Hackborn | 6af0d50 | 2009-09-28 13:25:46 -0700 | [diff] [blame] | 823 | // It is now time to start up the app processes... |
Joe Onorato | 3027548 | 2009-07-08 17:09:14 -0700 | [diff] [blame] | 824 | |
Jeff Brown | 7f6c231 | 2012-04-13 20:38:38 -0700 | [diff] [blame] | 825 | try { |
| 826 | vibrator.systemReady(); |
| 827 | } catch (Throwable e) { |
| 828 | reportWtf("making Vibrator Service ready", e); |
| 829 | } |
| 830 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 831 | if (lockSettings != null) { |
| 832 | try { |
| 833 | lockSettings.systemReady(); |
| 834 | } catch (Throwable e) { |
| 835 | reportWtf("making Lock Settings Service ready", e); |
| 836 | } |
Felipe Ramos | f35df5b | 2012-09-18 18:26:27 -0300 | [diff] [blame] | 837 | } |
| 838 | |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 839 | if (devicePolicy != null) { |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 840 | try { |
| 841 | devicePolicy.systemReady(); |
| 842 | } catch (Throwable e) { |
| 843 | reportWtf("making Device Policy Service ready", e); |
| 844 | } |
Dianne Hackborn | d684784 | 2010-01-12 18:14:19 -0800 | [diff] [blame] | 845 | } |
| 846 | |
Joe Onorato | 3027548 | 2009-07-08 17:09:14 -0700 | [diff] [blame] | 847 | if (notification != null) { |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 848 | try { |
| 849 | notification.systemReady(); |
| 850 | } catch (Throwable e) { |
| 851 | reportWtf("making Notification Service ready", e); |
| 852 | } |
Joe Onorato | 3027548 | 2009-07-08 17:09:14 -0700 | [diff] [blame] | 853 | } |
| 854 | |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 855 | try { |
| 856 | wm.systemReady(); |
| 857 | } catch (Throwable e) { |
| 858 | reportWtf("making Window Manager Service ready", e); |
| 859 | } |
Joe Onorato | dc565f4 | 2010-10-04 15:27:22 -0400 | [diff] [blame] | 860 | |
Jeff Brown | b09abc1 | 2011-01-13 21:08:27 -0800 | [diff] [blame] | 861 | if (safeMode) { |
| 862 | ActivityManagerService.self().showSafeModeOverlay(); |
| 863 | } |
| 864 | |
Joe Onorato | dc565f4 | 2010-10-04 15:27:22 -0400 | [diff] [blame] | 865 | // Update the configuration for this context by hand, because we're going |
| 866 | // to start using it before the config change done in wm.systemReady() will |
| 867 | // propagate to it. |
| 868 | Configuration config = wm.computeNewConfiguration(); |
| 869 | DisplayMetrics metrics = new DisplayMetrics(); |
| 870 | WindowManager w = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE); |
| 871 | w.getDefaultDisplay().getMetrics(metrics); |
| 872 | context.getResources().updateConfiguration(config, metrics); |
| 873 | |
Jeff Brown | aa202a6 | 2012-08-21 22:14:26 -0700 | [diff] [blame] | 874 | try { |
Jeff Brown | 62c82e4 | 2012-09-26 01:30:41 -0700 | [diff] [blame] | 875 | power.systemReady(twilight, dreamy); |
Jeff Brown | aa202a6 | 2012-08-21 22:14:26 -0700 | [diff] [blame] | 876 | } catch (Throwable e) { |
| 877 | reportWtf("making Power Manager Service ready", e); |
| 878 | } |
| 879 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 880 | try { |
| 881 | pm.systemReady(); |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 882 | } catch (Throwable e) { |
| 883 | reportWtf("making Package Manager Service ready", e); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 884 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 885 | |
Jeff Brown | bd6e150 | 2012-08-28 03:27:37 -0700 | [diff] [blame] | 886 | try { |
| 887 | display.systemReady(safeMode, onlyCore); |
| 888 | } catch (Throwable e) { |
| 889 | reportWtf("making Display Manager Service ready", e); |
| 890 | } |
| 891 | |
Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 892 | // These are needed to propagate to the runnable below. |
Joe Onorato | f3c3c4f | 2010-10-21 11:09:02 -0400 | [diff] [blame] | 893 | final Context contextF = context; |
Jeff Sharkey | b049e21 | 2012-09-07 23:16:01 -0700 | [diff] [blame] | 894 | final MountService mountServiceF = mountService; |
Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 895 | final BatteryService batteryF = battery; |
Jeff Sharkey | 350083e | 2011-06-29 10:45:16 -0700 | [diff] [blame] | 896 | final NetworkManagementService networkManagementF = networkManagement; |
Jeff Sharkey | 7527990 | 2011-05-24 18:39:45 -0700 | [diff] [blame] | 897 | final NetworkStatsService networkStatsF = networkStats; |
Jeff Sharkey | a462079 | 2011-05-20 15:29:23 -0700 | [diff] [blame] | 898 | final NetworkPolicyManagerService networkPolicyF = networkPolicy; |
Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 899 | final ConnectivityService connectivityF = connectivity; |
| 900 | final DockObserver dockF = dock; |
Mike Lockwood | 770126a | 2010-12-09 22:30:37 -0800 | [diff] [blame] | 901 | final UsbService usbF = usb; |
Jeff Brown | 2416e09 | 2012-08-21 22:12:20 -0700 | [diff] [blame] | 902 | final TwilightService twilightF = twilight; |
Dianne Hackborn | 7299c41 | 2010-03-04 18:41:49 -0800 | [diff] [blame] | 903 | final UiModeManagerService uiModeF = uiMode; |
Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 904 | final AppWidgetService appWidgetF = appWidget; |
| 905 | final WallpaperManagerService wallpaperF = wallpaper; |
| 906 | final InputMethodManagerService immF = imm; |
Dianne Hackborn | 21f1bd1 | 2010-02-19 17:02:21 -0800 | [diff] [blame] | 907 | final RecognitionManagerService recognitionF = recognition; |
Mike Lockwood | 46db504 | 2010-02-22 16:36:44 -0500 | [diff] [blame] | 908 | final LocationManagerService locationF = location; |
Bai Tao | a58a875 | 2010-07-13 15:32:16 +0800 | [diff] [blame] | 909 | final CountryDetectorService countryDetectorF = countryDetector; |
Amith Yamasani | 6734b9f6 | 2010-09-13 16:24:08 -0700 | [diff] [blame] | 910 | final NetworkTimeUpdateService networkTimeUpdaterF = networkTimeUpdater; |
John Grossman | c157673 | 2012-02-01 15:23:33 -0800 | [diff] [blame] | 911 | final CommonTimeManagementService commonTimeMgmtServiceF = commonTimeMgmtService; |
satok | 988323c | 2011-06-22 16:38:13 +0900 | [diff] [blame] | 912 | final TextServicesManagerService textServiceManagerServiceF = tsms; |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 913 | final StatusBarManagerService statusBarF = statusBar; |
Daniel Sandler | 7d276c3 | 2012-01-30 14:33:52 -0500 | [diff] [blame] | 914 | final DreamManagerService dreamyF = dreamy; |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 915 | final AssetAtlasService atlasF = atlas; |
Jeff Brown | 6ec6f79 | 2012-04-17 16:52:41 -0700 | [diff] [blame] | 916 | final InputManagerService inputManagerF = inputManager; |
Wink Saville | a12a7b3 | 2012-09-20 10:09:45 -0700 | [diff] [blame] | 917 | final TelephonyRegistry telephonyRegistryF = telephonyRegistry; |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 918 | final PrintManagerService printManagerF = printManager; |
Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 919 | |
Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 920 | // We now tell the activity manager it is okay to run third party |
| 921 | // code. It will call back into us once it has gotten to the state |
| 922 | // where third party code can really run (but before it has actually |
| 923 | // started launching the initial applications), for us to complete our |
| 924 | // initialization. |
Dianne Hackborn | 295e3c2 | 2011-08-25 13:19:08 -0700 | [diff] [blame] | 925 | ActivityManagerService.self().systemReady(new Runnable() { |
Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 926 | public void run() { |
Joe Onorato | 8a9b220 | 2010-02-26 18:56:32 -0800 | [diff] [blame] | 927 | Slog.i(TAG, "Making services ready"); |
Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 928 | |
Christopher Tate | 58d380d | 2013-03-19 13:10:03 -0700 | [diff] [blame] | 929 | try { |
| 930 | ActivityManagerService.self().startObservingNativeCrashes(); |
| 931 | } catch (Throwable e) { |
| 932 | reportWtf("observing native crashes", e); |
| 933 | } |
Jim Miller | 5ecd811 | 2013-01-09 18:50:26 -0800 | [diff] [blame] | 934 | if (!headless) { |
| 935 | startSystemUi(contextF); |
| 936 | } |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 937 | try { |
Jeff Sharkey | b049e21 | 2012-09-07 23:16:01 -0700 | [diff] [blame] | 938 | if (mountServiceF != null) mountServiceF.systemReady(); |
| 939 | } catch (Throwable e) { |
| 940 | reportWtf("making Mount Service ready", e); |
| 941 | } |
| 942 | try { |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 943 | if (batteryF != null) batteryF.systemReady(); |
| 944 | } catch (Throwable e) { |
| 945 | reportWtf("making Battery Service ready", e); |
| 946 | } |
| 947 | try { |
| 948 | if (networkManagementF != null) networkManagementF.systemReady(); |
| 949 | } catch (Throwable e) { |
| 950 | reportWtf("making Network Managment Service ready", e); |
| 951 | } |
| 952 | try { |
| 953 | if (networkStatsF != null) networkStatsF.systemReady(); |
| 954 | } catch (Throwable e) { |
| 955 | reportWtf("making Network Stats Service ready", e); |
| 956 | } |
| 957 | try { |
| 958 | if (networkPolicyF != null) networkPolicyF.systemReady(); |
| 959 | } catch (Throwable e) { |
| 960 | reportWtf("making Network Policy Service ready", e); |
| 961 | } |
| 962 | try { |
| 963 | if (connectivityF != null) connectivityF.systemReady(); |
| 964 | } catch (Throwable e) { |
| 965 | reportWtf("making Connectivity Service ready", e); |
| 966 | } |
| 967 | try { |
| 968 | if (dockF != null) dockF.systemReady(); |
| 969 | } catch (Throwable e) { |
| 970 | reportWtf("making Dock Service ready", e); |
| 971 | } |
| 972 | try { |
| 973 | if (usbF != null) usbF.systemReady(); |
| 974 | } catch (Throwable e) { |
| 975 | reportWtf("making USB Service ready", e); |
| 976 | } |
| 977 | try { |
Jeff Brown | 2416e09 | 2012-08-21 22:12:20 -0700 | [diff] [blame] | 978 | if (twilightF != null) twilightF.systemReady(); |
| 979 | } catch (Throwable e) { |
| 980 | reportWtf("makin Twilight Service ready", e); |
| 981 | } |
| 982 | try { |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 983 | if (uiModeF != null) uiModeF.systemReady(); |
| 984 | } catch (Throwable e) { |
| 985 | reportWtf("making UI Mode Service ready", e); |
| 986 | } |
| 987 | try { |
| 988 | if (recognitionF != null) recognitionF.systemReady(); |
| 989 | } catch (Throwable e) { |
| 990 | reportWtf("making Recognition Service ready", e); |
| 991 | } |
Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 992 | Watchdog.getInstance().start(); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 993 | |
Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 994 | // It is now okay to let the various system services start their |
| 995 | // third party code... |
Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 996 | |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 997 | try { |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 998 | if (appWidgetF != null) appWidgetF.systemRunning(safeMode); |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 999 | } catch (Throwable e) { |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 1000 | reportWtf("Notifying AppWidgetService running", e); |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 1001 | } |
| 1002 | try { |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 1003 | if (wallpaperF != null) wallpaperF.systemRunning(); |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 1004 | } catch (Throwable e) { |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 1005 | reportWtf("Notifying WallpaperService running", e); |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 1006 | } |
| 1007 | try { |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 1008 | if (immF != null) immF.systemRunning(statusBarF); |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 1009 | } catch (Throwable e) { |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 1010 | reportWtf("Notifying InputMethodService running", e); |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 1011 | } |
| 1012 | try { |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 1013 | if (locationF != null) locationF.systemRunning(); |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 1014 | } catch (Throwable e) { |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 1015 | reportWtf("Notifying Location Service running", e); |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 1016 | } |
| 1017 | try { |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 1018 | if (countryDetectorF != null) countryDetectorF.systemRunning(); |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 1019 | } catch (Throwable e) { |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 1020 | reportWtf("Notifying CountryDetectorService running", e); |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 1021 | } |
| 1022 | try { |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 1023 | if (networkTimeUpdaterF != null) networkTimeUpdaterF.systemRunning(); |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 1024 | } catch (Throwable e) { |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 1025 | reportWtf("Notifying NetworkTimeService running", e); |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 1026 | } |
| 1027 | try { |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 1028 | if (commonTimeMgmtServiceF != null) commonTimeMgmtServiceF.systemRunning(); |
John Grossman | c157673 | 2012-02-01 15:23:33 -0800 | [diff] [blame] | 1029 | } catch (Throwable e) { |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 1030 | reportWtf("Notifying CommonTimeManagementService running", e); |
John Grossman | c157673 | 2012-02-01 15:23:33 -0800 | [diff] [blame] | 1031 | } |
| 1032 | try { |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 1033 | if (textServiceManagerServiceF != null) |
| 1034 | textServiceManagerServiceF.systemRunning(); |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 1035 | } catch (Throwable e) { |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 1036 | reportWtf("Notifying TextServicesManagerService running", e); |
Dianne Hackborn | 661cd52 | 2011-08-22 00:26:20 -0700 | [diff] [blame] | 1037 | } |
Daniel Sandler | 7d276c3 | 2012-01-30 14:33:52 -0500 | [diff] [blame] | 1038 | try { |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 1039 | if (dreamyF != null) dreamyF.systemRunning(); |
Daniel Sandler | 7d276c3 | 2012-01-30 14:33:52 -0500 | [diff] [blame] | 1040 | } catch (Throwable e) { |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 1041 | reportWtf("Notifying DreamManagerService running", e); |
Daniel Sandler | 7d276c3 | 2012-01-30 14:33:52 -0500 | [diff] [blame] | 1042 | } |
Jeff Brown | 6ec6f79 | 2012-04-17 16:52:41 -0700 | [diff] [blame] | 1043 | try { |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 1044 | if (atlasF != null) atlasF.systemRunning(); |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 1045 | } catch (Throwable e) { |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 1046 | reportWtf("Notifying AssetAtlasService running", e); |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 1047 | } |
| 1048 | try { |
Matthew Xie | 9631314 | 2012-06-29 16:57:31 -0700 | [diff] [blame] | 1049 | // TODO(BT) Pass parameter to input manager |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 1050 | if (inputManagerF != null) inputManagerF.systemRunning(); |
Jeff Brown | 6ec6f79 | 2012-04-17 16:52:41 -0700 | [diff] [blame] | 1051 | } catch (Throwable e) { |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 1052 | reportWtf("Notifying InputManagerService running", e); |
Jeff Brown | 6ec6f79 | 2012-04-17 16:52:41 -0700 | [diff] [blame] | 1053 | } |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 1054 | |
Wink Saville | a12a7b3 | 2012-09-20 10:09:45 -0700 | [diff] [blame] | 1055 | try { |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 1056 | if (telephonyRegistryF != null) telephonyRegistryF.systemRunning(); |
Wink Saville | a12a7b3 | 2012-09-20 10:09:45 -0700 | [diff] [blame] | 1057 | } catch (Throwable e) { |
Svetoslav Ganov | a002715 | 2013-06-25 14:59:53 -0700 | [diff] [blame] | 1058 | reportWtf("Notifying TelephonyRegistry running", e); |
| 1059 | } |
| 1060 | |
| 1061 | try { |
| 1062 | if (printManagerF != null) printManagerF.systemRuning(); |
| 1063 | } catch (Throwable e) { |
| 1064 | reportWtf("Notifying PrintManagerService running", e); |
Wink Saville | a12a7b3 | 2012-09-20 10:09:45 -0700 | [diff] [blame] | 1065 | } |
Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 1066 | } |
| 1067 | }); |
Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1068 | |
Brad Fitzpatrick | 1e02d36 | 2010-09-10 09:19:50 -0700 | [diff] [blame] | 1069 | // For debug builds, log event loop stalls to dropbox for analysis. |
Brad Fitzpatrick | 50d66f9 | 2010-09-13 21:29:05 -0700 | [diff] [blame] | 1070 | if (StrictMode.conditionallyEnableDebugLogging()) { |
| 1071 | Slog.i(TAG, "Enabled StrictMode for system server main thread."); |
Brad Fitzpatrick | 1e02d36 | 2010-09-10 09:19:50 -0700 | [diff] [blame] | 1072 | } |
| 1073 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1074 | Looper.loop(); |
Joe Onorato | 8a9b220 | 2010-02-26 18:56:32 -0800 | [diff] [blame] | 1075 | Slog.d(TAG, "System ServerThread is exiting!"); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1076 | } |
Joe Onorato | f3c3c4f | 2010-10-21 11:09:02 -0400 | [diff] [blame] | 1077 | |
| 1078 | static final void startSystemUi(Context context) { |
| 1079 | Intent intent = new Intent(); |
| 1080 | intent.setComponent(new ComponentName("com.android.systemui", |
| 1081 | "com.android.systemui.SystemUIService")); |
Dianne Hackborn | 40e9f29 | 2012-11-27 19:12:23 -0800 | [diff] [blame] | 1082 | //Slog.d(TAG, "Starting service: " + intent); |
Amith Yamasani | cd75706 | 2012-10-19 18:23:52 -0700 | [diff] [blame] | 1083 | context.startServiceAsUser(intent, UserHandle.OWNER); |
Joe Onorato | f3c3c4f | 2010-10-21 11:09:02 -0400 | [diff] [blame] | 1084 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1085 | } |
| 1086 | |
Jeff Hamilton | 35eef70 | 2010-06-09 15:45:18 -0500 | [diff] [blame] | 1087 | public class SystemServer { |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1088 | private static final String TAG = "SystemServer"; |
| 1089 | |
| 1090 | public static final int FACTORY_TEST_OFF = 0; |
| 1091 | public static final int FACTORY_TEST_LOW_LEVEL = 1; |
| 1092 | public static final int FACTORY_TEST_HIGH_LEVEL = 2; |
Jaikumar Ganesh | d5ac1ae | 2009-05-05 22:26:12 -0700 | [diff] [blame] | 1093 | |
Bob Lee | e540833 | 2009-09-04 18:31:17 -0700 | [diff] [blame] | 1094 | static Timer timer; |
| 1095 | static final long SNAPSHOT_INTERVAL = 60 * 60 * 1000; // 1hr |
| 1096 | |
Brad Fitzpatrick | 6bb7a4a | 2010-10-11 13:41:10 -0700 | [diff] [blame] | 1097 | // The earliest supported time. We pick one day into 1970, to |
| 1098 | // give any timezone code room without going into negative time. |
| 1099 | private static final long EARLIEST_SUPPORTED_TIME = 86400 * 1000; |
| 1100 | |
Jaikumar Ganesh | d5ac1ae | 2009-05-05 22:26:12 -0700 | [diff] [blame] | 1101 | /** |
Jeff Brown | ef69117 | 2013-07-15 13:22:04 -0700 | [diff] [blame] | 1102 | * Called to initialize native system services. |
Jaikumar Ganesh | d5ac1ae | 2009-05-05 22:26:12 -0700 | [diff] [blame] | 1103 | */ |
Jeff Brown | ef69117 | 2013-07-15 13:22:04 -0700 | [diff] [blame] | 1104 | private static native void nativeInit(); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1105 | |
| 1106 | public static void main(String[] args) { |
Brad Fitzpatrick | 6bb7a4a | 2010-10-11 13:41:10 -0700 | [diff] [blame] | 1107 | if (System.currentTimeMillis() < EARLIEST_SUPPORTED_TIME) { |
Brad Fitzpatrick | 35ca9d8 | 2010-10-11 11:52:49 -0700 | [diff] [blame] | 1108 | // If a device's clock is before 1970 (before 0), a lot of |
| 1109 | // APIs crash dealing with negative numbers, notably |
| 1110 | // java.io.File#setLastModified, so instead we fake it and |
| 1111 | // hope that time from cell towers or NTP fixes it |
| 1112 | // shortly. |
| 1113 | Slog.w(TAG, "System clock is before 1970; setting to 1970."); |
Brad Fitzpatrick | 6bb7a4a | 2010-10-11 13:41:10 -0700 | [diff] [blame] | 1114 | SystemClock.setCurrentTimeMillis(EARLIEST_SUPPORTED_TIME); |
Brad Fitzpatrick | 35ca9d8 | 2010-10-11 11:52:49 -0700 | [diff] [blame] | 1115 | } |
| 1116 | |
Bob Lee | e540833 | 2009-09-04 18:31:17 -0700 | [diff] [blame] | 1117 | if (SamplingProfilerIntegration.isEnabled()) { |
| 1118 | SamplingProfilerIntegration.start(); |
| 1119 | timer = new Timer(); |
| 1120 | timer.schedule(new TimerTask() { |
| 1121 | @Override |
| 1122 | public void run() { |
Sen Hu | bde7570 | 2010-05-28 01:54:03 -0700 | [diff] [blame] | 1123 | SamplingProfilerIntegration.writeSnapshot("system_server", null); |
Bob Lee | e540833 | 2009-09-04 18:31:17 -0700 | [diff] [blame] | 1124 | } |
| 1125 | }, SNAPSHOT_INTERVAL, SNAPSHOT_INTERVAL); |
| 1126 | } |
| 1127 | |
Dianne Hackborn | ac1471a | 2011-02-03 13:46:06 -0800 | [diff] [blame] | 1128 | // Mmmmmm... more memory! |
| 1129 | dalvik.system.VMRuntime.getRuntime().clearGrowthLimit(); |
| 1130 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1131 | // The system server has to run all of the time, so it needs to be |
| 1132 | // as efficient as possible with its memory usage. |
| 1133 | VMRuntime.getRuntime().setTargetHeapUtilization(0.8f); |
Sen Hu | bde7570 | 2010-05-28 01:54:03 -0700 | [diff] [blame] | 1134 | |
Jeff Sharkey | 48749fc | 2013-04-19 13:25:04 -0700 | [diff] [blame] | 1135 | Environment.setUserRequired(true); |
| 1136 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1137 | System.loadLibrary("android_servers"); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1138 | |
Joe Onorato | 8a9b220 | 2010-02-26 18:56:32 -0800 | [diff] [blame] | 1139 | Slog.i(TAG, "Entered the Android system server!"); |
Dianne Hackborn | efa92b2 | 2013-05-03 14:11:43 -0700 | [diff] [blame] | 1140 | |
Jeff Brown | ef69117 | 2013-07-15 13:22:04 -0700 | [diff] [blame] | 1141 | // Initialize native services. |
| 1142 | nativeInit(); |
| 1143 | |
Dianne Hackborn | efa92b2 | 2013-05-03 14:11:43 -0700 | [diff] [blame] | 1144 | // This used to be its own separate thread, but now it is |
| 1145 | // just the loop we run on the main thread. |
| 1146 | ServerThread thr = new ServerThread(); |
| 1147 | thr.initAndLoop(); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1148 | } |
| 1149 | } |