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