blob: 38df02f91fc3a659f71a8185ddf81b7e3e2a3540 [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;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800100 RecognitionManagerService recognition = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800101
102 // Critical services...
103 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700104 Log.i(TAG, "Entropy Service");
Nick Kralevich4fb25612009-06-17 16:03:22 -0700105 ServiceManager.addService("entropy", new EntropyService());
106
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700107 Log.i(TAG, "Power Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800108 power = new PowerManagerService();
109 ServiceManager.addService(Context.POWER_SERVICE, power);
110
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700111 Log.i(TAG, "Activity Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800112 context = ActivityManagerService.main(factoryTest);
113
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700114 Log.i(TAG, "Telephony Registry");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800115 ServiceManager.addService("telephony.registry", new TelephonyRegistry(context));
116
117 AttributeCache.init(context);
118
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700119 Log.i(TAG, "Package Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800120 pm = PackageManagerService.main(context,
121 factoryTest != SystemServer.FACTORY_TEST_OFF);
122
123 ActivityManagerService.setSystemProcess();
124
125 mContentResolver = context.getContentResolver();
126
Fred Quintanae91ebe22009-09-29 20:44:30 -0700127 // The AccountManager must come before the ContentService
Fred Quintana60307342009-03-24 22:48:12 -0700128 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700129 Log.i(TAG, "Account Manager");
Fred Quintana60307342009-03-24 22:48:12 -0700130 ServiceManager.addService(Context.ACCOUNT_SERVICE,
131 new AccountManagerService(context));
132 } catch (Throwable e) {
133 Log.e(TAG, "Failure starting Account Manager", e);
134 }
135
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700136 Log.i(TAG, "Content Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800137 ContentService.main(context,
138 factoryTest == SystemServer.FACTORY_TEST_LOW_LEVEL);
139
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700140 Log.i(TAG, "System Content Providers");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800141 ActivityManagerService.installSystemProviders();
142
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700143 Log.i(TAG, "Battery Service");
Mike Lockwood07a500f2009-08-12 09:56:44 -0400144 battery = new BatteryService(context);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800145 ServiceManager.addService("battery", battery);
146
Mike Lockwood3a322132009-11-24 00:30:52 -0500147 Log.i(TAG, "Lights Service");
148 lights = new LightsService(context);
149
150 Log.i(TAG, "Vibrator Service");
151 ServiceManager.addService("vibrator", new VibratorService(context));
The Android Open Source Project10592532009-03-18 17:39:46 -0700152
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800153 // only initialize the power service after we have started the
Mike Lockwood3a322132009-11-24 00:30:52 -0500154 // lights service, content providers and the battery service.
155 power.init(context, lights, ActivityManagerService.getDefault(), battery);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800156
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700157 Log.i(TAG, "Alarm Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800158 AlarmManagerService alarm = new AlarmManagerService(context);
159 ServiceManager.addService(Context.ALARM_SERVICE, alarm);
160
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700161 Log.i(TAG, "Init Watchdog");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800162 Watchdog.getInstance().init(context, battery, power, alarm,
163 ActivityManagerService.self());
164
165 // Sensor Service is needed by Window Manager, so this goes first
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700166 Log.i(TAG, "Sensor Service");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800167 ServiceManager.addService(Context.SENSOR_SERVICE, new SensorService(context));
168
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700169 Log.i(TAG, "Window Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800170 wm = WindowManagerService.main(context, power,
171 factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL);
172 ServiceManager.addService(Context.WINDOW_SERVICE, wm);
173
174 ((ActivityManagerService)ServiceManager.getService("activity"))
175 .setWindowManager(wm);
176
177 // Skip Bluetooth if we have an emulator kernel
178 // TODO: Use a more reliable check to see if this product should
179 // support Bluetooth - see bug 988521
180 if (SystemProperties.get("ro.kernel.qemu").equals("1")) {
181 Log.i(TAG, "Registering null Bluetooth Service (emulator)");
Nick Pellyf242b7b2009-10-08 00:12:45 +0200182 ServiceManager.addService(BluetoothAdapter.BLUETOOTH_SERVICE, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800183 } else if (factoryTest == SystemServer.FACTORY_TEST_LOW_LEVEL) {
184 Log.i(TAG, "Registering null Bluetooth Service (factory test)");
Nick Pellyf242b7b2009-10-08 00:12:45 +0200185 ServiceManager.addService(BluetoothAdapter.BLUETOOTH_SERVICE, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800186 } else {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700187 Log.i(TAG, "Bluetooth Service");
Nick Pellybd022f42009-08-14 18:33:38 -0700188 bluetooth = new BluetoothService(context);
Nick Pellyf242b7b2009-10-08 00:12:45 +0200189 ServiceManager.addService(BluetoothAdapter.BLUETOOTH_SERVICE, bluetooth);
Nick Pellybd022f42009-08-14 18:33:38 -0700190 bluetooth.initAfterRegistration();
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -0700191 bluetoothA2dp = new BluetoothA2dpService(context, bluetooth);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800192 ServiceManager.addService(BluetoothA2dpService.BLUETOOTH_A2DP_SERVICE,
193 bluetoothA2dp);
194
195 int bluetoothOn = Settings.Secure.getInt(mContentResolver,
196 Settings.Secure.BLUETOOTH_ON, 0);
197 if (bluetoothOn > 0) {
The Android Open Source Project10592532009-03-18 17:39:46 -0700198 bluetooth.enable();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800199 }
200 }
201
202 } catch (RuntimeException e) {
203 Log.e("System", "Failure starting core service", e);
204 }
205
Dianne Hackbornd6847842010-01-12 18:14:19 -0800206 DevicePolicyManagerService devicePolicy = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800207 StatusBarService statusBar = null;
208 InputMethodManagerService imm = null;
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700209 AppWidgetService appWidget = null;
Joe Onorato30275482009-07-08 17:09:14 -0700210 NotificationManagerService notification = null;
Dianne Hackbornf21adf62009-08-13 10:20:21 -0700211 WallpaperManagerService wallpaper = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800212
213 if (factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL) {
214 try {
Dianne Hackbornd6847842010-01-12 18:14:19 -0800215 Log.i(TAG, "Device Policy");
216 devicePolicy = new DevicePolicyManagerService(context);
217 ServiceManager.addService(Context.DEVICE_POLICY_SERVICE, devicePolicy);
218 } catch (Throwable e) {
219 Log.e(TAG, "Failure starting DevicePolicyService", e);
220 }
221
222 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700223 Log.i(TAG, "Status Bar");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800224 statusBar = new StatusBarService(context);
Dianne Hackbornd6847842010-01-12 18:14:19 -0800225 ServiceManager.addService(Context.STATUS_BAR_SERVICE, statusBar);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800226 } catch (Throwable e) {
227 Log.e(TAG, "Failure starting StatusBarService", e);
228 }
229
230 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700231 Log.i(TAG, "Clipboard Service");
Dianne Hackbornd6847842010-01-12 18:14:19 -0800232 ServiceManager.addService(Context.CLIPBOARD_SERVICE,
233 new ClipboardService(context));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800234 } catch (Throwable e) {
235 Log.e(TAG, "Failure starting Clipboard Service", e);
236 }
237
238 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700239 Log.i(TAG, "Input Method Service");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800240 imm = new InputMethodManagerService(context, statusBar);
241 ServiceManager.addService(Context.INPUT_METHOD_SERVICE, imm);
242 } catch (Throwable e) {
243 Log.e(TAG, "Failure starting Input Manager Service", e);
244 }
245
246 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700247 Log.i(TAG, "NetStat Service");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800248 ServiceManager.addService("netstat", new NetStatService(context));
249 } catch (Throwable e) {
250 Log.e(TAG, "Failure starting NetStat Service", e);
251 }
252
253 try {
San Mehatd1df8ac2010-01-26 06:17:26 -0800254 Log.i(TAG, "NetworkManagement Service");
255 ServiceManager.addService(
256 Context.NETWORKMANAGEMENT_SERVICE, new NetworkManagementService(context));
257 } catch (Throwable e) {
258 Log.e(TAG, "Failure starting NetworkManagement Service", e);
259 }
260
261 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700262 Log.i(TAG, "Connectivity Service");
Mike Lockwood0f79b542009-08-14 14:18:49 -0400263 connectivity = ConnectivityService.getInstance(context);
264 ServiceManager.addService(Context.CONNECTIVITY_SERVICE, connectivity);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800265 } catch (Throwable e) {
266 Log.e(TAG, "Failure starting Connectivity Service", e);
267 }
268
269 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700270 Log.i(TAG, "Accessibility Manager");
svetoslavganov75986cf2009-05-14 22:28:01 -0700271 ServiceManager.addService(Context.ACCESSIBILITY_SERVICE,
272 new AccessibilityManagerService(context));
273 } catch (Throwable e) {
274 Log.e(TAG, "Failure starting Accessibility Manager", e);
275 }
276
277 try {
San Mehat1bf3f8b2010-02-03 14:43:09 -0800278 /*
279 * NotificationManagerService is dependant on MountService,
280 * (for media / usb notifications) so we must start MountService first.
281 */
282 Log.i(TAG, "Mount Service");
283 ServiceManager.addService("mount", new MountService(context));
284 } catch (Throwable e) {
285 Log.e(TAG, "Failure starting Mount Service", e);
286 }
287
288 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700289 Log.i(TAG, "Notification Manager");
Mike Lockwood3a322132009-11-24 00:30:52 -0500290 notification = new NotificationManagerService(context, statusBar, lights);
Joe Onorato30275482009-07-08 17:09:14 -0700291 ServiceManager.addService(Context.NOTIFICATION_SERVICE, notification);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800292 } catch (Throwable e) {
293 Log.e(TAG, "Failure starting Notification Manager", e);
294 }
295
296 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700297 Log.i(TAG, "Device Storage Monitor");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800298 ServiceManager.addService(DeviceStorageMonitorService.SERVICE,
299 new DeviceStorageMonitorService(context));
300 } catch (Throwable e) {
301 Log.e(TAG, "Failure starting DeviceStorageMonitor service", e);
302 }
303
304 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700305 Log.i(TAG, "Location Manager");
Dianne Hackbornd6847842010-01-12 18:14:19 -0800306 ServiceManager.addService(Context.LOCATION_SERVICE,
307 new LocationManagerService(context));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800308 } catch (Throwable e) {
309 Log.e(TAG, "Failure starting Location Manager", e);
310 }
311
312 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700313 Log.i(TAG, "Search Service");
Dianne Hackbornd6847842010-01-12 18:14:19 -0800314 ServiceManager.addService(Context.SEARCH_SERVICE,
315 new SearchManagerService(context));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800316 } catch (Throwable e) {
317 Log.e(TAG, "Failure starting Search Service", e);
318 }
319
320 if (INCLUDE_DEMO) {
321 Log.i(TAG, "Installing demo data...");
322 (new DemoThread(context)).start();
323 }
324
325 try {
Dan Egnor4410ec82009-09-11 16:40:01 -0700326 Log.i(TAG, "DropBox Service");
Dan Egnor95240272009-10-27 18:23:39 -0700327 ServiceManager.addService(Context.DROPBOX_SERVICE,
Dan Egnorf18a01c2009-11-12 11:32:50 -0800328 new DropBoxManagerService(context, new File("/data/system/dropbox")));
Dan Egnor4410ec82009-09-11 16:40:01 -0700329 } catch (Throwable e) {
Dan Egnorf18a01c2009-11-12 11:32:50 -0800330 Log.e(TAG, "Failure starting DropBoxManagerService", e);
Dan Egnor4410ec82009-09-11 16:40:01 -0700331 }
332
333 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700334 Log.i(TAG, "Wallpaper Service");
Dianne Hackbornf21adf62009-08-13 10:20:21 -0700335 wallpaper = new WallpaperManagerService(context);
336 ServiceManager.addService(Context.WALLPAPER_SERVICE, wallpaper);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800337 } catch (Throwable e) {
338 Log.e(TAG, "Failure starting Wallpaper Service", e);
339 }
340
341 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700342 Log.i(TAG, "Audio Service");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800343 ServiceManager.addService(Context.AUDIO_SERVICE, new AudioService(context));
344 } catch (Throwable e) {
345 Log.e(TAG, "Failure starting Audio Service", e);
346 }
347
348 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700349 Log.i(TAG, "Headset Observer");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800350 // Listen for wired headset changes
351 headset = new HeadsetObserver(context);
352 } catch (Throwable e) {
353 Log.e(TAG, "Failure starting HeadsetObserver", e);
354 }
355
356 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700357 Log.i(TAG, "Dock Observer");
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500358 // Listen for dock station changes
Ken Schultzf02c0742009-09-10 18:37:37 -0500359 dock = new DockObserver(context, power);
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500360 } catch (Throwable e) {
361 Log.e(TAG, "Failure starting DockObserver", e);
362 }
363
364 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700365 Log.i(TAG, "Backup Service");
Dianne Hackbornd6847842010-01-12 18:14:19 -0800366 ServiceManager.addService(Context.BACKUP_SERVICE,
367 new BackupManagerService(context));
Christopher Tate487529a2009-04-29 14:03:25 -0700368 } catch (Throwable e) {
369 Log.e(TAG, "Failure starting Backup Service", e);
370 }
371
372 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700373 Log.i(TAG, "AppWidget Service");
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700374 appWidget = new AppWidgetService(context);
375 ServiceManager.addService(Context.APPWIDGET_SERVICE, appWidget);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800376 } catch (Throwable e) {
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700377 Log.e(TAG, "Failure starting AppWidget Service", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800378 }
379
380 try {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800381 Log.i(TAG, "Recognition Service");
382 recognition = new RecognitionManagerService(context);
383 } catch (Throwable e) {
384 Log.e(TAG, "Failure starting Recognition Service", e);
385 }
386
387 try {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800388 com.android.server.status.StatusBarPolicy.installIcons(context, statusBar);
389 } catch (Throwable e) {
390 Log.e(TAG, "Failure installing status bar icons", e);
391 }
392 }
393
394 // make sure the ADB_ENABLED setting value matches the secure property value
395 Settings.Secure.putInt(mContentResolver, Settings.Secure.ADB_ENABLED,
396 "1".equals(SystemProperties.get("persist.service.adb.enable")) ? 1 : 0);
397
398 // register observer to listen for settings changes
399 mContentResolver.registerContentObserver(Settings.Secure.getUriFor(Settings.Secure.ADB_ENABLED),
400 false, new AdbSettingsObserver());
401
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700402 // Before things start rolling, be sure we have decided whether
403 // we are in safe mode.
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700404 final boolean safeMode = wm.detectSafeMode();
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700405 if (safeMode) {
406 try {
407 ActivityManagerNative.getDefault().enterSafeMode();
Ben Cheng6c0afff2010-02-14 16:18:56 -0800408 // Post the safe mode state in the Zygote class
409 Zygote.systemInSafeMode = true;
410 // Disable the JIT for the system_server process
411 VMRuntime.getRuntime().disableJitCompilation();
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700412 } catch (RemoteException e) {
413 }
Ben Cheng6c0afff2010-02-14 16:18:56 -0800414 } else {
415 // Enable the JIT for the system_server process
416 VMRuntime.getRuntime().startJitCompilation();
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700417 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800418
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700419 // It is now time to start up the app processes...
Joe Onorato30275482009-07-08 17:09:14 -0700420
Dianne Hackbornd6847842010-01-12 18:14:19 -0800421 if (devicePolicy != null) {
422 devicePolicy.systemReady();
423 }
424
Joe Onorato30275482009-07-08 17:09:14 -0700425 if (notification != null) {
426 notification.systemReady();
427 }
428
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800429 if (statusBar != null) {
430 statusBar.systemReady();
431 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800432 wm.systemReady();
433 power.systemReady();
434 try {
435 pm.systemReady();
436 } catch (RemoteException e) {
437 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800438
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700439 // These are needed to propagate to the runnable below.
440 final BatteryService batteryF = battery;
441 final ConnectivityService connectivityF = connectivity;
442 final DockObserver dockF = dock;
443 final AppWidgetService appWidgetF = appWidget;
444 final WallpaperManagerService wallpaperF = wallpaper;
445 final InputMethodManagerService immF = imm;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800446 final RecognitionManagerService recognitionF = recognition;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800447
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700448 // We now tell the activity manager it is okay to run third party
449 // code. It will call back into us once it has gotten to the state
450 // where third party code can really run (but before it has actually
451 // started launching the initial applications), for us to complete our
452 // initialization.
453 ((ActivityManagerService)ActivityManagerNative.getDefault())
454 .systemReady(new Runnable() {
455 public void run() {
456 Log.i(TAG, "Making services ready");
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800457
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700458 if (batteryF != null) batteryF.systemReady();
459 if (connectivityF != null) connectivityF.systemReady();
460 if (dockF != null) dockF.systemReady();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800461 if (recognitionF != null) recognitionF.systemReady();
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700462 Watchdog.getInstance().start();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800463
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700464 // It is now okay to let the various system services start their
465 // third party code...
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800466
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700467 if (appWidgetF != null) appWidgetF.systemReady(safeMode);
468 if (wallpaperF != null) wallpaperF.systemReady();
469 if (immF != null) immF.systemReady();
470 }
471 });
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800472
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800473 Looper.loop();
474 Log.d(TAG, "System ServerThread is exiting!");
475 }
476}
477
478class DemoThread extends Thread
479{
480 DemoThread(Context context)
481 {
482 mContext = context;
483 }
484
485 @Override
486 public void run()
487 {
488 try {
489 Cursor c = mContext.getContentResolver().query(People.CONTENT_URI, null, null, null, null);
490 boolean hasData = c != null && c.moveToFirst();
491 if (c != null) {
492 c.deactivate();
493 }
494 if (!hasData) {
495 DemoDataSet dataset = new DemoDataSet();
496 dataset.add(mContext);
497 }
498 } catch (Throwable e) {
499 Log.e("SystemServer", "Failure installing demo data", e);
500 }
501
502 }
503
504 Context mContext;
505}
506
507public class SystemServer
508{
509 private static final String TAG = "SystemServer";
510
511 public static final int FACTORY_TEST_OFF = 0;
512 public static final int FACTORY_TEST_LOW_LEVEL = 1;
513 public static final int FACTORY_TEST_HIGH_LEVEL = 2;
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -0700514
Bob Leee5408332009-09-04 18:31:17 -0700515 static Timer timer;
516 static final long SNAPSHOT_INTERVAL = 60 * 60 * 1000; // 1hr
517
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -0700518 /**
519 * 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 -0800520 * services (SurfaceFlinger, AudioFlinger, etc..) to be started. After that it will call back
521 * up into init2() to start the Android services.
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -0700522 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800523 native public static void init1(String[] args);
524
525 public static void main(String[] args) {
Bob Leee5408332009-09-04 18:31:17 -0700526 if (SamplingProfilerIntegration.isEnabled()) {
527 SamplingProfilerIntegration.start();
528 timer = new Timer();
529 timer.schedule(new TimerTask() {
530 @Override
531 public void run() {
532 SamplingProfilerIntegration.writeSnapshot("system_server");
533 }
534 }, SNAPSHOT_INTERVAL, SNAPSHOT_INTERVAL);
535 }
536
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800537 // The system server has to run all of the time, so it needs to be
538 // as efficient as possible with its memory usage.
539 VMRuntime.getRuntime().setTargetHeapUtilization(0.8f);
Dianne Hackborn2a9094d2010-02-03 19:20:09 -0800540
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800541 System.loadLibrary("android_servers");
542 init1(args);
543 }
544
545 public static final void init2() {
546 Log.i(TAG, "Entered the Android system server!");
547 Thread thr = new ServerThread();
548 thr.setName("android.server.ServerThread");
549 thr.start();
550 }
551}