blob: 28b4b28b3a4f7f750c6c53f7d3904c997e07cccb [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
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
17package com.android.server;
18
19import com.android.server.am.ActivityManagerService;
20import com.android.server.status.StatusBarService;
Dianne Hackborn887f3552009-12-07 17:59:37 -080021import com.android.internal.os.BinderInternal;
Bob Leee5408332009-09-04 18:31:17 -070022import com.android.internal.os.SamplingProfilerIntegration;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024import dalvik.system.VMRuntime;
25
26import android.app.ActivityManagerNative;
Nick Pellyf242b7b2009-10-08 00:12:45 +020027import android.bluetooth.BluetoothAdapter;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028import android.content.ComponentName;
29import android.content.ContentResolver;
30import android.content.ContentService;
31import android.content.Context;
32import android.content.Intent;
33import android.content.pm.IPackageManager;
34import android.database.ContentObserver;
35import android.database.Cursor;
36import android.media.AudioService;
Fred Quintana60307342009-03-24 22:48:12 -070037import android.os.*;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080038import android.provider.Contacts.People;
39import android.provider.Settings;
40import android.server.BluetoothA2dpService;
Nick Pellybd022f42009-08-14 18:33:38 -070041import android.server.BluetoothService;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042import android.server.search.SearchManagerService;
43import android.util.EventLog;
44import android.util.Log;
Fred Quintana60307342009-03-24 22:48:12 -070045import android.accounts.AccountManagerService;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080046
Dan Egnor4410ec82009-09-11 16:40:01 -070047import java.io.File;
Bob Leee5408332009-09-04 18:31:17 -070048import java.util.Timer;
49import java.util.TimerTask;
50
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080051class ServerThread extends Thread {
52 private static final String TAG = "SystemServer";
53 private final static boolean INCLUDE_DEMO = false;
54
55 private static final int LOG_BOOT_PROGRESS_SYSTEM_RUN = 3010;
56
57 private ContentResolver mContentResolver;
58
59 private class AdbSettingsObserver extends ContentObserver {
60 public AdbSettingsObserver() {
61 super(null);
62 }
63 @Override
64 public void onChange(boolean selfChange) {
65 boolean enableAdb = (Settings.Secure.getInt(mContentResolver,
66 Settings.Secure.ADB_ENABLED, 0) > 0);
67 // setting this secure property will start or stop adbd
68 SystemProperties.set("persist.service.adb.enable", enableAdb ? "1" : "0");
69 }
70 }
71
72 @Override
73 public void run() {
Doug Zongkerab5c49c2009-12-04 10:31:43 -080074 EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_SYSTEM_RUN,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080075 SystemClock.uptimeMillis());
76
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080077 Looper.prepare();
78
79 android.os.Process.setThreadPriority(
80 android.os.Process.THREAD_PRIORITY_FOREGROUND);
81
Dianne Hackborn887f3552009-12-07 17:59:37 -080082 BinderInternal.disableBackgroundScheduling(true);
83
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080084 String factoryTestStr = SystemProperties.get("ro.factorytest");
85 int factoryTest = "".equals(factoryTestStr) ? SystemServer.FACTORY_TEST_OFF
86 : Integer.parseInt(factoryTestStr);
87
Mike Lockwood3a322132009-11-24 00:30:52 -050088 LightsService lights = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080089 PowerManagerService power = null;
Mike Lockwood07a500f2009-08-12 09:56:44 -040090 BatteryService battery = null;
Mike Lockwood0f79b542009-08-14 14:18:49 -040091 ConnectivityService connectivity = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080092 IPackageManager pm = null;
93 Context context = null;
94 WindowManagerService wm = null;
Nick Pellybd022f42009-08-14 18:33:38 -070095 BluetoothService bluetooth = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080096 BluetoothA2dpService bluetoothA2dp = null;
97 HeadsetObserver headset = null;
Dan Murphyc9f4eaf2009-08-12 15:15:43 -050098 DockObserver dock = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080099
100 // Critical services...
101 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700102 Log.i(TAG, "Entropy Service");
Nick Kralevich4fb25612009-06-17 16:03:22 -0700103 ServiceManager.addService("entropy", new EntropyService());
104
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700105 Log.i(TAG, "Power Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800106 power = new PowerManagerService();
107 ServiceManager.addService(Context.POWER_SERVICE, power);
108
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700109 Log.i(TAG, "Activity Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800110 context = ActivityManagerService.main(factoryTest);
111
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700112 Log.i(TAG, "Telephony Registry");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800113 ServiceManager.addService("telephony.registry", new TelephonyRegistry(context));
114
115 AttributeCache.init(context);
116
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700117 Log.i(TAG, "Package Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800118 pm = PackageManagerService.main(context,
119 factoryTest != SystemServer.FACTORY_TEST_OFF);
120
121 ActivityManagerService.setSystemProcess();
122
123 mContentResolver = context.getContentResolver();
124
Fred Quintanae91ebe22009-09-29 20:44:30 -0700125 // The AccountManager must come before the ContentService
Fred Quintana60307342009-03-24 22:48:12 -0700126 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700127 Log.i(TAG, "Account Manager");
Fred Quintana60307342009-03-24 22:48:12 -0700128 ServiceManager.addService(Context.ACCOUNT_SERVICE,
129 new AccountManagerService(context));
130 } catch (Throwable e) {
131 Log.e(TAG, "Failure starting Account Manager", e);
132 }
133
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700134 Log.i(TAG, "Content Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800135 ContentService.main(context,
136 factoryTest == SystemServer.FACTORY_TEST_LOW_LEVEL);
137
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700138 Log.i(TAG, "System Content Providers");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800139 ActivityManagerService.installSystemProviders();
140
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700141 Log.i(TAG, "Battery Service");
Mike Lockwood07a500f2009-08-12 09:56:44 -0400142 battery = new BatteryService(context);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800143 ServiceManager.addService("battery", battery);
144
Mike Lockwood3a322132009-11-24 00:30:52 -0500145 Log.i(TAG, "Lights Service");
146 lights = new LightsService(context);
147
148 Log.i(TAG, "Vibrator Service");
149 ServiceManager.addService("vibrator", new VibratorService(context));
The Android Open Source Project10592532009-03-18 17:39:46 -0700150
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800151 // only initialize the power service after we have started the
Mike Lockwood3a322132009-11-24 00:30:52 -0500152 // lights service, content providers and the battery service.
153 power.init(context, lights, ActivityManagerService.getDefault(), battery);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800154
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700155 Log.i(TAG, "Alarm Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800156 AlarmManagerService alarm = new AlarmManagerService(context);
157 ServiceManager.addService(Context.ALARM_SERVICE, alarm);
158
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700159 Log.i(TAG, "Init Watchdog");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800160 Watchdog.getInstance().init(context, battery, power, alarm,
161 ActivityManagerService.self());
162
163 // Sensor Service is needed by Window Manager, so this goes first
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700164 Log.i(TAG, "Sensor Service");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800165 ServiceManager.addService(Context.SENSOR_SERVICE, new SensorService(context));
166
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700167 Log.i(TAG, "Window Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800168 wm = WindowManagerService.main(context, power,
169 factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL);
170 ServiceManager.addService(Context.WINDOW_SERVICE, wm);
171
172 ((ActivityManagerService)ServiceManager.getService("activity"))
173 .setWindowManager(wm);
174
175 // Skip Bluetooth if we have an emulator kernel
176 // TODO: Use a more reliable check to see if this product should
177 // support Bluetooth - see bug 988521
178 if (SystemProperties.get("ro.kernel.qemu").equals("1")) {
179 Log.i(TAG, "Registering null Bluetooth Service (emulator)");
Nick Pellyf242b7b2009-10-08 00:12:45 +0200180 ServiceManager.addService(BluetoothAdapter.BLUETOOTH_SERVICE, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800181 } else if (factoryTest == SystemServer.FACTORY_TEST_LOW_LEVEL) {
182 Log.i(TAG, "Registering null Bluetooth Service (factory test)");
Nick Pellyf242b7b2009-10-08 00:12:45 +0200183 ServiceManager.addService(BluetoothAdapter.BLUETOOTH_SERVICE, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800184 } else {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700185 Log.i(TAG, "Bluetooth Service");
Nick Pellybd022f42009-08-14 18:33:38 -0700186 bluetooth = new BluetoothService(context);
Nick Pellyf242b7b2009-10-08 00:12:45 +0200187 ServiceManager.addService(BluetoothAdapter.BLUETOOTH_SERVICE, bluetooth);
Nick Pellybd022f42009-08-14 18:33:38 -0700188 bluetooth.initAfterRegistration();
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -0700189 bluetoothA2dp = new BluetoothA2dpService(context, bluetooth);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800190 ServiceManager.addService(BluetoothA2dpService.BLUETOOTH_A2DP_SERVICE,
191 bluetoothA2dp);
192
193 int bluetoothOn = Settings.Secure.getInt(mContentResolver,
194 Settings.Secure.BLUETOOTH_ON, 0);
195 if (bluetoothOn > 0) {
The Android Open Source Project10592532009-03-18 17:39:46 -0700196 bluetooth.enable();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800197 }
198 }
199
200 } catch (RuntimeException e) {
201 Log.e("System", "Failure starting core service", e);
202 }
203
Dianne Hackbornd6847842010-01-12 18:14:19 -0800204 DevicePolicyManagerService devicePolicy = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800205 StatusBarService statusBar = null;
206 InputMethodManagerService imm = null;
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700207 AppWidgetService appWidget = null;
Joe Onorato30275482009-07-08 17:09:14 -0700208 NotificationManagerService notification = null;
Dianne Hackbornf21adf62009-08-13 10:20:21 -0700209 WallpaperManagerService wallpaper = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800210
211 if (factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL) {
212 try {
Dianne Hackbornd6847842010-01-12 18:14:19 -0800213 Log.i(TAG, "Device Policy");
214 devicePolicy = new DevicePolicyManagerService(context);
215 ServiceManager.addService(Context.DEVICE_POLICY_SERVICE, devicePolicy);
216 } catch (Throwable e) {
217 Log.e(TAG, "Failure starting DevicePolicyService", e);
218 }
219
220 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700221 Log.i(TAG, "Status Bar");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800222 statusBar = new StatusBarService(context);
Dianne Hackbornd6847842010-01-12 18:14:19 -0800223 ServiceManager.addService(Context.STATUS_BAR_SERVICE, statusBar);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800224 } catch (Throwable e) {
225 Log.e(TAG, "Failure starting StatusBarService", e);
226 }
227
228 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700229 Log.i(TAG, "Clipboard Service");
Dianne Hackbornd6847842010-01-12 18:14:19 -0800230 ServiceManager.addService(Context.CLIPBOARD_SERVICE,
231 new ClipboardService(context));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800232 } catch (Throwable e) {
233 Log.e(TAG, "Failure starting Clipboard Service", e);
234 }
235
236 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700237 Log.i(TAG, "Input Method Service");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800238 imm = new InputMethodManagerService(context, statusBar);
239 ServiceManager.addService(Context.INPUT_METHOD_SERVICE, imm);
240 } catch (Throwable e) {
241 Log.e(TAG, "Failure starting Input Manager Service", e);
242 }
243
244 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700245 Log.i(TAG, "NetStat Service");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800246 ServiceManager.addService("netstat", new NetStatService(context));
247 } catch (Throwable e) {
248 Log.e(TAG, "Failure starting NetStat Service", e);
249 }
250
251 try {
San Mehatd1df8ac2010-01-26 06:17:26 -0800252 Log.i(TAG, "NetworkManagement Service");
253 ServiceManager.addService(
254 Context.NETWORKMANAGEMENT_SERVICE, new NetworkManagementService(context));
255 } catch (Throwable e) {
256 Log.e(TAG, "Failure starting NetworkManagement Service", e);
257 }
258
259 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700260 Log.i(TAG, "Connectivity Service");
Mike Lockwood0f79b542009-08-14 14:18:49 -0400261 connectivity = ConnectivityService.getInstance(context);
262 ServiceManager.addService(Context.CONNECTIVITY_SERVICE, connectivity);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800263 } catch (Throwable e) {
264 Log.e(TAG, "Failure starting Connectivity Service", e);
265 }
266
267 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700268 Log.i(TAG, "Accessibility Manager");
svetoslavganov75986cf2009-05-14 22:28:01 -0700269 ServiceManager.addService(Context.ACCESSIBILITY_SERVICE,
270 new AccessibilityManagerService(context));
271 } catch (Throwable e) {
272 Log.e(TAG, "Failure starting Accessibility Manager", e);
273 }
274
275 try {
San Mehat1bf3f8b2010-02-03 14:43:09 -0800276 /*
277 * NotificationManagerService is dependant on MountService,
278 * (for media / usb notifications) so we must start MountService first.
279 */
280 Log.i(TAG, "Mount Service");
281 ServiceManager.addService("mount", new MountService(context));
282 } catch (Throwable e) {
283 Log.e(TAG, "Failure starting Mount Service", e);
284 }
285
286 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700287 Log.i(TAG, "Notification Manager");
Mike Lockwood3a322132009-11-24 00:30:52 -0500288 notification = new NotificationManagerService(context, statusBar, lights);
Joe Onorato30275482009-07-08 17:09:14 -0700289 ServiceManager.addService(Context.NOTIFICATION_SERVICE, notification);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800290 } catch (Throwable e) {
291 Log.e(TAG, "Failure starting Notification Manager", e);
292 }
293
294 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700295 Log.i(TAG, "Device Storage Monitor");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800296 ServiceManager.addService(DeviceStorageMonitorService.SERVICE,
297 new DeviceStorageMonitorService(context));
298 } catch (Throwable e) {
299 Log.e(TAG, "Failure starting DeviceStorageMonitor service", e);
300 }
301
302 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700303 Log.i(TAG, "Location Manager");
Dianne Hackbornd6847842010-01-12 18:14:19 -0800304 ServiceManager.addService(Context.LOCATION_SERVICE,
305 new LocationManagerService(context));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800306 } catch (Throwable e) {
307 Log.e(TAG, "Failure starting Location Manager", e);
308 }
309
310 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700311 Log.i(TAG, "Search Service");
Dianne Hackbornd6847842010-01-12 18:14:19 -0800312 ServiceManager.addService(Context.SEARCH_SERVICE,
313 new SearchManagerService(context));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800314 } catch (Throwable e) {
315 Log.e(TAG, "Failure starting Search Service", e);
316 }
317
318 if (INCLUDE_DEMO) {
319 Log.i(TAG, "Installing demo data...");
320 (new DemoThread(context)).start();
321 }
322
323 try {
Dan Egnor4410ec82009-09-11 16:40:01 -0700324 Log.i(TAG, "DropBox Service");
Dan Egnor95240272009-10-27 18:23:39 -0700325 ServiceManager.addService(Context.DROPBOX_SERVICE,
Dan Egnorf18a01c2009-11-12 11:32:50 -0800326 new DropBoxManagerService(context, new File("/data/system/dropbox")));
Dan Egnor4410ec82009-09-11 16:40:01 -0700327 } catch (Throwable e) {
Dan Egnorf18a01c2009-11-12 11:32:50 -0800328 Log.e(TAG, "Failure starting DropBoxManagerService", e);
Dan Egnor4410ec82009-09-11 16:40:01 -0700329 }
330
331 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700332 Log.i(TAG, "Wallpaper Service");
Dianne Hackbornf21adf62009-08-13 10:20:21 -0700333 wallpaper = new WallpaperManagerService(context);
334 ServiceManager.addService(Context.WALLPAPER_SERVICE, wallpaper);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800335 } catch (Throwable e) {
336 Log.e(TAG, "Failure starting Wallpaper Service", e);
337 }
338
339 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700340 Log.i(TAG, "Audio Service");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800341 ServiceManager.addService(Context.AUDIO_SERVICE, new AudioService(context));
342 } catch (Throwable e) {
343 Log.e(TAG, "Failure starting Audio Service", e);
344 }
345
346 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700347 Log.i(TAG, "Headset Observer");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800348 // Listen for wired headset changes
349 headset = new HeadsetObserver(context);
350 } catch (Throwable e) {
351 Log.e(TAG, "Failure starting HeadsetObserver", e);
352 }
353
354 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700355 Log.i(TAG, "Dock Observer");
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500356 // Listen for dock station changes
Ken Schultzf02c0742009-09-10 18:37:37 -0500357 dock = new DockObserver(context, power);
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500358 } catch (Throwable e) {
359 Log.e(TAG, "Failure starting DockObserver", e);
360 }
361
362 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700363 Log.i(TAG, "Backup Service");
Dianne Hackbornd6847842010-01-12 18:14:19 -0800364 ServiceManager.addService(Context.BACKUP_SERVICE,
365 new BackupManagerService(context));
Christopher Tate487529a2009-04-29 14:03:25 -0700366 } catch (Throwable e) {
367 Log.e(TAG, "Failure starting Backup Service", e);
368 }
369
370 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700371 Log.i(TAG, "AppWidget Service");
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700372 appWidget = new AppWidgetService(context);
373 ServiceManager.addService(Context.APPWIDGET_SERVICE, appWidget);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800374 } catch (Throwable e) {
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700375 Log.e(TAG, "Failure starting AppWidget Service", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800376 }
377
378 try {
379 com.android.server.status.StatusBarPolicy.installIcons(context, statusBar);
380 } catch (Throwable e) {
381 Log.e(TAG, "Failure installing status bar icons", e);
382 }
383 }
384
385 // make sure the ADB_ENABLED setting value matches the secure property value
386 Settings.Secure.putInt(mContentResolver, Settings.Secure.ADB_ENABLED,
387 "1".equals(SystemProperties.get("persist.service.adb.enable")) ? 1 : 0);
388
389 // register observer to listen for settings changes
390 mContentResolver.registerContentObserver(Settings.Secure.getUriFor(Settings.Secure.ADB_ENABLED),
391 false, new AdbSettingsObserver());
392
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700393 // Before things start rolling, be sure we have decided whether
394 // we are in safe mode.
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700395 final boolean safeMode = wm.detectSafeMode();
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700396 if (safeMode) {
397 try {
398 ActivityManagerNative.getDefault().enterSafeMode();
399 } catch (RemoteException e) {
400 }
401 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800402
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700403 // It is now time to start up the app processes...
Joe Onorato30275482009-07-08 17:09:14 -0700404
Dianne Hackbornd6847842010-01-12 18:14:19 -0800405 if (devicePolicy != null) {
406 devicePolicy.systemReady();
407 }
408
Joe Onorato30275482009-07-08 17:09:14 -0700409 if (notification != null) {
410 notification.systemReady();
411 }
412
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800413 if (statusBar != null) {
414 statusBar.systemReady();
415 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800416 wm.systemReady();
417 power.systemReady();
418 try {
419 pm.systemReady();
420 } catch (RemoteException e) {
421 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800422
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700423 // These are needed to propagate to the runnable below.
424 final BatteryService batteryF = battery;
425 final ConnectivityService connectivityF = connectivity;
426 final DockObserver dockF = dock;
427 final AppWidgetService appWidgetF = appWidget;
428 final WallpaperManagerService wallpaperF = wallpaper;
429 final InputMethodManagerService immF = imm;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800430
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700431 // We now tell the activity manager it is okay to run third party
432 // code. It will call back into us once it has gotten to the state
433 // where third party code can really run (but before it has actually
434 // started launching the initial applications), for us to complete our
435 // initialization.
436 ((ActivityManagerService)ActivityManagerNative.getDefault())
437 .systemReady(new Runnable() {
438 public void run() {
439 Log.i(TAG, "Making services ready");
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800440
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700441 if (batteryF != null) batteryF.systemReady();
442 if (connectivityF != null) connectivityF.systemReady();
443 if (dockF != null) dockF.systemReady();
444 Watchdog.getInstance().start();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800445
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700446 // It is now okay to let the various system services start their
447 // third party code...
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800448
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700449 if (appWidgetF != null) appWidgetF.systemReady(safeMode);
450 if (wallpaperF != null) wallpaperF.systemReady();
451 if (immF != null) immF.systemReady();
452 }
453 });
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800454
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800455 Looper.loop();
456 Log.d(TAG, "System ServerThread is exiting!");
457 }
458}
459
460class DemoThread extends Thread
461{
462 DemoThread(Context context)
463 {
464 mContext = context;
465 }
466
467 @Override
468 public void run()
469 {
470 try {
471 Cursor c = mContext.getContentResolver().query(People.CONTENT_URI, null, null, null, null);
472 boolean hasData = c != null && c.moveToFirst();
473 if (c != null) {
474 c.deactivate();
475 }
476 if (!hasData) {
477 DemoDataSet dataset = new DemoDataSet();
478 dataset.add(mContext);
479 }
480 } catch (Throwable e) {
481 Log.e("SystemServer", "Failure installing demo data", e);
482 }
483
484 }
485
486 Context mContext;
487}
488
489public class SystemServer
490{
491 private static final String TAG = "SystemServer";
492
493 public static final int FACTORY_TEST_OFF = 0;
494 public static final int FACTORY_TEST_LOW_LEVEL = 1;
495 public static final int FACTORY_TEST_HIGH_LEVEL = 2;
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -0700496
Bob Leee5408332009-09-04 18:31:17 -0700497 static Timer timer;
498 static final long SNAPSHOT_INTERVAL = 60 * 60 * 1000; // 1hr
499
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -0700500 /**
501 * This method is called from Zygote to initialize the system. This will cause the native
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800502 * services (SurfaceFlinger, AudioFlinger, etc..) to be started. After that it will call back
503 * up into init2() to start the Android services.
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -0700504 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800505 native public static void init1(String[] args);
506
507 public static void main(String[] args) {
Bob Leee5408332009-09-04 18:31:17 -0700508 if (SamplingProfilerIntegration.isEnabled()) {
509 SamplingProfilerIntegration.start();
510 timer = new Timer();
511 timer.schedule(new TimerTask() {
512 @Override
513 public void run() {
514 SamplingProfilerIntegration.writeSnapshot("system_server");
515 }
516 }, SNAPSHOT_INTERVAL, SNAPSHOT_INTERVAL);
517 }
518
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800519 // The system server has to run all of the time, so it needs to be
520 // as efficient as possible with its memory usage.
521 VMRuntime.getRuntime().setTargetHeapUtilization(0.8f);
Dianne Hackborn2a9094d2010-02-03 19:20:09 -0800522 VMRuntime.getRuntime().startJitCompilation();
523
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800524 System.loadLibrary("android_servers");
525 init1(args);
526 }
527
528 public static final void init2() {
529 Log.i(TAG, "Entered the Android system server!");
530 Thread thr = new ServerThread();
531 thr.setName("android.server.ServerThread");
532 thr.start();
533 }
534}