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