blob: ef50df722fe0a1fb628faf73b9ab11e1cc0b9992 [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 Sharkeyb049e2122012-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 Yamasani6734b9f62010-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;
Erik Gilling51e95df2013-06-26 11:06:51 -0700157 ConsumerIrService consumerIr = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800158
Jeff Brownbd6e1502012-08-28 03:27:37 -0700159 // Create a handler thread just for the window manager to enjoy.
160 HandlerThread wmHandlerThread = new HandlerThread("WindowManager");
161 wmHandlerThread.start();
162 Handler wmHandler = new Handler(wmHandlerThread.getLooper());
163 wmHandler.post(new Runnable() {
164 @Override
165 public void run() {
166 //Looper.myLooper().setMessageLogging(new LogPrinter(
167 // android.util.Log.DEBUG, TAG, android.util.Log.LOG_ID_SYSTEM));
168 android.os.Process.setThreadPriority(
169 android.os.Process.THREAD_PRIORITY_DISPLAY);
170 android.os.Process.setCanSelfBackground(false);
171
172 // For debug builds, log event loop stalls to dropbox for analysis.
173 if (StrictMode.conditionallyEnableDebugLogging()) {
Jeff Brown89d55462012-09-19 11:33:42 -0700174 Slog.i(TAG, "Enabled StrictMode logging for WM Looper");
Jeff Brownbd6e1502012-08-28 03:27:37 -0700175 }
176 }
177 });
178
Dan Morrille4d9a012013-03-28 18:10:43 -0700179 // bootstrap services
Jeff Brownbd6e1502012-08-28 03:27:37 -0700180 boolean onlyCore = false;
Dan Morrille4d9a012013-03-28 18:10:43 -0700181 boolean firstBoot = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800182 try {
Jeff Brownf69c8122012-09-12 17:00:34 -0700183 // Wait for installd to finished starting up so that it has a chance to
184 // create critical directories such as /data/user with the appropriate
185 // permissions. We need this to complete before we initialize other services.
186 Slog.i(TAG, "Waiting for installd to be ready.");
187 installer = new Installer();
188 installer.ping();
189
Joe Onorato8a9b2202010-02-26 18:56:32 -0800190 Slog.i(TAG, "Power Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800191 power = new PowerManagerService();
192 ServiceManager.addService(Context.POWER_SERVICE, power);
193
Joe Onorato8a9b2202010-02-26 18:56:32 -0800194 Slog.i(TAG, "Activity Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800195 context = ActivityManagerService.main(factoryTest);
Dan Morrille4d9a012013-03-28 18:10:43 -0700196 } catch (RuntimeException e) {
197 Slog.e("System", "******************************************");
198 Slog.e("System", "************ Failure starting bootstrap service", e);
199 }
Jeff Brown848c2dc2012-08-19 20:18:08 -0700200
Dan Morrille4d9a012013-03-28 18:10:43 -0700201 boolean disableStorage = SystemProperties.getBoolean("config.disable_storage", false);
202 boolean disableMedia = SystemProperties.getBoolean("config.disable_media", false);
203 boolean disableBluetooth = SystemProperties.getBoolean("config.disable_bluetooth", false);
204 boolean disableTelephony = SystemProperties.getBoolean("config.disable_telephony", false);
205 boolean disableLocation = SystemProperties.getBoolean("config.disable_location", false);
206 boolean disableSystemUI = SystemProperties.getBoolean("config.disable_systemui", false);
207 boolean disableNonCoreServices = SystemProperties.getBoolean("config.disable_noncore", false);
208 boolean disableNetwork = SystemProperties.getBoolean("config.disable_network", false);
209
210 try {
Jeff Brown848c2dc2012-08-19 20:18:08 -0700211 Slog.i(TAG, "Display Manager");
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700212 display = new DisplayManagerService(context, wmHandler);
Jeff Brown848c2dc2012-08-19 20:18:08 -0700213 ServiceManager.addService(Context.DISPLAY_SERVICE, display, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800214
Joe Onorato8a9b2202010-02-26 18:56:32 -0800215 Slog.i(TAG, "Telephony Registry");
Wink Savillea12a7b32012-09-20 10:09:45 -0700216 telephonyRegistry = new TelephonyRegistry(context);
217 ServiceManager.addService("telephony.registry", telephonyRegistry);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800218
Glenn Kasten07b04652012-04-23 15:00:43 -0700219 Slog.i(TAG, "Scheduling Policy");
Dianne Hackborn35f72be2013-09-16 10:57:39 -0700220 ServiceManager.addService("scheduling_policy", new SchedulingPolicyService());
Glenn Kasten07b04652012-04-23 15:00:43 -0700221
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 Hackborn4428e17c2012-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
Erik Gilling51e95df2013-06-26 11:06:51 -0700287 Slog.i(TAG, "Consumer IR Service");
288 consumerIr = new ConsumerIrService(context);
289 ServiceManager.addService(Context.CONSUMER_IR_SERVICE, consumerIr);
290
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800291 // only initialize the power service after we have started the
Mike Lockwood3a322132009-11-24 00:30:52 -0500292 // lights service, content providers and the battery service.
Jeff Brown96307042012-07-27 15:51:34 -0700293 power.init(context, lights, ActivityManagerService.self(), battery,
Dianne Hackborn713df152013-05-17 11:27:57 -0700294 BatteryStatsService.getService(),
295 ActivityManagerService.self().getAppOpsService(), display);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800296
Joe Onorato8a9b2202010-02-26 18:56:32 -0800297 Slog.i(TAG, "Alarm Manager");
Jeff Sharkey75279902011-05-24 18:39:45 -0700298 alarm = new AlarmManagerService(context);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800299 ServiceManager.addService(Context.ALARM_SERVICE, alarm);
300
Joe Onorato8a9b2202010-02-26 18:56:32 -0800301 Slog.i(TAG, "Init Watchdog");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800302 Watchdog.getInstance().init(context, battery, power, alarm,
303 ActivityManagerService.self());
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700304 Watchdog.getInstance().addThread(wmHandler, "WindowManager thread");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800305
Jeff Browna9d131c2012-09-20 16:48:17 -0700306 Slog.i(TAG, "Input Manager");
307 inputManager = new InputManagerService(context, wmHandler);
308
Joe Onorato8a9b2202010-02-26 18:56:32 -0800309 Slog.i(TAG, "Window Manager");
Jeff Browna9d131c2012-09-20 16:48:17 -0700310 wm = WindowManagerService.main(context, power, display, inputManager,
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700311 wmHandler, factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL,
Jeff Brown780c46f2012-06-24 12:15:38 -0700312 !firstBoot, onlyCore);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800313 ServiceManager.addService(Context.WINDOW_SERVICE, wm);
Jeff Brown6ec6f792012-04-17 16:52:41 -0700314 ServiceManager.addService(Context.INPUT_SERVICE, inputManager);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800315
Dianne Hackborn295e3c22011-08-25 13:19:08 -0700316 ActivityManagerService.self().setWindowManager(wm);
Jeff Browna9d131c2012-09-20 16:48:17 -0700317
318 inputManager.setWindowManagerCallbacks(wm.getInputMonitor());
319 inputManager.start();
320
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700321 display.setWindowManager(wm);
Jeff Brownd728bf52012-09-08 18:05:28 -0700322 display.setInputManager(inputManager);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800323
324 // Skip Bluetooth if we have an emulator kernel
325 // TODO: Use a more reliable check to see if this product should
326 // support Bluetooth - see bug 988521
327 if (SystemProperties.get("ro.kernel.qemu").equals("1")) {
David 'Digit' Turnere2a5e862011-01-17 00:32:33 +0100328 Slog.i(TAG, "No Bluetooh Service (emulator)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800329 } else if (factoryTest == SystemServer.FACTORY_TEST_LOW_LEVEL) {
David 'Digit' Turnere2a5e862011-01-17 00:32:33 +0100330 Slog.i(TAG, "No Bluetooth Service (factory test)");
Matthew Xie1dd01eb32013-04-26 12:37:54 -0700331 } else if (!context.getPackageManager().hasSystemFeature
332 (PackageManager.FEATURE_BLUETOOTH)) {
333 Slog.i(TAG, "No Bluetooth Service (Bluetooth Hardware Not Present)");
Dan Morrille4d9a012013-03-28 18:10:43 -0700334 } else if (disableBluetooth) {
335 Slog.i(TAG, "Bluetooth Service disabled by config");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800336 } else {
fredc0f420372012-04-12 00:02:00 -0700337 Slog.i(TAG, "Bluetooth Manager Service");
338 bluetooth = new BluetoothManagerService(context);
339 ServiceManager.addService(BluetoothAdapter.BLUETOOTH_MANAGER_SERVICE, bluetooth);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800340 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800341 } catch (RuntimeException e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700342 Slog.e("System", "******************************************");
343 Slog.e("System", "************ Failure starting core service", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800344 }
345
Dianne Hackbornd6847842010-01-12 18:14:19 -0800346 DevicePolicyManagerService devicePolicy = null;
Joe Onorato089de882010-04-12 08:18:45 -0700347 StatusBarManagerService statusBar = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800348 InputMethodManagerService imm = null;
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700349 AppWidgetService appWidget = null;
Joe Onorato30275482009-07-08 17:09:14 -0700350 NotificationManagerService notification = null;
Dianne Hackbornf21adf62009-08-13 10:20:21 -0700351 WallpaperManagerService wallpaper = null;
Mike Lockwood46db5042010-02-22 16:36:44 -0500352 LocationManagerService location = null;
Bai Taoa58a8752010-07-13 15:32:16 +0800353 CountryDetectorService countryDetector = null;
satok988323c2011-06-22 16:38:13 +0900354 TextServicesManagerService tsms = null;
Amith Yamasani52c489c2012-03-28 11:42:42 -0700355 LockSettingsService lockSettings = null;
Daniel Sandler7d276c32012-01-30 14:33:52 -0500356 DreamManagerService dreamy = null;
Romain Guy3b748a42013-04-17 18:54:38 -0700357 AssetAtlasService atlas = null;
Svetoslav Ganova0027152013-06-25 14:59:53 -0700358 PrintManagerService printManager = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800359
Dianne Hackborn661cd522011-08-22 00:26:20 -0700360 // Bring up services needed for UI.
361 if (factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL) {
Dan Morrille4d9a012013-03-28 18:10:43 -0700362 //if (!disableNonCoreServices) { // TODO: View depends on these; mock them?
363 if (true) {
364 try {
365 Slog.i(TAG, "Input Method Service");
366 imm = new InputMethodManagerService(context, wm);
367 ServiceManager.addService(Context.INPUT_METHOD_SERVICE, imm);
368 } catch (Throwable e) {
369 reportWtf("starting Input Manager Service", e);
370 }
Dianne Hackborn661cd522011-08-22 00:26:20 -0700371
Dan Morrille4d9a012013-03-28 18:10:43 -0700372 try {
373 Slog.i(TAG, "Accessibility Manager");
374 ServiceManager.addService(Context.ACCESSIBILITY_SERVICE,
375 new AccessibilityManagerService(context));
376 } catch (Throwable e) {
377 reportWtf("starting Accessibility Manager", e);
378 }
Dianne Hackborn661cd522011-08-22 00:26:20 -0700379 }
380 }
381
382 try {
383 wm.displayReady();
384 } catch (Throwable e) {
385 reportWtf("making display ready", e);
386 }
Dianne Hackborn8795b602011-08-25 13:30:53 -0700387
Dianne Hackborn295e3c22011-08-25 13:19:08 -0700388 try {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700389 pm.performBootDexOpt();
390 } catch (Throwable e) {
391 reportWtf("performing boot dexopt", e);
392 }
393
394 try {
395 ActivityManagerNative.getDefault().showBootMessage(
396 context.getResources().getText(
397 com.android.internal.R.string.android_upgrading_starting_apps),
398 false);
399 } catch (RemoteException e) {
400 }
401
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800402 if (factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL) {
Dan Morrille4d9a012013-03-28 18:10:43 -0700403 if (!disableStorage &&
404 !"0".equals(SystemProperties.get("system_init.startmountservice"))) {
Kenny Root51a573c2012-05-17 13:30:28 -0700405 try {
406 /*
407 * NotificationManagerService is dependant on MountService,
408 * (for media / usb notifications) so we must start MountService first.
409 */
410 Slog.i(TAG, "Mount Service");
411 mountService = new MountService(context);
412 ServiceManager.addService("mount", mountService);
413 } catch (Throwable e) {
414 reportWtf("starting Mount Service", e);
415 }
416 }
417
Dan Morrille4d9a012013-03-28 18:10:43 -0700418 if (!disableNonCoreServices) {
419 try {
420 Slog.i(TAG, "LockSettingsService");
421 lockSettings = new LockSettingsService(context);
422 ServiceManager.addService("lock_settings", lockSettings);
423 } catch (Throwable e) {
424 reportWtf("starting LockSettingsService service", e);
425 }
426
427 try {
428 Slog.i(TAG, "Device Policy");
429 devicePolicy = new DevicePolicyManagerService(context);
430 ServiceManager.addService(Context.DEVICE_POLICY_SERVICE, devicePolicy);
431 } catch (Throwable e) {
432 reportWtf("starting DevicePolicyService", e);
433 }
Amith Yamasani52c489c2012-03-28 11:42:42 -0700434 }
435
Dan Morrille4d9a012013-03-28 18:10:43 -0700436 if (!disableSystemUI) {
437 try {
438 Slog.i(TAG, "Status Bar");
439 statusBar = new StatusBarManagerService(context, wm);
440 ServiceManager.addService(Context.STATUS_BAR_SERVICE, statusBar);
441 } catch (Throwable e) {
442 reportWtf("starting StatusBarManagerService", e);
443 }
Dianne Hackbornd6847842010-01-12 18:14:19 -0800444 }
445
Dan Morrille4d9a012013-03-28 18:10:43 -0700446 if (!disableNonCoreServices) {
447 try {
448 Slog.i(TAG, "Clipboard Service");
449 ServiceManager.addService(Context.CLIPBOARD_SERVICE,
450 new ClipboardService(context));
451 } catch (Throwable e) {
452 reportWtf("starting Clipboard Service", e);
453 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800454 }
455
Dan Morrille4d9a012013-03-28 18:10:43 -0700456 if (!disableNetwork) {
457 try {
458 Slog.i(TAG, "NetworkManagement Service");
459 networkManagement = NetworkManagementService.create(context);
460 ServiceManager.addService(Context.NETWORKMANAGEMENT_SERVICE, networkManagement);
461 } catch (Throwable e) {
462 reportWtf("starting NetworkManagement Service", e);
463 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800464 }
465
Dan Morrille4d9a012013-03-28 18:10:43 -0700466 if (!disableNonCoreServices) {
467 try {
468 Slog.i(TAG, "Text Service Manager Service");
469 tsms = new TextServicesManagerService(context);
470 ServiceManager.addService(Context.TEXT_SERVICES_MANAGER_SERVICE, tsms);
471 } catch (Throwable e) {
472 reportWtf("starting Text Service Manager Service", e);
473 }
San Mehatd1df8ac2010-01-26 06:17:26 -0800474 }
475
Dan Morrille4d9a012013-03-28 18:10:43 -0700476 if (!disableNetwork) {
477 try {
478 Slog.i(TAG, "NetworkStats Service");
479 networkStats = new NetworkStatsService(context, networkManagement, alarm);
480 ServiceManager.addService(Context.NETWORK_STATS_SERVICE, networkStats);
481 } catch (Throwable e) {
482 reportWtf("starting NetworkStats Service", e);
483 }
484
485 try {
486 Slog.i(TAG, "NetworkPolicy Service");
487 networkPolicy = new NetworkPolicyManagerService(
488 context, ActivityManagerService.self(), power,
489 networkStats, networkManagement);
490 ServiceManager.addService(Context.NETWORK_POLICY_SERVICE, networkPolicy);
491 } catch (Throwable e) {
492 reportWtf("starting NetworkPolicy Service", e);
493 }
494
495 try {
496 Slog.i(TAG, "Wi-Fi P2pService");
497 wifiP2p = new WifiP2pService(context);
498 ServiceManager.addService(Context.WIFI_P2P_SERVICE, wifiP2p);
499 } catch (Throwable e) {
500 reportWtf("starting Wi-Fi P2pService", e);
501 }
502
503 try {
504 Slog.i(TAG, "Wi-Fi Service");
505 wifi = new WifiService(context);
506 ServiceManager.addService(Context.WIFI_SERVICE, wifi);
507 } catch (Throwable e) {
508 reportWtf("starting Wi-Fi Service", e);
509 }
510
511 try {
512 Slog.i(TAG, "Connectivity Service");
513 connectivity = new ConnectivityService(
514 context, networkManagement, networkStats, networkPolicy);
515 ServiceManager.addService(Context.CONNECTIVITY_SERVICE, connectivity);
516 networkStats.bindConnectivityManager(connectivity);
517 networkPolicy.bindConnectivityManager(connectivity);
518 wifi.checkAndStartWifi();
519 wifiP2p.connectivityServiceReady();
520 } catch (Throwable e) {
521 reportWtf("starting Connectivity Service", e);
522 }
523
524 try {
525 Slog.i(TAG, "Network Service Discovery Service");
526 serviceDiscovery = NsdService.create(context);
527 ServiceManager.addService(
528 Context.NSD_SERVICE, serviceDiscovery);
529 } catch (Throwable e) {
530 reportWtf("starting Service Discovery Service", e);
531 }
satok988323c2011-06-22 16:38:13 +0900532 }
533
Dan Morrille4d9a012013-03-28 18:10:43 -0700534 if (!disableNonCoreServices) {
535 try {
536 Slog.i(TAG, "UpdateLock Service");
537 ServiceManager.addService(Context.UPDATE_LOCK_SERVICE,
538 new UpdateLockService(context));
539 } catch (Throwable e) {
540 reportWtf("starting UpdateLockService", e);
541 }
Christopher Tate8662cab52012-02-23 14:59:36 -0800542 }
543
Kenny Root51a573c2012-05-17 13:30:28 -0700544 /*
545 * MountService has a few dependencies: Notification Manager and
546 * AppWidget Provider. Make sure MountService is completely started
547 * first before continuing.
548 */
Ken Sumrall025adc42013-06-05 22:08:12 -0700549 if (mountService != null && !onlyCore) {
Kenny Root51a573c2012-05-17 13:30:28 -0700550 mountService.waitForAsecScan();
San Mehat1bf3f8b2010-02-03 14:43:09 -0800551 }
552
553 try {
Kenny Root26ff6622012-07-30 12:58:03 -0700554 if (accountManager != null)
555 accountManager.systemReady();
556 } catch (Throwable e) {
557 reportWtf("making Account Manager Service ready", e);
558 }
559
560 try {
561 if (contentService != null)
562 contentService.systemReady();
563 } catch (Throwable e) {
564 reportWtf("making Content Service ready", e);
565 }
566
567 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800568 Slog.i(TAG, "Notification Manager");
Mike Lockwood3a322132009-11-24 00:30:52 -0500569 notification = new NotificationManagerService(context, statusBar, lights);
Joe Onorato30275482009-07-08 17:09:14 -0700570 ServiceManager.addService(Context.NOTIFICATION_SERVICE, notification);
Jeff Sharkey497e4432011-06-14 17:27:29 -0700571 networkPolicy.bindNotificationManager(notification);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800572 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700573 reportWtf("starting Notification Manager", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800574 }
575
576 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800577 Slog.i(TAG, "Device Storage Monitor");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800578 ServiceManager.addService(DeviceStorageMonitorService.SERVICE,
579 new DeviceStorageMonitorService(context));
580 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700581 reportWtf("starting DeviceStorageMonitor service", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800582 }
583
Dan Morrille4d9a012013-03-28 18:10:43 -0700584 if (!disableLocation) {
585 try {
586 Slog.i(TAG, "Location Manager");
587 location = new LocationManagerService(context);
588 ServiceManager.addService(Context.LOCATION_SERVICE, location);
589 } catch (Throwable e) {
590 reportWtf("starting Location Manager", e);
591 }
592
593 try {
594 Slog.i(TAG, "Country Detector");
595 countryDetector = new CountryDetectorService(context);
596 ServiceManager.addService(Context.COUNTRY_DETECTOR, countryDetector);
597 } catch (Throwable e) {
598 reportWtf("starting Country Detector", e);
599 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800600 }
601
Dan Morrille4d9a012013-03-28 18:10:43 -0700602 if (!disableNonCoreServices) {
603 try {
604 Slog.i(TAG, "Search Service");
605 ServiceManager.addService(Context.SEARCH_SERVICE,
606 new SearchManagerService(context));
607 } catch (Throwable e) {
608 reportWtf("starting Search Service", e);
609 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800610 }
611
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800612 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800613 Slog.i(TAG, "DropBox Service");
Dan Egnor95240272009-10-27 18:23:39 -0700614 ServiceManager.addService(Context.DROPBOX_SERVICE,
Dan Egnorf18a01c2009-11-12 11:32:50 -0800615 new DropBoxManagerService(context, new File("/data/system/dropbox")));
Dan Egnor4410ec82009-09-11 16:40:01 -0700616 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700617 reportWtf("starting DropBoxManagerService", e);
Dan Egnor4410ec82009-09-11 16:40:01 -0700618 }
619
Dan Morrille4d9a012013-03-28 18:10:43 -0700620 if (!disableNonCoreServices && context.getResources().getBoolean(
621 R.bool.config_enableWallpaperService)) {
Mike Lockwoodc067c9c2011-10-31 12:50:12 -0400622 try {
623 Slog.i(TAG, "Wallpaper Service");
624 if (!headless) {
625 wallpaper = new WallpaperManagerService(context);
626 ServiceManager.addService(Context.WALLPAPER_SERVICE, wallpaper);
627 }
628 } catch (Throwable e) {
629 reportWtf("starting Wallpaper Service", e);
Mike Lockwood3a74bd32011-08-12 13:55:22 -0700630 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800631 }
632
Dan Morrille4d9a012013-03-28 18:10:43 -0700633 if (!disableMedia && !"0".equals(SystemProperties.get("system_init.startaudioservice"))) {
Mike Lockwoodcba928c2011-08-17 15:58:52 -0700634 try {
635 Slog.i(TAG, "Audio Service");
636 ServiceManager.addService(Context.AUDIO_SERVICE, new AudioService(context));
637 } catch (Throwable e) {
638 reportWtf("starting Audio Service", e);
639 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800640 }
641
Dan Morrille4d9a012013-03-28 18:10:43 -0700642 if (!disableNonCoreServices) {
643 try {
644 Slog.i(TAG, "Dock Observer");
645 // Listen for dock station changes
646 dock = new DockObserver(context);
647 } catch (Throwable e) {
648 reportWtf("starting DockObserver", e);
649 }
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500650 }
651
Dan Morrille4d9a012013-03-28 18:10:43 -0700652 if (!disableMedia) {
653 try {
654 Slog.i(TAG, "Wired Accessory Manager");
655 // Listen for wired headset changes
656 inputManager.setWiredAccessoryCallbacks(
657 new WiredAccessoryManager(context, inputManager));
658 } catch (Throwable e) {
659 reportWtf("starting WiredAccessoryManager", e);
660 }
Praveen Bharathi21e941b2010-10-06 15:23:14 -0500661 }
662
Dan Morrille4d9a012013-03-28 18:10:43 -0700663 if (!disableNonCoreServices) {
664 try {
665 Slog.i(TAG, "USB Service");
666 // Manage USB host and device support
667 usb = new UsbService(context);
668 ServiceManager.addService(Context.USB_SERVICE, usb);
669 } catch (Throwable e) {
670 reportWtf("starting UsbService", e);
671 }
Mike Lockwood57c798a2010-06-23 17:36:36 -0400672
Dan Morrille4d9a012013-03-28 18:10:43 -0700673 try {
674 Slog.i(TAG, "Serial Service");
675 // Serial port support
676 serial = new SerialService(context);
677 ServiceManager.addService(Context.SERIAL_SERVICE, serial);
678 } catch (Throwable e) {
679 Slog.e(TAG, "Failure starting SerialService", e);
680 }
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -0400681 }
682
683 try {
Jeff Brown2416e092012-08-21 22:12:20 -0700684 Slog.i(TAG, "Twilight Service");
685 twilight = new TwilightService(context);
686 } catch (Throwable e) {
687 reportWtf("starting TwilightService", e);
688 }
689
690 try {
Dianne Hackborn7299c412010-03-04 18:41:49 -0800691 Slog.i(TAG, "UI Mode Manager Service");
Mike Lockwood57c798a2010-06-23 17:36:36 -0400692 // Listen for UI mode changes
Jeff Brown2416e092012-08-21 22:12:20 -0700693 uiMode = new UiModeManagerService(context, twilight);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800694 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700695 reportWtf("starting UiModeManagerService", e);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800696 }
697
Dan Morrille4d9a012013-03-28 18:10:43 -0700698 if (!disableNonCoreServices) {
699 try {
700 Slog.i(TAG, "Backup Service");
701 ServiceManager.addService(Context.BACKUP_SERVICE,
702 new BackupManagerService(context));
703 } catch (Throwable e) {
704 Slog.e(TAG, "Failure starting Backup Service", e);
705 }
Christopher Tate487529a2009-04-29 14:03:25 -0700706
Dan Morrille4d9a012013-03-28 18:10:43 -0700707 try {
708 Slog.i(TAG, "AppWidget Service");
709 appWidget = new AppWidgetService(context);
710 ServiceManager.addService(Context.APPWIDGET_SERVICE, appWidget);
711 } catch (Throwable e) {
712 reportWtf("starting AppWidget Service", e);
713 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800714
Dan Morrille4d9a012013-03-28 18:10:43 -0700715 try {
716 Slog.i(TAG, "Recognition Service");
717 recognition = new RecognitionManagerService(context);
718 } catch (Throwable e) {
719 reportWtf("starting Recognition Service", e);
720 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800721 }
Jaikumar Ganesh7d0548d2010-10-18 15:29:09 -0700722
Nick Pelly038cabe2010-09-23 16:12:11 -0700723 try {
Dan Egnor621bc542010-03-25 16:20:14 -0700724 Slog.i(TAG, "DiskStats Service");
725 ServiceManager.addService("diskstats", new DiskStatsService(context));
726 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700727 reportWtf("starting DiskStats Service", e);
Dan Egnor621bc542010-03-25 16:20:14 -0700728 }
Sen Hubde75702010-05-28 01:54:03 -0700729
730 try {
731 // need to add this service even if SamplingProfilerIntegration.isEnabled()
732 // is false, because it is this service that detects system property change and
733 // turns on SamplingProfilerIntegration. Plus, when sampling profiler doesn't work,
734 // there is little overhead for running this service.
735 Slog.i(TAG, "SamplingProfiler Service");
736 ServiceManager.addService("samplingprofiler",
737 new SamplingProfilerService(context));
738 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700739 reportWtf("starting SamplingProfiler Service", e);
Sen Hubde75702010-05-28 01:54:03 -0700740 }
Chung-yih Wang024d5962010-08-06 12:06:04 +0800741
Dan Morrille4d9a012013-03-28 18:10:43 -0700742 if (!disableNetwork) {
743 try {
744 Slog.i(TAG, "NetworkTimeUpdateService");
745 networkTimeUpdater = new NetworkTimeUpdateService(context);
746 } catch (Throwable e) {
747 reportWtf("starting NetworkTimeUpdate service", e);
748 }
Amith Yamasani6734b9f62010-09-13 16:24:08 -0700749 }
John Grossmanc1576732012-02-01 15:23:33 -0800750
Dan Morrille4d9a012013-03-28 18:10:43 -0700751 if (!disableMedia) {
752 try {
753 Slog.i(TAG, "CommonTimeManagementService");
754 commonTimeMgmtService = new CommonTimeManagementService(context);
755 ServiceManager.addService("commontime_management", commonTimeMgmtService);
756 } catch (Throwable e) {
757 reportWtf("starting CommonTimeManagementService service", e);
758 }
John Grossmanc1576732012-02-01 15:23:33 -0800759 }
Geremy Condra3d33c262012-05-06 18:32:19 -0700760
Dan Morrille4d9a012013-03-28 18:10:43 -0700761 if (!disableNetwork) {
762 try {
763 Slog.i(TAG, "CertBlacklister");
764 CertBlacklister blacklister = new CertBlacklister(context);
765 } catch (Throwable e) {
766 reportWtf("starting CertBlacklister", e);
767 }
Geremy Condra3d33c262012-05-06 18:32:19 -0700768 }
Jim Miller5ecd8112013-01-09 18:50:26 -0800769
Dan Morrille4d9a012013-03-28 18:10:43 -0700770 if (!disableNonCoreServices &&
771 context.getResources().getBoolean(R.bool.config_dreamsSupported)) {
Daniel Sandler7d276c32012-01-30 14:33:52 -0500772 try {
773 Slog.i(TAG, "Dreams Service");
774 // Dreams (interactive idle-time views, a/k/a screen savers)
Jeff Brown62c82e42012-09-26 01:30:41 -0700775 dreamy = new DreamManagerService(context, wmHandler);
Dianne Hackbornbe87e2f2012-09-28 16:31:34 -0700776 ServiceManager.addService(DreamService.DREAM_SERVICE, dreamy);
Daniel Sandler7d276c32012-01-30 14:33:52 -0500777 } catch (Throwable e) {
778 reportWtf("starting DreamManagerService", e);
779 }
780 }
Svetoslavb3038ec2013-02-13 14:39:30 -0800781
Romain Guy3b748a42013-04-17 18:54:38 -0700782 if (!disableNonCoreServices) {
783 try {
784 Slog.i(TAG, "Assets Atlas Service");
785 atlas = new AssetAtlasService(context);
786 ServiceManager.addService(AssetAtlasService.ASSET_ATLAS_SERVICE, atlas);
787 } catch (Throwable e) {
788 reportWtf("starting AssetAtlasService", e);
789 }
790 }
791
Svetoslavb3038ec2013-02-13 14:39:30 -0800792 try {
793 Slog.i(TAG, "IdleMaintenanceService");
Svetoslav6a08a122013-05-03 11:24:26 -0700794 new IdleMaintenanceService(context, battery);
Svetoslavb3038ec2013-02-13 14:39:30 -0800795 } catch (Throwable e) {
796 reportWtf("starting IdleMaintenanceService", e);
797 }
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -0700798
799 try {
800 Slog.i(TAG, "Print Service");
Svetoslav Ganova0027152013-06-25 14:59:53 -0700801 printManager = new PrintManagerService(context);
802 ServiceManager.addService(Context.PRINT_SERVICE, printManager);
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -0700803 } catch (Throwable e) {
804 reportWtf("starting Print Service", e);
805 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800806 }
807
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700808 // Before things start rolling, be sure we have decided whether
809 // we are in safe mode.
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700810 final boolean safeMode = wm.detectSafeMode();
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700811 if (safeMode) {
Jeff Brownb09abc12011-01-13 21:08:27 -0800812 ActivityManagerService.self().enterSafeMode();
813 // Post the safe mode state in the Zygote class
814 Zygote.systemInSafeMode = true;
815 // Disable the JIT for the system_server process
816 VMRuntime.getRuntime().disableJitCompilation();
Ben Cheng6c0afff2010-02-14 16:18:56 -0800817 } else {
818 // Enable the JIT for the system_server process
819 VMRuntime.getRuntime().startJitCompilation();
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700820 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800821
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700822 // It is now time to start up the app processes...
Joe Onorato30275482009-07-08 17:09:14 -0700823
Jeff Brown7f6c2312012-04-13 20:38:38 -0700824 try {
825 vibrator.systemReady();
826 } catch (Throwable e) {
827 reportWtf("making Vibrator Service ready", e);
828 }
829
Dan Morrille4d9a012013-03-28 18:10:43 -0700830 if (lockSettings != null) {
831 try {
832 lockSettings.systemReady();
833 } catch (Throwable e) {
834 reportWtf("making Lock Settings Service ready", e);
835 }
Felipe Ramosf35df5b2012-09-18 18:26:27 -0300836 }
837
Dianne Hackbornd6847842010-01-12 18:14:19 -0800838 if (devicePolicy != null) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700839 try {
840 devicePolicy.systemReady();
841 } catch (Throwable e) {
842 reportWtf("making Device Policy Service ready", e);
843 }
Dianne Hackbornd6847842010-01-12 18:14:19 -0800844 }
845
Joe Onorato30275482009-07-08 17:09:14 -0700846 if (notification != null) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700847 try {
848 notification.systemReady();
849 } catch (Throwable e) {
850 reportWtf("making Notification Service ready", e);
851 }
Joe Onorato30275482009-07-08 17:09:14 -0700852 }
853
Dianne Hackborn661cd522011-08-22 00:26:20 -0700854 try {
855 wm.systemReady();
856 } catch (Throwable e) {
857 reportWtf("making Window Manager Service ready", e);
858 }
Joe Onoratodc565f42010-10-04 15:27:22 -0400859
Jeff Brownb09abc12011-01-13 21:08:27 -0800860 if (safeMode) {
861 ActivityManagerService.self().showSafeModeOverlay();
862 }
863
Joe Onoratodc565f42010-10-04 15:27:22 -0400864 // Update the configuration for this context by hand, because we're going
865 // to start using it before the config change done in wm.systemReady() will
866 // propagate to it.
867 Configuration config = wm.computeNewConfiguration();
868 DisplayMetrics metrics = new DisplayMetrics();
869 WindowManager w = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
870 w.getDefaultDisplay().getMetrics(metrics);
871 context.getResources().updateConfiguration(config, metrics);
872
Jeff Brownaa202a62012-08-21 22:14:26 -0700873 try {
Jeff Brown62c82e42012-09-26 01:30:41 -0700874 power.systemReady(twilight, dreamy);
Jeff Brownaa202a62012-08-21 22:14:26 -0700875 } catch (Throwable e) {
876 reportWtf("making Power Manager Service ready", e);
877 }
878
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800879 try {
880 pm.systemReady();
Dianne Hackborn661cd522011-08-22 00:26:20 -0700881 } catch (Throwable e) {
882 reportWtf("making Package Manager Service ready", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800883 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800884
Jeff Brownbd6e1502012-08-28 03:27:37 -0700885 try {
886 display.systemReady(safeMode, onlyCore);
887 } catch (Throwable e) {
888 reportWtf("making Display Manager Service ready", e);
889 }
890
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700891 // These are needed to propagate to the runnable below.
Joe Onoratof3c3c4f2010-10-21 11:09:02 -0400892 final Context contextF = context;
Jeff Sharkeyb049e2122012-09-07 23:16:01 -0700893 final MountService mountServiceF = mountService;
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700894 final BatteryService batteryF = battery;
Jeff Sharkey350083e2011-06-29 10:45:16 -0700895 final NetworkManagementService networkManagementF = networkManagement;
Jeff Sharkey75279902011-05-24 18:39:45 -0700896 final NetworkStatsService networkStatsF = networkStats;
Jeff Sharkeya4620792011-05-20 15:29:23 -0700897 final NetworkPolicyManagerService networkPolicyF = networkPolicy;
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700898 final ConnectivityService connectivityF = connectivity;
899 final DockObserver dockF = dock;
Mike Lockwood770126a2010-12-09 22:30:37 -0800900 final UsbService usbF = usb;
Jeff Brown2416e092012-08-21 22:12:20 -0700901 final TwilightService twilightF = twilight;
Dianne Hackborn7299c412010-03-04 18:41:49 -0800902 final UiModeManagerService uiModeF = uiMode;
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700903 final AppWidgetService appWidgetF = appWidget;
904 final WallpaperManagerService wallpaperF = wallpaper;
905 final InputMethodManagerService immF = imm;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800906 final RecognitionManagerService recognitionF = recognition;
Mike Lockwood46db5042010-02-22 16:36:44 -0500907 final LocationManagerService locationF = location;
Bai Taoa58a8752010-07-13 15:32:16 +0800908 final CountryDetectorService countryDetectorF = countryDetector;
Amith Yamasani6734b9f62010-09-13 16:24:08 -0700909 final NetworkTimeUpdateService networkTimeUpdaterF = networkTimeUpdater;
John Grossmanc1576732012-02-01 15:23:33 -0800910 final CommonTimeManagementService commonTimeMgmtServiceF = commonTimeMgmtService;
satok988323c2011-06-22 16:38:13 +0900911 final TextServicesManagerService textServiceManagerServiceF = tsms;
Dianne Hackborn661cd522011-08-22 00:26:20 -0700912 final StatusBarManagerService statusBarF = statusBar;
Daniel Sandler7d276c32012-01-30 14:33:52 -0500913 final DreamManagerService dreamyF = dreamy;
Romain Guy3b748a42013-04-17 18:54:38 -0700914 final AssetAtlasService atlasF = atlas;
Jeff Brown6ec6f792012-04-17 16:52:41 -0700915 final InputManagerService inputManagerF = inputManager;
Wink Savillea12a7b32012-09-20 10:09:45 -0700916 final TelephonyRegistry telephonyRegistryF = telephonyRegistry;
Svetoslav Ganova0027152013-06-25 14:59:53 -0700917 final PrintManagerService printManagerF = printManager;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800918
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700919 // We now tell the activity manager it is okay to run third party
920 // code. It will call back into us once it has gotten to the state
921 // where third party code can really run (but before it has actually
922 // started launching the initial applications), for us to complete our
923 // initialization.
Dianne Hackborn295e3c22011-08-25 13:19:08 -0700924 ActivityManagerService.self().systemReady(new Runnable() {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700925 public void run() {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800926 Slog.i(TAG, "Making services ready");
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800927
Christopher Tate58d380d2013-03-19 13:10:03 -0700928 try {
929 ActivityManagerService.self().startObservingNativeCrashes();
930 } catch (Throwable e) {
931 reportWtf("observing native crashes", e);
932 }
Jim Miller5ecd8112013-01-09 18:50:26 -0800933 if (!headless) {
934 startSystemUi(contextF);
935 }
Dianne Hackborn661cd522011-08-22 00:26:20 -0700936 try {
Jeff Sharkeyb049e2122012-09-07 23:16:01 -0700937 if (mountServiceF != null) mountServiceF.systemReady();
938 } catch (Throwable e) {
939 reportWtf("making Mount Service ready", e);
940 }
941 try {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700942 if (batteryF != null) batteryF.systemReady();
943 } catch (Throwable e) {
944 reportWtf("making Battery Service ready", e);
945 }
946 try {
947 if (networkManagementF != null) networkManagementF.systemReady();
948 } catch (Throwable e) {
949 reportWtf("making Network Managment Service ready", e);
950 }
951 try {
952 if (networkStatsF != null) networkStatsF.systemReady();
953 } catch (Throwable e) {
954 reportWtf("making Network Stats Service ready", e);
955 }
956 try {
957 if (networkPolicyF != null) networkPolicyF.systemReady();
958 } catch (Throwable e) {
959 reportWtf("making Network Policy Service ready", e);
960 }
961 try {
962 if (connectivityF != null) connectivityF.systemReady();
963 } catch (Throwable e) {
964 reportWtf("making Connectivity Service ready", e);
965 }
966 try {
967 if (dockF != null) dockF.systemReady();
968 } catch (Throwable e) {
969 reportWtf("making Dock Service ready", e);
970 }
971 try {
972 if (usbF != null) usbF.systemReady();
973 } catch (Throwable e) {
974 reportWtf("making USB Service ready", e);
975 }
976 try {
Jeff Brown2416e092012-08-21 22:12:20 -0700977 if (twilightF != null) twilightF.systemReady();
978 } catch (Throwable e) {
979 reportWtf("makin Twilight Service ready", e);
980 }
981 try {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700982 if (uiModeF != null) uiModeF.systemReady();
983 } catch (Throwable e) {
984 reportWtf("making UI Mode Service ready", e);
985 }
986 try {
987 if (recognitionF != null) recognitionF.systemReady();
988 } catch (Throwable e) {
989 reportWtf("making Recognition Service ready", e);
990 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700991 Watchdog.getInstance().start();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800992
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700993 // It is now okay to let the various system services start their
994 // third party code...
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800995
Dianne Hackborn661cd522011-08-22 00:26:20 -0700996 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -0700997 if (appWidgetF != null) appWidgetF.systemRunning(safeMode);
Dianne Hackborn661cd522011-08-22 00:26:20 -0700998 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -0700999 reportWtf("Notifying AppWidgetService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001000 }
1001 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001002 if (wallpaperF != null) wallpaperF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001003 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001004 reportWtf("Notifying WallpaperService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001005 }
1006 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001007 if (immF != null) immF.systemRunning(statusBarF);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001008 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001009 reportWtf("Notifying InputMethodService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001010 }
1011 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001012 if (locationF != null) locationF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001013 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001014 reportWtf("Notifying Location Service running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001015 }
1016 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001017 if (countryDetectorF != null) countryDetectorF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001018 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001019 reportWtf("Notifying CountryDetectorService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001020 }
1021 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001022 if (networkTimeUpdaterF != null) networkTimeUpdaterF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001023 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001024 reportWtf("Notifying NetworkTimeService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001025 }
1026 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001027 if (commonTimeMgmtServiceF != null) commonTimeMgmtServiceF.systemRunning();
John Grossmanc1576732012-02-01 15:23:33 -08001028 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001029 reportWtf("Notifying CommonTimeManagementService running", e);
John Grossmanc1576732012-02-01 15:23:33 -08001030 }
1031 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001032 if (textServiceManagerServiceF != null)
1033 textServiceManagerServiceF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001034 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001035 reportWtf("Notifying TextServicesManagerService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001036 }
Daniel Sandler7d276c32012-01-30 14:33:52 -05001037 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001038 if (dreamyF != null) dreamyF.systemRunning();
Daniel Sandler7d276c32012-01-30 14:33:52 -05001039 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001040 reportWtf("Notifying DreamManagerService running", e);
Daniel Sandler7d276c32012-01-30 14:33:52 -05001041 }
Jeff Brown6ec6f792012-04-17 16:52:41 -07001042 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001043 if (atlasF != null) atlasF.systemRunning();
Romain Guy3b748a42013-04-17 18:54:38 -07001044 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001045 reportWtf("Notifying AssetAtlasService running", e);
Romain Guy3b748a42013-04-17 18:54:38 -07001046 }
1047 try {
Matthew Xie96313142012-06-29 16:57:31 -07001048 // TODO(BT) Pass parameter to input manager
Svetoslav Ganova0027152013-06-25 14:59:53 -07001049 if (inputManagerF != null) inputManagerF.systemRunning();
Jeff Brown6ec6f792012-04-17 16:52:41 -07001050 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001051 reportWtf("Notifying InputManagerService running", e);
Jeff Brown6ec6f792012-04-17 16:52:41 -07001052 }
Dan Morrille4d9a012013-03-28 18:10:43 -07001053
Wink Savillea12a7b32012-09-20 10:09:45 -07001054 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001055 if (telephonyRegistryF != null) telephonyRegistryF.systemRunning();
Wink Savillea12a7b32012-09-20 10:09:45 -07001056 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001057 reportWtf("Notifying TelephonyRegistry running", e);
1058 }
1059
1060 try {
1061 if (printManagerF != null) printManagerF.systemRuning();
1062 } catch (Throwable e) {
1063 reportWtf("Notifying PrintManagerService running", e);
Wink Savillea12a7b32012-09-20 10:09:45 -07001064 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001065 }
1066 });
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001067
Brad Fitzpatrick1e02d362010-09-10 09:19:50 -07001068 // For debug builds, log event loop stalls to dropbox for analysis.
Brad Fitzpatrick50d66f92010-09-13 21:29:05 -07001069 if (StrictMode.conditionallyEnableDebugLogging()) {
1070 Slog.i(TAG, "Enabled StrictMode for system server main thread.");
Brad Fitzpatrick1e02d362010-09-10 09:19:50 -07001071 }
1072
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001073 Looper.loop();
Joe Onorato8a9b2202010-02-26 18:56:32 -08001074 Slog.d(TAG, "System ServerThread is exiting!");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001075 }
Joe Onoratof3c3c4f2010-10-21 11:09:02 -04001076
1077 static final void startSystemUi(Context context) {
1078 Intent intent = new Intent();
1079 intent.setComponent(new ComponentName("com.android.systemui",
1080 "com.android.systemui.SystemUIService"));
Dianne Hackborn40e9f292012-11-27 19:12:23 -08001081 //Slog.d(TAG, "Starting service: " + intent);
Amith Yamasanicd757062012-10-19 18:23:52 -07001082 context.startServiceAsUser(intent, UserHandle.OWNER);
Joe Onoratof3c3c4f2010-10-21 11:09:02 -04001083 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001084}
1085
Jeff Hamilton35eef702010-06-09 15:45:18 -05001086public class SystemServer {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001087 private static final String TAG = "SystemServer";
1088
1089 public static final int FACTORY_TEST_OFF = 0;
1090 public static final int FACTORY_TEST_LOW_LEVEL = 1;
1091 public static final int FACTORY_TEST_HIGH_LEVEL = 2;
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -07001092
Bob Leee5408332009-09-04 18:31:17 -07001093 static Timer timer;
1094 static final long SNAPSHOT_INTERVAL = 60 * 60 * 1000; // 1hr
1095
Brad Fitzpatrick6bb7a4a2010-10-11 13:41:10 -07001096 // The earliest supported time. We pick one day into 1970, to
1097 // give any timezone code room without going into negative time.
1098 private static final long EARLIEST_SUPPORTED_TIME = 86400 * 1000;
1099
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -07001100 /**
Jeff Brownef691172013-07-15 13:22:04 -07001101 * Called to initialize native system services.
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -07001102 */
Jeff Brownef691172013-07-15 13:22:04 -07001103 private static native void nativeInit();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001104
1105 public static void main(String[] args) {
Brad Fitzpatrick6bb7a4a2010-10-11 13:41:10 -07001106 if (System.currentTimeMillis() < EARLIEST_SUPPORTED_TIME) {
Brad Fitzpatrick35ca9d82010-10-11 11:52:49 -07001107 // If a device's clock is before 1970 (before 0), a lot of
1108 // APIs crash dealing with negative numbers, notably
1109 // java.io.File#setLastModified, so instead we fake it and
1110 // hope that time from cell towers or NTP fixes it
1111 // shortly.
1112 Slog.w(TAG, "System clock is before 1970; setting to 1970.");
Brad Fitzpatrick6bb7a4a2010-10-11 13:41:10 -07001113 SystemClock.setCurrentTimeMillis(EARLIEST_SUPPORTED_TIME);
Brad Fitzpatrick35ca9d82010-10-11 11:52:49 -07001114 }
1115
Bob Leee5408332009-09-04 18:31:17 -07001116 if (SamplingProfilerIntegration.isEnabled()) {
1117 SamplingProfilerIntegration.start();
1118 timer = new Timer();
1119 timer.schedule(new TimerTask() {
1120 @Override
1121 public void run() {
Sen Hubde75702010-05-28 01:54:03 -07001122 SamplingProfilerIntegration.writeSnapshot("system_server", null);
Bob Leee5408332009-09-04 18:31:17 -07001123 }
1124 }, SNAPSHOT_INTERVAL, SNAPSHOT_INTERVAL);
1125 }
1126
Dianne Hackbornac1471a2011-02-03 13:46:06 -08001127 // Mmmmmm... more memory!
1128 dalvik.system.VMRuntime.getRuntime().clearGrowthLimit();
1129
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001130 // The system server has to run all of the time, so it needs to be
1131 // as efficient as possible with its memory usage.
1132 VMRuntime.getRuntime().setTargetHeapUtilization(0.8f);
Sen Hubde75702010-05-28 01:54:03 -07001133
Jeff Sharkey48749fc2013-04-19 13:25:04 -07001134 Environment.setUserRequired(true);
1135
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001136 System.loadLibrary("android_servers");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001137
Joe Onorato8a9b2202010-02-26 18:56:32 -08001138 Slog.i(TAG, "Entered the Android system server!");
Dianne Hackbornefa92b22013-05-03 14:11:43 -07001139
Jeff Brownef691172013-07-15 13:22:04 -07001140 // Initialize native services.
1141 nativeInit();
1142
Dianne Hackbornefa92b22013-05-03 14:11:43 -07001143 // This used to be its own separate thread, but now it is
1144 // just the loop we run on the main thread.
1145 ServerThread thr = new ServerThread();
1146 thr.initAndLoop();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001147 }
1148}