blob: 0bbdcfb230e368191bb179e39eafb9d0015e108b [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
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080019import android.app.ActivityManagerNative;
Nick Pellyf242b7b2009-10-08 00:12:45 +020020import android.bluetooth.BluetoothAdapter;
Joe Onoratof3c3c4f2010-10-21 11:09:02 -040021import android.content.ComponentName;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022import android.content.ContentResolver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023import android.content.Context;
Joe Onoratof3c3c4f2010-10-21 11:09:02 -040024import android.content.Intent;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025import android.content.pm.IPackageManager;
Matthew Xie1dd01eb32013-04-26 12:37:54 -070026import android.content.pm.PackageManager;
Joe Onoratodc565f42010-10-04 15:27:22 -040027import android.content.res.Configuration;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028import android.media.AudioService;
Irfan Sherifff6d09842011-08-03 15:37:08 -070029import android.net.wifi.p2p.WifiP2pService;
Jeff Sharkey48749fc2013-04-19 13:25:04 -070030import android.os.Environment;
Jeff Brownbd6e1502012-08-28 03:27:37 -070031import android.os.Handler;
32import android.os.HandlerThread;
Jeff Hamilton35eef702010-06-09 15:45:18 -050033import android.os.Looper;
34import android.os.RemoteException;
35import android.os.ServiceManager;
Brad Fitzpatrickc74a1b442010-09-10 16:03:29 -070036import android.os.StrictMode;
Jeff Hamilton35eef702010-06-09 15:45:18 -050037import android.os.SystemClock;
38import android.os.SystemProperties;
Amith Yamasanicd757062012-10-19 18:23:52 -070039import android.os.UserHandle;
Dianne Hackbornbe87e2f2012-09-28 16:31:34 -070040import android.service.dreams.DreamService;
Joe Onoratodc565f42010-10-04 15:27:22 -040041import android.util.DisplayMetrics;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042import android.util.EventLog;
Dianne Hackborn661cd522011-08-22 00:26:20 -070043import android.util.Log;
Joe Onorato8a9b2202010-02-26 18:56:32 -080044import android.util.Slog;
Brad Fitzpatrick5fdc0c72010-10-12 13:12:18 -070045import android.view.WindowManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080046
Dan Morrille4d9a012013-03-28 18:10:43 -070047import com.android.internal.R;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070048import com.android.internal.os.BinderInternal;
49import com.android.internal.os.SamplingProfilerIntegration;
50import com.android.server.accessibility.AccessibilityManagerService;
Jeff Sharkey7a96c392012-11-15 14:01:46 -080051import com.android.server.accounts.AccountManagerService;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070052import com.android.server.am.ActivityManagerService;
Jeff Brown96307042012-07-27 15:51:34 -070053import com.android.server.am.BatteryStatsService;
Jeff Sharkey7a96c392012-11-15 14:01:46 -080054import com.android.server.content.ContentService;
Jeff Brownfa25bf52012-07-23 19:26:30 -070055import com.android.server.display.DisplayManagerService;
Jeff Browncef440f2012-09-25 18:58:48 -070056import com.android.server.dreams.DreamManagerService;
Jeff Brown6ec6f792012-04-17 16:52:41 -070057import com.android.server.input.InputManagerService;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070058import com.android.server.net.NetworkPolicyManagerService;
Jeff Sharkey75279902011-05-24 18:39:45 -070059import com.android.server.net.NetworkStatsService;
Jeff Sharkey7a96c392012-11-15 14:01:46 -080060import com.android.server.os.SchedulingPolicyService;
Jeff Brownf69c8122012-09-12 17:00:34 -070061import com.android.server.pm.Installer;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070062import com.android.server.pm.PackageManagerService;
Amith Yamasani258848d2012-08-10 17:06:33 -070063import com.android.server.pm.UserManagerService;
Jeff Brown4f8ecd82012-06-18 18:29:13 -070064import com.android.server.power.PowerManagerService;
65import com.android.server.power.ShutdownThread;
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070066import com.android.server.print.PrintManagerService;
Jeff Sharkey7a96c392012-11-15 14:01:46 -080067import com.android.server.search.SearchManagerService;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070068import com.android.server.usb.UsbService;
Irfan Sheriffd017f352013-02-20 13:30:44 -080069import com.android.server.wifi.WifiService;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070070import com.android.server.wm.WindowManagerService;
71
72import dalvik.system.VMRuntime;
73import dalvik.system.Zygote;
74
Dan Egnor4410ec82009-09-11 16:40:01 -070075import java.io.File;
Bob Leee5408332009-09-04 18:31:17 -070076import java.util.Timer;
77import java.util.TimerTask;
78
Dianne Hackbornefa92b22013-05-03 14:11:43 -070079class ServerThread {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080080 private static final String TAG = "SystemServer";
Ben Komalo553acf02011-09-19 14:25:28 -070081 private static final String ENCRYPTING_STATE = "trigger_restart_min_framework";
Ben Komalo3573d402011-09-23 15:08:24 -070082 private static final String ENCRYPTED_STATE = "1";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080083
Jeff Hamilton35eef702010-06-09 15:45:18 -050084 ContentResolver mContentResolver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080085
Dianne Hackborn661cd522011-08-22 00:26:20 -070086 void reportWtf(String msg, Throwable e) {
87 Slog.w(TAG, "***********************************************");
88 Log.wtf(TAG, "BOOT FAILURE " + msg, e);
89 }
90
Dianne Hackbornefa92b22013-05-03 14:11:43 -070091 public void initAndLoop() {
Doug Zongkerab5c49c2009-12-04 10:31:43 -080092 EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_SYSTEM_RUN,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080093 SystemClock.uptimeMillis());
94
Vairavan Srinivasan04b74ec2012-02-02 22:12:19 -080095 Looper.prepareMainLooper();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080096
97 android.os.Process.setThreadPriority(
98 android.os.Process.THREAD_PRIORITY_FOREGROUND);
99
Dianne Hackborn887f3552009-12-07 17:59:37 -0800100 BinderInternal.disableBackgroundScheduling(true);
Christopher Tate160edb32010-06-30 17:46:30 -0700101 android.os.Process.setCanSelfBackground(false);
Sen Hubde75702010-05-28 01:54:03 -0700102
Kenny Rootf547d672010-09-22 10:36:48 -0700103 // Check whether we failed to shut down last time we tried.
104 {
105 final String shutdownAction = SystemProperties.get(
106 ShutdownThread.SHUTDOWN_ACTION_PROPERTY, "");
107 if (shutdownAction != null && shutdownAction.length() > 0) {
108 boolean reboot = (shutdownAction.charAt(0) == '1');
109
110 final String reason;
111 if (shutdownAction.length() > 1) {
112 reason = shutdownAction.substring(1, shutdownAction.length());
113 } else {
114 reason = null;
115 }
116
117 ShutdownThread.rebootOrShutdown(reboot, reason);
118 }
119 }
120
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800121 String factoryTestStr = SystemProperties.get("ro.factorytest");
122 int factoryTest = "".equals(factoryTestStr) ? SystemServer.FACTORY_TEST_OFF
123 : Integer.parseInt(factoryTestStr);
Mike Lockwood3a74bd32011-08-12 13:55:22 -0700124 final boolean headless = "1".equals(SystemProperties.get("ro.config.headless", "0"));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800125
Jeff Brownf69c8122012-09-12 17:00:34 -0700126 Installer installer = null;
Kenny Root26ff6622012-07-30 12:58:03 -0700127 AccountManagerService accountManager = null;
128 ContentService contentService = null;
Mike Lockwood3a322132009-11-24 00:30:52 -0500129 LightsService lights = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800130 PowerManagerService power = null;
Jeff Brownfa25bf52012-07-23 19:26:30 -0700131 DisplayManagerService display = null;
Mike Lockwood07a500f2009-08-12 09:56:44 -0400132 BatteryService battery = null;
Jeff Brown7f6c2312012-04-13 20:38:38 -0700133 VibratorService vibrator = null;
Jeff Sharkey75279902011-05-24 18:39:45 -0700134 AlarmManagerService alarm = null;
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700135 MountService mountService = null;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700136 NetworkManagementService networkManagement = null;
Jeff Sharkey75279902011-05-24 18:39:45 -0700137 NetworkStatsService networkStats = null;
Jeff Sharkeya4620792011-05-20 15:29:23 -0700138 NetworkPolicyManagerService networkPolicy = null;
Mike Lockwood0f79b542009-08-14 14:18:49 -0400139 ConnectivityService connectivity = null;
repo sync55bc5f32011-06-24 14:23:07 -0700140 WifiP2pService wifiP2p = null;
repo syncaea743a2011-07-29 23:55:49 -0700141 WifiService wifi = null;
Irfan Sheriff7d024d32012-03-22 17:01:39 -0700142 NsdService serviceDiscovery= null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800143 IPackageManager pm = null;
144 Context context = null;
145 WindowManagerService wm = null;
fredc0f420372012-04-12 00:02:00 -0700146 BluetoothManagerService bluetooth = null;
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500147 DockObserver dock = null;
Mike Lockwood770126a2010-12-09 22:30:37 -0800148 UsbService usb = null;
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -0400149 SerialService serial = null;
Jeff Brown2416e092012-08-21 22:12:20 -0700150 TwilightService twilight = null;
Dianne Hackborn7299c412010-03-04 18:41:49 -0800151 UiModeManagerService uiMode = null;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800152 RecognitionManagerService recognition = null;
Amith Yamasani6734b9f2010-09-13 16:24:08 -0700153 NetworkTimeUpdateService networkTimeUpdater = null;
John Grossmanc1576732012-02-01 15:23:33 -0800154 CommonTimeManagementService commonTimeMgmtService = null;
Jeff Brown6ec6f792012-04-17 16:52:41 -0700155 InputManagerService inputManager = null;
Wink Savillea12a7b32012-09-20 10:09:45 -0700156 TelephonyRegistry telephonyRegistry = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800157
Jeff Brownbd6e1502012-08-28 03:27:37 -0700158 // Create a handler thread just for the window manager to enjoy.
159 HandlerThread wmHandlerThread = new HandlerThread("WindowManager");
160 wmHandlerThread.start();
161 Handler wmHandler = new Handler(wmHandlerThread.getLooper());
162 wmHandler.post(new Runnable() {
163 @Override
164 public void run() {
165 //Looper.myLooper().setMessageLogging(new LogPrinter(
166 // android.util.Log.DEBUG, TAG, android.util.Log.LOG_ID_SYSTEM));
167 android.os.Process.setThreadPriority(
168 android.os.Process.THREAD_PRIORITY_DISPLAY);
169 android.os.Process.setCanSelfBackground(false);
170
171 // For debug builds, log event loop stalls to dropbox for analysis.
172 if (StrictMode.conditionallyEnableDebugLogging()) {
Jeff Brown89d55462012-09-19 11:33:42 -0700173 Slog.i(TAG, "Enabled StrictMode logging for WM Looper");
Jeff Brownbd6e1502012-08-28 03:27:37 -0700174 }
175 }
176 });
177
Dan Morrille4d9a012013-03-28 18:10:43 -0700178 // bootstrap services
Jeff Brownbd6e1502012-08-28 03:27:37 -0700179 boolean onlyCore = false;
Dan Morrille4d9a012013-03-28 18:10:43 -0700180 boolean firstBoot = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800181 try {
Jeff Brownf69c8122012-09-12 17:00:34 -0700182 // Wait for installd to finished starting up so that it has a chance to
183 // create critical directories such as /data/user with the appropriate
184 // permissions. We need this to complete before we initialize other services.
185 Slog.i(TAG, "Waiting for installd to be ready.");
186 installer = new Installer();
187 installer.ping();
188
Joe Onorato8a9b2202010-02-26 18:56:32 -0800189 Slog.i(TAG, "Power Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800190 power = new PowerManagerService();
191 ServiceManager.addService(Context.POWER_SERVICE, power);
192
Joe Onorato8a9b2202010-02-26 18:56:32 -0800193 Slog.i(TAG, "Activity Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800194 context = ActivityManagerService.main(factoryTest);
Dan Morrille4d9a012013-03-28 18:10:43 -0700195 } catch (RuntimeException e) {
196 Slog.e("System", "******************************************");
197 Slog.e("System", "************ Failure starting bootstrap service", e);
198 }
Jeff Brown848c2dc2012-08-19 20:18:08 -0700199
Dan Morrille4d9a012013-03-28 18:10:43 -0700200 boolean disableStorage = SystemProperties.getBoolean("config.disable_storage", false);
201 boolean disableMedia = SystemProperties.getBoolean("config.disable_media", false);
202 boolean disableBluetooth = SystemProperties.getBoolean("config.disable_bluetooth", false);
203 boolean disableTelephony = SystemProperties.getBoolean("config.disable_telephony", false);
204 boolean disableLocation = SystemProperties.getBoolean("config.disable_location", false);
205 boolean disableSystemUI = SystemProperties.getBoolean("config.disable_systemui", false);
206 boolean disableNonCoreServices = SystemProperties.getBoolean("config.disable_noncore", false);
207 boolean disableNetwork = SystemProperties.getBoolean("config.disable_network", false);
208
209 try {
Jeff Brown848c2dc2012-08-19 20:18:08 -0700210 Slog.i(TAG, "Display Manager");
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700211 display = new DisplayManagerService(context, wmHandler);
Jeff Brown848c2dc2012-08-19 20:18:08 -0700212 ServiceManager.addService(Context.DISPLAY_SERVICE, display, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800213
Joe Onorato8a9b2202010-02-26 18:56:32 -0800214 Slog.i(TAG, "Telephony Registry");
Wink Savillea12a7b32012-09-20 10:09:45 -0700215 telephonyRegistry = new TelephonyRegistry(context);
216 ServiceManager.addService("telephony.registry", telephonyRegistry);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800217
Glenn Kasten07b04652012-04-23 15:00:43 -0700218 Slog.i(TAG, "Scheduling Policy");
219 ServiceManager.addService(Context.SCHEDULING_POLICY_SERVICE,
220 new SchedulingPolicyService());
221
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800222 AttributeCache.init(context);
223
Jeff Brownbd6e1502012-08-28 03:27:37 -0700224 if (!display.waitForDefaultDisplay()) {
225 reportWtf("Timeout waiting for default display to be initialized.",
226 new Throwable());
227 }
228
Joe Onorato8a9b2202010-02-26 18:56:32 -0800229 Slog.i(TAG, "Package Manager");
Ben Komalo553acf02011-09-19 14:25:28 -0700230 // Only run "core" apps if we're encrypting the device.
231 String cryptState = SystemProperties.get("vold.decrypt");
Ben Komalo3573d402011-09-23 15:08:24 -0700232 if (ENCRYPTING_STATE.equals(cryptState)) {
Ben Komalo553acf02011-09-19 14:25:28 -0700233 Slog.w(TAG, "Detected encryption in progress - only parsing core apps");
Ben Komalo3573d402011-09-23 15:08:24 -0700234 onlyCore = true;
235 } else if (ENCRYPTED_STATE.equals(cryptState)) {
236 Slog.w(TAG, "Device encrypted - only parsing core apps");
237 onlyCore = true;
Ben Komalo553acf02011-09-19 14:25:28 -0700238 }
Ben Komalo3573d402011-09-23 15:08:24 -0700239
Jeff Brownf69c8122012-09-12 17:00:34 -0700240 pm = PackageManagerService.main(context, installer,
Dianne Hackbornd2509fd2011-09-12 12:29:43 -0700241 factoryTest != SystemServer.FACTORY_TEST_OFF,
Ben Komalo553acf02011-09-19 14:25:28 -0700242 onlyCore);
Dianne Hackborn58f42a52011-10-10 13:46:34 -0700243 try {
244 firstBoot = pm.isFirstBoot();
245 } catch (RemoteException e) {
246 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800247
248 ActivityManagerService.setSystemProcess();
Svetoslavb3038ec2013-02-13 14:39:30 -0800249
Nick Kralevich79619dd2013-03-04 13:05:32 -0800250 Slog.i(TAG, "Entropy Mixer");
251 ServiceManager.addService("entropy", new EntropyMixer(context));
252
Amith Yamasani258848d2012-08-10 17:06:33 -0700253 Slog.i(TAG, "User Service");
254 ServiceManager.addService(Context.USER_SERVICE,
Dianne Hackborn4428e172012-08-24 17:43:05 -0700255 UserManagerService.getInstance());
Amith Yamasani258848d2012-08-10 17:06:33 -0700256
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800257 mContentResolver = context.getContentResolver();
258
Fred Quintanae91ebe22009-09-29 20:44:30 -0700259 // The AccountManager must come before the ContentService
Fred Quintana60307342009-03-24 22:48:12 -0700260 try {
Dan Morrille4d9a012013-03-28 18:10:43 -0700261 // TODO: seems like this should be disable-able, but req'd by ContentService
Joe Onorato8a9b2202010-02-26 18:56:32 -0800262 Slog.i(TAG, "Account Manager");
Kenny Root26ff6622012-07-30 12:58:03 -0700263 accountManager = new AccountManagerService(context);
264 ServiceManager.addService(Context.ACCOUNT_SERVICE, accountManager);
Fred Quintana60307342009-03-24 22:48:12 -0700265 } catch (Throwable e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800266 Slog.e(TAG, "Failure starting Account Manager", e);
Fred Quintana60307342009-03-24 22:48:12 -0700267 }
268
Joe Onorato8a9b2202010-02-26 18:56:32 -0800269 Slog.i(TAG, "Content Manager");
Kenny Root26ff6622012-07-30 12:58:03 -0700270 contentService = ContentService.main(context,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800271 factoryTest == SystemServer.FACTORY_TEST_LOW_LEVEL);
272
Joe Onorato8a9b2202010-02-26 18:56:32 -0800273 Slog.i(TAG, "System Content Providers");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800274 ActivityManagerService.installSystemProviders();
275
Joe Onorato8a9b2202010-02-26 18:56:32 -0800276 Slog.i(TAG, "Lights Service");
Mike Lockwood3a322132009-11-24 00:30:52 -0500277 lights = new LightsService(context);
278
Joe Onoratode1b3592010-10-25 20:36:47 -0700279 Slog.i(TAG, "Battery Service");
280 battery = new BatteryService(context, lights);
281 ServiceManager.addService("battery", battery);
282
Joe Onorato8a9b2202010-02-26 18:56:32 -0800283 Slog.i(TAG, "Vibrator Service");
Jeff Brown7f6c2312012-04-13 20:38:38 -0700284 vibrator = new VibratorService(context);
285 ServiceManager.addService("vibrator", vibrator);
The Android Open Source Project10592532009-03-18 17:39:46 -0700286
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800287 // only initialize the power service after we have started the
Mike Lockwood3a322132009-11-24 00:30:52 -0500288 // lights service, content providers and the battery service.
Jeff Brown96307042012-07-27 15:51:34 -0700289 power.init(context, lights, ActivityManagerService.self(), battery,
Dianne Hackborn713df152013-05-17 11:27:57 -0700290 BatteryStatsService.getService(),
291 ActivityManagerService.self().getAppOpsService(), display);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800292
Joe Onorato8a9b2202010-02-26 18:56:32 -0800293 Slog.i(TAG, "Alarm Manager");
Jeff Sharkey75279902011-05-24 18:39:45 -0700294 alarm = new AlarmManagerService(context);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800295 ServiceManager.addService(Context.ALARM_SERVICE, alarm);
296
Joe Onorato8a9b2202010-02-26 18:56:32 -0800297 Slog.i(TAG, "Init Watchdog");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800298 Watchdog.getInstance().init(context, battery, power, alarm,
299 ActivityManagerService.self());
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700300 Watchdog.getInstance().addThread(wmHandler, "WindowManager thread");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800301
Jeff Browna9d131c2012-09-20 16:48:17 -0700302 Slog.i(TAG, "Input Manager");
303 inputManager = new InputManagerService(context, wmHandler);
304
Joe Onorato8a9b2202010-02-26 18:56:32 -0800305 Slog.i(TAG, "Window Manager");
Jeff Browna9d131c2012-09-20 16:48:17 -0700306 wm = WindowManagerService.main(context, power, display, inputManager,
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700307 wmHandler, factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL,
Jeff Brown780c46f2012-06-24 12:15:38 -0700308 !firstBoot, onlyCore);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800309 ServiceManager.addService(Context.WINDOW_SERVICE, wm);
Jeff Brown6ec6f792012-04-17 16:52:41 -0700310 ServiceManager.addService(Context.INPUT_SERVICE, inputManager);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800311
Dianne Hackborn295e3c22011-08-25 13:19:08 -0700312 ActivityManagerService.self().setWindowManager(wm);
Jeff Browna9d131c2012-09-20 16:48:17 -0700313
314 inputManager.setWindowManagerCallbacks(wm.getInputMonitor());
315 inputManager.start();
316
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700317 display.setWindowManager(wm);
Jeff Brownd728bf52012-09-08 18:05:28 -0700318 display.setInputManager(inputManager);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800319
320 // Skip Bluetooth if we have an emulator kernel
321 // TODO: Use a more reliable check to see if this product should
322 // support Bluetooth - see bug 988521
323 if (SystemProperties.get("ro.kernel.qemu").equals("1")) {
David 'Digit' Turnere2a5e862011-01-17 00:32:33 +0100324 Slog.i(TAG, "No Bluetooh Service (emulator)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800325 } else if (factoryTest == SystemServer.FACTORY_TEST_LOW_LEVEL) {
David 'Digit' Turnere2a5e862011-01-17 00:32:33 +0100326 Slog.i(TAG, "No Bluetooth Service (factory test)");
Matthew Xie1dd01eb32013-04-26 12:37:54 -0700327 } else if (!context.getPackageManager().hasSystemFeature
328 (PackageManager.FEATURE_BLUETOOTH)) {
329 Slog.i(TAG, "No Bluetooth Service (Bluetooth Hardware Not Present)");
Dan Morrille4d9a012013-03-28 18:10:43 -0700330 } else if (disableBluetooth) {
331 Slog.i(TAG, "Bluetooth Service disabled by config");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800332 } else {
fredc0f420372012-04-12 00:02:00 -0700333 Slog.i(TAG, "Bluetooth Manager Service");
334 bluetooth = new BluetoothManagerService(context);
335 ServiceManager.addService(BluetoothAdapter.BLUETOOTH_MANAGER_SERVICE, bluetooth);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800336 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800337 } catch (RuntimeException e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700338 Slog.e("System", "******************************************");
339 Slog.e("System", "************ Failure starting core service", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800340 }
341
Dianne Hackbornd6847842010-01-12 18:14:19 -0800342 DevicePolicyManagerService devicePolicy = null;
Joe Onorato089de882010-04-12 08:18:45 -0700343 StatusBarManagerService statusBar = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800344 InputMethodManagerService imm = null;
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700345 AppWidgetService appWidget = null;
Joe Onorato30275482009-07-08 17:09:14 -0700346 NotificationManagerService notification = null;
Dianne Hackbornf21adf62009-08-13 10:20:21 -0700347 WallpaperManagerService wallpaper = null;
Mike Lockwood46db5042010-02-22 16:36:44 -0500348 LocationManagerService location = null;
Bai Taoa58a8752010-07-13 15:32:16 +0800349 CountryDetectorService countryDetector = null;
satok988323c2011-06-22 16:38:13 +0900350 TextServicesManagerService tsms = null;
Amith Yamasani52c489c2012-03-28 11:42:42 -0700351 LockSettingsService lockSettings = null;
Daniel Sandler7d276c32012-01-30 14:33:52 -0500352 DreamManagerService dreamy = null;
Romain Guy3b748a42013-04-17 18:54:38 -0700353 AssetAtlasService atlas = null;
Svetoslav Ganova0027152013-06-25 14:59:53 -0700354 PrintManagerService printManager = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800355
Dianne Hackborn661cd522011-08-22 00:26:20 -0700356 // Bring up services needed for UI.
357 if (factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL) {
Dan Morrille4d9a012013-03-28 18:10:43 -0700358 //if (!disableNonCoreServices) { // TODO: View depends on these; mock them?
359 if (true) {
360 try {
361 Slog.i(TAG, "Input Method Service");
362 imm = new InputMethodManagerService(context, wm);
363 ServiceManager.addService(Context.INPUT_METHOD_SERVICE, imm);
364 } catch (Throwable e) {
365 reportWtf("starting Input Manager Service", e);
366 }
Dianne Hackborn661cd522011-08-22 00:26:20 -0700367
Dan Morrille4d9a012013-03-28 18:10:43 -0700368 try {
369 Slog.i(TAG, "Accessibility Manager");
370 ServiceManager.addService(Context.ACCESSIBILITY_SERVICE,
371 new AccessibilityManagerService(context));
372 } catch (Throwable e) {
373 reportWtf("starting Accessibility Manager", e);
374 }
Dianne Hackborn661cd522011-08-22 00:26:20 -0700375 }
376 }
377
378 try {
379 wm.displayReady();
380 } catch (Throwable e) {
381 reportWtf("making display ready", e);
382 }
Dianne Hackborn8795b602011-08-25 13:30:53 -0700383
Dianne Hackborn295e3c22011-08-25 13:19:08 -0700384 try {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700385 pm.performBootDexOpt();
386 } catch (Throwable e) {
387 reportWtf("performing boot dexopt", e);
388 }
389
390 try {
391 ActivityManagerNative.getDefault().showBootMessage(
392 context.getResources().getText(
393 com.android.internal.R.string.android_upgrading_starting_apps),
394 false);
395 } catch (RemoteException e) {
396 }
397
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800398 if (factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL) {
Dan Morrille4d9a012013-03-28 18:10:43 -0700399 if (!disableStorage &&
400 !"0".equals(SystemProperties.get("system_init.startmountservice"))) {
Kenny Root51a573c2012-05-17 13:30:28 -0700401 try {
402 /*
403 * NotificationManagerService is dependant on MountService,
404 * (for media / usb notifications) so we must start MountService first.
405 */
406 Slog.i(TAG, "Mount Service");
407 mountService = new MountService(context);
408 ServiceManager.addService("mount", mountService);
409 } catch (Throwable e) {
410 reportWtf("starting Mount Service", e);
411 }
412 }
413
Dan Morrille4d9a012013-03-28 18:10:43 -0700414 if (!disableNonCoreServices) {
415 try {
416 Slog.i(TAG, "LockSettingsService");
417 lockSettings = new LockSettingsService(context);
418 ServiceManager.addService("lock_settings", lockSettings);
419 } catch (Throwable e) {
420 reportWtf("starting LockSettingsService service", e);
421 }
422
423 try {
424 Slog.i(TAG, "Device Policy");
425 devicePolicy = new DevicePolicyManagerService(context);
426 ServiceManager.addService(Context.DEVICE_POLICY_SERVICE, devicePolicy);
427 } catch (Throwable e) {
428 reportWtf("starting DevicePolicyService", e);
429 }
Amith Yamasani52c489c2012-03-28 11:42:42 -0700430 }
431
Dan Morrille4d9a012013-03-28 18:10:43 -0700432 if (!disableSystemUI) {
433 try {
434 Slog.i(TAG, "Status Bar");
435 statusBar = new StatusBarManagerService(context, wm);
436 ServiceManager.addService(Context.STATUS_BAR_SERVICE, statusBar);
437 } catch (Throwable e) {
438 reportWtf("starting StatusBarManagerService", e);
439 }
Dianne Hackbornd6847842010-01-12 18:14:19 -0800440 }
441
Dan Morrille4d9a012013-03-28 18:10:43 -0700442 if (!disableNonCoreServices) {
443 try {
444 Slog.i(TAG, "Clipboard Service");
445 ServiceManager.addService(Context.CLIPBOARD_SERVICE,
446 new ClipboardService(context));
447 } catch (Throwable e) {
448 reportWtf("starting Clipboard Service", e);
449 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800450 }
451
Dan Morrille4d9a012013-03-28 18:10:43 -0700452 if (!disableNetwork) {
453 try {
454 Slog.i(TAG, "NetworkManagement Service");
455 networkManagement = NetworkManagementService.create(context);
456 ServiceManager.addService(Context.NETWORKMANAGEMENT_SERVICE, networkManagement);
457 } catch (Throwable e) {
458 reportWtf("starting NetworkManagement Service", e);
459 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800460 }
461
Dan Morrille4d9a012013-03-28 18:10:43 -0700462 if (!disableNonCoreServices) {
463 try {
464 Slog.i(TAG, "Text Service Manager Service");
465 tsms = new TextServicesManagerService(context);
466 ServiceManager.addService(Context.TEXT_SERVICES_MANAGER_SERVICE, tsms);
467 } catch (Throwable e) {
468 reportWtf("starting Text Service Manager Service", e);
469 }
San Mehatd1df8ac2010-01-26 06:17:26 -0800470 }
471
Dan Morrille4d9a012013-03-28 18:10:43 -0700472 if (!disableNetwork) {
473 try {
474 Slog.i(TAG, "NetworkStats Service");
475 networkStats = new NetworkStatsService(context, networkManagement, alarm);
476 ServiceManager.addService(Context.NETWORK_STATS_SERVICE, networkStats);
477 } catch (Throwable e) {
478 reportWtf("starting NetworkStats Service", e);
479 }
480
481 try {
482 Slog.i(TAG, "NetworkPolicy Service");
483 networkPolicy = new NetworkPolicyManagerService(
484 context, ActivityManagerService.self(), power,
485 networkStats, networkManagement);
486 ServiceManager.addService(Context.NETWORK_POLICY_SERVICE, networkPolicy);
487 } catch (Throwable e) {
488 reportWtf("starting NetworkPolicy Service", e);
489 }
490
491 try {
492 Slog.i(TAG, "Wi-Fi P2pService");
493 wifiP2p = new WifiP2pService(context);
494 ServiceManager.addService(Context.WIFI_P2P_SERVICE, wifiP2p);
495 } catch (Throwable e) {
496 reportWtf("starting Wi-Fi P2pService", e);
497 }
498
499 try {
500 Slog.i(TAG, "Wi-Fi Service");
501 wifi = new WifiService(context);
502 ServiceManager.addService(Context.WIFI_SERVICE, wifi);
503 } catch (Throwable e) {
504 reportWtf("starting Wi-Fi Service", e);
505 }
506
507 try {
508 Slog.i(TAG, "Connectivity Service");
509 connectivity = new ConnectivityService(
510 context, networkManagement, networkStats, networkPolicy);
511 ServiceManager.addService(Context.CONNECTIVITY_SERVICE, connectivity);
512 networkStats.bindConnectivityManager(connectivity);
513 networkPolicy.bindConnectivityManager(connectivity);
514 wifi.checkAndStartWifi();
515 wifiP2p.connectivityServiceReady();
516 } catch (Throwable e) {
517 reportWtf("starting Connectivity Service", e);
518 }
519
520 try {
521 Slog.i(TAG, "Network Service Discovery Service");
522 serviceDiscovery = NsdService.create(context);
523 ServiceManager.addService(
524 Context.NSD_SERVICE, serviceDiscovery);
525 } catch (Throwable e) {
526 reportWtf("starting Service Discovery Service", e);
527 }
satok988323c2011-06-22 16:38:13 +0900528 }
529
Dan Morrille4d9a012013-03-28 18:10:43 -0700530 if (!disableNonCoreServices) {
531 try {
532 Slog.i(TAG, "UpdateLock Service");
533 ServiceManager.addService(Context.UPDATE_LOCK_SERVICE,
534 new UpdateLockService(context));
535 } catch (Throwable e) {
536 reportWtf("starting UpdateLockService", e);
537 }
Christopher Tate8662cab52012-02-23 14:59:36 -0800538 }
539
Kenny Root51a573c2012-05-17 13:30:28 -0700540 /*
541 * MountService has a few dependencies: Notification Manager and
542 * AppWidget Provider. Make sure MountService is completely started
543 * first before continuing.
544 */
Ken Sumrall025adc42013-06-05 22:08:12 -0700545 if (mountService != null && !onlyCore) {
Kenny Root51a573c2012-05-17 13:30:28 -0700546 mountService.waitForAsecScan();
San Mehat1bf3f8b2010-02-03 14:43:09 -0800547 }
548
549 try {
Kenny Root26ff6622012-07-30 12:58:03 -0700550 if (accountManager != null)
551 accountManager.systemReady();
552 } catch (Throwable e) {
553 reportWtf("making Account Manager Service ready", e);
554 }
555
556 try {
557 if (contentService != null)
558 contentService.systemReady();
559 } catch (Throwable e) {
560 reportWtf("making Content Service ready", e);
561 }
562
563 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800564 Slog.i(TAG, "Notification Manager");
Mike Lockwood3a322132009-11-24 00:30:52 -0500565 notification = new NotificationManagerService(context, statusBar, lights);
Joe Onorato30275482009-07-08 17:09:14 -0700566 ServiceManager.addService(Context.NOTIFICATION_SERVICE, notification);
Jeff Sharkey497e4432011-06-14 17:27:29 -0700567 networkPolicy.bindNotificationManager(notification);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800568 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700569 reportWtf("starting Notification Manager", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800570 }
571
572 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800573 Slog.i(TAG, "Device Storage Monitor");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800574 ServiceManager.addService(DeviceStorageMonitorService.SERVICE,
575 new DeviceStorageMonitorService(context));
576 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700577 reportWtf("starting DeviceStorageMonitor service", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800578 }
579
Dan Morrille4d9a012013-03-28 18:10:43 -0700580 if (!disableLocation) {
581 try {
582 Slog.i(TAG, "Location Manager");
583 location = new LocationManagerService(context);
584 ServiceManager.addService(Context.LOCATION_SERVICE, location);
585 } catch (Throwable e) {
586 reportWtf("starting Location Manager", e);
587 }
588
589 try {
590 Slog.i(TAG, "Country Detector");
591 countryDetector = new CountryDetectorService(context);
592 ServiceManager.addService(Context.COUNTRY_DETECTOR, countryDetector);
593 } catch (Throwable e) {
594 reportWtf("starting Country Detector", e);
595 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800596 }
597
Dan Morrille4d9a012013-03-28 18:10:43 -0700598 if (!disableNonCoreServices) {
599 try {
600 Slog.i(TAG, "Search Service");
601 ServiceManager.addService(Context.SEARCH_SERVICE,
602 new SearchManagerService(context));
603 } catch (Throwable e) {
604 reportWtf("starting Search Service", e);
605 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800606 }
607
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800608 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800609 Slog.i(TAG, "DropBox Service");
Dan Egnor95240272009-10-27 18:23:39 -0700610 ServiceManager.addService(Context.DROPBOX_SERVICE,
Dan Egnorf18a01c2009-11-12 11:32:50 -0800611 new DropBoxManagerService(context, new File("/data/system/dropbox")));
Dan Egnor4410ec82009-09-11 16:40:01 -0700612 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700613 reportWtf("starting DropBoxManagerService", e);
Dan Egnor4410ec82009-09-11 16:40:01 -0700614 }
615
Dan Morrille4d9a012013-03-28 18:10:43 -0700616 if (!disableNonCoreServices && context.getResources().getBoolean(
617 R.bool.config_enableWallpaperService)) {
Mike Lockwoodc067c9c2011-10-31 12:50:12 -0400618 try {
619 Slog.i(TAG, "Wallpaper Service");
620 if (!headless) {
621 wallpaper = new WallpaperManagerService(context);
622 ServiceManager.addService(Context.WALLPAPER_SERVICE, wallpaper);
623 }
624 } catch (Throwable e) {
625 reportWtf("starting Wallpaper Service", e);
Mike Lockwood3a74bd32011-08-12 13:55:22 -0700626 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800627 }
628
Dan Morrille4d9a012013-03-28 18:10:43 -0700629 if (!disableMedia && !"0".equals(SystemProperties.get("system_init.startaudioservice"))) {
Mike Lockwoodcba928c2011-08-17 15:58:52 -0700630 try {
631 Slog.i(TAG, "Audio Service");
632 ServiceManager.addService(Context.AUDIO_SERVICE, new AudioService(context));
633 } catch (Throwable e) {
634 reportWtf("starting Audio Service", e);
635 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800636 }
637
Dan Morrille4d9a012013-03-28 18:10:43 -0700638 if (!disableNonCoreServices) {
639 try {
640 Slog.i(TAG, "Dock Observer");
641 // Listen for dock station changes
642 dock = new DockObserver(context);
643 } catch (Throwable e) {
644 reportWtf("starting DockObserver", e);
645 }
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500646 }
647
Dan Morrille4d9a012013-03-28 18:10:43 -0700648 if (!disableMedia) {
649 try {
650 Slog.i(TAG, "Wired Accessory Manager");
651 // Listen for wired headset changes
652 inputManager.setWiredAccessoryCallbacks(
653 new WiredAccessoryManager(context, inputManager));
654 } catch (Throwable e) {
655 reportWtf("starting WiredAccessoryManager", e);
656 }
Praveen Bharathi21e941b2010-10-06 15:23:14 -0500657 }
658
Dan Morrille4d9a012013-03-28 18:10:43 -0700659 if (!disableNonCoreServices) {
660 try {
661 Slog.i(TAG, "USB Service");
662 // Manage USB host and device support
663 usb = new UsbService(context);
664 ServiceManager.addService(Context.USB_SERVICE, usb);
665 } catch (Throwable e) {
666 reportWtf("starting UsbService", e);
667 }
Mike Lockwood57c798a2010-06-23 17:36:36 -0400668
Dan Morrille4d9a012013-03-28 18:10:43 -0700669 try {
670 Slog.i(TAG, "Serial Service");
671 // Serial port support
672 serial = new SerialService(context);
673 ServiceManager.addService(Context.SERIAL_SERVICE, serial);
674 } catch (Throwable e) {
675 Slog.e(TAG, "Failure starting SerialService", e);
676 }
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -0400677 }
678
679 try {
Jeff Brown2416e092012-08-21 22:12:20 -0700680 Slog.i(TAG, "Twilight Service");
681 twilight = new TwilightService(context);
682 } catch (Throwable e) {
683 reportWtf("starting TwilightService", e);
684 }
685
686 try {
Dianne Hackborn7299c412010-03-04 18:41:49 -0800687 Slog.i(TAG, "UI Mode Manager Service");
Mike Lockwood57c798a2010-06-23 17:36:36 -0400688 // Listen for UI mode changes
Jeff Brown2416e092012-08-21 22:12:20 -0700689 uiMode = new UiModeManagerService(context, twilight);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800690 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700691 reportWtf("starting UiModeManagerService", e);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800692 }
693
Dan Morrille4d9a012013-03-28 18:10:43 -0700694 if (!disableNonCoreServices) {
695 try {
696 Slog.i(TAG, "Backup Service");
697 ServiceManager.addService(Context.BACKUP_SERVICE,
698 new BackupManagerService(context));
699 } catch (Throwable e) {
700 Slog.e(TAG, "Failure starting Backup Service", e);
701 }
Christopher Tate487529a2009-04-29 14:03:25 -0700702
Dan Morrille4d9a012013-03-28 18:10:43 -0700703 try {
704 Slog.i(TAG, "AppWidget Service");
705 appWidget = new AppWidgetService(context);
706 ServiceManager.addService(Context.APPWIDGET_SERVICE, appWidget);
707 } catch (Throwable e) {
708 reportWtf("starting AppWidget Service", e);
709 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800710
Dan Morrille4d9a012013-03-28 18:10:43 -0700711 try {
712 Slog.i(TAG, "Recognition Service");
713 recognition = new RecognitionManagerService(context);
714 } catch (Throwable e) {
715 reportWtf("starting Recognition Service", e);
716 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800717 }
Jaikumar Ganesh7d0548d2010-10-18 15:29:09 -0700718
Nick Pelly038cabe2010-09-23 16:12:11 -0700719 try {
Dan Egnor621bc542010-03-25 16:20:14 -0700720 Slog.i(TAG, "DiskStats Service");
721 ServiceManager.addService("diskstats", new DiskStatsService(context));
722 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700723 reportWtf("starting DiskStats Service", e);
Dan Egnor621bc542010-03-25 16:20:14 -0700724 }
Sen Hubde75702010-05-28 01:54:03 -0700725
726 try {
727 // need to add this service even if SamplingProfilerIntegration.isEnabled()
728 // is false, because it is this service that detects system property change and
729 // turns on SamplingProfilerIntegration. Plus, when sampling profiler doesn't work,
730 // there is little overhead for running this service.
731 Slog.i(TAG, "SamplingProfiler Service");
732 ServiceManager.addService("samplingprofiler",
733 new SamplingProfilerService(context));
734 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700735 reportWtf("starting SamplingProfiler Service", e);
Sen Hubde75702010-05-28 01:54:03 -0700736 }
Chung-yih Wang024d5962010-08-06 12:06:04 +0800737
Dan Morrille4d9a012013-03-28 18:10:43 -0700738 if (!disableNetwork) {
739 try {
740 Slog.i(TAG, "NetworkTimeUpdateService");
741 networkTimeUpdater = new NetworkTimeUpdateService(context);
742 } catch (Throwable e) {
743 reportWtf("starting NetworkTimeUpdate service", e);
744 }
Amith Yamasani6734b9f2010-09-13 16:24:08 -0700745 }
John Grossmanc1576732012-02-01 15:23:33 -0800746
Dan Morrille4d9a012013-03-28 18:10:43 -0700747 if (!disableMedia) {
748 try {
749 Slog.i(TAG, "CommonTimeManagementService");
750 commonTimeMgmtService = new CommonTimeManagementService(context);
751 ServiceManager.addService("commontime_management", commonTimeMgmtService);
752 } catch (Throwable e) {
753 reportWtf("starting CommonTimeManagementService service", e);
754 }
John Grossmanc1576732012-02-01 15:23:33 -0800755 }
Geremy Condra3d33c262012-05-06 18:32:19 -0700756
Dan Morrille4d9a012013-03-28 18:10:43 -0700757 if (!disableNetwork) {
758 try {
759 Slog.i(TAG, "CertBlacklister");
760 CertBlacklister blacklister = new CertBlacklister(context);
761 } catch (Throwable e) {
762 reportWtf("starting CertBlacklister", e);
763 }
Geremy Condra3d33c262012-05-06 18:32:19 -0700764 }
Jim Miller5ecd8112013-01-09 18:50:26 -0800765
Dan Morrille4d9a012013-03-28 18:10:43 -0700766 if (!disableNonCoreServices &&
767 context.getResources().getBoolean(R.bool.config_dreamsSupported)) {
Daniel Sandler7d276c32012-01-30 14:33:52 -0500768 try {
769 Slog.i(TAG, "Dreams Service");
770 // Dreams (interactive idle-time views, a/k/a screen savers)
Jeff Brown62c82e42012-09-26 01:30:41 -0700771 dreamy = new DreamManagerService(context, wmHandler);
Dianne Hackbornbe87e2f2012-09-28 16:31:34 -0700772 ServiceManager.addService(DreamService.DREAM_SERVICE, dreamy);
Daniel Sandler7d276c32012-01-30 14:33:52 -0500773 } catch (Throwable e) {
774 reportWtf("starting DreamManagerService", e);
775 }
776 }
Svetoslavb3038ec2013-02-13 14:39:30 -0800777
Romain Guy3b748a42013-04-17 18:54:38 -0700778 if (!disableNonCoreServices) {
779 try {
780 Slog.i(TAG, "Assets Atlas Service");
781 atlas = new AssetAtlasService(context);
782 ServiceManager.addService(AssetAtlasService.ASSET_ATLAS_SERVICE, atlas);
783 } catch (Throwable e) {
784 reportWtf("starting AssetAtlasService", e);
785 }
786 }
787
Svetoslavb3038ec2013-02-13 14:39:30 -0800788 try {
789 Slog.i(TAG, "IdleMaintenanceService");
Svetoslav6a08a122013-05-03 11:24:26 -0700790 new IdleMaintenanceService(context, battery);
Svetoslavb3038ec2013-02-13 14:39:30 -0800791 } catch (Throwable e) {
792 reportWtf("starting IdleMaintenanceService", e);
793 }
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -0700794
795 try {
796 Slog.i(TAG, "Print Service");
Svetoslav Ganova0027152013-06-25 14:59:53 -0700797 printManager = new PrintManagerService(context);
798 ServiceManager.addService(Context.PRINT_SERVICE, printManager);
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -0700799 } catch (Throwable e) {
800 reportWtf("starting Print Service", e);
801 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800802 }
803
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700804 // Before things start rolling, be sure we have decided whether
805 // we are in safe mode.
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700806 final boolean safeMode = wm.detectSafeMode();
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700807 if (safeMode) {
Jeff Brownb09abc12011-01-13 21:08:27 -0800808 ActivityManagerService.self().enterSafeMode();
809 // Post the safe mode state in the Zygote class
810 Zygote.systemInSafeMode = true;
811 // Disable the JIT for the system_server process
812 VMRuntime.getRuntime().disableJitCompilation();
Ben Cheng6c0afff2010-02-14 16:18:56 -0800813 } else {
814 // Enable the JIT for the system_server process
815 VMRuntime.getRuntime().startJitCompilation();
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700816 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800817
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700818 // It is now time to start up the app processes...
Joe Onorato30275482009-07-08 17:09:14 -0700819
Jeff Brown7f6c2312012-04-13 20:38:38 -0700820 try {
821 vibrator.systemReady();
822 } catch (Throwable e) {
823 reportWtf("making Vibrator Service ready", e);
824 }
825
Dan Morrille4d9a012013-03-28 18:10:43 -0700826 if (lockSettings != null) {
827 try {
828 lockSettings.systemReady();
829 } catch (Throwable e) {
830 reportWtf("making Lock Settings Service ready", e);
831 }
Felipe Ramosf35df5b2012-09-18 18:26:27 -0300832 }
833
Dianne Hackbornd6847842010-01-12 18:14:19 -0800834 if (devicePolicy != null) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700835 try {
836 devicePolicy.systemReady();
837 } catch (Throwable e) {
838 reportWtf("making Device Policy Service ready", e);
839 }
Dianne Hackbornd6847842010-01-12 18:14:19 -0800840 }
841
Joe Onorato30275482009-07-08 17:09:14 -0700842 if (notification != null) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700843 try {
844 notification.systemReady();
845 } catch (Throwable e) {
846 reportWtf("making Notification Service ready", e);
847 }
Joe Onorato30275482009-07-08 17:09:14 -0700848 }
849
Dianne Hackborn661cd522011-08-22 00:26:20 -0700850 try {
851 wm.systemReady();
852 } catch (Throwable e) {
853 reportWtf("making Window Manager Service ready", e);
854 }
Joe Onoratodc565f42010-10-04 15:27:22 -0400855
Jeff Brownb09abc12011-01-13 21:08:27 -0800856 if (safeMode) {
857 ActivityManagerService.self().showSafeModeOverlay();
858 }
859
Joe Onoratodc565f42010-10-04 15:27:22 -0400860 // Update the configuration for this context by hand, because we're going
861 // to start using it before the config change done in wm.systemReady() will
862 // propagate to it.
863 Configuration config = wm.computeNewConfiguration();
864 DisplayMetrics metrics = new DisplayMetrics();
865 WindowManager w = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
866 w.getDefaultDisplay().getMetrics(metrics);
867 context.getResources().updateConfiguration(config, metrics);
868
Jeff Brownaa202a62012-08-21 22:14:26 -0700869 try {
Jeff Brown62c82e42012-09-26 01:30:41 -0700870 power.systemReady(twilight, dreamy);
Jeff Brownaa202a62012-08-21 22:14:26 -0700871 } catch (Throwable e) {
872 reportWtf("making Power Manager Service ready", e);
873 }
874
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800875 try {
876 pm.systemReady();
Dianne Hackborn661cd522011-08-22 00:26:20 -0700877 } catch (Throwable e) {
878 reportWtf("making Package Manager Service ready", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800879 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800880
Jeff Brownbd6e1502012-08-28 03:27:37 -0700881 try {
882 display.systemReady(safeMode, onlyCore);
883 } catch (Throwable e) {
884 reportWtf("making Display Manager Service ready", e);
885 }
886
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700887 // These are needed to propagate to the runnable below.
Joe Onoratof3c3c4f2010-10-21 11:09:02 -0400888 final Context contextF = context;
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700889 final MountService mountServiceF = mountService;
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700890 final BatteryService batteryF = battery;
Jeff Sharkey350083e2011-06-29 10:45:16 -0700891 final NetworkManagementService networkManagementF = networkManagement;
Jeff Sharkey75279902011-05-24 18:39:45 -0700892 final NetworkStatsService networkStatsF = networkStats;
Jeff Sharkeya4620792011-05-20 15:29:23 -0700893 final NetworkPolicyManagerService networkPolicyF = networkPolicy;
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700894 final ConnectivityService connectivityF = connectivity;
895 final DockObserver dockF = dock;
Mike Lockwood770126a2010-12-09 22:30:37 -0800896 final UsbService usbF = usb;
Jeff Brown2416e092012-08-21 22:12:20 -0700897 final TwilightService twilightF = twilight;
Dianne Hackborn7299c412010-03-04 18:41:49 -0800898 final UiModeManagerService uiModeF = uiMode;
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700899 final AppWidgetService appWidgetF = appWidget;
900 final WallpaperManagerService wallpaperF = wallpaper;
901 final InputMethodManagerService immF = imm;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800902 final RecognitionManagerService recognitionF = recognition;
Mike Lockwood46db5042010-02-22 16:36:44 -0500903 final LocationManagerService locationF = location;
Bai Taoa58a8752010-07-13 15:32:16 +0800904 final CountryDetectorService countryDetectorF = countryDetector;
Amith Yamasani6734b9f2010-09-13 16:24:08 -0700905 final NetworkTimeUpdateService networkTimeUpdaterF = networkTimeUpdater;
John Grossmanc1576732012-02-01 15:23:33 -0800906 final CommonTimeManagementService commonTimeMgmtServiceF = commonTimeMgmtService;
satok988323c2011-06-22 16:38:13 +0900907 final TextServicesManagerService textServiceManagerServiceF = tsms;
Dianne Hackborn661cd522011-08-22 00:26:20 -0700908 final StatusBarManagerService statusBarF = statusBar;
Daniel Sandler7d276c32012-01-30 14:33:52 -0500909 final DreamManagerService dreamyF = dreamy;
Romain Guy3b748a42013-04-17 18:54:38 -0700910 final AssetAtlasService atlasF = atlas;
Jeff Brown6ec6f792012-04-17 16:52:41 -0700911 final InputManagerService inputManagerF = inputManager;
Wink Savillea12a7b32012-09-20 10:09:45 -0700912 final TelephonyRegistry telephonyRegistryF = telephonyRegistry;
Svetoslav Ganova0027152013-06-25 14:59:53 -0700913 final PrintManagerService printManagerF = printManager;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800914
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700915 // We now tell the activity manager it is okay to run third party
916 // code. It will call back into us once it has gotten to the state
917 // where third party code can really run (but before it has actually
918 // started launching the initial applications), for us to complete our
919 // initialization.
Dianne Hackborn295e3c22011-08-25 13:19:08 -0700920 ActivityManagerService.self().systemReady(new Runnable() {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700921 public void run() {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800922 Slog.i(TAG, "Making services ready");
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800923
Christopher Tate58d380d2013-03-19 13:10:03 -0700924 try {
925 ActivityManagerService.self().startObservingNativeCrashes();
926 } catch (Throwable e) {
927 reportWtf("observing native crashes", e);
928 }
Jim Miller5ecd8112013-01-09 18:50:26 -0800929 if (!headless) {
930 startSystemUi(contextF);
931 }
Dianne Hackborn661cd522011-08-22 00:26:20 -0700932 try {
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700933 if (mountServiceF != null) mountServiceF.systemReady();
934 } catch (Throwable e) {
935 reportWtf("making Mount Service ready", e);
936 }
937 try {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700938 if (batteryF != null) batteryF.systemReady();
939 } catch (Throwable e) {
940 reportWtf("making Battery Service ready", e);
941 }
942 try {
943 if (networkManagementF != null) networkManagementF.systemReady();
944 } catch (Throwable e) {
945 reportWtf("making Network Managment Service ready", e);
946 }
947 try {
948 if (networkStatsF != null) networkStatsF.systemReady();
949 } catch (Throwable e) {
950 reportWtf("making Network Stats Service ready", e);
951 }
952 try {
953 if (networkPolicyF != null) networkPolicyF.systemReady();
954 } catch (Throwable e) {
955 reportWtf("making Network Policy Service ready", e);
956 }
957 try {
958 if (connectivityF != null) connectivityF.systemReady();
959 } catch (Throwable e) {
960 reportWtf("making Connectivity Service ready", e);
961 }
962 try {
963 if (dockF != null) dockF.systemReady();
964 } catch (Throwable e) {
965 reportWtf("making Dock Service ready", e);
966 }
967 try {
968 if (usbF != null) usbF.systemReady();
969 } catch (Throwable e) {
970 reportWtf("making USB Service ready", e);
971 }
972 try {
Jeff Brown2416e092012-08-21 22:12:20 -0700973 if (twilightF != null) twilightF.systemReady();
974 } catch (Throwable e) {
975 reportWtf("makin Twilight Service ready", e);
976 }
977 try {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700978 if (uiModeF != null) uiModeF.systemReady();
979 } catch (Throwable e) {
980 reportWtf("making UI Mode Service ready", e);
981 }
982 try {
983 if (recognitionF != null) recognitionF.systemReady();
984 } catch (Throwable e) {
985 reportWtf("making Recognition Service ready", e);
986 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700987 Watchdog.getInstance().start();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800988
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700989 // It is now okay to let the various system services start their
990 // third party code...
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800991
Dianne Hackborn661cd522011-08-22 00:26:20 -0700992 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -0700993 if (appWidgetF != null) appWidgetF.systemRunning(safeMode);
Dianne Hackborn661cd522011-08-22 00:26:20 -0700994 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -0700995 reportWtf("Notifying AppWidgetService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -0700996 }
997 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -0700998 if (wallpaperF != null) wallpaperF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -0700999 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001000 reportWtf("Notifying WallpaperService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001001 }
1002 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001003 if (immF != null) immF.systemRunning(statusBarF);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001004 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001005 reportWtf("Notifying InputMethodService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001006 }
1007 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001008 if (locationF != null) locationF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001009 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001010 reportWtf("Notifying Location Service running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001011 }
1012 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001013 if (countryDetectorF != null) countryDetectorF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001014 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001015 reportWtf("Notifying CountryDetectorService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001016 }
1017 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001018 if (networkTimeUpdaterF != null) networkTimeUpdaterF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001019 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001020 reportWtf("Notifying NetworkTimeService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001021 }
1022 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001023 if (commonTimeMgmtServiceF != null) commonTimeMgmtServiceF.systemRunning();
John Grossmanc1576732012-02-01 15:23:33 -08001024 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001025 reportWtf("Notifying CommonTimeManagementService running", e);
John Grossmanc1576732012-02-01 15:23:33 -08001026 }
1027 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001028 if (textServiceManagerServiceF != null)
1029 textServiceManagerServiceF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001030 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001031 reportWtf("Notifying TextServicesManagerService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001032 }
Daniel Sandler7d276c32012-01-30 14:33:52 -05001033 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001034 if (dreamyF != null) dreamyF.systemRunning();
Daniel Sandler7d276c32012-01-30 14:33:52 -05001035 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001036 reportWtf("Notifying DreamManagerService running", e);
Daniel Sandler7d276c32012-01-30 14:33:52 -05001037 }
Jeff Brown6ec6f792012-04-17 16:52:41 -07001038 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001039 if (atlasF != null) atlasF.systemRunning();
Romain Guy3b748a42013-04-17 18:54:38 -07001040 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001041 reportWtf("Notifying AssetAtlasService running", e);
Romain Guy3b748a42013-04-17 18:54:38 -07001042 }
1043 try {
Matthew Xie96313142012-06-29 16:57:31 -07001044 // TODO(BT) Pass parameter to input manager
Svetoslav Ganova0027152013-06-25 14:59:53 -07001045 if (inputManagerF != null) inputManagerF.systemRunning();
Jeff Brown6ec6f792012-04-17 16:52:41 -07001046 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001047 reportWtf("Notifying InputManagerService running", e);
Jeff Brown6ec6f792012-04-17 16:52:41 -07001048 }
Dan Morrille4d9a012013-03-28 18:10:43 -07001049
Wink Savillea12a7b32012-09-20 10:09:45 -07001050 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001051 if (telephonyRegistryF != null) telephonyRegistryF.systemRunning();
Wink Savillea12a7b32012-09-20 10:09:45 -07001052 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001053 reportWtf("Notifying TelephonyRegistry running", e);
1054 }
1055
1056 try {
1057 if (printManagerF != null) printManagerF.systemRuning();
1058 } catch (Throwable e) {
1059 reportWtf("Notifying PrintManagerService running", e);
Wink Savillea12a7b32012-09-20 10:09:45 -07001060 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001061 }
1062 });
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001063
Brad Fitzpatrick1e02d362010-09-10 09:19:50 -07001064 // For debug builds, log event loop stalls to dropbox for analysis.
Brad Fitzpatrick50d66f92010-09-13 21:29:05 -07001065 if (StrictMode.conditionallyEnableDebugLogging()) {
1066 Slog.i(TAG, "Enabled StrictMode for system server main thread.");
Brad Fitzpatrick1e02d362010-09-10 09:19:50 -07001067 }
1068
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001069 Looper.loop();
Joe Onorato8a9b2202010-02-26 18:56:32 -08001070 Slog.d(TAG, "System ServerThread is exiting!");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001071 }
Joe Onoratof3c3c4f2010-10-21 11:09:02 -04001072
1073 static final void startSystemUi(Context context) {
1074 Intent intent = new Intent();
1075 intent.setComponent(new ComponentName("com.android.systemui",
1076 "com.android.systemui.SystemUIService"));
Dianne Hackborn40e9f292012-11-27 19:12:23 -08001077 //Slog.d(TAG, "Starting service: " + intent);
Amith Yamasanicd757062012-10-19 18:23:52 -07001078 context.startServiceAsUser(intent, UserHandle.OWNER);
Joe Onoratof3c3c4f2010-10-21 11:09:02 -04001079 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001080}
1081
Jeff Hamilton35eef702010-06-09 15:45:18 -05001082public class SystemServer {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001083 private static final String TAG = "SystemServer";
1084
1085 public static final int FACTORY_TEST_OFF = 0;
1086 public static final int FACTORY_TEST_LOW_LEVEL = 1;
1087 public static final int FACTORY_TEST_HIGH_LEVEL = 2;
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -07001088
Bob Leee5408332009-09-04 18:31:17 -07001089 static Timer timer;
1090 static final long SNAPSHOT_INTERVAL = 60 * 60 * 1000; // 1hr
1091
Brad Fitzpatrick6bb7a4a2010-10-11 13:41:10 -07001092 // The earliest supported time. We pick one day into 1970, to
1093 // give any timezone code room without going into negative time.
1094 private static final long EARLIEST_SUPPORTED_TIME = 86400 * 1000;
1095
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -07001096 /**
Jeff Brownef691172013-07-15 13:22:04 -07001097 * Called to initialize native system services.
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -07001098 */
Jeff Brownef691172013-07-15 13:22:04 -07001099 private static native void nativeInit();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001100
1101 public static void main(String[] args) {
Brad Fitzpatrick6bb7a4a2010-10-11 13:41:10 -07001102 if (System.currentTimeMillis() < EARLIEST_SUPPORTED_TIME) {
Brad Fitzpatrick35ca9d82010-10-11 11:52:49 -07001103 // If a device's clock is before 1970 (before 0), a lot of
1104 // APIs crash dealing with negative numbers, notably
1105 // java.io.File#setLastModified, so instead we fake it and
1106 // hope that time from cell towers or NTP fixes it
1107 // shortly.
1108 Slog.w(TAG, "System clock is before 1970; setting to 1970.");
Brad Fitzpatrick6bb7a4a2010-10-11 13:41:10 -07001109 SystemClock.setCurrentTimeMillis(EARLIEST_SUPPORTED_TIME);
Brad Fitzpatrick35ca9d82010-10-11 11:52:49 -07001110 }
1111
Bob Leee5408332009-09-04 18:31:17 -07001112 if (SamplingProfilerIntegration.isEnabled()) {
1113 SamplingProfilerIntegration.start();
1114 timer = new Timer();
1115 timer.schedule(new TimerTask() {
1116 @Override
1117 public void run() {
Sen Hubde75702010-05-28 01:54:03 -07001118 SamplingProfilerIntegration.writeSnapshot("system_server", null);
Bob Leee5408332009-09-04 18:31:17 -07001119 }
1120 }, SNAPSHOT_INTERVAL, SNAPSHOT_INTERVAL);
1121 }
1122
Dianne Hackbornac1471a2011-02-03 13:46:06 -08001123 // Mmmmmm... more memory!
1124 dalvik.system.VMRuntime.getRuntime().clearGrowthLimit();
1125
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001126 // The system server has to run all of the time, so it needs to be
1127 // as efficient as possible with its memory usage.
1128 VMRuntime.getRuntime().setTargetHeapUtilization(0.8f);
Sen Hubde75702010-05-28 01:54:03 -07001129
Jeff Sharkey48749fc2013-04-19 13:25:04 -07001130 Environment.setUserRequired(true);
1131
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001132 System.loadLibrary("android_servers");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001133
Joe Onorato8a9b2202010-02-26 18:56:32 -08001134 Slog.i(TAG, "Entered the Android system server!");
Dianne Hackbornefa92b22013-05-03 14:11:43 -07001135
Jeff Brownef691172013-07-15 13:22:04 -07001136 // Initialize native services.
1137 nativeInit();
1138
Dianne Hackbornefa92b22013-05-03 14:11:43 -07001139 // This used to be its own separate thread, but now it is
1140 // just the loop we run on the main thread.
1141 ServerThread thr = new ServerThread();
1142 thr.initAndLoop();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001143 }
1144}