blob: 5f02eeff15a2c663a642e74010864eb74f3187a1 [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 Brown69b07162013-11-07 00:30:16 -080058import com.android.server.media.MediaRouterService;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070059import com.android.server.net.NetworkPolicyManagerService;
Jeff Sharkey75279902011-05-24 18:39:45 -070060import com.android.server.net.NetworkStatsService;
Jeff Sharkey7a96c392012-11-15 14:01:46 -080061import com.android.server.os.SchedulingPolicyService;
Jeff Brownf69c8122012-09-12 17:00:34 -070062import com.android.server.pm.Installer;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070063import com.android.server.pm.PackageManagerService;
Amith Yamasani258848d2012-08-10 17:06:33 -070064import com.android.server.pm.UserManagerService;
Jeff Brown4f8ecd82012-06-18 18:29:13 -070065import com.android.server.power.PowerManagerService;
66import com.android.server.power.ShutdownThread;
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070067import com.android.server.print.PrintManagerService;
Jeff Sharkey7a96c392012-11-15 14:01:46 -080068import com.android.server.search.SearchManagerService;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070069import com.android.server.usb.UsbService;
Irfan Sheriffd017f352013-02-20 13:30:44 -080070import com.android.server.wifi.WifiService;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070071import com.android.server.wm.WindowManagerService;
72
73import dalvik.system.VMRuntime;
74import dalvik.system.Zygote;
75
Dan Egnor4410ec82009-09-11 16:40:01 -070076import java.io.File;
Bob Leee5408332009-09-04 18:31:17 -070077import java.util.Timer;
78import java.util.TimerTask;
79
Dianne Hackbornefa92b22013-05-03 14:11:43 -070080class ServerThread {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080081 private static final String TAG = "SystemServer";
Ben Komalo553acf02011-09-19 14:25:28 -070082 private static final String ENCRYPTING_STATE = "trigger_restart_min_framework";
Ben Komalo3573d402011-09-23 15:08:24 -070083 private static final String ENCRYPTED_STATE = "1";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080084
Jeff Hamilton35eef702010-06-09 15:45:18 -050085 ContentResolver mContentResolver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080086
Dianne Hackborn661cd522011-08-22 00:26:20 -070087 void reportWtf(String msg, Throwable e) {
88 Slog.w(TAG, "***********************************************");
89 Log.wtf(TAG, "BOOT FAILURE " + msg, e);
90 }
91
Dianne Hackbornefa92b22013-05-03 14:11:43 -070092 public void initAndLoop() {
Doug Zongkerab5c49c2009-12-04 10:31:43 -080093 EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_SYSTEM_RUN,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080094 SystemClock.uptimeMillis());
95
Vairavan Srinivasan04b74ec2012-02-02 22:12:19 -080096 Looper.prepareMainLooper();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080097
98 android.os.Process.setThreadPriority(
99 android.os.Process.THREAD_PRIORITY_FOREGROUND);
100
Dianne Hackborn887f3552009-12-07 17:59:37 -0800101 BinderInternal.disableBackgroundScheduling(true);
Christopher Tate160edb32010-06-30 17:46:30 -0700102 android.os.Process.setCanSelfBackground(false);
Sen Hubde75702010-05-28 01:54:03 -0700103
Kenny Rootf547d672010-09-22 10:36:48 -0700104 // Check whether we failed to shut down last time we tried.
105 {
106 final String shutdownAction = SystemProperties.get(
107 ShutdownThread.SHUTDOWN_ACTION_PROPERTY, "");
108 if (shutdownAction != null && shutdownAction.length() > 0) {
109 boolean reboot = (shutdownAction.charAt(0) == '1');
110
111 final String reason;
112 if (shutdownAction.length() > 1) {
113 reason = shutdownAction.substring(1, shutdownAction.length());
114 } else {
115 reason = null;
116 }
117
118 ShutdownThread.rebootOrShutdown(reboot, reason);
119 }
120 }
121
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800122 String factoryTestStr = SystemProperties.get("ro.factorytest");
123 int factoryTest = "".equals(factoryTestStr) ? SystemServer.FACTORY_TEST_OFF
124 : Integer.parseInt(factoryTestStr);
Mike Lockwood3a74bd32011-08-12 13:55:22 -0700125 final boolean headless = "1".equals(SystemProperties.get("ro.config.headless", "0"));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800126
Jeff Brownf69c8122012-09-12 17:00:34 -0700127 Installer installer = null;
Kenny Root26ff6622012-07-30 12:58:03 -0700128 AccountManagerService accountManager = null;
129 ContentService contentService = null;
Mike Lockwood3a322132009-11-24 00:30:52 -0500130 LightsService lights = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800131 PowerManagerService power = null;
Jeff Brownfa25bf52012-07-23 19:26:30 -0700132 DisplayManagerService display = null;
Mike Lockwood07a500f2009-08-12 09:56:44 -0400133 BatteryService battery = null;
Jeff Brown7f6c2312012-04-13 20:38:38 -0700134 VibratorService vibrator = null;
Jeff Sharkey75279902011-05-24 18:39:45 -0700135 AlarmManagerService alarm = null;
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700136 MountService mountService = null;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700137 NetworkManagementService networkManagement = null;
Jeff Sharkey75279902011-05-24 18:39:45 -0700138 NetworkStatsService networkStats = null;
Jeff Sharkeya4620792011-05-20 15:29:23 -0700139 NetworkPolicyManagerService networkPolicy = null;
Mike Lockwood0f79b542009-08-14 14:18:49 -0400140 ConnectivityService connectivity = null;
repo sync55bc5f32011-06-24 14:23:07 -0700141 WifiP2pService wifiP2p = null;
repo syncaea743a2011-07-29 23:55:49 -0700142 WifiService wifi = null;
Irfan Sheriff7d024d32012-03-22 17:01:39 -0700143 NsdService serviceDiscovery= null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800144 IPackageManager pm = null;
145 Context context = null;
146 WindowManagerService wm = null;
fredc0f420372012-04-12 00:02:00 -0700147 BluetoothManagerService bluetooth = null;
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500148 DockObserver dock = null;
Mike Lockwood770126a2010-12-09 22:30:37 -0800149 UsbService usb = null;
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -0400150 SerialService serial = null;
Jeff Brown2416e092012-08-21 22:12:20 -0700151 TwilightService twilight = null;
Dianne Hackborn7299c412010-03-04 18:41:49 -0800152 UiModeManagerService uiMode = null;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800153 RecognitionManagerService recognition = null;
Amith Yamasani6734b9f2010-09-13 16:24:08 -0700154 NetworkTimeUpdateService networkTimeUpdater = null;
John Grossmanc1576732012-02-01 15:23:33 -0800155 CommonTimeManagementService commonTimeMgmtService = null;
Jeff Brown6ec6f792012-04-17 16:52:41 -0700156 InputManagerService inputManager = null;
Wink Savillea12a7b32012-09-20 10:09:45 -0700157 TelephonyRegistry telephonyRegistry = null;
Erik Gilling51e95df2013-06-26 11:06:51 -0700158 ConsumerIrService consumerIr = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800159
Jeff Brownbd6e1502012-08-28 03:27:37 -0700160 // Create a handler thread just for the window manager to enjoy.
161 HandlerThread wmHandlerThread = new HandlerThread("WindowManager");
162 wmHandlerThread.start();
163 Handler wmHandler = new Handler(wmHandlerThread.getLooper());
164 wmHandler.post(new Runnable() {
165 @Override
166 public void run() {
167 //Looper.myLooper().setMessageLogging(new LogPrinter(
168 // android.util.Log.DEBUG, TAG, android.util.Log.LOG_ID_SYSTEM));
169 android.os.Process.setThreadPriority(
170 android.os.Process.THREAD_PRIORITY_DISPLAY);
171 android.os.Process.setCanSelfBackground(false);
172
173 // For debug builds, log event loop stalls to dropbox for analysis.
174 if (StrictMode.conditionallyEnableDebugLogging()) {
Jeff Brown89d55462012-09-19 11:33:42 -0700175 Slog.i(TAG, "Enabled StrictMode logging for WM Looper");
Jeff Brownbd6e1502012-08-28 03:27:37 -0700176 }
177 }
178 });
179
Dan Morrille4d9a012013-03-28 18:10:43 -0700180 // bootstrap services
Jeff Brownbd6e1502012-08-28 03:27:37 -0700181 boolean onlyCore = false;
Dan Morrille4d9a012013-03-28 18:10:43 -0700182 boolean firstBoot = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800183 try {
Jeff Brownf69c8122012-09-12 17:00:34 -0700184 // Wait for installd to finished starting up so that it has a chance to
185 // create critical directories such as /data/user with the appropriate
186 // permissions. We need this to complete before we initialize other services.
187 Slog.i(TAG, "Waiting for installd to be ready.");
188 installer = new Installer();
189 installer.ping();
190
Joe Onorato8a9b2202010-02-26 18:56:32 -0800191 Slog.i(TAG, "Power Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800192 power = new PowerManagerService();
193 ServiceManager.addService(Context.POWER_SERVICE, power);
194
Joe Onorato8a9b2202010-02-26 18:56:32 -0800195 Slog.i(TAG, "Activity Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800196 context = ActivityManagerService.main(factoryTest);
Dan Morrille4d9a012013-03-28 18:10:43 -0700197 } catch (RuntimeException e) {
198 Slog.e("System", "******************************************");
199 Slog.e("System", "************ Failure starting bootstrap service", e);
200 }
Jeff Brown848c2dc2012-08-19 20:18:08 -0700201
Dan Morrille4d9a012013-03-28 18:10:43 -0700202 boolean disableStorage = SystemProperties.getBoolean("config.disable_storage", false);
203 boolean disableMedia = SystemProperties.getBoolean("config.disable_media", false);
204 boolean disableBluetooth = SystemProperties.getBoolean("config.disable_bluetooth", false);
205 boolean disableTelephony = SystemProperties.getBoolean("config.disable_telephony", false);
206 boolean disableLocation = SystemProperties.getBoolean("config.disable_location", false);
207 boolean disableSystemUI = SystemProperties.getBoolean("config.disable_systemui", false);
208 boolean disableNonCoreServices = SystemProperties.getBoolean("config.disable_noncore", false);
209 boolean disableNetwork = SystemProperties.getBoolean("config.disable_network", false);
210
211 try {
Jeff Brown848c2dc2012-08-19 20:18:08 -0700212 Slog.i(TAG, "Display Manager");
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700213 display = new DisplayManagerService(context, wmHandler);
Jeff Brown848c2dc2012-08-19 20:18:08 -0700214 ServiceManager.addService(Context.DISPLAY_SERVICE, display, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800215
Joe Onorato8a9b2202010-02-26 18:56:32 -0800216 Slog.i(TAG, "Telephony Registry");
Wink Savillea12a7b32012-09-20 10:09:45 -0700217 telephonyRegistry = new TelephonyRegistry(context);
218 ServiceManager.addService("telephony.registry", telephonyRegistry);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800219
Glenn Kasten07b04652012-04-23 15:00:43 -0700220 Slog.i(TAG, "Scheduling Policy");
Dianne Hackborn35f72be2013-09-16 10:57:39 -0700221 ServiceManager.addService("scheduling_policy", new SchedulingPolicyService());
Glenn Kasten07b04652012-04-23 15:00:43 -0700222
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800223 AttributeCache.init(context);
224
Jeff Brownbd6e1502012-08-28 03:27:37 -0700225 if (!display.waitForDefaultDisplay()) {
226 reportWtf("Timeout waiting for default display to be initialized.",
227 new Throwable());
228 }
229
Joe Onorato8a9b2202010-02-26 18:56:32 -0800230 Slog.i(TAG, "Package Manager");
Ben Komalo553acf02011-09-19 14:25:28 -0700231 // Only run "core" apps if we're encrypting the device.
232 String cryptState = SystemProperties.get("vold.decrypt");
Ben Komalo3573d402011-09-23 15:08:24 -0700233 if (ENCRYPTING_STATE.equals(cryptState)) {
Ben Komalo553acf02011-09-19 14:25:28 -0700234 Slog.w(TAG, "Detected encryption in progress - only parsing core apps");
Ben Komalo3573d402011-09-23 15:08:24 -0700235 onlyCore = true;
236 } else if (ENCRYPTED_STATE.equals(cryptState)) {
237 Slog.w(TAG, "Device encrypted - only parsing core apps");
238 onlyCore = true;
Ben Komalo553acf02011-09-19 14:25:28 -0700239 }
Ben Komalo3573d402011-09-23 15:08:24 -0700240
Jeff Brownf69c8122012-09-12 17:00:34 -0700241 pm = PackageManagerService.main(context, installer,
Dianne Hackbornd2509fd2011-09-12 12:29:43 -0700242 factoryTest != SystemServer.FACTORY_TEST_OFF,
Ben Komalo553acf02011-09-19 14:25:28 -0700243 onlyCore);
Dianne Hackborn58f42a52011-10-10 13:46:34 -0700244 try {
245 firstBoot = pm.isFirstBoot();
246 } catch (RemoteException e) {
247 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800248
249 ActivityManagerService.setSystemProcess();
Svetoslavb3038ec2013-02-13 14:39:30 -0800250
Nick Kralevich79619dd2013-03-04 13:05:32 -0800251 Slog.i(TAG, "Entropy Mixer");
252 ServiceManager.addService("entropy", new EntropyMixer(context));
253
Amith Yamasani258848d2012-08-10 17:06:33 -0700254 Slog.i(TAG, "User Service");
255 ServiceManager.addService(Context.USER_SERVICE,
Dianne Hackborn4428e172012-08-24 17:43:05 -0700256 UserManagerService.getInstance());
Amith Yamasani258848d2012-08-10 17:06:33 -0700257
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800258 mContentResolver = context.getContentResolver();
259
Fred Quintanae91ebe22009-09-29 20:44:30 -0700260 // The AccountManager must come before the ContentService
Fred Quintana60307342009-03-24 22:48:12 -0700261 try {
Dan Morrille4d9a012013-03-28 18:10:43 -0700262 // TODO: seems like this should be disable-able, but req'd by ContentService
Joe Onorato8a9b2202010-02-26 18:56:32 -0800263 Slog.i(TAG, "Account Manager");
Kenny Root26ff6622012-07-30 12:58:03 -0700264 accountManager = new AccountManagerService(context);
265 ServiceManager.addService(Context.ACCOUNT_SERVICE, accountManager);
Fred Quintana60307342009-03-24 22:48:12 -0700266 } catch (Throwable e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800267 Slog.e(TAG, "Failure starting Account Manager", e);
Fred Quintana60307342009-03-24 22:48:12 -0700268 }
269
Joe Onorato8a9b2202010-02-26 18:56:32 -0800270 Slog.i(TAG, "Content Manager");
Kenny Root26ff6622012-07-30 12:58:03 -0700271 contentService = ContentService.main(context,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800272 factoryTest == SystemServer.FACTORY_TEST_LOW_LEVEL);
273
Joe Onorato8a9b2202010-02-26 18:56:32 -0800274 Slog.i(TAG, "System Content Providers");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800275 ActivityManagerService.installSystemProviders();
276
Joe Onorato8a9b2202010-02-26 18:56:32 -0800277 Slog.i(TAG, "Lights Service");
Mike Lockwood3a322132009-11-24 00:30:52 -0500278 lights = new LightsService(context);
279
Joe Onoratode1b3592010-10-25 20:36:47 -0700280 Slog.i(TAG, "Battery Service");
281 battery = new BatteryService(context, lights);
282 ServiceManager.addService("battery", battery);
283
Joe Onorato8a9b2202010-02-26 18:56:32 -0800284 Slog.i(TAG, "Vibrator Service");
Jeff Brown7f6c2312012-04-13 20:38:38 -0700285 vibrator = new VibratorService(context);
286 ServiceManager.addService("vibrator", vibrator);
The Android Open Source Project10592532009-03-18 17:39:46 -0700287
Erik Gilling51e95df2013-06-26 11:06:51 -0700288 Slog.i(TAG, "Consumer IR Service");
289 consumerIr = new ConsumerIrService(context);
290 ServiceManager.addService(Context.CONSUMER_IR_SERVICE, consumerIr);
291
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800292 // only initialize the power service after we have started the
Mike Lockwood3a322132009-11-24 00:30:52 -0500293 // lights service, content providers and the battery service.
Jeff Brown96307042012-07-27 15:51:34 -0700294 power.init(context, lights, ActivityManagerService.self(), battery,
Dianne Hackborn713df152013-05-17 11:27:57 -0700295 BatteryStatsService.getService(),
296 ActivityManagerService.self().getAppOpsService(), display);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800297
Joe Onorato8a9b2202010-02-26 18:56:32 -0800298 Slog.i(TAG, "Alarm Manager");
Jeff Sharkey75279902011-05-24 18:39:45 -0700299 alarm = new AlarmManagerService(context);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800300 ServiceManager.addService(Context.ALARM_SERVICE, alarm);
301
Joe Onorato8a9b2202010-02-26 18:56:32 -0800302 Slog.i(TAG, "Init Watchdog");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800303 Watchdog.getInstance().init(context, battery, power, alarm,
304 ActivityManagerService.self());
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700305 Watchdog.getInstance().addThread(wmHandler, "WindowManager thread");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800306
Jeff Browna9d131c2012-09-20 16:48:17 -0700307 Slog.i(TAG, "Input Manager");
308 inputManager = new InputManagerService(context, wmHandler);
309
Joe Onorato8a9b2202010-02-26 18:56:32 -0800310 Slog.i(TAG, "Window Manager");
Jeff Browna9d131c2012-09-20 16:48:17 -0700311 wm = WindowManagerService.main(context, power, display, inputManager,
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700312 wmHandler, factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL,
Jeff Brown780c46f2012-06-24 12:15:38 -0700313 !firstBoot, onlyCore);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800314 ServiceManager.addService(Context.WINDOW_SERVICE, wm);
Jeff Brown6ec6f792012-04-17 16:52:41 -0700315 ServiceManager.addService(Context.INPUT_SERVICE, inputManager);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800316
Dianne Hackborn295e3c22011-08-25 13:19:08 -0700317 ActivityManagerService.self().setWindowManager(wm);
Jeff Browna9d131c2012-09-20 16:48:17 -0700318
319 inputManager.setWindowManagerCallbacks(wm.getInputMonitor());
320 inputManager.start();
321
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700322 display.setWindowManager(wm);
Jeff Brownd728bf52012-09-08 18:05:28 -0700323 display.setInputManager(inputManager);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800324
325 // Skip Bluetooth if we have an emulator kernel
326 // TODO: Use a more reliable check to see if this product should
327 // support Bluetooth - see bug 988521
328 if (SystemProperties.get("ro.kernel.qemu").equals("1")) {
David 'Digit' Turnere2a5e862011-01-17 00:32:33 +0100329 Slog.i(TAG, "No Bluetooh Service (emulator)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800330 } else if (factoryTest == SystemServer.FACTORY_TEST_LOW_LEVEL) {
David 'Digit' Turnere2a5e862011-01-17 00:32:33 +0100331 Slog.i(TAG, "No Bluetooth Service (factory test)");
Matthew Xie1dd01eb32013-04-26 12:37:54 -0700332 } else if (!context.getPackageManager().hasSystemFeature
333 (PackageManager.FEATURE_BLUETOOTH)) {
334 Slog.i(TAG, "No Bluetooth Service (Bluetooth Hardware Not Present)");
Dan Morrille4d9a012013-03-28 18:10:43 -0700335 } else if (disableBluetooth) {
336 Slog.i(TAG, "Bluetooth Service disabled by config");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800337 } else {
fredc0f420372012-04-12 00:02:00 -0700338 Slog.i(TAG, "Bluetooth Manager Service");
339 bluetooth = new BluetoothManagerService(context);
340 ServiceManager.addService(BluetoothAdapter.BLUETOOTH_MANAGER_SERVICE, bluetooth);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800341 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800342 } catch (RuntimeException e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700343 Slog.e("System", "******************************************");
344 Slog.e("System", "************ Failure starting core service", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800345 }
346
Dianne Hackbornd6847842010-01-12 18:14:19 -0800347 DevicePolicyManagerService devicePolicy = null;
Joe Onorato089de882010-04-12 08:18:45 -0700348 StatusBarManagerService statusBar = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800349 InputMethodManagerService imm = null;
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700350 AppWidgetService appWidget = null;
Joe Onorato30275482009-07-08 17:09:14 -0700351 NotificationManagerService notification = null;
Dianne Hackbornf21adf62009-08-13 10:20:21 -0700352 WallpaperManagerService wallpaper = null;
Mike Lockwood46db5042010-02-22 16:36:44 -0500353 LocationManagerService location = null;
Bai Taoa58a8752010-07-13 15:32:16 +0800354 CountryDetectorService countryDetector = null;
satok988323c2011-06-22 16:38:13 +0900355 TextServicesManagerService tsms = null;
Amith Yamasani52c489c2012-03-28 11:42:42 -0700356 LockSettingsService lockSettings = null;
Daniel Sandler7d276c32012-01-30 14:33:52 -0500357 DreamManagerService dreamy = null;
Romain Guy3b748a42013-04-17 18:54:38 -0700358 AssetAtlasService atlas = null;
Svetoslav Ganova0027152013-06-25 14:59:53 -0700359 PrintManagerService printManager = null;
Jeff Brown69b07162013-11-07 00:30:16 -0800360 MediaRouterService mediaRouter = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800361
Dianne Hackborn661cd522011-08-22 00:26:20 -0700362 // Bring up services needed for UI.
363 if (factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL) {
Dan Morrille4d9a012013-03-28 18:10:43 -0700364 //if (!disableNonCoreServices) { // TODO: View depends on these; mock them?
365 if (true) {
366 try {
367 Slog.i(TAG, "Input Method Service");
368 imm = new InputMethodManagerService(context, wm);
369 ServiceManager.addService(Context.INPUT_METHOD_SERVICE, imm);
370 } catch (Throwable e) {
371 reportWtf("starting Input Manager Service", e);
372 }
Dianne Hackborn661cd522011-08-22 00:26:20 -0700373
Dan Morrille4d9a012013-03-28 18:10:43 -0700374 try {
375 Slog.i(TAG, "Accessibility Manager");
376 ServiceManager.addService(Context.ACCESSIBILITY_SERVICE,
377 new AccessibilityManagerService(context));
378 } catch (Throwable e) {
379 reportWtf("starting Accessibility Manager", e);
380 }
Dianne Hackborn661cd522011-08-22 00:26:20 -0700381 }
382 }
383
384 try {
385 wm.displayReady();
386 } catch (Throwable e) {
387 reportWtf("making display ready", e);
388 }
Dianne Hackborn8795b602011-08-25 13:30:53 -0700389
Dianne Hackborn295e3c22011-08-25 13:19:08 -0700390 try {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700391 pm.performBootDexOpt();
392 } catch (Throwable e) {
393 reportWtf("performing boot dexopt", e);
394 }
395
396 try {
397 ActivityManagerNative.getDefault().showBootMessage(
398 context.getResources().getText(
399 com.android.internal.R.string.android_upgrading_starting_apps),
400 false);
401 } catch (RemoteException e) {
402 }
403
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800404 if (factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL) {
Dan Morrille4d9a012013-03-28 18:10:43 -0700405 if (!disableStorage &&
406 !"0".equals(SystemProperties.get("system_init.startmountservice"))) {
Kenny Root51a573c2012-05-17 13:30:28 -0700407 try {
408 /*
409 * NotificationManagerService is dependant on MountService,
410 * (for media / usb notifications) so we must start MountService first.
411 */
412 Slog.i(TAG, "Mount Service");
413 mountService = new MountService(context);
414 ServiceManager.addService("mount", mountService);
415 } catch (Throwable e) {
416 reportWtf("starting Mount Service", e);
417 }
418 }
419
Dan Morrille4d9a012013-03-28 18:10:43 -0700420 if (!disableNonCoreServices) {
421 try {
422 Slog.i(TAG, "LockSettingsService");
423 lockSettings = new LockSettingsService(context);
424 ServiceManager.addService("lock_settings", lockSettings);
425 } catch (Throwable e) {
426 reportWtf("starting LockSettingsService service", e);
427 }
428
429 try {
430 Slog.i(TAG, "Device Policy");
431 devicePolicy = new DevicePolicyManagerService(context);
432 ServiceManager.addService(Context.DEVICE_POLICY_SERVICE, devicePolicy);
433 } catch (Throwable e) {
434 reportWtf("starting DevicePolicyService", e);
435 }
Amith Yamasani52c489c2012-03-28 11:42:42 -0700436 }
437
Dan Morrille4d9a012013-03-28 18:10:43 -0700438 if (!disableSystemUI) {
439 try {
440 Slog.i(TAG, "Status Bar");
441 statusBar = new StatusBarManagerService(context, wm);
442 ServiceManager.addService(Context.STATUS_BAR_SERVICE, statusBar);
443 } catch (Throwable e) {
444 reportWtf("starting StatusBarManagerService", e);
445 }
Dianne Hackbornd6847842010-01-12 18:14:19 -0800446 }
447
Dan Morrille4d9a012013-03-28 18:10:43 -0700448 if (!disableNonCoreServices) {
449 try {
450 Slog.i(TAG, "Clipboard Service");
451 ServiceManager.addService(Context.CLIPBOARD_SERVICE,
452 new ClipboardService(context));
453 } catch (Throwable e) {
454 reportWtf("starting Clipboard Service", e);
455 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800456 }
457
Dan Morrille4d9a012013-03-28 18:10:43 -0700458 if (!disableNetwork) {
459 try {
460 Slog.i(TAG, "NetworkManagement Service");
461 networkManagement = NetworkManagementService.create(context);
462 ServiceManager.addService(Context.NETWORKMANAGEMENT_SERVICE, networkManagement);
463 } catch (Throwable e) {
464 reportWtf("starting NetworkManagement Service", e);
465 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800466 }
467
Dan Morrille4d9a012013-03-28 18:10:43 -0700468 if (!disableNonCoreServices) {
469 try {
470 Slog.i(TAG, "Text Service Manager Service");
471 tsms = new TextServicesManagerService(context);
472 ServiceManager.addService(Context.TEXT_SERVICES_MANAGER_SERVICE, tsms);
473 } catch (Throwable e) {
474 reportWtf("starting Text Service Manager Service", e);
475 }
San Mehatd1df8ac2010-01-26 06:17:26 -0800476 }
477
Dan Morrille4d9a012013-03-28 18:10:43 -0700478 if (!disableNetwork) {
479 try {
480 Slog.i(TAG, "NetworkStats Service");
481 networkStats = new NetworkStatsService(context, networkManagement, alarm);
482 ServiceManager.addService(Context.NETWORK_STATS_SERVICE, networkStats);
483 } catch (Throwable e) {
484 reportWtf("starting NetworkStats Service", e);
485 }
486
487 try {
488 Slog.i(TAG, "NetworkPolicy Service");
489 networkPolicy = new NetworkPolicyManagerService(
490 context, ActivityManagerService.self(), power,
491 networkStats, networkManagement);
492 ServiceManager.addService(Context.NETWORK_POLICY_SERVICE, networkPolicy);
493 } catch (Throwable e) {
494 reportWtf("starting NetworkPolicy Service", e);
495 }
496
497 try {
498 Slog.i(TAG, "Wi-Fi P2pService");
499 wifiP2p = new WifiP2pService(context);
500 ServiceManager.addService(Context.WIFI_P2P_SERVICE, wifiP2p);
501 } catch (Throwable e) {
502 reportWtf("starting Wi-Fi P2pService", e);
503 }
504
505 try {
506 Slog.i(TAG, "Wi-Fi Service");
507 wifi = new WifiService(context);
508 ServiceManager.addService(Context.WIFI_SERVICE, wifi);
509 } catch (Throwable e) {
510 reportWtf("starting Wi-Fi Service", e);
511 }
512
513 try {
514 Slog.i(TAG, "Connectivity Service");
515 connectivity = new ConnectivityService(
516 context, networkManagement, networkStats, networkPolicy);
517 ServiceManager.addService(Context.CONNECTIVITY_SERVICE, connectivity);
518 networkStats.bindConnectivityManager(connectivity);
519 networkPolicy.bindConnectivityManager(connectivity);
Vinit Deshapnde04675f62013-10-03 16:18:56 -0700520
Dan Morrille4d9a012013-03-28 18:10:43 -0700521 wifiP2p.connectivityServiceReady();
Vinit Deshapnde04675f62013-10-03 16:18:56 -0700522 wifi.checkAndStartWifi();
Dan Morrille4d9a012013-03-28 18:10:43 -0700523 } catch (Throwable e) {
524 reportWtf("starting Connectivity Service", e);
525 }
526
527 try {
528 Slog.i(TAG, "Network Service Discovery Service");
529 serviceDiscovery = NsdService.create(context);
530 ServiceManager.addService(
531 Context.NSD_SERVICE, serviceDiscovery);
532 } catch (Throwable e) {
533 reportWtf("starting Service Discovery Service", e);
534 }
satok988323c2011-06-22 16:38:13 +0900535 }
536
Dan Morrille4d9a012013-03-28 18:10:43 -0700537 if (!disableNonCoreServices) {
538 try {
539 Slog.i(TAG, "UpdateLock Service");
540 ServiceManager.addService(Context.UPDATE_LOCK_SERVICE,
541 new UpdateLockService(context));
542 } catch (Throwable e) {
543 reportWtf("starting UpdateLockService", e);
544 }
Christopher Tate8662cab52012-02-23 14:59:36 -0800545 }
546
Kenny Root51a573c2012-05-17 13:30:28 -0700547 /*
548 * MountService has a few dependencies: Notification Manager and
549 * AppWidget Provider. Make sure MountService is completely started
550 * first before continuing.
551 */
Ken Sumrall025adc42013-06-05 22:08:12 -0700552 if (mountService != null && !onlyCore) {
Kenny Root51a573c2012-05-17 13:30:28 -0700553 mountService.waitForAsecScan();
San Mehat1bf3f8b2010-02-03 14:43:09 -0800554 }
555
556 try {
Kenny Root26ff6622012-07-30 12:58:03 -0700557 if (accountManager != null)
558 accountManager.systemReady();
559 } catch (Throwable e) {
560 reportWtf("making Account Manager Service ready", e);
561 }
562
563 try {
564 if (contentService != null)
565 contentService.systemReady();
566 } catch (Throwable e) {
567 reportWtf("making Content Service ready", e);
568 }
569
570 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800571 Slog.i(TAG, "Notification Manager");
Mike Lockwood3a322132009-11-24 00:30:52 -0500572 notification = new NotificationManagerService(context, statusBar, lights);
Joe Onorato30275482009-07-08 17:09:14 -0700573 ServiceManager.addService(Context.NOTIFICATION_SERVICE, notification);
Jeff Sharkey497e4432011-06-14 17:27:29 -0700574 networkPolicy.bindNotificationManager(notification);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800575 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700576 reportWtf("starting Notification Manager", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800577 }
578
579 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800580 Slog.i(TAG, "Device Storage Monitor");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800581 ServiceManager.addService(DeviceStorageMonitorService.SERVICE,
582 new DeviceStorageMonitorService(context));
583 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700584 reportWtf("starting DeviceStorageMonitor service", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800585 }
586
Dan Morrille4d9a012013-03-28 18:10:43 -0700587 if (!disableLocation) {
588 try {
589 Slog.i(TAG, "Location Manager");
590 location = new LocationManagerService(context);
591 ServiceManager.addService(Context.LOCATION_SERVICE, location);
592 } catch (Throwable e) {
593 reportWtf("starting Location Manager", e);
594 }
595
596 try {
597 Slog.i(TAG, "Country Detector");
598 countryDetector = new CountryDetectorService(context);
599 ServiceManager.addService(Context.COUNTRY_DETECTOR, countryDetector);
600 } catch (Throwable e) {
601 reportWtf("starting Country Detector", e);
602 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800603 }
604
Dan Morrille4d9a012013-03-28 18:10:43 -0700605 if (!disableNonCoreServices) {
606 try {
607 Slog.i(TAG, "Search Service");
608 ServiceManager.addService(Context.SEARCH_SERVICE,
609 new SearchManagerService(context));
610 } catch (Throwable e) {
611 reportWtf("starting Search Service", e);
612 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800613 }
614
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800615 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800616 Slog.i(TAG, "DropBox Service");
Dan Egnor95240272009-10-27 18:23:39 -0700617 ServiceManager.addService(Context.DROPBOX_SERVICE,
Dan Egnorf18a01c2009-11-12 11:32:50 -0800618 new DropBoxManagerService(context, new File("/data/system/dropbox")));
Dan Egnor4410ec82009-09-11 16:40:01 -0700619 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700620 reportWtf("starting DropBoxManagerService", e);
Dan Egnor4410ec82009-09-11 16:40:01 -0700621 }
622
Dan Morrille4d9a012013-03-28 18:10:43 -0700623 if (!disableNonCoreServices && context.getResources().getBoolean(
624 R.bool.config_enableWallpaperService)) {
Mike Lockwoodc067c9c2011-10-31 12:50:12 -0400625 try {
626 Slog.i(TAG, "Wallpaper Service");
627 if (!headless) {
628 wallpaper = new WallpaperManagerService(context);
629 ServiceManager.addService(Context.WALLPAPER_SERVICE, wallpaper);
630 }
631 } catch (Throwable e) {
632 reportWtf("starting Wallpaper Service", e);
Mike Lockwood3a74bd32011-08-12 13:55:22 -0700633 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800634 }
635
Dan Morrille4d9a012013-03-28 18:10:43 -0700636 if (!disableMedia && !"0".equals(SystemProperties.get("system_init.startaudioservice"))) {
Mike Lockwoodcba928c2011-08-17 15:58:52 -0700637 try {
638 Slog.i(TAG, "Audio Service");
639 ServiceManager.addService(Context.AUDIO_SERVICE, new AudioService(context));
640 } catch (Throwable e) {
641 reportWtf("starting Audio Service", e);
642 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800643 }
644
Dan Morrille4d9a012013-03-28 18:10:43 -0700645 if (!disableNonCoreServices) {
646 try {
647 Slog.i(TAG, "Dock Observer");
648 // Listen for dock station changes
649 dock = new DockObserver(context);
650 } catch (Throwable e) {
651 reportWtf("starting DockObserver", e);
652 }
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500653 }
654
Dan Morrille4d9a012013-03-28 18:10:43 -0700655 if (!disableMedia) {
656 try {
657 Slog.i(TAG, "Wired Accessory Manager");
658 // Listen for wired headset changes
659 inputManager.setWiredAccessoryCallbacks(
660 new WiredAccessoryManager(context, inputManager));
661 } catch (Throwable e) {
662 reportWtf("starting WiredAccessoryManager", e);
663 }
Praveen Bharathi21e941b2010-10-06 15:23:14 -0500664 }
665
Dan Morrille4d9a012013-03-28 18:10:43 -0700666 if (!disableNonCoreServices) {
667 try {
668 Slog.i(TAG, "USB Service");
669 // Manage USB host and device support
670 usb = new UsbService(context);
671 ServiceManager.addService(Context.USB_SERVICE, usb);
672 } catch (Throwable e) {
673 reportWtf("starting UsbService", e);
674 }
Mike Lockwood57c798a2010-06-23 17:36:36 -0400675
Dan Morrille4d9a012013-03-28 18:10:43 -0700676 try {
677 Slog.i(TAG, "Serial Service");
678 // Serial port support
679 serial = new SerialService(context);
680 ServiceManager.addService(Context.SERIAL_SERVICE, serial);
681 } catch (Throwable e) {
682 Slog.e(TAG, "Failure starting SerialService", e);
683 }
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -0400684 }
685
686 try {
Jeff Brown2416e092012-08-21 22:12:20 -0700687 Slog.i(TAG, "Twilight Service");
688 twilight = new TwilightService(context);
689 } catch (Throwable e) {
690 reportWtf("starting TwilightService", e);
691 }
692
693 try {
Dianne Hackborn7299c412010-03-04 18:41:49 -0800694 Slog.i(TAG, "UI Mode Manager Service");
Mike Lockwood57c798a2010-06-23 17:36:36 -0400695 // Listen for UI mode changes
Jeff Brown2416e092012-08-21 22:12:20 -0700696 uiMode = new UiModeManagerService(context, twilight);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800697 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700698 reportWtf("starting UiModeManagerService", e);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800699 }
700
Dan Morrille4d9a012013-03-28 18:10:43 -0700701 if (!disableNonCoreServices) {
702 try {
703 Slog.i(TAG, "Backup Service");
704 ServiceManager.addService(Context.BACKUP_SERVICE,
705 new BackupManagerService(context));
706 } catch (Throwable e) {
707 Slog.e(TAG, "Failure starting Backup Service", e);
708 }
Christopher Tate487529a2009-04-29 14:03:25 -0700709
Dan Morrille4d9a012013-03-28 18:10:43 -0700710 try {
711 Slog.i(TAG, "AppWidget Service");
712 appWidget = new AppWidgetService(context);
713 ServiceManager.addService(Context.APPWIDGET_SERVICE, appWidget);
714 } catch (Throwable e) {
715 reportWtf("starting AppWidget Service", e);
716 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800717
Dan Morrille4d9a012013-03-28 18:10:43 -0700718 try {
719 Slog.i(TAG, "Recognition Service");
720 recognition = new RecognitionManagerService(context);
721 } catch (Throwable e) {
722 reportWtf("starting Recognition Service", e);
723 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800724 }
Jaikumar Ganesh7d0548d2010-10-18 15:29:09 -0700725
Nick Pelly038cabe2010-09-23 16:12:11 -0700726 try {
Dan Egnor621bc542010-03-25 16:20:14 -0700727 Slog.i(TAG, "DiskStats Service");
728 ServiceManager.addService("diskstats", new DiskStatsService(context));
729 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700730 reportWtf("starting DiskStats Service", e);
Dan Egnor621bc542010-03-25 16:20:14 -0700731 }
Sen Hubde75702010-05-28 01:54:03 -0700732
733 try {
734 // need to add this service even if SamplingProfilerIntegration.isEnabled()
735 // is false, because it is this service that detects system property change and
736 // turns on SamplingProfilerIntegration. Plus, when sampling profiler doesn't work,
737 // there is little overhead for running this service.
738 Slog.i(TAG, "SamplingProfiler Service");
739 ServiceManager.addService("samplingprofiler",
740 new SamplingProfilerService(context));
741 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700742 reportWtf("starting SamplingProfiler Service", e);
Sen Hubde75702010-05-28 01:54:03 -0700743 }
Chung-yih Wang024d5962010-08-06 12:06:04 +0800744
Dan Morrille4d9a012013-03-28 18:10:43 -0700745 if (!disableNetwork) {
746 try {
747 Slog.i(TAG, "NetworkTimeUpdateService");
748 networkTimeUpdater = new NetworkTimeUpdateService(context);
749 } catch (Throwable e) {
750 reportWtf("starting NetworkTimeUpdate service", e);
751 }
Amith Yamasani6734b9f2010-09-13 16:24:08 -0700752 }
John Grossmanc1576732012-02-01 15:23:33 -0800753
Dan Morrille4d9a012013-03-28 18:10:43 -0700754 if (!disableMedia) {
755 try {
756 Slog.i(TAG, "CommonTimeManagementService");
757 commonTimeMgmtService = new CommonTimeManagementService(context);
758 ServiceManager.addService("commontime_management", commonTimeMgmtService);
759 } catch (Throwable e) {
760 reportWtf("starting CommonTimeManagementService service", e);
761 }
John Grossmanc1576732012-02-01 15:23:33 -0800762 }
Geremy Condra3d33c262012-05-06 18:32:19 -0700763
Dan Morrille4d9a012013-03-28 18:10:43 -0700764 if (!disableNetwork) {
765 try {
766 Slog.i(TAG, "CertBlacklister");
767 CertBlacklister blacklister = new CertBlacklister(context);
768 } catch (Throwable e) {
769 reportWtf("starting CertBlacklister", e);
770 }
Geremy Condra3d33c262012-05-06 18:32:19 -0700771 }
Jim Miller5ecd8112013-01-09 18:50:26 -0800772
Dan Morrille4d9a012013-03-28 18:10:43 -0700773 if (!disableNonCoreServices &&
774 context.getResources().getBoolean(R.bool.config_dreamsSupported)) {
Daniel Sandler7d276c32012-01-30 14:33:52 -0500775 try {
776 Slog.i(TAG, "Dreams Service");
777 // Dreams (interactive idle-time views, a/k/a screen savers)
Jeff Brown62c82e42012-09-26 01:30:41 -0700778 dreamy = new DreamManagerService(context, wmHandler);
Dianne Hackbornbe87e2f2012-09-28 16:31:34 -0700779 ServiceManager.addService(DreamService.DREAM_SERVICE, dreamy);
Daniel Sandler7d276c32012-01-30 14:33:52 -0500780 } catch (Throwable e) {
781 reportWtf("starting DreamManagerService", e);
782 }
783 }
Svetoslavb3038ec2013-02-13 14:39:30 -0800784
Romain Guy3b748a42013-04-17 18:54:38 -0700785 if (!disableNonCoreServices) {
786 try {
787 Slog.i(TAG, "Assets Atlas Service");
788 atlas = new AssetAtlasService(context);
789 ServiceManager.addService(AssetAtlasService.ASSET_ATLAS_SERVICE, atlas);
790 } catch (Throwable e) {
791 reportWtf("starting AssetAtlasService", e);
792 }
793 }
794
Svetoslavb3038ec2013-02-13 14:39:30 -0800795 try {
796 Slog.i(TAG, "IdleMaintenanceService");
Svetoslav6a08a122013-05-03 11:24:26 -0700797 new IdleMaintenanceService(context, battery);
Svetoslavb3038ec2013-02-13 14:39:30 -0800798 } catch (Throwable e) {
799 reportWtf("starting IdleMaintenanceService", e);
800 }
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -0700801
802 try {
803 Slog.i(TAG, "Print Service");
Svetoslav Ganova0027152013-06-25 14:59:53 -0700804 printManager = new PrintManagerService(context);
805 ServiceManager.addService(Context.PRINT_SERVICE, printManager);
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -0700806 } catch (Throwable e) {
807 reportWtf("starting Print Service", e);
808 }
Jeff Brown69b07162013-11-07 00:30:16 -0800809
810 if (!disableNonCoreServices) {
811 try {
812 Slog.i(TAG, "Media Router Service");
813 mediaRouter = new MediaRouterService(context);
814 ServiceManager.addService(Context.MEDIA_ROUTER_SERVICE, mediaRouter);
815 } catch (Throwable e) {
816 reportWtf("starting MediaRouterService", e);
817 }
818 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800819 }
820
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700821 // Before things start rolling, be sure we have decided whether
822 // we are in safe mode.
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700823 final boolean safeMode = wm.detectSafeMode();
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700824 if (safeMode) {
Jeff Brownb09abc12011-01-13 21:08:27 -0800825 ActivityManagerService.self().enterSafeMode();
826 // Post the safe mode state in the Zygote class
827 Zygote.systemInSafeMode = true;
828 // Disable the JIT for the system_server process
829 VMRuntime.getRuntime().disableJitCompilation();
Ben Cheng6c0afff2010-02-14 16:18:56 -0800830 } else {
831 // Enable the JIT for the system_server process
832 VMRuntime.getRuntime().startJitCompilation();
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700833 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800834
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700835 // It is now time to start up the app processes...
Joe Onorato30275482009-07-08 17:09:14 -0700836
Jeff Brown7f6c2312012-04-13 20:38:38 -0700837 try {
838 vibrator.systemReady();
839 } catch (Throwable e) {
840 reportWtf("making Vibrator Service ready", e);
841 }
842
Dan Morrille4d9a012013-03-28 18:10:43 -0700843 if (lockSettings != null) {
844 try {
845 lockSettings.systemReady();
846 } catch (Throwable e) {
847 reportWtf("making Lock Settings Service ready", e);
848 }
Felipe Ramosf35df5b2012-09-18 18:26:27 -0300849 }
850
Dianne Hackbornd6847842010-01-12 18:14:19 -0800851 if (devicePolicy != null) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700852 try {
853 devicePolicy.systemReady();
854 } catch (Throwable e) {
855 reportWtf("making Device Policy Service ready", e);
856 }
Dianne Hackbornd6847842010-01-12 18:14:19 -0800857 }
858
Joe Onorato30275482009-07-08 17:09:14 -0700859 if (notification != null) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700860 try {
861 notification.systemReady();
862 } catch (Throwable e) {
863 reportWtf("making Notification Service ready", e);
864 }
Joe Onorato30275482009-07-08 17:09:14 -0700865 }
866
Dianne Hackborn661cd522011-08-22 00:26:20 -0700867 try {
868 wm.systemReady();
869 } catch (Throwable e) {
870 reportWtf("making Window Manager Service ready", e);
871 }
Joe Onoratodc565f42010-10-04 15:27:22 -0400872
Jeff Brownb09abc12011-01-13 21:08:27 -0800873 if (safeMode) {
874 ActivityManagerService.self().showSafeModeOverlay();
875 }
876
Joe Onoratodc565f42010-10-04 15:27:22 -0400877 // Update the configuration for this context by hand, because we're going
878 // to start using it before the config change done in wm.systemReady() will
879 // propagate to it.
880 Configuration config = wm.computeNewConfiguration();
881 DisplayMetrics metrics = new DisplayMetrics();
882 WindowManager w = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
883 w.getDefaultDisplay().getMetrics(metrics);
884 context.getResources().updateConfiguration(config, metrics);
885
Jeff Brownaa202a62012-08-21 22:14:26 -0700886 try {
Jeff Brown62c82e42012-09-26 01:30:41 -0700887 power.systemReady(twilight, dreamy);
Jeff Brownaa202a62012-08-21 22:14:26 -0700888 } catch (Throwable e) {
889 reportWtf("making Power Manager Service ready", e);
890 }
891
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800892 try {
893 pm.systemReady();
Dianne Hackborn661cd522011-08-22 00:26:20 -0700894 } catch (Throwable e) {
895 reportWtf("making Package Manager Service ready", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800896 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800897
Jeff Brownbd6e1502012-08-28 03:27:37 -0700898 try {
899 display.systemReady(safeMode, onlyCore);
900 } catch (Throwable e) {
901 reportWtf("making Display Manager Service ready", e);
902 }
903
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700904 // These are needed to propagate to the runnable below.
Joe Onoratof3c3c4f2010-10-21 11:09:02 -0400905 final Context contextF = context;
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700906 final MountService mountServiceF = mountService;
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700907 final BatteryService batteryF = battery;
Jeff Sharkey350083e2011-06-29 10:45:16 -0700908 final NetworkManagementService networkManagementF = networkManagement;
Jeff Sharkey75279902011-05-24 18:39:45 -0700909 final NetworkStatsService networkStatsF = networkStats;
Jeff Sharkeya4620792011-05-20 15:29:23 -0700910 final NetworkPolicyManagerService networkPolicyF = networkPolicy;
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700911 final ConnectivityService connectivityF = connectivity;
912 final DockObserver dockF = dock;
Mike Lockwood770126a2010-12-09 22:30:37 -0800913 final UsbService usbF = usb;
Jeff Brown2416e092012-08-21 22:12:20 -0700914 final TwilightService twilightF = twilight;
Dianne Hackborn7299c412010-03-04 18:41:49 -0800915 final UiModeManagerService uiModeF = uiMode;
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700916 final AppWidgetService appWidgetF = appWidget;
917 final WallpaperManagerService wallpaperF = wallpaper;
918 final InputMethodManagerService immF = imm;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800919 final RecognitionManagerService recognitionF = recognition;
Mike Lockwood46db5042010-02-22 16:36:44 -0500920 final LocationManagerService locationF = location;
Bai Taoa58a8752010-07-13 15:32:16 +0800921 final CountryDetectorService countryDetectorF = countryDetector;
Amith Yamasani6734b9f2010-09-13 16:24:08 -0700922 final NetworkTimeUpdateService networkTimeUpdaterF = networkTimeUpdater;
John Grossmanc1576732012-02-01 15:23:33 -0800923 final CommonTimeManagementService commonTimeMgmtServiceF = commonTimeMgmtService;
satok988323c2011-06-22 16:38:13 +0900924 final TextServicesManagerService textServiceManagerServiceF = tsms;
Dianne Hackborn661cd522011-08-22 00:26:20 -0700925 final StatusBarManagerService statusBarF = statusBar;
Daniel Sandler7d276c32012-01-30 14:33:52 -0500926 final DreamManagerService dreamyF = dreamy;
Romain Guy3b748a42013-04-17 18:54:38 -0700927 final AssetAtlasService atlasF = atlas;
Jeff Brown6ec6f792012-04-17 16:52:41 -0700928 final InputManagerService inputManagerF = inputManager;
Wink Savillea12a7b32012-09-20 10:09:45 -0700929 final TelephonyRegistry telephonyRegistryF = telephonyRegistry;
Svetoslav Ganova0027152013-06-25 14:59:53 -0700930 final PrintManagerService printManagerF = printManager;
Jeff Brown69b07162013-11-07 00:30:16 -0800931 final MediaRouterService mediaRouterF = mediaRouter;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800932
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700933 // We now tell the activity manager it is okay to run third party
934 // code. It will call back into us once it has gotten to the state
935 // where third party code can really run (but before it has actually
936 // started launching the initial applications), for us to complete our
937 // initialization.
Dianne Hackborn295e3c22011-08-25 13:19:08 -0700938 ActivityManagerService.self().systemReady(new Runnable() {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700939 public void run() {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800940 Slog.i(TAG, "Making services ready");
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800941
Christopher Tate58d380d2013-03-19 13:10:03 -0700942 try {
943 ActivityManagerService.self().startObservingNativeCrashes();
944 } catch (Throwable e) {
945 reportWtf("observing native crashes", e);
946 }
Jim Miller5ecd8112013-01-09 18:50:26 -0800947 if (!headless) {
948 startSystemUi(contextF);
949 }
Dianne Hackborn661cd522011-08-22 00:26:20 -0700950 try {
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700951 if (mountServiceF != null) mountServiceF.systemReady();
952 } catch (Throwable e) {
953 reportWtf("making Mount Service ready", e);
954 }
955 try {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700956 if (batteryF != null) batteryF.systemReady();
957 } catch (Throwable e) {
958 reportWtf("making Battery Service ready", e);
959 }
960 try {
961 if (networkManagementF != null) networkManagementF.systemReady();
962 } catch (Throwable e) {
963 reportWtf("making Network Managment Service ready", e);
964 }
965 try {
966 if (networkStatsF != null) networkStatsF.systemReady();
967 } catch (Throwable e) {
968 reportWtf("making Network Stats Service ready", e);
969 }
970 try {
971 if (networkPolicyF != null) networkPolicyF.systemReady();
972 } catch (Throwable e) {
973 reportWtf("making Network Policy Service ready", e);
974 }
975 try {
976 if (connectivityF != null) connectivityF.systemReady();
977 } catch (Throwable e) {
978 reportWtf("making Connectivity Service ready", e);
979 }
980 try {
981 if (dockF != null) dockF.systemReady();
982 } catch (Throwable e) {
983 reportWtf("making Dock Service ready", e);
984 }
985 try {
986 if (usbF != null) usbF.systemReady();
987 } catch (Throwable e) {
988 reportWtf("making USB Service ready", e);
989 }
990 try {
Jeff Brown2416e092012-08-21 22:12:20 -0700991 if (twilightF != null) twilightF.systemReady();
992 } catch (Throwable e) {
993 reportWtf("makin Twilight Service ready", e);
994 }
995 try {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700996 if (uiModeF != null) uiModeF.systemReady();
997 } catch (Throwable e) {
998 reportWtf("making UI Mode Service ready", e);
999 }
1000 try {
1001 if (recognitionF != null) recognitionF.systemReady();
1002 } catch (Throwable e) {
1003 reportWtf("making Recognition Service ready", e);
1004 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001005 Watchdog.getInstance().start();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001006
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001007 // It is now okay to let the various system services start their
1008 // third party code...
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001009
Dianne Hackborn661cd522011-08-22 00:26:20 -07001010 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001011 if (appWidgetF != null) appWidgetF.systemRunning(safeMode);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001012 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001013 reportWtf("Notifying AppWidgetService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001014 }
1015 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001016 if (wallpaperF != null) wallpaperF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001017 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001018 reportWtf("Notifying WallpaperService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001019 }
1020 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001021 if (immF != null) immF.systemRunning(statusBarF);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001022 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001023 reportWtf("Notifying InputMethodService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001024 }
1025 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001026 if (locationF != null) locationF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001027 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001028 reportWtf("Notifying Location Service running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001029 }
1030 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001031 if (countryDetectorF != null) countryDetectorF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001032 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001033 reportWtf("Notifying CountryDetectorService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001034 }
1035 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001036 if (networkTimeUpdaterF != null) networkTimeUpdaterF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001037 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001038 reportWtf("Notifying NetworkTimeService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001039 }
1040 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001041 if (commonTimeMgmtServiceF != null) commonTimeMgmtServiceF.systemRunning();
John Grossmanc1576732012-02-01 15:23:33 -08001042 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001043 reportWtf("Notifying CommonTimeManagementService running", e);
John Grossmanc1576732012-02-01 15:23:33 -08001044 }
1045 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001046 if (textServiceManagerServiceF != null)
1047 textServiceManagerServiceF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001048 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001049 reportWtf("Notifying TextServicesManagerService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001050 }
Daniel Sandler7d276c32012-01-30 14:33:52 -05001051 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001052 if (dreamyF != null) dreamyF.systemRunning();
Daniel Sandler7d276c32012-01-30 14:33:52 -05001053 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001054 reportWtf("Notifying DreamManagerService running", e);
Daniel Sandler7d276c32012-01-30 14:33:52 -05001055 }
Jeff Brown6ec6f792012-04-17 16:52:41 -07001056 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001057 if (atlasF != null) atlasF.systemRunning();
Romain Guy3b748a42013-04-17 18:54:38 -07001058 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001059 reportWtf("Notifying AssetAtlasService running", e);
Romain Guy3b748a42013-04-17 18:54:38 -07001060 }
1061 try {
Matthew Xie96313142012-06-29 16:57:31 -07001062 // TODO(BT) Pass parameter to input manager
Svetoslav Ganova0027152013-06-25 14:59:53 -07001063 if (inputManagerF != null) inputManagerF.systemRunning();
Jeff Brown6ec6f792012-04-17 16:52:41 -07001064 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001065 reportWtf("Notifying InputManagerService running", e);
Jeff Brown6ec6f792012-04-17 16:52:41 -07001066 }
Dan Morrille4d9a012013-03-28 18:10:43 -07001067
Wink Savillea12a7b32012-09-20 10:09:45 -07001068 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001069 if (telephonyRegistryF != null) telephonyRegistryF.systemRunning();
Wink Savillea12a7b32012-09-20 10:09:45 -07001070 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001071 reportWtf("Notifying TelephonyRegistry running", e);
1072 }
1073
1074 try {
1075 if (printManagerF != null) printManagerF.systemRuning();
1076 } catch (Throwable e) {
1077 reportWtf("Notifying PrintManagerService running", e);
Wink Savillea12a7b32012-09-20 10:09:45 -07001078 }
Jeff Brown69b07162013-11-07 00:30:16 -08001079
1080 try {
1081 if (mediaRouterF != null) mediaRouterF.systemRunning();
1082 } catch (Throwable e) {
1083 reportWtf("Notifying MediaRouterService running", e);
1084 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001085 }
1086 });
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001087
Brad Fitzpatrick1e02d362010-09-10 09:19:50 -07001088 // For debug builds, log event loop stalls to dropbox for analysis.
Brad Fitzpatrick50d66f92010-09-13 21:29:05 -07001089 if (StrictMode.conditionallyEnableDebugLogging()) {
1090 Slog.i(TAG, "Enabled StrictMode for system server main thread.");
Brad Fitzpatrick1e02d362010-09-10 09:19:50 -07001091 }
1092
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001093 Looper.loop();
Joe Onorato8a9b2202010-02-26 18:56:32 -08001094 Slog.d(TAG, "System ServerThread is exiting!");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001095 }
Joe Onoratof3c3c4f2010-10-21 11:09:02 -04001096
1097 static final void startSystemUi(Context context) {
1098 Intent intent = new Intent();
1099 intent.setComponent(new ComponentName("com.android.systemui",
1100 "com.android.systemui.SystemUIService"));
Dianne Hackborn40e9f292012-11-27 19:12:23 -08001101 //Slog.d(TAG, "Starting service: " + intent);
Amith Yamasanicd757062012-10-19 18:23:52 -07001102 context.startServiceAsUser(intent, UserHandle.OWNER);
Joe Onoratof3c3c4f2010-10-21 11:09:02 -04001103 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001104}
1105
Jeff Hamilton35eef702010-06-09 15:45:18 -05001106public class SystemServer {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001107 private static final String TAG = "SystemServer";
1108
1109 public static final int FACTORY_TEST_OFF = 0;
1110 public static final int FACTORY_TEST_LOW_LEVEL = 1;
1111 public static final int FACTORY_TEST_HIGH_LEVEL = 2;
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -07001112
Bob Leee5408332009-09-04 18:31:17 -07001113 static Timer timer;
1114 static final long SNAPSHOT_INTERVAL = 60 * 60 * 1000; // 1hr
1115
Brad Fitzpatrick6bb7a4a2010-10-11 13:41:10 -07001116 // The earliest supported time. We pick one day into 1970, to
1117 // give any timezone code room without going into negative time.
1118 private static final long EARLIEST_SUPPORTED_TIME = 86400 * 1000;
1119
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -07001120 /**
Jeff Brownef691172013-07-15 13:22:04 -07001121 * Called to initialize native system services.
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -07001122 */
Jeff Brownef691172013-07-15 13:22:04 -07001123 private static native void nativeInit();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001124
1125 public static void main(String[] args) {
Brad Fitzpatrick6bb7a4a2010-10-11 13:41:10 -07001126 if (System.currentTimeMillis() < EARLIEST_SUPPORTED_TIME) {
Brad Fitzpatrick35ca9d82010-10-11 11:52:49 -07001127 // If a device's clock is before 1970 (before 0), a lot of
1128 // APIs crash dealing with negative numbers, notably
1129 // java.io.File#setLastModified, so instead we fake it and
1130 // hope that time from cell towers or NTP fixes it
1131 // shortly.
1132 Slog.w(TAG, "System clock is before 1970; setting to 1970.");
Brad Fitzpatrick6bb7a4a2010-10-11 13:41:10 -07001133 SystemClock.setCurrentTimeMillis(EARLIEST_SUPPORTED_TIME);
Brad Fitzpatrick35ca9d82010-10-11 11:52:49 -07001134 }
1135
Bob Leee5408332009-09-04 18:31:17 -07001136 if (SamplingProfilerIntegration.isEnabled()) {
1137 SamplingProfilerIntegration.start();
1138 timer = new Timer();
1139 timer.schedule(new TimerTask() {
1140 @Override
1141 public void run() {
Sen Hubde75702010-05-28 01:54:03 -07001142 SamplingProfilerIntegration.writeSnapshot("system_server", null);
Bob Leee5408332009-09-04 18:31:17 -07001143 }
1144 }, SNAPSHOT_INTERVAL, SNAPSHOT_INTERVAL);
1145 }
1146
Dianne Hackbornac1471a2011-02-03 13:46:06 -08001147 // Mmmmmm... more memory!
1148 dalvik.system.VMRuntime.getRuntime().clearGrowthLimit();
1149
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001150 // The system server has to run all of the time, so it needs to be
1151 // as efficient as possible with its memory usage.
1152 VMRuntime.getRuntime().setTargetHeapUtilization(0.8f);
Sen Hubde75702010-05-28 01:54:03 -07001153
Jeff Sharkey48749fc2013-04-19 13:25:04 -07001154 Environment.setUserRequired(true);
1155
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001156 System.loadLibrary("android_servers");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001157
Joe Onorato8a9b2202010-02-26 18:56:32 -08001158 Slog.i(TAG, "Entered the Android system server!");
Dianne Hackbornefa92b22013-05-03 14:11:43 -07001159
Jeff Brownef691172013-07-15 13:22:04 -07001160 // Initialize native services.
1161 nativeInit();
1162
Dianne Hackbornefa92b22013-05-03 14:11:43 -07001163 // This used to be its own separate thread, but now it is
1164 // just the loop we run on the main thread.
1165 ServerThread thr = new ServerThread();
1166 thr.initAndLoop();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001167 }
1168}