| 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 | |
| 19 | import com.android.server.am.ActivityManagerService; |
| 20 | import com.android.server.status.StatusBarService; |
| Bob Lee | e540833 | 2009-09-04 18:31:17 -0700 | [diff] [blame] | 21 | import com.android.internal.os.SamplingProfilerIntegration; |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 22 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 23 | import dalvik.system.VMRuntime; |
| 24 | |
| 25 | import android.app.ActivityManagerNative; |
| Nick Pelly | f242b7b | 2009-10-08 00:12:45 +0200 | [diff] [blame] | 26 | import android.bluetooth.BluetoothAdapter; |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 27 | import android.content.ComponentName; |
| 28 | import android.content.ContentResolver; |
| 29 | import android.content.ContentService; |
| 30 | import android.content.Context; |
| 31 | import android.content.Intent; |
| 32 | import android.content.pm.IPackageManager; |
| 33 | import android.database.ContentObserver; |
| 34 | import android.database.Cursor; |
| 35 | import android.media.AudioService; |
| Fred Quintana | 6030734 | 2009-03-24 22:48:12 -0700 | [diff] [blame] | 36 | import android.os.*; |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 37 | import android.provider.Contacts.People; |
| 38 | import android.provider.Settings; |
| 39 | import android.server.BluetoothA2dpService; |
| Nick Pelly | bd022f4 | 2009-08-14 18:33:38 -0700 | [diff] [blame] | 40 | import android.server.BluetoothService; |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 41 | import android.server.search.SearchManagerService; |
| 42 | import android.util.EventLog; |
| 43 | import android.util.Log; |
| Fred Quintana | 6030734 | 2009-03-24 22:48:12 -0700 | [diff] [blame] | 44 | import android.accounts.AccountManagerService; |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 45 | |
| Dan Egnor | 4410ec8 | 2009-09-11 16:40:01 -0700 | [diff] [blame^] | 46 | import java.io.File; |
| Bob Lee | e540833 | 2009-09-04 18:31:17 -0700 | [diff] [blame] | 47 | import java.util.Timer; |
| 48 | import java.util.TimerTask; |
| 49 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 50 | class ServerThread extends Thread { |
| 51 | private static final String TAG = "SystemServer"; |
| 52 | private final static boolean INCLUDE_DEMO = false; |
| 53 | |
| 54 | private static final int LOG_BOOT_PROGRESS_SYSTEM_RUN = 3010; |
| 55 | |
| 56 | private ContentResolver mContentResolver; |
| 57 | |
| 58 | private class AdbSettingsObserver extends ContentObserver { |
| 59 | public AdbSettingsObserver() { |
| 60 | super(null); |
| 61 | } |
| 62 | @Override |
| 63 | public void onChange(boolean selfChange) { |
| 64 | boolean enableAdb = (Settings.Secure.getInt(mContentResolver, |
| 65 | Settings.Secure.ADB_ENABLED, 0) > 0); |
| 66 | // setting this secure property will start or stop adbd |
| 67 | SystemProperties.set("persist.service.adb.enable", enableAdb ? "1" : "0"); |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | @Override |
| 72 | public void run() { |
| 73 | EventLog.writeEvent(LOG_BOOT_PROGRESS_SYSTEM_RUN, |
| 74 | SystemClock.uptimeMillis()); |
| 75 | |
| 76 | ActivityManagerService.prepareTraceFile(false); // create dir |
| 77 | |
| 78 | Looper.prepare(); |
| 79 | |
| 80 | android.os.Process.setThreadPriority( |
| 81 | android.os.Process.THREAD_PRIORITY_FOREGROUND); |
| 82 | |
| 83 | String factoryTestStr = SystemProperties.get("ro.factorytest"); |
| 84 | int factoryTest = "".equals(factoryTestStr) ? SystemServer.FACTORY_TEST_OFF |
| 85 | : Integer.parseInt(factoryTestStr); |
| 86 | |
| The Android Open Source Project | 1059253 | 2009-03-18 17:39:46 -0700 | [diff] [blame] | 87 | HardwareService hardware = null; |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 88 | PowerManagerService power = null; |
| Mike Lockwood | 07a500f | 2009-08-12 09:56:44 -0400 | [diff] [blame] | 89 | BatteryService battery = null; |
| Mike Lockwood | 0f79b54 | 2009-08-14 14:18:49 -0400 | [diff] [blame] | 90 | ConnectivityService connectivity = null; |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 91 | IPackageManager pm = null; |
| 92 | Context context = null; |
| 93 | WindowManagerService wm = null; |
| Nick Pelly | bd022f4 | 2009-08-14 18:33:38 -0700 | [diff] [blame] | 94 | BluetoothService bluetooth = null; |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 95 | BluetoothA2dpService bluetoothA2dp = null; |
| 96 | HeadsetObserver headset = null; |
| Dan Murphy | c9f4eaf | 2009-08-12 15:15:43 -0500 | [diff] [blame] | 97 | DockObserver dock = null; |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 98 | |
| 99 | // Critical services... |
| 100 | try { |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 101 | Log.i(TAG, "Entropy Service"); |
| Nick Kralevich | 4fb2561 | 2009-06-17 16:03:22 -0700 | [diff] [blame] | 102 | ServiceManager.addService("entropy", new EntropyService()); |
| 103 | |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 104 | Log.i(TAG, "Power Manager"); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 105 | power = new PowerManagerService(); |
| 106 | ServiceManager.addService(Context.POWER_SERVICE, power); |
| 107 | |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 108 | Log.i(TAG, "Activity Manager"); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 109 | context = ActivityManagerService.main(factoryTest); |
| 110 | |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 111 | Log.i(TAG, "Telephony Registry"); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 112 | ServiceManager.addService("telephony.registry", new TelephonyRegistry(context)); |
| 113 | |
| 114 | AttributeCache.init(context); |
| 115 | |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 116 | Log.i(TAG, "Package Manager"); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 117 | pm = PackageManagerService.main(context, |
| 118 | factoryTest != SystemServer.FACTORY_TEST_OFF); |
| 119 | |
| 120 | ActivityManagerService.setSystemProcess(); |
| 121 | |
| 122 | mContentResolver = context.getContentResolver(); |
| 123 | |
| Fred Quintana | e91ebe2 | 2009-09-29 20:44:30 -0700 | [diff] [blame] | 124 | // The AccountManager must come before the ContentService |
| Fred Quintana | 6030734 | 2009-03-24 22:48:12 -0700 | [diff] [blame] | 125 | try { |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 126 | Log.i(TAG, "Account Manager"); |
| Fred Quintana | 6030734 | 2009-03-24 22:48:12 -0700 | [diff] [blame] | 127 | ServiceManager.addService(Context.ACCOUNT_SERVICE, |
| 128 | new AccountManagerService(context)); |
| 129 | } catch (Throwable e) { |
| 130 | Log.e(TAG, "Failure starting Account Manager", e); |
| 131 | } |
| 132 | |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 133 | Log.i(TAG, "Content Manager"); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 134 | ContentService.main(context, |
| 135 | factoryTest == SystemServer.FACTORY_TEST_LOW_LEVEL); |
| 136 | |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 137 | Log.i(TAG, "System Content Providers"); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 138 | ActivityManagerService.installSystemProviders(); |
| 139 | |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 140 | Log.i(TAG, "Battery Service"); |
| Mike Lockwood | 07a500f | 2009-08-12 09:56:44 -0400 | [diff] [blame] | 141 | battery = new BatteryService(context); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 142 | ServiceManager.addService("battery", battery); |
| 143 | |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 144 | Log.i(TAG, "Hardware Service"); |
| The Android Open Source Project | 1059253 | 2009-03-18 17:39:46 -0700 | [diff] [blame] | 145 | hardware = new HardwareService(context); |
| 146 | ServiceManager.addService("hardware", hardware); |
| 147 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 148 | // only initialize the power service after we have started the |
| The Android Open Source Project | 1059253 | 2009-03-18 17:39:46 -0700 | [diff] [blame] | 149 | // hardware service, content providers and the battery service. |
| 150 | power.init(context, hardware, ActivityManagerService.getDefault(), battery); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 151 | |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 152 | Log.i(TAG, "Alarm Manager"); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 153 | AlarmManagerService alarm = new AlarmManagerService(context); |
| 154 | ServiceManager.addService(Context.ALARM_SERVICE, alarm); |
| 155 | |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 156 | Log.i(TAG, "Init Watchdog"); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 157 | Watchdog.getInstance().init(context, battery, power, alarm, |
| 158 | ActivityManagerService.self()); |
| 159 | |
| 160 | // Sensor Service is needed by Window Manager, so this goes first |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 161 | Log.i(TAG, "Sensor Service"); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 162 | ServiceManager.addService(Context.SENSOR_SERVICE, new SensorService(context)); |
| 163 | |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 164 | Log.i(TAG, "Window Manager"); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 165 | wm = WindowManagerService.main(context, power, |
| 166 | factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL); |
| 167 | ServiceManager.addService(Context.WINDOW_SERVICE, wm); |
| 168 | |
| 169 | ((ActivityManagerService)ServiceManager.getService("activity")) |
| 170 | .setWindowManager(wm); |
| 171 | |
| 172 | // Skip Bluetooth if we have an emulator kernel |
| 173 | // TODO: Use a more reliable check to see if this product should |
| 174 | // support Bluetooth - see bug 988521 |
| 175 | if (SystemProperties.get("ro.kernel.qemu").equals("1")) { |
| 176 | Log.i(TAG, "Registering null Bluetooth Service (emulator)"); |
| Nick Pelly | f242b7b | 2009-10-08 00:12:45 +0200 | [diff] [blame] | 177 | ServiceManager.addService(BluetoothAdapter.BLUETOOTH_SERVICE, null); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 178 | } else if (factoryTest == SystemServer.FACTORY_TEST_LOW_LEVEL) { |
| 179 | Log.i(TAG, "Registering null Bluetooth Service (factory test)"); |
| Nick Pelly | f242b7b | 2009-10-08 00:12:45 +0200 | [diff] [blame] | 180 | ServiceManager.addService(BluetoothAdapter.BLUETOOTH_SERVICE, null); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 181 | } else { |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 182 | Log.i(TAG, "Bluetooth Service"); |
| Nick Pelly | bd022f4 | 2009-08-14 18:33:38 -0700 | [diff] [blame] | 183 | bluetooth = new BluetoothService(context); |
| Nick Pelly | f242b7b | 2009-10-08 00:12:45 +0200 | [diff] [blame] | 184 | ServiceManager.addService(BluetoothAdapter.BLUETOOTH_SERVICE, bluetooth); |
| Nick Pelly | bd022f4 | 2009-08-14 18:33:38 -0700 | [diff] [blame] | 185 | bluetooth.initAfterRegistration(); |
| Jaikumar Ganesh | d5ac1ae | 2009-05-05 22:26:12 -0700 | [diff] [blame] | 186 | bluetoothA2dp = new BluetoothA2dpService(context, bluetooth); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 187 | ServiceManager.addService(BluetoothA2dpService.BLUETOOTH_A2DP_SERVICE, |
| 188 | bluetoothA2dp); |
| 189 | |
| 190 | int bluetoothOn = Settings.Secure.getInt(mContentResolver, |
| 191 | Settings.Secure.BLUETOOTH_ON, 0); |
| 192 | if (bluetoothOn > 0) { |
| The Android Open Source Project | 1059253 | 2009-03-18 17:39:46 -0700 | [diff] [blame] | 193 | bluetooth.enable(); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 194 | } |
| 195 | } |
| 196 | |
| 197 | } catch (RuntimeException e) { |
| 198 | Log.e("System", "Failure starting core service", e); |
| 199 | } |
| 200 | |
| 201 | StatusBarService statusBar = null; |
| 202 | InputMethodManagerService imm = null; |
| The Android Open Source Project | c39a6e0 | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 203 | AppWidgetService appWidget = null; |
| Joe Onorato | 3027548 | 2009-07-08 17:09:14 -0700 | [diff] [blame] | 204 | NotificationManagerService notification = null; |
| Dianne Hackborn | f21adf6 | 2009-08-13 10:20:21 -0700 | [diff] [blame] | 205 | WallpaperManagerService wallpaper = null; |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 206 | |
| 207 | if (factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL) { |
| 208 | try { |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 209 | Log.i(TAG, "Status Bar"); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 210 | statusBar = new StatusBarService(context); |
| 211 | ServiceManager.addService("statusbar", statusBar); |
| 212 | } catch (Throwable e) { |
| 213 | Log.e(TAG, "Failure starting StatusBarService", e); |
| 214 | } |
| 215 | |
| 216 | try { |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 217 | Log.i(TAG, "Clipboard Service"); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 218 | ServiceManager.addService("clipboard", new ClipboardService(context)); |
| 219 | } catch (Throwable e) { |
| 220 | Log.e(TAG, "Failure starting Clipboard Service", e); |
| 221 | } |
| 222 | |
| 223 | try { |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 224 | Log.i(TAG, "Input Method Service"); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 225 | imm = new InputMethodManagerService(context, statusBar); |
| 226 | ServiceManager.addService(Context.INPUT_METHOD_SERVICE, imm); |
| 227 | } catch (Throwable e) { |
| 228 | Log.e(TAG, "Failure starting Input Manager Service", e); |
| 229 | } |
| 230 | |
| 231 | try { |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 232 | Log.i(TAG, "NetStat Service"); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 233 | ServiceManager.addService("netstat", new NetStatService(context)); |
| 234 | } catch (Throwable e) { |
| 235 | Log.e(TAG, "Failure starting NetStat Service", e); |
| 236 | } |
| 237 | |
| 238 | try { |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 239 | Log.i(TAG, "Connectivity Service"); |
| Mike Lockwood | 0f79b54 | 2009-08-14 14:18:49 -0400 | [diff] [blame] | 240 | connectivity = ConnectivityService.getInstance(context); |
| 241 | ServiceManager.addService(Context.CONNECTIVITY_SERVICE, connectivity); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 242 | } catch (Throwable e) { |
| 243 | Log.e(TAG, "Failure starting Connectivity Service", e); |
| 244 | } |
| 245 | |
| 246 | try { |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 247 | Log.i(TAG, "Accessibility Manager"); |
| svetoslavganov | 75986cf | 2009-05-14 22:28:01 -0700 | [diff] [blame] | 248 | ServiceManager.addService(Context.ACCESSIBILITY_SERVICE, |
| 249 | new AccessibilityManagerService(context)); |
| 250 | } catch (Throwable e) { |
| 251 | Log.e(TAG, "Failure starting Accessibility Manager", e); |
| 252 | } |
| 253 | |
| 254 | try { |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 255 | Log.i(TAG, "Notification Manager"); |
| Joe Onorato | 3027548 | 2009-07-08 17:09:14 -0700 | [diff] [blame] | 256 | notification = new NotificationManagerService(context, statusBar, hardware); |
| 257 | ServiceManager.addService(Context.NOTIFICATION_SERVICE, notification); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 258 | } catch (Throwable e) { |
| 259 | Log.e(TAG, "Failure starting Notification Manager", e); |
| 260 | } |
| 261 | |
| 262 | try { |
| 263 | // MountService must start after NotificationManagerService |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 264 | Log.i(TAG, "Mount Service"); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 265 | ServiceManager.addService("mount", new MountService(context)); |
| 266 | } catch (Throwable e) { |
| 267 | Log.e(TAG, "Failure starting Mount Service", e); |
| 268 | } |
| 269 | |
| 270 | try { |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 271 | Log.i(TAG, "Device Storage Monitor"); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 272 | ServiceManager.addService(DeviceStorageMonitorService.SERVICE, |
| 273 | new DeviceStorageMonitorService(context)); |
| 274 | } catch (Throwable e) { |
| 275 | Log.e(TAG, "Failure starting DeviceStorageMonitor service", e); |
| 276 | } |
| 277 | |
| 278 | try { |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 279 | Log.i(TAG, "Location Manager"); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 280 | ServiceManager.addService(Context.LOCATION_SERVICE, new LocationManagerService(context)); |
| 281 | } catch (Throwable e) { |
| 282 | Log.e(TAG, "Failure starting Location Manager", e); |
| 283 | } |
| 284 | |
| 285 | try { |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 286 | Log.i(TAG, "Search Service"); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 287 | ServiceManager.addService( Context.SEARCH_SERVICE, new SearchManagerService(context) ); |
| 288 | } catch (Throwable e) { |
| 289 | Log.e(TAG, "Failure starting Search Service", e); |
| 290 | } |
| 291 | |
| 292 | if (INCLUDE_DEMO) { |
| 293 | Log.i(TAG, "Installing demo data..."); |
| 294 | (new DemoThread(context)).start(); |
| 295 | } |
| 296 | |
| 297 | try { |
| Dan Egnor | 4410ec8 | 2009-09-11 16:40:01 -0700 | [diff] [blame^] | 298 | Log.i(TAG, "DropBox Service"); |
| 299 | ServiceManager.addService("dropbox", |
| 300 | new DropBoxService(context, new File("/data/system/dropbox"))); |
| 301 | } catch (Throwable e) { |
| 302 | Log.e(TAG, "Failure starting DropBox Service", e); |
| 303 | } |
| 304 | |
| 305 | try { |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 306 | Log.i(TAG, "Checkin Service"); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 307 | Intent intent = new Intent().setComponent(new ComponentName( |
| 308 | "com.google.android.server.checkin", |
| 309 | "com.google.android.server.checkin.CheckinService")); |
| 310 | if (context.startService(intent) == null) { |
| 311 | Log.w(TAG, "Using fallback Checkin Service."); |
| 312 | ServiceManager.addService("checkin", new FallbackCheckinService(context)); |
| 313 | } |
| 314 | } catch (Throwable e) { |
| 315 | Log.e(TAG, "Failure starting Checkin Service", e); |
| 316 | } |
| 317 | |
| 318 | try { |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 319 | Log.i(TAG, "Wallpaper Service"); |
| Dianne Hackborn | f21adf6 | 2009-08-13 10:20:21 -0700 | [diff] [blame] | 320 | wallpaper = new WallpaperManagerService(context); |
| 321 | ServiceManager.addService(Context.WALLPAPER_SERVICE, wallpaper); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 322 | } catch (Throwable e) { |
| 323 | Log.e(TAG, "Failure starting Wallpaper Service", e); |
| 324 | } |
| 325 | |
| 326 | try { |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 327 | Log.i(TAG, "Audio Service"); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 328 | ServiceManager.addService(Context.AUDIO_SERVICE, new AudioService(context)); |
| 329 | } catch (Throwable e) { |
| 330 | Log.e(TAG, "Failure starting Audio Service", e); |
| 331 | } |
| 332 | |
| 333 | try { |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 334 | Log.i(TAG, "Headset Observer"); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 335 | // Listen for wired headset changes |
| 336 | headset = new HeadsetObserver(context); |
| 337 | } catch (Throwable e) { |
| 338 | Log.e(TAG, "Failure starting HeadsetObserver", e); |
| 339 | } |
| 340 | |
| 341 | try { |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 342 | Log.i(TAG, "Dock Observer"); |
| Dan Murphy | c9f4eaf | 2009-08-12 15:15:43 -0500 | [diff] [blame] | 343 | // Listen for dock station changes |
| Ken Schultz | f02c074 | 2009-09-10 18:37:37 -0500 | [diff] [blame] | 344 | dock = new DockObserver(context, power); |
| Dan Murphy | c9f4eaf | 2009-08-12 15:15:43 -0500 | [diff] [blame] | 345 | } catch (Throwable e) { |
| 346 | Log.e(TAG, "Failure starting DockObserver", e); |
| 347 | } |
| 348 | |
| 349 | try { |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 350 | Log.i(TAG, "Backup Service"); |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 351 | ServiceManager.addService(Context.BACKUP_SERVICE, new BackupManagerService(context)); |
| 352 | } catch (Throwable e) { |
| 353 | Log.e(TAG, "Failure starting Backup Service", e); |
| 354 | } |
| 355 | |
| 356 | try { |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 357 | Log.i(TAG, "AppWidget Service"); |
| The Android Open Source Project | c39a6e0 | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 358 | appWidget = new AppWidgetService(context); |
| 359 | ServiceManager.addService(Context.APPWIDGET_SERVICE, appWidget); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 360 | } catch (Throwable e) { |
| The Android Open Source Project | c39a6e0 | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 361 | Log.e(TAG, "Failure starting AppWidget Service", e); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 362 | } |
| 363 | |
| 364 | try { |
| 365 | com.android.server.status.StatusBarPolicy.installIcons(context, statusBar); |
| 366 | } catch (Throwable e) { |
| 367 | Log.e(TAG, "Failure installing status bar icons", e); |
| 368 | } |
| 369 | } |
| 370 | |
| 371 | // make sure the ADB_ENABLED setting value matches the secure property value |
| 372 | Settings.Secure.putInt(mContentResolver, Settings.Secure.ADB_ENABLED, |
| 373 | "1".equals(SystemProperties.get("persist.service.adb.enable")) ? 1 : 0); |
| 374 | |
| 375 | // register observer to listen for settings changes |
| 376 | mContentResolver.registerContentObserver(Settings.Secure.getUriFor(Settings.Secure.ADB_ENABLED), |
| 377 | false, new AdbSettingsObserver()); |
| 378 | |
| Dianne Hackborn | 6af0d50 | 2009-09-28 13:25:46 -0700 | [diff] [blame] | 379 | // Before things start rolling, be sure we have decided whether |
| 380 | // we are in safe mode. |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 381 | final boolean safeMode = wm.detectSafeMode(); |
| Dianne Hackborn | 6af0d50 | 2009-09-28 13:25:46 -0700 | [diff] [blame] | 382 | if (safeMode) { |
| 383 | try { |
| 384 | ActivityManagerNative.getDefault().enterSafeMode(); |
| 385 | } catch (RemoteException e) { |
| 386 | } |
| 387 | } |
| 388 | |
| 389 | // It is now time to start up the app processes... |
| Joe Onorato | 3027548 | 2009-07-08 17:09:14 -0700 | [diff] [blame] | 390 | |
| 391 | if (notification != null) { |
| 392 | notification.systemReady(); |
| 393 | } |
| 394 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 395 | if (statusBar != null) { |
| 396 | statusBar.systemReady(); |
| 397 | } |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 398 | wm.systemReady(); |
| 399 | power.systemReady(); |
| 400 | try { |
| 401 | pm.systemReady(); |
| 402 | } catch (RemoteException e) { |
| 403 | } |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 404 | |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 405 | // These are needed to propagate to the runnable below. |
| 406 | final BatteryService batteryF = battery; |
| 407 | final ConnectivityService connectivityF = connectivity; |
| 408 | final DockObserver dockF = dock; |
| 409 | final AppWidgetService appWidgetF = appWidget; |
| 410 | final WallpaperManagerService wallpaperF = wallpaper; |
| 411 | final InputMethodManagerService immF = imm; |
| 412 | |
| 413 | // We now tell the activity manager it is okay to run third party |
| 414 | // code. It will call back into us once it has gotten to the state |
| 415 | // where third party code can really run (but before it has actually |
| 416 | // started launching the initial applications), for us to complete our |
| 417 | // initialization. |
| 418 | ((ActivityManagerService)ActivityManagerNative.getDefault()) |
| 419 | .systemReady(new Runnable() { |
| 420 | public void run() { |
| 421 | Log.i(TAG, "Making services ready"); |
| 422 | |
| 423 | if (batteryF != null) batteryF.systemReady(); |
| 424 | if (connectivityF != null) connectivityF.systemReady(); |
| 425 | if (dockF != null) dockF.systemReady(); |
| 426 | Watchdog.getInstance().start(); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 427 | |
| Dianne Hackborn | a34f1ad | 2009-09-02 13:26:28 -0700 | [diff] [blame] | 428 | // It is now okay to let the various system services start their |
| 429 | // third party code... |
| 430 | |
| 431 | if (appWidgetF != null) appWidgetF.systemReady(safeMode); |
| 432 | if (wallpaperF != null) wallpaperF.systemReady(); |
| 433 | if (immF != null) immF.systemReady(); |
| 434 | } |
| 435 | }); |
| 436 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 437 | Looper.loop(); |
| 438 | Log.d(TAG, "System ServerThread is exiting!"); |
| 439 | } |
| 440 | } |
| 441 | |
| 442 | class DemoThread extends Thread |
| 443 | { |
| 444 | DemoThread(Context context) |
| 445 | { |
| 446 | mContext = context; |
| 447 | } |
| 448 | |
| 449 | @Override |
| 450 | public void run() |
| 451 | { |
| 452 | try { |
| 453 | Cursor c = mContext.getContentResolver().query(People.CONTENT_URI, null, null, null, null); |
| 454 | boolean hasData = c != null && c.moveToFirst(); |
| 455 | if (c != null) { |
| 456 | c.deactivate(); |
| 457 | } |
| 458 | if (!hasData) { |
| 459 | DemoDataSet dataset = new DemoDataSet(); |
| 460 | dataset.add(mContext); |
| 461 | } |
| 462 | } catch (Throwable e) { |
| 463 | Log.e("SystemServer", "Failure installing demo data", e); |
| 464 | } |
| 465 | |
| 466 | } |
| 467 | |
| 468 | Context mContext; |
| 469 | } |
| 470 | |
| 471 | public class SystemServer |
| 472 | { |
| 473 | private static final String TAG = "SystemServer"; |
| 474 | |
| 475 | public static final int FACTORY_TEST_OFF = 0; |
| 476 | public static final int FACTORY_TEST_LOW_LEVEL = 1; |
| 477 | public static final int FACTORY_TEST_HIGH_LEVEL = 2; |
| Jaikumar Ganesh | d5ac1ae | 2009-05-05 22:26:12 -0700 | [diff] [blame] | 478 | |
| Bob Lee | e540833 | 2009-09-04 18:31:17 -0700 | [diff] [blame] | 479 | static Timer timer; |
| 480 | static final long SNAPSHOT_INTERVAL = 60 * 60 * 1000; // 1hr |
| 481 | |
| Jaikumar Ganesh | d5ac1ae | 2009-05-05 22:26:12 -0700 | [diff] [blame] | 482 | /** |
| 483 | * This method is called from Zygote to initialize the system. This will cause the native |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 484 | * services (SurfaceFlinger, AudioFlinger, etc..) to be started. After that it will call back |
| 485 | * up into init2() to start the Android services. |
| Jaikumar Ganesh | d5ac1ae | 2009-05-05 22:26:12 -0700 | [diff] [blame] | 486 | */ |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 487 | native public static void init1(String[] args); |
| 488 | |
| 489 | public static void main(String[] args) { |
| Bob Lee | e540833 | 2009-09-04 18:31:17 -0700 | [diff] [blame] | 490 | if (SamplingProfilerIntegration.isEnabled()) { |
| 491 | SamplingProfilerIntegration.start(); |
| 492 | timer = new Timer(); |
| 493 | timer.schedule(new TimerTask() { |
| 494 | @Override |
| 495 | public void run() { |
| 496 | SamplingProfilerIntegration.writeSnapshot("system_server"); |
| 497 | } |
| 498 | }, SNAPSHOT_INTERVAL, SNAPSHOT_INTERVAL); |
| 499 | } |
| 500 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 501 | // The system server has to run all of the time, so it needs to be |
| 502 | // as efficient as possible with its memory usage. |
| 503 | VMRuntime.getRuntime().setTargetHeapUtilization(0.8f); |
| Jaikumar Ganesh | d5ac1ae | 2009-05-05 22:26:12 -0700 | [diff] [blame] | 504 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 505 | System.loadLibrary("android_servers"); |
| 506 | init1(args); |
| 507 | } |
| 508 | |
| 509 | public static final void init2() { |
| 510 | Log.i(TAG, "Entered the Android system server!"); |
| 511 | Thread thr = new ServerThread(); |
| 512 | thr.setName("android.server.ServerThread"); |
| 513 | thr.start(); |
| 514 | } |
| 515 | } |