blob: 65b3e3fea19d0e00a0653287cf5c97e2595c51ea [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;
Bob Leee5408332009-09-04 18:31:17 -070021import com.android.internal.os.SamplingProfilerIntegration;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023import dalvik.system.VMRuntime;
24
25import android.app.ActivityManagerNative;
26import android.content.ComponentName;
27import android.content.ContentResolver;
28import android.content.ContentService;
29import android.content.Context;
30import android.content.Intent;
31import android.content.pm.IPackageManager;
32import android.database.ContentObserver;
33import android.database.Cursor;
34import android.media.AudioService;
Fred Quintana60307342009-03-24 22:48:12 -070035import android.os.*;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036import android.provider.Contacts.People;
37import android.provider.Settings;
38import android.server.BluetoothA2dpService;
Nick Pellybd022f42009-08-14 18:33:38 -070039import android.server.BluetoothService;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040import android.server.search.SearchManagerService;
41import android.util.EventLog;
42import android.util.Log;
Fred Quintana60307342009-03-24 22:48:12 -070043import android.accounts.AccountManagerService;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044
Bob Leee5408332009-09-04 18:31:17 -070045import java.util.Timer;
46import java.util.TimerTask;
47
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080048class 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 Project10592532009-03-18 17:39:46 -070085 HardwareService hardware = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080086 PowerManagerService power = null;
Mike Lockwood07a500f2009-08-12 09:56:44 -040087 BatteryService battery = null;
Mike Lockwood0f79b542009-08-14 14:18:49 -040088 ConnectivityService connectivity = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080089 IPackageManager pm = null;
90 Context context = null;
91 WindowManagerService wm = null;
Nick Pellybd022f42009-08-14 18:33:38 -070092 BluetoothService bluetooth = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080093 BluetoothA2dpService bluetoothA2dp = null;
94 HeadsetObserver headset = null;
Dan Murphyc9f4eaf2009-08-12 15:15:43 -050095 DockObserver dock = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080096
97 // Critical services...
98 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -070099 Log.i(TAG, "Entropy Service");
Nick Kralevich4fb25612009-06-17 16:03:22 -0700100 ServiceManager.addService("entropy", new EntropyService());
101
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700102 Log.i(TAG, "Power Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800103 power = new PowerManagerService();
104 ServiceManager.addService(Context.POWER_SERVICE, power);
105
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700106 Log.i(TAG, "Activity Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800107 context = ActivityManagerService.main(factoryTest);
108
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700109 Log.i(TAG, "Telephony Registry");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800110 ServiceManager.addService("telephony.registry", new TelephonyRegistry(context));
111
112 AttributeCache.init(context);
113
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700114 Log.i(TAG, "Package Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800115 pm = PackageManagerService.main(context,
116 factoryTest != SystemServer.FACTORY_TEST_OFF);
117
118 ActivityManagerService.setSystemProcess();
119
120 mContentResolver = context.getContentResolver();
121
Fred Quintana60307342009-03-24 22:48:12 -0700122 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700123 Log.i(TAG, "Account Manager");
Fred Quintana60307342009-03-24 22:48:12 -0700124 ServiceManager.addService(Context.ACCOUNT_SERVICE,
125 new AccountManagerService(context));
126 } catch (Throwable e) {
127 Log.e(TAG, "Failure starting Account Manager", e);
128 }
129
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700130 Log.i(TAG, "Content Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800131 ContentService.main(context,
132 factoryTest == SystemServer.FACTORY_TEST_LOW_LEVEL);
133
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700134 Log.i(TAG, "System Content Providers");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800135 ActivityManagerService.installSystemProviders();
136
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700137 Log.i(TAG, "Battery Service");
Mike Lockwood07a500f2009-08-12 09:56:44 -0400138 battery = new BatteryService(context);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800139 ServiceManager.addService("battery", battery);
140
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700141 Log.i(TAG, "Hardware Service");
The Android Open Source Project10592532009-03-18 17:39:46 -0700142 hardware = new HardwareService(context);
143 ServiceManager.addService("hardware", hardware);
144
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800145 // only initialize the power service after we have started the
The Android Open Source Project10592532009-03-18 17:39:46 -0700146 // hardware service, content providers and the battery service.
147 power.init(context, hardware, ActivityManagerService.getDefault(), battery);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800148
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700149 Log.i(TAG, "Alarm Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800150 AlarmManagerService alarm = new AlarmManagerService(context);
151 ServiceManager.addService(Context.ALARM_SERVICE, alarm);
152
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700153 Log.i(TAG, "Init Watchdog");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800154 Watchdog.getInstance().init(context, battery, power, alarm,
155 ActivityManagerService.self());
156
157 // Sensor Service is needed by Window Manager, so this goes first
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700158 Log.i(TAG, "Sensor Service");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800159 ServiceManager.addService(Context.SENSOR_SERVICE, new SensorService(context));
160
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700161 Log.i(TAG, "Window Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800162 wm = WindowManagerService.main(context, power,
163 factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL);
164 ServiceManager.addService(Context.WINDOW_SERVICE, wm);
165
166 ((ActivityManagerService)ServiceManager.getService("activity"))
167 .setWindowManager(wm);
168
169 // Skip Bluetooth if we have an emulator kernel
170 // TODO: Use a more reliable check to see if this product should
171 // support Bluetooth - see bug 988521
172 if (SystemProperties.get("ro.kernel.qemu").equals("1")) {
173 Log.i(TAG, "Registering null Bluetooth Service (emulator)");
174 ServiceManager.addService(Context.BLUETOOTH_SERVICE, null);
175 } else if (factoryTest == SystemServer.FACTORY_TEST_LOW_LEVEL) {
176 Log.i(TAG, "Registering null Bluetooth Service (factory test)");
177 ServiceManager.addService(Context.BLUETOOTH_SERVICE, null);
178 } else {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700179 Log.i(TAG, "Bluetooth Service");
Nick Pellybd022f42009-08-14 18:33:38 -0700180 bluetooth = new BluetoothService(context);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800181 ServiceManager.addService(Context.BLUETOOTH_SERVICE, bluetooth);
Nick Pellybd022f42009-08-14 18:33:38 -0700182 bluetooth.initAfterRegistration();
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -0700183 bluetoothA2dp = new BluetoothA2dpService(context, bluetooth);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800184 ServiceManager.addService(BluetoothA2dpService.BLUETOOTH_A2DP_SERVICE,
185 bluetoothA2dp);
186
187 int bluetoothOn = Settings.Secure.getInt(mContentResolver,
188 Settings.Secure.BLUETOOTH_ON, 0);
189 if (bluetoothOn > 0) {
The Android Open Source Project10592532009-03-18 17:39:46 -0700190 bluetooth.enable();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800191 }
192 }
193
194 } catch (RuntimeException e) {
195 Log.e("System", "Failure starting core service", e);
196 }
197
198 StatusBarService statusBar = null;
199 InputMethodManagerService imm = null;
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700200 AppWidgetService appWidget = null;
Joe Onorato30275482009-07-08 17:09:14 -0700201 NotificationManagerService notification = null;
Dianne Hackbornf21adf62009-08-13 10:20:21 -0700202 WallpaperManagerService wallpaper = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800203
204 if (factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL) {
205 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700206 Log.i(TAG, "Status Bar");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800207 statusBar = new StatusBarService(context);
208 ServiceManager.addService("statusbar", statusBar);
209 } catch (Throwable e) {
210 Log.e(TAG, "Failure starting StatusBarService", e);
211 }
212
213 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700214 Log.i(TAG, "Clipboard Service");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800215 ServiceManager.addService("clipboard", new ClipboardService(context));
216 } catch (Throwable e) {
217 Log.e(TAG, "Failure starting Clipboard Service", e);
218 }
219
220 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700221 Log.i(TAG, "Input Method Service");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800222 imm = new InputMethodManagerService(context, statusBar);
223 ServiceManager.addService(Context.INPUT_METHOD_SERVICE, imm);
224 } catch (Throwable e) {
225 Log.e(TAG, "Failure starting Input Manager Service", e);
226 }
227
228 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700229 Log.i(TAG, "NetStat Service");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800230 ServiceManager.addService("netstat", new NetStatService(context));
231 } catch (Throwable e) {
232 Log.e(TAG, "Failure starting NetStat Service", e);
233 }
234
235 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700236 Log.i(TAG, "Connectivity Service");
Mike Lockwood0f79b542009-08-14 14:18:49 -0400237 connectivity = ConnectivityService.getInstance(context);
238 ServiceManager.addService(Context.CONNECTIVITY_SERVICE, connectivity);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800239 } catch (Throwable e) {
240 Log.e(TAG, "Failure starting Connectivity Service", e);
241 }
242
243 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700244 Log.i(TAG, "Accessibility Manager");
svetoslavganov75986cf2009-05-14 22:28:01 -0700245 ServiceManager.addService(Context.ACCESSIBILITY_SERVICE,
246 new AccessibilityManagerService(context));
247 } catch (Throwable e) {
248 Log.e(TAG, "Failure starting Accessibility Manager", e);
249 }
250
251 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700252 Log.i(TAG, "Notification Manager");
Joe Onorato30275482009-07-08 17:09:14 -0700253 notification = new NotificationManagerService(context, statusBar, hardware);
254 ServiceManager.addService(Context.NOTIFICATION_SERVICE, notification);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800255 } catch (Throwable e) {
256 Log.e(TAG, "Failure starting Notification Manager", e);
257 }
258
259 try {
260 // MountService must start after NotificationManagerService
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700261 Log.i(TAG, "Mount Service");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800262 ServiceManager.addService("mount", new MountService(context));
263 } catch (Throwable e) {
264 Log.e(TAG, "Failure starting Mount Service", e);
265 }
266
267 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700268 Log.i(TAG, "Device Storage Monitor");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800269 ServiceManager.addService(DeviceStorageMonitorService.SERVICE,
270 new DeviceStorageMonitorService(context));
271 } catch (Throwable e) {
272 Log.e(TAG, "Failure starting DeviceStorageMonitor service", e);
273 }
274
275 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700276 Log.i(TAG, "Location Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800277 ServiceManager.addService(Context.LOCATION_SERVICE, new LocationManagerService(context));
278 } catch (Throwable e) {
279 Log.e(TAG, "Failure starting Location Manager", e);
280 }
281
282 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700283 Log.i(TAG, "Search Service");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800284 ServiceManager.addService( Context.SEARCH_SERVICE, new SearchManagerService(context) );
285 } catch (Throwable e) {
286 Log.e(TAG, "Failure starting Search Service", e);
287 }
288
289 if (INCLUDE_DEMO) {
290 Log.i(TAG, "Installing demo data...");
291 (new DemoThread(context)).start();
292 }
293
294 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700295 Log.i(TAG, "Checkin Service");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800296 Intent intent = new Intent().setComponent(new ComponentName(
297 "com.google.android.server.checkin",
298 "com.google.android.server.checkin.CheckinService"));
299 if (context.startService(intent) == null) {
300 Log.w(TAG, "Using fallback Checkin Service.");
301 ServiceManager.addService("checkin", new FallbackCheckinService(context));
302 }
303 } catch (Throwable e) {
304 Log.e(TAG, "Failure starting Checkin Service", e);
305 }
306
307 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700308 Log.i(TAG, "Wallpaper Service");
Dianne Hackbornf21adf62009-08-13 10:20:21 -0700309 wallpaper = new WallpaperManagerService(context);
310 ServiceManager.addService(Context.WALLPAPER_SERVICE, wallpaper);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800311 } catch (Throwable e) {
312 Log.e(TAG, "Failure starting Wallpaper Service", e);
313 }
314
315 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700316 Log.i(TAG, "Audio Service");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800317 ServiceManager.addService(Context.AUDIO_SERVICE, new AudioService(context));
318 } catch (Throwable e) {
319 Log.e(TAG, "Failure starting Audio Service", e);
320 }
321
322 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700323 Log.i(TAG, "Headset Observer");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800324 // Listen for wired headset changes
325 headset = new HeadsetObserver(context);
326 } catch (Throwable e) {
327 Log.e(TAG, "Failure starting HeadsetObserver", e);
328 }
329
330 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700331 Log.i(TAG, "Dock Observer");
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500332 // Listen for dock station changes
Ken Schultzf02c0742009-09-10 18:37:37 -0500333 dock = new DockObserver(context, power);
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500334 } catch (Throwable e) {
335 Log.e(TAG, "Failure starting DockObserver", e);
336 }
337
338 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700339 Log.i(TAG, "Backup Service");
Christopher Tate487529a2009-04-29 14:03:25 -0700340 ServiceManager.addService(Context.BACKUP_SERVICE, new BackupManagerService(context));
341 } catch (Throwable e) {
342 Log.e(TAG, "Failure starting Backup Service", e);
343 }
344
345 try {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700346 Log.i(TAG, "AppWidget Service");
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700347 appWidget = new AppWidgetService(context);
348 ServiceManager.addService(Context.APPWIDGET_SERVICE, appWidget);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800349 } catch (Throwable e) {
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700350 Log.e(TAG, "Failure starting AppWidget Service", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800351 }
352
353 try {
354 com.android.server.status.StatusBarPolicy.installIcons(context, statusBar);
355 } catch (Throwable e) {
356 Log.e(TAG, "Failure installing status bar icons", e);
357 }
358 }
359
360 // make sure the ADB_ENABLED setting value matches the secure property value
361 Settings.Secure.putInt(mContentResolver, Settings.Secure.ADB_ENABLED,
362 "1".equals(SystemProperties.get("persist.service.adb.enable")) ? 1 : 0);
363
364 // register observer to listen for settings changes
365 mContentResolver.registerContentObserver(Settings.Secure.getUriFor(Settings.Secure.ADB_ENABLED),
366 false, new AdbSettingsObserver());
367
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700368 // Before things start rolling, be sure we have decided whether
369 // we are in safe mode.
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700370 final boolean safeMode = wm.detectSafeMode();
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700371 if (safeMode) {
372 try {
373 ActivityManagerNative.getDefault().enterSafeMode();
374 } catch (RemoteException e) {
375 }
376 }
377
378 // It is now time to start up the app processes...
Joe Onorato30275482009-07-08 17:09:14 -0700379
380 if (notification != null) {
381 notification.systemReady();
382 }
383
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800384 if (statusBar != null) {
385 statusBar.systemReady();
386 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800387 wm.systemReady();
388 power.systemReady();
389 try {
390 pm.systemReady();
391 } catch (RemoteException e) {
392 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800393
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700394 // These are needed to propagate to the runnable below.
395 final BatteryService batteryF = battery;
396 final ConnectivityService connectivityF = connectivity;
397 final DockObserver dockF = dock;
398 final AppWidgetService appWidgetF = appWidget;
399 final WallpaperManagerService wallpaperF = wallpaper;
400 final InputMethodManagerService immF = imm;
401
402 // We now tell the activity manager it is okay to run third party
403 // code. It will call back into us once it has gotten to the state
404 // where third party code can really run (but before it has actually
405 // started launching the initial applications), for us to complete our
406 // initialization.
407 ((ActivityManagerService)ActivityManagerNative.getDefault())
408 .systemReady(new Runnable() {
409 public void run() {
410 Log.i(TAG, "Making services ready");
411
412 if (batteryF != null) batteryF.systemReady();
413 if (connectivityF != null) connectivityF.systemReady();
414 if (dockF != null) dockF.systemReady();
415 Watchdog.getInstance().start();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800416
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700417 // It is now okay to let the various system services start their
418 // third party code...
419
420 if (appWidgetF != null) appWidgetF.systemReady(safeMode);
421 if (wallpaperF != null) wallpaperF.systemReady();
422 if (immF != null) immF.systemReady();
423 }
424 });
425
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800426 Looper.loop();
427 Log.d(TAG, "System ServerThread is exiting!");
428 }
429}
430
431class DemoThread extends Thread
432{
433 DemoThread(Context context)
434 {
435 mContext = context;
436 }
437
438 @Override
439 public void run()
440 {
441 try {
442 Cursor c = mContext.getContentResolver().query(People.CONTENT_URI, null, null, null, null);
443 boolean hasData = c != null && c.moveToFirst();
444 if (c != null) {
445 c.deactivate();
446 }
447 if (!hasData) {
448 DemoDataSet dataset = new DemoDataSet();
449 dataset.add(mContext);
450 }
451 } catch (Throwable e) {
452 Log.e("SystemServer", "Failure installing demo data", e);
453 }
454
455 }
456
457 Context mContext;
458}
459
460public class SystemServer
461{
462 private static final String TAG = "SystemServer";
463
464 public static final int FACTORY_TEST_OFF = 0;
465 public static final int FACTORY_TEST_LOW_LEVEL = 1;
466 public static final int FACTORY_TEST_HIGH_LEVEL = 2;
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -0700467
Bob Leee5408332009-09-04 18:31:17 -0700468 static Timer timer;
469 static final long SNAPSHOT_INTERVAL = 60 * 60 * 1000; // 1hr
470
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -0700471 /**
472 * 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 -0800473 * services (SurfaceFlinger, AudioFlinger, etc..) to be started. After that it will call back
474 * up into init2() to start the Android services.
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -0700475 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800476 native public static void init1(String[] args);
477
478 public static void main(String[] args) {
Bob Leee5408332009-09-04 18:31:17 -0700479 if (SamplingProfilerIntegration.isEnabled()) {
480 SamplingProfilerIntegration.start();
481 timer = new Timer();
482 timer.schedule(new TimerTask() {
483 @Override
484 public void run() {
485 SamplingProfilerIntegration.writeSnapshot("system_server");
486 }
487 }, SNAPSHOT_INTERVAL, SNAPSHOT_INTERVAL);
488 }
489
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800490 // The system server has to run all of the time, so it needs to be
491 // as efficient as possible with its memory usage.
492 VMRuntime.getRuntime().setTargetHeapUtilization(0.8f);
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -0700493
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800494 System.loadLibrary("android_servers");
495 init1(args);
496 }
497
498 public static final void init2() {
499 Log.i(TAG, "Entered the Android system server!");
500 Thread thr = new ServerThread();
501 thr.setName("android.server.ServerThread");
502 thr.start();
503 }
504}