blob: a09896a2b367c0435c4007f3041142ed7019ae5d [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;
Ben Cheng6c0afff2010-02-14 16:18:56 -080025import dalvik.system.Zygote;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026
27import android.app.ActivityManagerNative;
Nick Pellyf242b7b2009-10-08 00:12:45 +020028import android.bluetooth.BluetoothAdapter;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029import android.content.ComponentName;
30import android.content.ContentResolver;
31import android.content.ContentService;
32import android.content.Context;
33import android.content.Intent;
34import android.content.pm.IPackageManager;
35import android.database.ContentObserver;
36import android.database.Cursor;
37import android.media.AudioService;
Fred Quintana60307342009-03-24 22:48:12 -070038import android.os.*;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039import android.provider.Contacts.People;
40import android.provider.Settings;
41import android.server.BluetoothA2dpService;
Nick Pellybd022f42009-08-14 18:33:38 -070042import android.server.BluetoothService;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080043import android.server.search.SearchManagerService;
44import android.util.EventLog;
45import android.util.Log;
Fred Quintana60307342009-03-24 22:48:12 -070046import android.accounts.AccountManagerService;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080047
Dan Egnor4410ec82009-09-11 16:40:01 -070048import java.io.File;
Bob Leee5408332009-09-04 18:31:17 -070049import java.util.Timer;
50import java.util.TimerTask;
51
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052class ServerThread extends Thread {
53 private static final String TAG = "SystemServer";
54 private final static boolean INCLUDE_DEMO = false;
55
56 private static final int LOG_BOOT_PROGRESS_SYSTEM_RUN = 3010;
57
58 private ContentResolver mContentResolver;
59
60 private class AdbSettingsObserver extends ContentObserver {
61 public AdbSettingsObserver() {
62 super(null);
63 }
64 @Override
65 public void onChange(boolean selfChange) {
66 boolean enableAdb = (Settings.Secure.getInt(mContentResolver,
67 Settings.Secure.ADB_ENABLED, 0) > 0);
68 // setting this secure property will start or stop adbd
69 SystemProperties.set("persist.service.adb.enable", enableAdb ? "1" : "0");
70 }
71 }
72
73 @Override
74 public void run() {
Doug Zongkerab5c49c2009-12-04 10:31:43 -080075 EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_SYSTEM_RUN,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080076 SystemClock.uptimeMillis());
77
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080078 Looper.prepare();
79
80 android.os.Process.setThreadPriority(
81 android.os.Process.THREAD_PRIORITY_FOREGROUND);
82
Dianne Hackborn887f3552009-12-07 17:59:37 -080083 BinderInternal.disableBackgroundScheduling(true);
84
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080085 String factoryTestStr = SystemProperties.get("ro.factorytest");
86 int factoryTest = "".equals(factoryTestStr) ? SystemServer.FACTORY_TEST_OFF
87 : Integer.parseInt(factoryTestStr);
88
Mike Lockwood3a322132009-11-24 00:30:52 -050089 LightsService lights = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080090 PowerManagerService power = null;
Mike Lockwood07a500f2009-08-12 09:56:44 -040091 BatteryService battery = null;
Mike Lockwood0f79b542009-08-14 14:18:49 -040092 ConnectivityService connectivity = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080093 IPackageManager pm = null;
94 Context context = null;
95 WindowManagerService wm = null;
Nick Pellybd022f42009-08-14 18:33:38 -070096 BluetoothService bluetooth = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080097 BluetoothA2dpService bluetoothA2dp = null;
98 HeadsetObserver headset = null;
Dan Murphyc9f4eaf2009-08-12 15:15:43 -050099 DockObserver dock = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800100
101 // Critical services...
102 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700103 Log.i(TAG, "Entropy Service");
Nick Kralevich4fb25612009-06-17 16:03:22 -0700104 ServiceManager.addService("entropy", new EntropyService());
105
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700106 Log.i(TAG, "Power Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800107 power = new PowerManagerService();
108 ServiceManager.addService(Context.POWER_SERVICE, power);
109
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700110 Log.i(TAG, "Activity Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800111 context = ActivityManagerService.main(factoryTest);
112
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700113 Log.i(TAG, "Telephony Registry");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800114 ServiceManager.addService("telephony.registry", new TelephonyRegistry(context));
115
116 AttributeCache.init(context);
117
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700118 Log.i(TAG, "Package Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800119 pm = PackageManagerService.main(context,
120 factoryTest != SystemServer.FACTORY_TEST_OFF);
121
122 ActivityManagerService.setSystemProcess();
123
124 mContentResolver = context.getContentResolver();
125
Fred Quintanae91ebe22009-09-29 20:44:30 -0700126 // The AccountManager must come before the ContentService
Fred Quintana60307342009-03-24 22:48:12 -0700127 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700128 Log.i(TAG, "Account Manager");
Fred Quintana60307342009-03-24 22:48:12 -0700129 ServiceManager.addService(Context.ACCOUNT_SERVICE,
130 new AccountManagerService(context));
131 } catch (Throwable e) {
132 Log.e(TAG, "Failure starting Account Manager", e);
133 }
134
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700135 Log.i(TAG, "Content Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800136 ContentService.main(context,
137 factoryTest == SystemServer.FACTORY_TEST_LOW_LEVEL);
138
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700139 Log.i(TAG, "System Content Providers");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800140 ActivityManagerService.installSystemProviders();
141
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700142 Log.i(TAG, "Battery Service");
Mike Lockwood07a500f2009-08-12 09:56:44 -0400143 battery = new BatteryService(context);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800144 ServiceManager.addService("battery", battery);
145
Mike Lockwood3a322132009-11-24 00:30:52 -0500146 Log.i(TAG, "Lights Service");
147 lights = new LightsService(context);
148
149 Log.i(TAG, "Vibrator Service");
150 ServiceManager.addService("vibrator", new VibratorService(context));
The Android Open Source Project10592532009-03-18 17:39:46 -0700151
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800152 // only initialize the power service after we have started the
Mike Lockwood3a322132009-11-24 00:30:52 -0500153 // lights service, content providers and the battery service.
154 power.init(context, lights, ActivityManagerService.getDefault(), battery);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800155
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700156 Log.i(TAG, "Alarm Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800157 AlarmManagerService alarm = new AlarmManagerService(context);
158 ServiceManager.addService(Context.ALARM_SERVICE, alarm);
159
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700160 Log.i(TAG, "Init Watchdog");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800161 Watchdog.getInstance().init(context, battery, power, alarm,
162 ActivityManagerService.self());
163
164 // Sensor Service is needed by Window Manager, so this goes first
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700165 Log.i(TAG, "Sensor Service");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800166 ServiceManager.addService(Context.SENSOR_SERVICE, new SensorService(context));
167
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700168 Log.i(TAG, "Window Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800169 wm = WindowManagerService.main(context, power,
170 factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL);
171 ServiceManager.addService(Context.WINDOW_SERVICE, wm);
172
173 ((ActivityManagerService)ServiceManager.getService("activity"))
174 .setWindowManager(wm);
175
176 // Skip Bluetooth if we have an emulator kernel
177 // TODO: Use a more reliable check to see if this product should
178 // support Bluetooth - see bug 988521
179 if (SystemProperties.get("ro.kernel.qemu").equals("1")) {
180 Log.i(TAG, "Registering null Bluetooth Service (emulator)");
Nick Pellyf242b7b2009-10-08 00:12:45 +0200181 ServiceManager.addService(BluetoothAdapter.BLUETOOTH_SERVICE, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800182 } else if (factoryTest == SystemServer.FACTORY_TEST_LOW_LEVEL) {
183 Log.i(TAG, "Registering null Bluetooth Service (factory test)");
Nick Pellyf242b7b2009-10-08 00:12:45 +0200184 ServiceManager.addService(BluetoothAdapter.BLUETOOTH_SERVICE, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800185 } else {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700186 Log.i(TAG, "Bluetooth Service");
Nick Pellybd022f42009-08-14 18:33:38 -0700187 bluetooth = new BluetoothService(context);
Nick Pellyf242b7b2009-10-08 00:12:45 +0200188 ServiceManager.addService(BluetoothAdapter.BLUETOOTH_SERVICE, bluetooth);
Nick Pellybd022f42009-08-14 18:33:38 -0700189 bluetooth.initAfterRegistration();
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -0700190 bluetoothA2dp = new BluetoothA2dpService(context, bluetooth);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800191 ServiceManager.addService(BluetoothA2dpService.BLUETOOTH_A2DP_SERVICE,
192 bluetoothA2dp);
193
194 int bluetoothOn = Settings.Secure.getInt(mContentResolver,
195 Settings.Secure.BLUETOOTH_ON, 0);
196 if (bluetoothOn > 0) {
The Android Open Source Project10592532009-03-18 17:39:46 -0700197 bluetooth.enable();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800198 }
199 }
200
201 } catch (RuntimeException e) {
202 Log.e("System", "Failure starting core service", e);
203 }
204
Dianne Hackbornd6847842010-01-12 18:14:19 -0800205 DevicePolicyManagerService devicePolicy = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800206 StatusBarService statusBar = null;
207 InputMethodManagerService imm = null;
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700208 AppWidgetService appWidget = null;
Joe Onorato30275482009-07-08 17:09:14 -0700209 NotificationManagerService notification = null;
Dianne Hackbornf21adf62009-08-13 10:20:21 -0700210 WallpaperManagerService wallpaper = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800211
212 if (factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL) {
213 try {
Dianne Hackbornd6847842010-01-12 18:14:19 -0800214 Log.i(TAG, "Device Policy");
215 devicePolicy = new DevicePolicyManagerService(context);
216 ServiceManager.addService(Context.DEVICE_POLICY_SERVICE, devicePolicy);
217 } catch (Throwable e) {
218 Log.e(TAG, "Failure starting DevicePolicyService", e);
219 }
220
221 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700222 Log.i(TAG, "Status Bar");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800223 statusBar = new StatusBarService(context);
Dianne Hackbornd6847842010-01-12 18:14:19 -0800224 ServiceManager.addService(Context.STATUS_BAR_SERVICE, statusBar);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800225 } catch (Throwable e) {
226 Log.e(TAG, "Failure starting StatusBarService", e);
227 }
228
229 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700230 Log.i(TAG, "Clipboard Service");
Dianne Hackbornd6847842010-01-12 18:14:19 -0800231 ServiceManager.addService(Context.CLIPBOARD_SERVICE,
232 new ClipboardService(context));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800233 } catch (Throwable e) {
234 Log.e(TAG, "Failure starting Clipboard Service", e);
235 }
236
237 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700238 Log.i(TAG, "Input Method Service");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800239 imm = new InputMethodManagerService(context, statusBar);
240 ServiceManager.addService(Context.INPUT_METHOD_SERVICE, imm);
241 } catch (Throwable e) {
242 Log.e(TAG, "Failure starting Input Manager Service", e);
243 }
244
245 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700246 Log.i(TAG, "NetStat Service");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800247 ServiceManager.addService("netstat", new NetStatService(context));
248 } catch (Throwable e) {
249 Log.e(TAG, "Failure starting NetStat Service", e);
250 }
251
252 try {
San Mehatd1df8ac2010-01-26 06:17:26 -0800253 Log.i(TAG, "NetworkManagement Service");
254 ServiceManager.addService(
255 Context.NETWORKMANAGEMENT_SERVICE, new NetworkManagementService(context));
256 } catch (Throwable e) {
257 Log.e(TAG, "Failure starting NetworkManagement Service", e);
258 }
259
260 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700261 Log.i(TAG, "Connectivity Service");
Mike Lockwood0f79b542009-08-14 14:18:49 -0400262 connectivity = ConnectivityService.getInstance(context);
263 ServiceManager.addService(Context.CONNECTIVITY_SERVICE, connectivity);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800264 } catch (Throwable e) {
265 Log.e(TAG, "Failure starting Connectivity Service", e);
266 }
267
268 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700269 Log.i(TAG, "Accessibility Manager");
svetoslavganov75986cf2009-05-14 22:28:01 -0700270 ServiceManager.addService(Context.ACCESSIBILITY_SERVICE,
271 new AccessibilityManagerService(context));
272 } catch (Throwable e) {
273 Log.e(TAG, "Failure starting Accessibility Manager", e);
274 }
275
276 try {
San Mehat1bf3f8b2010-02-03 14:43:09 -0800277 /*
278 * NotificationManagerService is dependant on MountService,
279 * (for media / usb notifications) so we must start MountService first.
280 */
281 Log.i(TAG, "Mount Service");
282 ServiceManager.addService("mount", new MountService(context));
283 } catch (Throwable e) {
284 Log.e(TAG, "Failure starting Mount Service", e);
285 }
286
287 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700288 Log.i(TAG, "Notification Manager");
Mike Lockwood3a322132009-11-24 00:30:52 -0500289 notification = new NotificationManagerService(context, statusBar, lights);
Joe Onorato30275482009-07-08 17:09:14 -0700290 ServiceManager.addService(Context.NOTIFICATION_SERVICE, notification);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800291 } catch (Throwable e) {
292 Log.e(TAG, "Failure starting Notification Manager", e);
293 }
294
295 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700296 Log.i(TAG, "Device Storage Monitor");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800297 ServiceManager.addService(DeviceStorageMonitorService.SERVICE,
298 new DeviceStorageMonitorService(context));
299 } catch (Throwable e) {
300 Log.e(TAG, "Failure starting DeviceStorageMonitor service", e);
301 }
302
303 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700304 Log.i(TAG, "Location Manager");
Dianne Hackbornd6847842010-01-12 18:14:19 -0800305 ServiceManager.addService(Context.LOCATION_SERVICE,
306 new LocationManagerService(context));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800307 } catch (Throwable e) {
308 Log.e(TAG, "Failure starting Location Manager", e);
309 }
310
311 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700312 Log.i(TAG, "Search Service");
Dianne Hackbornd6847842010-01-12 18:14:19 -0800313 ServiceManager.addService(Context.SEARCH_SERVICE,
314 new SearchManagerService(context));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800315 } catch (Throwable e) {
316 Log.e(TAG, "Failure starting Search Service", e);
317 }
318
319 if (INCLUDE_DEMO) {
320 Log.i(TAG, "Installing demo data...");
321 (new DemoThread(context)).start();
322 }
323
324 try {
Dan Egnor4410ec82009-09-11 16:40:01 -0700325 Log.i(TAG, "DropBox Service");
Dan Egnor95240272009-10-27 18:23:39 -0700326 ServiceManager.addService(Context.DROPBOX_SERVICE,
Dan Egnorf18a01c2009-11-12 11:32:50 -0800327 new DropBoxManagerService(context, new File("/data/system/dropbox")));
Dan Egnor4410ec82009-09-11 16:40:01 -0700328 } catch (Throwable e) {
Dan Egnorf18a01c2009-11-12 11:32:50 -0800329 Log.e(TAG, "Failure starting DropBoxManagerService", e);
Dan Egnor4410ec82009-09-11 16:40:01 -0700330 }
331
332 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700333 Log.i(TAG, "Wallpaper Service");
Dianne Hackbornf21adf62009-08-13 10:20:21 -0700334 wallpaper = new WallpaperManagerService(context);
335 ServiceManager.addService(Context.WALLPAPER_SERVICE, wallpaper);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800336 } catch (Throwable e) {
337 Log.e(TAG, "Failure starting Wallpaper Service", e);
338 }
339
340 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700341 Log.i(TAG, "Audio Service");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800342 ServiceManager.addService(Context.AUDIO_SERVICE, new AudioService(context));
343 } catch (Throwable e) {
344 Log.e(TAG, "Failure starting Audio Service", e);
345 }
346
347 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700348 Log.i(TAG, "Headset Observer");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800349 // Listen for wired headset changes
350 headset = new HeadsetObserver(context);
351 } catch (Throwable e) {
352 Log.e(TAG, "Failure starting HeadsetObserver", e);
353 }
354
355 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700356 Log.i(TAG, "Dock Observer");
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500357 // Listen for dock station changes
Ken Schultzf02c0742009-09-10 18:37:37 -0500358 dock = new DockObserver(context, power);
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500359 } catch (Throwable e) {
360 Log.e(TAG, "Failure starting DockObserver", e);
361 }
362
363 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700364 Log.i(TAG, "Backup Service");
Dianne Hackbornd6847842010-01-12 18:14:19 -0800365 ServiceManager.addService(Context.BACKUP_SERVICE,
366 new BackupManagerService(context));
Christopher Tate487529a2009-04-29 14:03:25 -0700367 } catch (Throwable e) {
368 Log.e(TAG, "Failure starting Backup Service", e);
369 }
370
371 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700372 Log.i(TAG, "AppWidget Service");
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700373 appWidget = new AppWidgetService(context);
374 ServiceManager.addService(Context.APPWIDGET_SERVICE, appWidget);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800375 } catch (Throwable e) {
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700376 Log.e(TAG, "Failure starting AppWidget Service", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800377 }
378
379 try {
380 com.android.server.status.StatusBarPolicy.installIcons(context, statusBar);
381 } catch (Throwable e) {
382 Log.e(TAG, "Failure installing status bar icons", e);
383 }
384 }
385
386 // make sure the ADB_ENABLED setting value matches the secure property value
387 Settings.Secure.putInt(mContentResolver, Settings.Secure.ADB_ENABLED,
388 "1".equals(SystemProperties.get("persist.service.adb.enable")) ? 1 : 0);
389
390 // register observer to listen for settings changes
391 mContentResolver.registerContentObserver(Settings.Secure.getUriFor(Settings.Secure.ADB_ENABLED),
392 false, new AdbSettingsObserver());
393
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700394 // Before things start rolling, be sure we have decided whether
395 // we are in safe mode.
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700396 final boolean safeMode = wm.detectSafeMode();
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700397 if (safeMode) {
398 try {
399 ActivityManagerNative.getDefault().enterSafeMode();
Ben Cheng6c0afff2010-02-14 16:18:56 -0800400 // Post the safe mode state in the Zygote class
401 Zygote.systemInSafeMode = true;
402 // Disable the JIT for the system_server process
403 VMRuntime.getRuntime().disableJitCompilation();
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700404 } catch (RemoteException e) {
405 }
Ben Cheng6c0afff2010-02-14 16:18:56 -0800406 } else {
407 // Enable the JIT for the system_server process
408 VMRuntime.getRuntime().startJitCompilation();
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700409 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800410
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700411 // It is now time to start up the app processes...
Joe Onorato30275482009-07-08 17:09:14 -0700412
Dianne Hackbornd6847842010-01-12 18:14:19 -0800413 if (devicePolicy != null) {
414 devicePolicy.systemReady();
415 }
416
Joe Onorato30275482009-07-08 17:09:14 -0700417 if (notification != null) {
418 notification.systemReady();
419 }
420
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800421 if (statusBar != null) {
422 statusBar.systemReady();
423 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800424 wm.systemReady();
425 power.systemReady();
426 try {
427 pm.systemReady();
428 } catch (RemoteException e) {
429 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800430
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700431 // These are needed to propagate to the runnable below.
432 final BatteryService batteryF = battery;
433 final ConnectivityService connectivityF = connectivity;
434 final DockObserver dockF = dock;
435 final AppWidgetService appWidgetF = appWidget;
436 final WallpaperManagerService wallpaperF = wallpaper;
437 final InputMethodManagerService immF = imm;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800438
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700439 // We now tell the activity manager it is okay to run third party
440 // code. It will call back into us once it has gotten to the state
441 // where third party code can really run (but before it has actually
442 // started launching the initial applications), for us to complete our
443 // initialization.
444 ((ActivityManagerService)ActivityManagerNative.getDefault())
445 .systemReady(new Runnable() {
446 public void run() {
447 Log.i(TAG, "Making services ready");
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800448
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700449 if (batteryF != null) batteryF.systemReady();
450 if (connectivityF != null) connectivityF.systemReady();
451 if (dockF != null) dockF.systemReady();
452 Watchdog.getInstance().start();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800453
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700454 // It is now okay to let the various system services start their
455 // third party code...
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800456
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700457 if (appWidgetF != null) appWidgetF.systemReady(safeMode);
458 if (wallpaperF != null) wallpaperF.systemReady();
459 if (immF != null) immF.systemReady();
460 }
461 });
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800462
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800463 Looper.loop();
464 Log.d(TAG, "System ServerThread is exiting!");
465 }
466}
467
468class DemoThread extends Thread
469{
470 DemoThread(Context context)
471 {
472 mContext = context;
473 }
474
475 @Override
476 public void run()
477 {
478 try {
479 Cursor c = mContext.getContentResolver().query(People.CONTENT_URI, null, null, null, null);
480 boolean hasData = c != null && c.moveToFirst();
481 if (c != null) {
482 c.deactivate();
483 }
484 if (!hasData) {
485 DemoDataSet dataset = new DemoDataSet();
486 dataset.add(mContext);
487 }
488 } catch (Throwable e) {
489 Log.e("SystemServer", "Failure installing demo data", e);
490 }
491
492 }
493
494 Context mContext;
495}
496
497public class SystemServer
498{
499 private static final String TAG = "SystemServer";
500
501 public static final int FACTORY_TEST_OFF = 0;
502 public static final int FACTORY_TEST_LOW_LEVEL = 1;
503 public static final int FACTORY_TEST_HIGH_LEVEL = 2;
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -0700504
Bob Leee5408332009-09-04 18:31:17 -0700505 static Timer timer;
506 static final long SNAPSHOT_INTERVAL = 60 * 60 * 1000; // 1hr
507
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -0700508 /**
509 * 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 -0800510 * services (SurfaceFlinger, AudioFlinger, etc..) to be started. After that it will call back
511 * up into init2() to start the Android services.
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -0700512 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800513 native public static void init1(String[] args);
514
515 public static void main(String[] args) {
Bob Leee5408332009-09-04 18:31:17 -0700516 if (SamplingProfilerIntegration.isEnabled()) {
517 SamplingProfilerIntegration.start();
518 timer = new Timer();
519 timer.schedule(new TimerTask() {
520 @Override
521 public void run() {
522 SamplingProfilerIntegration.writeSnapshot("system_server");
523 }
524 }, SNAPSHOT_INTERVAL, SNAPSHOT_INTERVAL);
525 }
526
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800527 // The system server has to run all of the time, so it needs to be
528 // as efficient as possible with its memory usage.
529 VMRuntime.getRuntime().setTargetHeapUtilization(0.8f);
Dianne Hackborn2a9094d2010-02-03 19:20:09 -0800530
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800531 System.loadLibrary("android_servers");
532 init1(args);
533 }
534
535 public static final void init2() {
536 Log.i(TAG, "Entered the Android system server!");
537 Thread thr = new ServerThread();
538 thr.setName("android.server.ServerThread");
539 thr.start();
540 }
541}