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