blob: 9ce41b28ff4af1e15b234e8fe8fa4e56dff9ae8a [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;
Adam Lesinski182f73f2013-12-05 16:48:06 -080020import android.app.IAlarmManager;
21import android.app.INotificationManager;
Nick Pellyf242b7b2009-10-08 00:12:45 +020022import android.bluetooth.BluetoothAdapter;
Joe Onoratof3c3c4f2010-10-21 11:09:02 -040023import android.content.ComponentName;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024import android.content.ContentResolver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025import android.content.Context;
Joe Onoratof3c3c4f2010-10-21 11:09:02 -040026import android.content.Intent;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080027import android.content.pm.IPackageManager;
Matthew Xie1dd01eb32013-04-26 12:37:54 -070028import android.content.pm.PackageManager;
Joe Onoratodc565f42010-10-04 15:27:22 -040029import android.content.res.Configuration;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030import android.media.AudioService;
Irfan Sherifff6d09842011-08-03 15:37:08 -070031import android.net.wifi.p2p.WifiP2pService;
Jeff Sharkey48749fc2013-04-19 13:25:04 -070032import android.os.Environment;
Jeff Brownbd6e1502012-08-28 03:27:37 -070033import android.os.Handler;
34import android.os.HandlerThread;
Amith Yamasani817ec492013-12-20 13:27:30 -080035import android.os.IBinder;
Jeff Hamilton35eef702010-06-09 15:45:18 -050036import android.os.Looper;
37import android.os.RemoteException;
38import android.os.ServiceManager;
Brad Fitzpatrickc74a1b442010-09-10 16:03:29 -070039import android.os.StrictMode;
Jeff Hamilton35eef702010-06-09 15:45:18 -050040import android.os.SystemClock;
41import android.os.SystemProperties;
Amith Yamasanicd757062012-10-19 18:23:52 -070042import android.os.UserHandle;
Dianne Hackbornbe87e2f2012-09-28 16:31:34 -070043import android.service.dreams.DreamService;
Joe Onoratodc565f42010-10-04 15:27:22 -040044import android.util.DisplayMetrics;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080045import android.util.EventLog;
Dianne Hackborn661cd522011-08-22 00:26:20 -070046import android.util.Log;
Joe Onorato8a9b2202010-02-26 18:56:32 -080047import android.util.Slog;
Brad Fitzpatrick5fdc0c72010-10-12 13:12:18 -070048import android.view.WindowManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080049
Dan Morrille4d9a012013-03-28 18:10:43 -070050import com.android.internal.R;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070051import com.android.internal.os.BinderInternal;
52import com.android.internal.os.SamplingProfilerIntegration;
53import com.android.server.accessibility.AccessibilityManagerService;
Jeff Sharkey7a96c392012-11-15 14:01:46 -080054import com.android.server.accounts.AccountManagerService;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070055import com.android.server.am.ActivityManagerService;
Jeff Brown96307042012-07-27 15:51:34 -070056import com.android.server.am.BatteryStatsService;
Amith Yamasani09e9cdc2013-11-06 14:54:50 -080057import com.android.server.clipboard.ClipboardService;
Jeff Sharkey7a96c392012-11-15 14:01:46 -080058import com.android.server.content.ContentService;
Jeff Brownfa25bf52012-07-23 19:26:30 -070059import com.android.server.display.DisplayManagerService;
Jeff Browncef440f2012-09-25 18:58:48 -070060import com.android.server.dreams.DreamManagerService;
Jeff Brown6ec6f792012-04-17 16:52:41 -070061import com.android.server.input.InputManagerService;
Adam Lesinski182f73f2013-12-05 16:48:06 -080062import com.android.server.lights.LightsManager;
63import com.android.server.lights.LightsService;
Jeff Brown69b07162013-11-07 00:30:16 -080064import com.android.server.media.MediaRouterService;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070065import com.android.server.net.NetworkPolicyManagerService;
Jeff Sharkey75279902011-05-24 18:39:45 -070066import com.android.server.net.NetworkStatsService;
Adam Lesinski182f73f2013-12-05 16:48:06 -080067import com.android.server.notification.NotificationManagerService;
Jeff Sharkey7a96c392012-11-15 14:01:46 -080068import com.android.server.os.SchedulingPolicyService;
Jeff Brownf69c8122012-09-12 17:00:34 -070069import com.android.server.pm.Installer;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070070import com.android.server.pm.PackageManagerService;
Amith Yamasani258848d2012-08-10 17:06:33 -070071import com.android.server.pm.UserManagerService;
Jeff Brown4f8ecd82012-06-18 18:29:13 -070072import com.android.server.power.PowerManagerService;
73import com.android.server.power.ShutdownThread;
Jeff Sharkey7a96c392012-11-15 14:01:46 -080074import com.android.server.search.SearchManagerService;
Adam Lesinski182f73f2013-12-05 16:48:06 -080075import com.android.server.statusbar.StatusBarManagerService;
76import com.android.server.storage.DeviceStorageMonitorService;
77import com.android.server.twilight.TwilightManager;
78import com.android.server.twilight.TwilightService;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070079import com.android.server.usb.UsbService;
Amith Yamasani09e9cdc2013-11-06 14:54:50 -080080import com.android.server.wallpaper.WallpaperManagerService;
Irfan Sheriffd017f352013-02-20 13:30:44 -080081import com.android.server.wifi.WifiService;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070082import com.android.server.wm.WindowManagerService;
83
84import dalvik.system.VMRuntime;
85import dalvik.system.Zygote;
86
Dan Egnor4410ec82009-09-11 16:40:01 -070087import java.io.File;
Bob Leee5408332009-09-04 18:31:17 -070088import java.util.Timer;
89import java.util.TimerTask;
90
Dianne Hackbornefa92b22013-05-03 14:11:43 -070091class ServerThread {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080092 private static final String TAG = "SystemServer";
Ben Komalo553acf02011-09-19 14:25:28 -070093 private static final String ENCRYPTING_STATE = "trigger_restart_min_framework";
Ben Komalo3573d402011-09-23 15:08:24 -070094 private static final String ENCRYPTED_STATE = "1";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080095
Jeff Hamilton35eef702010-06-09 15:45:18 -050096 ContentResolver mContentResolver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080097
Amith Yamasani817ec492013-12-20 13:27:30 -080098 /*
99 * Implementation class names. TODO: Move them to a codegen class or load
100 * them from the build system somehow.
101 */
102 private static final String BACKUP_MANAGER_SERVICE_CLASS =
103 "com.android.server.backup.BackupManagerSystemService";
104 private static final String DEVICE_POLICY_MANAGER_SERVICE_CLASS =
105 "com.android.server.devicepolicy.DevicePolicyManagerSystemService";
106 private static final String APPWIDGET_SERVICE_CLASS =
107 "com.android.server.appwidget.AppWidgetService";
108 private static final String PRINT_MANAGER_SERVICE_CLASS =
109 "com.android.server.print.PrintManagerService";
110
Dianne Hackborn661cd522011-08-22 00:26:20 -0700111 void reportWtf(String msg, Throwable e) {
112 Slog.w(TAG, "***********************************************");
113 Log.wtf(TAG, "BOOT FAILURE " + msg, e);
114 }
115
Dianne Hackbornefa92b22013-05-03 14:11:43 -0700116 public void initAndLoop() {
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800117 EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_SYSTEM_RUN,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800118 SystemClock.uptimeMillis());
119
Vairavan Srinivasan04b74ec2012-02-02 22:12:19 -0800120 Looper.prepareMainLooper();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800121
122 android.os.Process.setThreadPriority(
123 android.os.Process.THREAD_PRIORITY_FOREGROUND);
124
Dianne Hackborn887f3552009-12-07 17:59:37 -0800125 BinderInternal.disableBackgroundScheduling(true);
Christopher Tate160edb32010-06-30 17:46:30 -0700126 android.os.Process.setCanSelfBackground(false);
Sen Hubde75702010-05-28 01:54:03 -0700127
Kenny Rootf547d672010-09-22 10:36:48 -0700128 // Check whether we failed to shut down last time we tried.
129 {
130 final String shutdownAction = SystemProperties.get(
131 ShutdownThread.SHUTDOWN_ACTION_PROPERTY, "");
132 if (shutdownAction != null && shutdownAction.length() > 0) {
133 boolean reboot = (shutdownAction.charAt(0) == '1');
134
135 final String reason;
136 if (shutdownAction.length() > 1) {
137 reason = shutdownAction.substring(1, shutdownAction.length());
138 } else {
139 reason = null;
140 }
141
142 ShutdownThread.rebootOrShutdown(reboot, reason);
143 }
144 }
145
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800146 String factoryTestStr = SystemProperties.get("ro.factorytest");
147 int factoryTest = "".equals(factoryTestStr) ? SystemServer.FACTORY_TEST_OFF
148 : Integer.parseInt(factoryTestStr);
149
Jeff Brownf69c8122012-09-12 17:00:34 -0700150 Installer installer = null;
Kenny Root26ff6622012-07-30 12:58:03 -0700151 AccountManagerService accountManager = null;
152 ContentService contentService = null;
Adam Lesinski182f73f2013-12-05 16:48:06 -0800153 LightsManager lights = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800154 PowerManagerService power = null;
Jeff Brownfa25bf52012-07-23 19:26:30 -0700155 DisplayManagerService display = null;
Mike Lockwood07a500f2009-08-12 09:56:44 -0400156 BatteryService battery = null;
Jeff Brown7f6c2312012-04-13 20:38:38 -0700157 VibratorService vibrator = null;
Adam Lesinski182f73f2013-12-05 16:48:06 -0800158 IAlarmManager alarm = null;
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700159 MountService mountService = null;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700160 NetworkManagementService networkManagement = null;
Jeff Sharkey75279902011-05-24 18:39:45 -0700161 NetworkStatsService networkStats = null;
Jeff Sharkeya4620792011-05-20 15:29:23 -0700162 NetworkPolicyManagerService networkPolicy = null;
Mike Lockwood0f79b542009-08-14 14:18:49 -0400163 ConnectivityService connectivity = null;
repo sync55bc5f32011-06-24 14:23:07 -0700164 WifiP2pService wifiP2p = null;
repo syncaea743a2011-07-29 23:55:49 -0700165 WifiService wifi = null;
Irfan Sheriff7d024d32012-03-22 17:01:39 -0700166 NsdService serviceDiscovery= null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800167 IPackageManager pm = null;
168 Context context = null;
169 WindowManagerService wm = null;
fredc0f420372012-04-12 00:02:00 -0700170 BluetoothManagerService bluetooth = null;
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500171 DockObserver dock = null;
Mike Lockwood770126a2010-12-09 22:30:37 -0800172 UsbService usb = null;
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -0400173 SerialService serial = null;
Adam Lesinski182f73f2013-12-05 16:48:06 -0800174 TwilightManager twilight = null;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800175 RecognitionManagerService recognition = null;
Amith Yamasani6734b9f2010-09-13 16:24:08 -0700176 NetworkTimeUpdateService networkTimeUpdater = null;
John Grossmanc1576732012-02-01 15:23:33 -0800177 CommonTimeManagementService commonTimeMgmtService = null;
Jeff Brown6ec6f792012-04-17 16:52:41 -0700178 InputManagerService inputManager = null;
Wink Savillea12a7b32012-09-20 10:09:45 -0700179 TelephonyRegistry telephonyRegistry = null;
Erik Gilling51e95df2013-06-26 11:06:51 -0700180 ConsumerIrService consumerIr = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800181
Jeff Brownbd6e1502012-08-28 03:27:37 -0700182 // Create a handler thread just for the window manager to enjoy.
183 HandlerThread wmHandlerThread = new HandlerThread("WindowManager");
184 wmHandlerThread.start();
185 Handler wmHandler = new Handler(wmHandlerThread.getLooper());
186 wmHandler.post(new Runnable() {
187 @Override
188 public void run() {
189 //Looper.myLooper().setMessageLogging(new LogPrinter(
190 // android.util.Log.DEBUG, TAG, android.util.Log.LOG_ID_SYSTEM));
191 android.os.Process.setThreadPriority(
192 android.os.Process.THREAD_PRIORITY_DISPLAY);
193 android.os.Process.setCanSelfBackground(false);
194
195 // For debug builds, log event loop stalls to dropbox for analysis.
196 if (StrictMode.conditionallyEnableDebugLogging()) {
Jeff Brown89d55462012-09-19 11:33:42 -0700197 Slog.i(TAG, "Enabled StrictMode logging for WM Looper");
Jeff Brownbd6e1502012-08-28 03:27:37 -0700198 }
199 }
200 });
201
Dan Morrille4d9a012013-03-28 18:10:43 -0700202 // bootstrap services
Jeff Brownbd6e1502012-08-28 03:27:37 -0700203 boolean onlyCore = false;
Dan Morrille4d9a012013-03-28 18:10:43 -0700204 boolean firstBoot = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800205 try {
Jeff Brownf69c8122012-09-12 17:00:34 -0700206 // Wait for installd to finished starting up so that it has a chance to
207 // create critical directories such as /data/user with the appropriate
208 // permissions. We need this to complete before we initialize other services.
209 Slog.i(TAG, "Waiting for installd to be ready.");
210 installer = new Installer();
211 installer.ping();
212
Joe Onorato8a9b2202010-02-26 18:56:32 -0800213 Slog.i(TAG, "Power Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800214 power = new PowerManagerService();
215 ServiceManager.addService(Context.POWER_SERVICE, power);
216
Joe Onorato8a9b2202010-02-26 18:56:32 -0800217 Slog.i(TAG, "Activity Manager");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800218 context = ActivityManagerService.main(factoryTest);
Dan Morrille4d9a012013-03-28 18:10:43 -0700219 } catch (RuntimeException e) {
220 Slog.e("System", "******************************************");
221 Slog.e("System", "************ Failure starting bootstrap service", e);
222 }
Jeff Brown848c2dc2012-08-19 20:18:08 -0700223
Adam Lesinski182f73f2013-12-05 16:48:06 -0800224 final SystemServiceManager systemServiceManager = new SystemServiceManager(context);
225
Dan Morrille4d9a012013-03-28 18:10:43 -0700226 boolean disableStorage = SystemProperties.getBoolean("config.disable_storage", false);
227 boolean disableMedia = SystemProperties.getBoolean("config.disable_media", false);
228 boolean disableBluetooth = SystemProperties.getBoolean("config.disable_bluetooth", false);
229 boolean disableTelephony = SystemProperties.getBoolean("config.disable_telephony", false);
230 boolean disableLocation = SystemProperties.getBoolean("config.disable_location", false);
231 boolean disableSystemUI = SystemProperties.getBoolean("config.disable_systemui", false);
232 boolean disableNonCoreServices = SystemProperties.getBoolean("config.disable_noncore", false);
233 boolean disableNetwork = SystemProperties.getBoolean("config.disable_network", false);
234
235 try {
Jeff Brown848c2dc2012-08-19 20:18:08 -0700236 Slog.i(TAG, "Display Manager");
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700237 display = new DisplayManagerService(context, wmHandler);
Jeff Brown848c2dc2012-08-19 20:18:08 -0700238 ServiceManager.addService(Context.DISPLAY_SERVICE, display, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800239
Joe Onorato8a9b2202010-02-26 18:56:32 -0800240 Slog.i(TAG, "Telephony Registry");
Wink Savillea12a7b32012-09-20 10:09:45 -0700241 telephonyRegistry = new TelephonyRegistry(context);
242 ServiceManager.addService("telephony.registry", telephonyRegistry);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800243
Glenn Kasten07b04652012-04-23 15:00:43 -0700244 Slog.i(TAG, "Scheduling Policy");
Dianne Hackborn35f72be2013-09-16 10:57:39 -0700245 ServiceManager.addService("scheduling_policy", new SchedulingPolicyService());
Glenn Kasten07b04652012-04-23 15:00:43 -0700246
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800247 AttributeCache.init(context);
248
Jeff Brownbd6e1502012-08-28 03:27:37 -0700249 if (!display.waitForDefaultDisplay()) {
250 reportWtf("Timeout waiting for default display to be initialized.",
251 new Throwable());
252 }
253
Joe Onorato8a9b2202010-02-26 18:56:32 -0800254 Slog.i(TAG, "Package Manager");
Ben Komalo553acf02011-09-19 14:25:28 -0700255 // Only run "core" apps if we're encrypting the device.
256 String cryptState = SystemProperties.get("vold.decrypt");
Ben Komalo3573d402011-09-23 15:08:24 -0700257 if (ENCRYPTING_STATE.equals(cryptState)) {
Ben Komalo553acf02011-09-19 14:25:28 -0700258 Slog.w(TAG, "Detected encryption in progress - only parsing core apps");
Ben Komalo3573d402011-09-23 15:08:24 -0700259 onlyCore = true;
260 } else if (ENCRYPTED_STATE.equals(cryptState)) {
261 Slog.w(TAG, "Device encrypted - only parsing core apps");
262 onlyCore = true;
Ben Komalo553acf02011-09-19 14:25:28 -0700263 }
Ben Komalo3573d402011-09-23 15:08:24 -0700264
Jeff Brownf69c8122012-09-12 17:00:34 -0700265 pm = PackageManagerService.main(context, installer,
Dianne Hackbornd2509fd2011-09-12 12:29:43 -0700266 factoryTest != SystemServer.FACTORY_TEST_OFF,
Ben Komalo553acf02011-09-19 14:25:28 -0700267 onlyCore);
Dianne Hackborn58f42a52011-10-10 13:46:34 -0700268 try {
269 firstBoot = pm.isFirstBoot();
270 } catch (RemoteException e) {
271 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800272
273 ActivityManagerService.setSystemProcess();
Svetoslavb3038ec2013-02-13 14:39:30 -0800274
Nick Kralevich79619dd2013-03-04 13:05:32 -0800275 Slog.i(TAG, "Entropy Mixer");
276 ServiceManager.addService("entropy", new EntropyMixer(context));
277
Amith Yamasani258848d2012-08-10 17:06:33 -0700278 Slog.i(TAG, "User Service");
279 ServiceManager.addService(Context.USER_SERVICE,
Dianne Hackborn4428e172012-08-24 17:43:05 -0700280 UserManagerService.getInstance());
Amith Yamasani258848d2012-08-10 17:06:33 -0700281
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800282 mContentResolver = context.getContentResolver();
283
Fred Quintanae91ebe22009-09-29 20:44:30 -0700284 // The AccountManager must come before the ContentService
Fred Quintana60307342009-03-24 22:48:12 -0700285 try {
Dan Morrille4d9a012013-03-28 18:10:43 -0700286 // TODO: seems like this should be disable-able, but req'd by ContentService
Joe Onorato8a9b2202010-02-26 18:56:32 -0800287 Slog.i(TAG, "Account Manager");
Kenny Root26ff6622012-07-30 12:58:03 -0700288 accountManager = new AccountManagerService(context);
289 ServiceManager.addService(Context.ACCOUNT_SERVICE, accountManager);
Fred Quintana60307342009-03-24 22:48:12 -0700290 } catch (Throwable e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800291 Slog.e(TAG, "Failure starting Account Manager", e);
Fred Quintana60307342009-03-24 22:48:12 -0700292 }
293
Joe Onorato8a9b2202010-02-26 18:56:32 -0800294 Slog.i(TAG, "Content Manager");
Kenny Root26ff6622012-07-30 12:58:03 -0700295 contentService = ContentService.main(context,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800296 factoryTest == SystemServer.FACTORY_TEST_LOW_LEVEL);
297
Joe Onorato8a9b2202010-02-26 18:56:32 -0800298 Slog.i(TAG, "System Content Providers");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800299 ActivityManagerService.installSystemProviders();
300
Adam Lesinski182f73f2013-12-05 16:48:06 -0800301 systemServiceManager.startService(LightsService.class);
302 lights = LocalServices.getService(LightsManager.class);
Mike Lockwood3a322132009-11-24 00:30:52 -0500303
Joe Onoratode1b3592010-10-25 20:36:47 -0700304 Slog.i(TAG, "Battery Service");
305 battery = new BatteryService(context, lights);
306 ServiceManager.addService("battery", battery);
307
Joe Onorato8a9b2202010-02-26 18:56:32 -0800308 Slog.i(TAG, "Vibrator Service");
Jeff Brown7f6c2312012-04-13 20:38:38 -0700309 vibrator = new VibratorService(context);
310 ServiceManager.addService("vibrator", vibrator);
The Android Open Source Project10592532009-03-18 17:39:46 -0700311
Erik Gilling51e95df2013-06-26 11:06:51 -0700312 Slog.i(TAG, "Consumer IR Service");
313 consumerIr = new ConsumerIrService(context);
314 ServiceManager.addService(Context.CONSUMER_IR_SERVICE, consumerIr);
315
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800316 // only initialize the power service after we have started the
Mike Lockwood3a322132009-11-24 00:30:52 -0500317 // lights service, content providers and the battery service.
Adam Lesinski182f73f2013-12-05 16:48:06 -0800318 power.init(context, lights, battery,
Dianne Hackborn713df152013-05-17 11:27:57 -0700319 BatteryStatsService.getService(),
320 ActivityManagerService.self().getAppOpsService(), display);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800321
Adam Lesinski182f73f2013-12-05 16:48:06 -0800322 systemServiceManager.startService(AlarmManagerService.class);
323 alarm = IAlarmManager.Stub.asInterface(
324 ServiceManager.getService(Context.ALARM_SERVICE));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800325
Joe Onorato8a9b2202010-02-26 18:56:32 -0800326 Slog.i(TAG, "Init Watchdog");
Adam Lesinski182f73f2013-12-05 16:48:06 -0800327 Watchdog.getInstance().init(context, ActivityManagerService.self());
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700328 Watchdog.getInstance().addThread(wmHandler, "WindowManager thread");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800329
Jeff Browna9d131c2012-09-20 16:48:17 -0700330 Slog.i(TAG, "Input Manager");
331 inputManager = new InputManagerService(context, wmHandler);
332
Joe Onorato8a9b2202010-02-26 18:56:32 -0800333 Slog.i(TAG, "Window Manager");
Jeff Browna9d131c2012-09-20 16:48:17 -0700334 wm = WindowManagerService.main(context, power, display, inputManager,
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700335 wmHandler, factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL,
Jeff Brown780c46f2012-06-24 12:15:38 -0700336 !firstBoot, onlyCore);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800337 ServiceManager.addService(Context.WINDOW_SERVICE, wm);
Jeff Brown6ec6f792012-04-17 16:52:41 -0700338 ServiceManager.addService(Context.INPUT_SERVICE, inputManager);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800339
Dianne Hackborn295e3c22011-08-25 13:19:08 -0700340 ActivityManagerService.self().setWindowManager(wm);
Jeff Browna9d131c2012-09-20 16:48:17 -0700341
342 inputManager.setWindowManagerCallbacks(wm.getInputMonitor());
343 inputManager.start();
344
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700345 display.setWindowManager(wm);
Jeff Brownd728bf52012-09-08 18:05:28 -0700346 display.setInputManager(inputManager);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800347
348 // Skip Bluetooth if we have an emulator kernel
349 // TODO: Use a more reliable check to see if this product should
350 // support Bluetooth - see bug 988521
351 if (SystemProperties.get("ro.kernel.qemu").equals("1")) {
David 'Digit' Turnere2a5e862011-01-17 00:32:33 +0100352 Slog.i(TAG, "No Bluetooh Service (emulator)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800353 } else if (factoryTest == SystemServer.FACTORY_TEST_LOW_LEVEL) {
David 'Digit' Turnere2a5e862011-01-17 00:32:33 +0100354 Slog.i(TAG, "No Bluetooth Service (factory test)");
Matthew Xie1dd01eb32013-04-26 12:37:54 -0700355 } else if (!context.getPackageManager().hasSystemFeature
356 (PackageManager.FEATURE_BLUETOOTH)) {
357 Slog.i(TAG, "No Bluetooth Service (Bluetooth Hardware Not Present)");
Dan Morrille4d9a012013-03-28 18:10:43 -0700358 } else if (disableBluetooth) {
359 Slog.i(TAG, "Bluetooth Service disabled by config");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800360 } else {
fredc0f420372012-04-12 00:02:00 -0700361 Slog.i(TAG, "Bluetooth Manager Service");
362 bluetooth = new BluetoothManagerService(context);
363 ServiceManager.addService(BluetoothAdapter.BLUETOOTH_MANAGER_SERVICE, bluetooth);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800364 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800365 } catch (RuntimeException e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700366 Slog.e("System", "******************************************");
367 Slog.e("System", "************ Failure starting core service", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800368 }
369
Joe Onorato089de882010-04-12 08:18:45 -0700370 StatusBarManagerService statusBar = null;
Adam Lesinski182f73f2013-12-05 16:48:06 -0800371 INotificationManager notification = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800372 InputMethodManagerService imm = null;
Dianne Hackbornf21adf62009-08-13 10:20:21 -0700373 WallpaperManagerService wallpaper = null;
Mike Lockwood46db5042010-02-22 16:36:44 -0500374 LocationManagerService location = null;
Bai Taoa58a8752010-07-13 15:32:16 +0800375 CountryDetectorService countryDetector = null;
satok988323c2011-06-22 16:38:13 +0900376 TextServicesManagerService tsms = null;
Amith Yamasani52c489c2012-03-28 11:42:42 -0700377 LockSettingsService lockSettings = null;
Daniel Sandler7d276c32012-01-30 14:33:52 -0500378 DreamManagerService dreamy = null;
Romain Guy3b748a42013-04-17 18:54:38 -0700379 AssetAtlasService atlas = null;
Jeff Brown69b07162013-11-07 00:30:16 -0800380 MediaRouterService mediaRouter = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800381
Dianne Hackborn661cd522011-08-22 00:26:20 -0700382 // Bring up services needed for UI.
383 if (factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL) {
Dan Morrille4d9a012013-03-28 18:10:43 -0700384 //if (!disableNonCoreServices) { // TODO: View depends on these; mock them?
385 if (true) {
386 try {
387 Slog.i(TAG, "Input Method Service");
388 imm = new InputMethodManagerService(context, wm);
389 ServiceManager.addService(Context.INPUT_METHOD_SERVICE, imm);
390 } catch (Throwable e) {
391 reportWtf("starting Input Manager Service", e);
392 }
Dianne Hackborn661cd522011-08-22 00:26:20 -0700393
Dan Morrille4d9a012013-03-28 18:10:43 -0700394 try {
395 Slog.i(TAG, "Accessibility Manager");
396 ServiceManager.addService(Context.ACCESSIBILITY_SERVICE,
397 new AccessibilityManagerService(context));
398 } catch (Throwable e) {
399 reportWtf("starting Accessibility Manager", e);
400 }
Dianne Hackborn661cd522011-08-22 00:26:20 -0700401 }
402 }
403
404 try {
405 wm.displayReady();
406 } catch (Throwable e) {
407 reportWtf("making display ready", e);
408 }
Dianne Hackborn8795b602011-08-25 13:30:53 -0700409
Dianne Hackborn295e3c22011-08-25 13:19:08 -0700410 try {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700411 pm.performBootDexOpt();
412 } catch (Throwable e) {
413 reportWtf("performing boot dexopt", e);
414 }
415
416 try {
417 ActivityManagerNative.getDefault().showBootMessage(
418 context.getResources().getText(
419 com.android.internal.R.string.android_upgrading_starting_apps),
Adam Lesinski182f73f2013-12-05 16:48:06 -0800420 false);
Dianne Hackborn661cd522011-08-22 00:26:20 -0700421 } catch (RemoteException e) {
422 }
423
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800424 if (factoryTest != SystemServer.FACTORY_TEST_LOW_LEVEL) {
Dan Morrille4d9a012013-03-28 18:10:43 -0700425 if (!disableStorage &&
426 !"0".equals(SystemProperties.get("system_init.startmountservice"))) {
Kenny Root51a573c2012-05-17 13:30:28 -0700427 try {
428 /*
429 * NotificationManagerService is dependant on MountService,
430 * (for media / usb notifications) so we must start MountService first.
431 */
432 Slog.i(TAG, "Mount Service");
433 mountService = new MountService(context);
434 ServiceManager.addService("mount", mountService);
435 } catch (Throwable e) {
436 reportWtf("starting Mount Service", e);
437 }
438 }
439
Dan Morrille4d9a012013-03-28 18:10:43 -0700440 if (!disableNonCoreServices) {
441 try {
442 Slog.i(TAG, "LockSettingsService");
443 lockSettings = new LockSettingsService(context);
444 ServiceManager.addService("lock_settings", lockSettings);
445 } catch (Throwable e) {
446 reportWtf("starting LockSettingsService service", e);
447 }
448
449 try {
450 Slog.i(TAG, "Device Policy");
Amith Yamasani817ec492013-12-20 13:27:30 -0800451 systemServiceManager.startService(DEVICE_POLICY_MANAGER_SERVICE_CLASS);
Dan Morrille4d9a012013-03-28 18:10:43 -0700452 } catch (Throwable e) {
453 reportWtf("starting DevicePolicyService", e);
454 }
Amith Yamasani52c489c2012-03-28 11:42:42 -0700455 }
456
Dan Morrille4d9a012013-03-28 18:10:43 -0700457 if (!disableSystemUI) {
458 try {
459 Slog.i(TAG, "Status Bar");
460 statusBar = new StatusBarManagerService(context, wm);
461 ServiceManager.addService(Context.STATUS_BAR_SERVICE, statusBar);
462 } catch (Throwable e) {
463 reportWtf("starting StatusBarManagerService", e);
464 }
Dianne Hackbornd6847842010-01-12 18:14:19 -0800465 }
466
Dan Morrille4d9a012013-03-28 18:10:43 -0700467 if (!disableNonCoreServices) {
468 try {
469 Slog.i(TAG, "Clipboard Service");
470 ServiceManager.addService(Context.CLIPBOARD_SERVICE,
471 new ClipboardService(context));
472 } catch (Throwable e) {
473 reportWtf("starting Clipboard Service", e);
474 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800475 }
476
Dan Morrille4d9a012013-03-28 18:10:43 -0700477 if (!disableNetwork) {
478 try {
479 Slog.i(TAG, "NetworkManagement Service");
480 networkManagement = NetworkManagementService.create(context);
481 ServiceManager.addService(Context.NETWORKMANAGEMENT_SERVICE, networkManagement);
482 } catch (Throwable e) {
483 reportWtf("starting NetworkManagement Service", e);
484 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800485 }
486
Dan Morrille4d9a012013-03-28 18:10:43 -0700487 if (!disableNonCoreServices) {
488 try {
489 Slog.i(TAG, "Text Service Manager Service");
490 tsms = new TextServicesManagerService(context);
491 ServiceManager.addService(Context.TEXT_SERVICES_MANAGER_SERVICE, tsms);
492 } catch (Throwable e) {
493 reportWtf("starting Text Service Manager Service", e);
494 }
San Mehatd1df8ac2010-01-26 06:17:26 -0800495 }
496
Dan Morrille4d9a012013-03-28 18:10:43 -0700497 if (!disableNetwork) {
498 try {
499 Slog.i(TAG, "NetworkStats Service");
500 networkStats = new NetworkStatsService(context, networkManagement, alarm);
501 ServiceManager.addService(Context.NETWORK_STATS_SERVICE, networkStats);
502 } catch (Throwable e) {
503 reportWtf("starting NetworkStats Service", e);
504 }
505
506 try {
507 Slog.i(TAG, "NetworkPolicy Service");
508 networkPolicy = new NetworkPolicyManagerService(
509 context, ActivityManagerService.self(), power,
510 networkStats, networkManagement);
511 ServiceManager.addService(Context.NETWORK_POLICY_SERVICE, networkPolicy);
512 } catch (Throwable e) {
513 reportWtf("starting NetworkPolicy Service", e);
514 }
515
516 try {
517 Slog.i(TAG, "Wi-Fi P2pService");
518 wifiP2p = new WifiP2pService(context);
519 ServiceManager.addService(Context.WIFI_P2P_SERVICE, wifiP2p);
520 } catch (Throwable e) {
521 reportWtf("starting Wi-Fi P2pService", e);
522 }
523
524 try {
525 Slog.i(TAG, "Wi-Fi Service");
526 wifi = new WifiService(context);
527 ServiceManager.addService(Context.WIFI_SERVICE, wifi);
528 } catch (Throwable e) {
529 reportWtf("starting Wi-Fi Service", e);
530 }
531
532 try {
533 Slog.i(TAG, "Connectivity Service");
534 connectivity = new ConnectivityService(
535 context, networkManagement, networkStats, networkPolicy);
536 ServiceManager.addService(Context.CONNECTIVITY_SERVICE, connectivity);
537 networkStats.bindConnectivityManager(connectivity);
538 networkPolicy.bindConnectivityManager(connectivity);
Vinit Deshapnde04675f62013-10-03 16:18:56 -0700539
Dan Morrille4d9a012013-03-28 18:10:43 -0700540 wifiP2p.connectivityServiceReady();
Vinit Deshapnde04675f62013-10-03 16:18:56 -0700541 wifi.checkAndStartWifi();
Dan Morrille4d9a012013-03-28 18:10:43 -0700542 } catch (Throwable e) {
543 reportWtf("starting Connectivity Service", e);
544 }
545
546 try {
547 Slog.i(TAG, "Network Service Discovery Service");
548 serviceDiscovery = NsdService.create(context);
549 ServiceManager.addService(
550 Context.NSD_SERVICE, serviceDiscovery);
551 } catch (Throwable e) {
552 reportWtf("starting Service Discovery Service", e);
553 }
satok988323c2011-06-22 16:38:13 +0900554 }
555
Dan Morrille4d9a012013-03-28 18:10:43 -0700556 if (!disableNonCoreServices) {
557 try {
558 Slog.i(TAG, "UpdateLock Service");
559 ServiceManager.addService(Context.UPDATE_LOCK_SERVICE,
560 new UpdateLockService(context));
561 } catch (Throwable e) {
562 reportWtf("starting UpdateLockService", e);
563 }
Christopher Tate8662cab52012-02-23 14:59:36 -0800564 }
565
Kenny Root51a573c2012-05-17 13:30:28 -0700566 /*
567 * MountService has a few dependencies: Notification Manager and
568 * AppWidget Provider. Make sure MountService is completely started
569 * first before continuing.
570 */
Ken Sumrall025adc42013-06-05 22:08:12 -0700571 if (mountService != null && !onlyCore) {
Kenny Root51a573c2012-05-17 13:30:28 -0700572 mountService.waitForAsecScan();
San Mehat1bf3f8b2010-02-03 14:43:09 -0800573 }
574
575 try {
Kenny Root26ff6622012-07-30 12:58:03 -0700576 if (accountManager != null)
577 accountManager.systemReady();
578 } catch (Throwable e) {
579 reportWtf("making Account Manager Service ready", e);
580 }
581
582 try {
583 if (contentService != null)
584 contentService.systemReady();
585 } catch (Throwable e) {
586 reportWtf("making Content Service ready", e);
587 }
588
Adam Lesinski182f73f2013-12-05 16:48:06 -0800589 systemServiceManager.startService(NotificationManagerService.class);
590 notification = INotificationManager.Stub.asInterface(
591 ServiceManager.getService(Context.NOTIFICATION_SERVICE));
592 networkPolicy.bindNotificationManager(notification);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800593
Adam Lesinski182f73f2013-12-05 16:48:06 -0800594 systemServiceManager.startService(DeviceStorageMonitorService.class);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800595
Dan Morrille4d9a012013-03-28 18:10:43 -0700596 if (!disableLocation) {
597 try {
598 Slog.i(TAG, "Location Manager");
599 location = new LocationManagerService(context);
600 ServiceManager.addService(Context.LOCATION_SERVICE, location);
601 } catch (Throwable e) {
602 reportWtf("starting Location Manager", e);
603 }
604
605 try {
606 Slog.i(TAG, "Country Detector");
607 countryDetector = new CountryDetectorService(context);
608 ServiceManager.addService(Context.COUNTRY_DETECTOR, countryDetector);
609 } catch (Throwable e) {
610 reportWtf("starting Country Detector", e);
611 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800612 }
613
Dan Morrille4d9a012013-03-28 18:10:43 -0700614 if (!disableNonCoreServices) {
615 try {
616 Slog.i(TAG, "Search Service");
617 ServiceManager.addService(Context.SEARCH_SERVICE,
618 new SearchManagerService(context));
619 } catch (Throwable e) {
620 reportWtf("starting Search Service", e);
621 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800622 }
623
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800624 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800625 Slog.i(TAG, "DropBox Service");
Dan Egnor95240272009-10-27 18:23:39 -0700626 ServiceManager.addService(Context.DROPBOX_SERVICE,
Dan Egnorf18a01c2009-11-12 11:32:50 -0800627 new DropBoxManagerService(context, new File("/data/system/dropbox")));
Dan Egnor4410ec82009-09-11 16:40:01 -0700628 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700629 reportWtf("starting DropBoxManagerService", e);
Dan Egnor4410ec82009-09-11 16:40:01 -0700630 }
631
Dan Morrille4d9a012013-03-28 18:10:43 -0700632 if (!disableNonCoreServices && context.getResources().getBoolean(
633 R.bool.config_enableWallpaperService)) {
Mike Lockwoodc067c9c2011-10-31 12:50:12 -0400634 try {
635 Slog.i(TAG, "Wallpaper Service");
Mike Lockwoode63f6f72013-11-15 11:01:47 -0800636 wallpaper = new WallpaperManagerService(context);
637 ServiceManager.addService(Context.WALLPAPER_SERVICE, wallpaper);
Mike Lockwoodc067c9c2011-10-31 12:50:12 -0400638 } catch (Throwable e) {
639 reportWtf("starting Wallpaper Service", e);
Mike Lockwood3a74bd32011-08-12 13:55:22 -0700640 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800641 }
642
Dan Morrille4d9a012013-03-28 18:10:43 -0700643 if (!disableMedia && !"0".equals(SystemProperties.get("system_init.startaudioservice"))) {
Mike Lockwoodcba928c2011-08-17 15:58:52 -0700644 try {
645 Slog.i(TAG, "Audio Service");
646 ServiceManager.addService(Context.AUDIO_SERVICE, new AudioService(context));
647 } catch (Throwable e) {
648 reportWtf("starting Audio Service", e);
649 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800650 }
651
Dan Morrille4d9a012013-03-28 18:10:43 -0700652 if (!disableNonCoreServices) {
653 try {
654 Slog.i(TAG, "Dock Observer");
655 // Listen for dock station changes
656 dock = new DockObserver(context);
657 } catch (Throwable e) {
658 reportWtf("starting DockObserver", e);
659 }
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500660 }
661
Dan Morrille4d9a012013-03-28 18:10:43 -0700662 if (!disableMedia) {
663 try {
664 Slog.i(TAG, "Wired Accessory Manager");
665 // Listen for wired headset changes
666 inputManager.setWiredAccessoryCallbacks(
667 new WiredAccessoryManager(context, inputManager));
668 } catch (Throwable e) {
669 reportWtf("starting WiredAccessoryManager", e);
670 }
Praveen Bharathi21e941b2010-10-06 15:23:14 -0500671 }
672
Dan Morrille4d9a012013-03-28 18:10:43 -0700673 if (!disableNonCoreServices) {
674 try {
675 Slog.i(TAG, "USB Service");
676 // Manage USB host and device support
677 usb = new UsbService(context);
678 ServiceManager.addService(Context.USB_SERVICE, usb);
679 } catch (Throwable e) {
680 reportWtf("starting UsbService", e);
681 }
Mike Lockwood57c798a2010-06-23 17:36:36 -0400682
Dan Morrille4d9a012013-03-28 18:10:43 -0700683 try {
684 Slog.i(TAG, "Serial Service");
685 // Serial port support
686 serial = new SerialService(context);
687 ServiceManager.addService(Context.SERIAL_SERVICE, serial);
688 } catch (Throwable e) {
689 Slog.e(TAG, "Failure starting SerialService", e);
690 }
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -0400691 }
692
Adam Lesinski182f73f2013-12-05 16:48:06 -0800693 systemServiceManager.startService(TwilightService.class);
694 twilight = LocalServices.getService(TwilightManager.class);
Jeff Brown2416e092012-08-21 22:12:20 -0700695
Adam Lesinski182f73f2013-12-05 16:48:06 -0800696 systemServiceManager.startService(UiModeManagerService.class);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800697
Dan Morrille4d9a012013-03-28 18:10:43 -0700698 if (!disableNonCoreServices) {
699 try {
700 Slog.i(TAG, "Backup Service");
Amith Yamasani817ec492013-12-20 13:27:30 -0800701 systemServiceManager.startService(BACKUP_MANAGER_SERVICE_CLASS);
Dan Morrille4d9a012013-03-28 18:10:43 -0700702 } catch (Throwable e) {
703 Slog.e(TAG, "Failure starting Backup Service", e);
704 }
Christopher Tate487529a2009-04-29 14:03:25 -0700705
Dan Morrille4d9a012013-03-28 18:10:43 -0700706 try {
707 Slog.i(TAG, "AppWidget Service");
Amith Yamasani817ec492013-12-20 13:27:30 -0800708 systemServiceManager.startService(APPWIDGET_SERVICE_CLASS);
Dan Morrille4d9a012013-03-28 18:10:43 -0700709 } catch (Throwable e) {
710 reportWtf("starting AppWidget Service", e);
711 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800712
Dan Morrille4d9a012013-03-28 18:10:43 -0700713 try {
714 Slog.i(TAG, "Recognition Service");
715 recognition = new RecognitionManagerService(context);
716 } catch (Throwable e) {
717 reportWtf("starting Recognition Service", e);
718 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800719 }
Jaikumar Ganesh7d0548d2010-10-18 15:29:09 -0700720
Nick Pelly038cabe2010-09-23 16:12:11 -0700721 try {
Dan Egnor621bc542010-03-25 16:20:14 -0700722 Slog.i(TAG, "DiskStats Service");
723 ServiceManager.addService("diskstats", new DiskStatsService(context));
724 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700725 reportWtf("starting DiskStats Service", e);
Dan Egnor621bc542010-03-25 16:20:14 -0700726 }
Sen Hubde75702010-05-28 01:54:03 -0700727
728 try {
729 // need to add this service even if SamplingProfilerIntegration.isEnabled()
730 // is false, because it is this service that detects system property change and
731 // turns on SamplingProfilerIntegration. Plus, when sampling profiler doesn't work,
732 // there is little overhead for running this service.
733 Slog.i(TAG, "SamplingProfiler Service");
734 ServiceManager.addService("samplingprofiler",
735 new SamplingProfilerService(context));
736 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700737 reportWtf("starting SamplingProfiler Service", e);
Sen Hubde75702010-05-28 01:54:03 -0700738 }
Chung-yih Wang024d5962010-08-06 12:06:04 +0800739
Dan Morrille4d9a012013-03-28 18:10:43 -0700740 if (!disableNetwork) {
741 try {
742 Slog.i(TAG, "NetworkTimeUpdateService");
743 networkTimeUpdater = new NetworkTimeUpdateService(context);
744 } catch (Throwable e) {
745 reportWtf("starting NetworkTimeUpdate service", e);
746 }
Amith Yamasani6734b9f2010-09-13 16:24:08 -0700747 }
John Grossmanc1576732012-02-01 15:23:33 -0800748
Dan Morrille4d9a012013-03-28 18:10:43 -0700749 if (!disableMedia) {
750 try {
751 Slog.i(TAG, "CommonTimeManagementService");
752 commonTimeMgmtService = new CommonTimeManagementService(context);
753 ServiceManager.addService("commontime_management", commonTimeMgmtService);
754 } catch (Throwable e) {
755 reportWtf("starting CommonTimeManagementService service", e);
756 }
John Grossmanc1576732012-02-01 15:23:33 -0800757 }
Geremy Condra3d33c262012-05-06 18:32:19 -0700758
Dan Morrille4d9a012013-03-28 18:10:43 -0700759 if (!disableNetwork) {
760 try {
761 Slog.i(TAG, "CertBlacklister");
762 CertBlacklister blacklister = new CertBlacklister(context);
763 } catch (Throwable e) {
764 reportWtf("starting CertBlacklister", e);
765 }
Geremy Condra3d33c262012-05-06 18:32:19 -0700766 }
Jim Miller5ecd8112013-01-09 18:50:26 -0800767
Dan Morrille4d9a012013-03-28 18:10:43 -0700768 if (!disableNonCoreServices &&
769 context.getResources().getBoolean(R.bool.config_dreamsSupported)) {
Daniel Sandler7d276c32012-01-30 14:33:52 -0500770 try {
771 Slog.i(TAG, "Dreams Service");
772 // Dreams (interactive idle-time views, a/k/a screen savers)
Jeff Brown62c82e42012-09-26 01:30:41 -0700773 dreamy = new DreamManagerService(context, wmHandler);
Dianne Hackbornbe87e2f2012-09-28 16:31:34 -0700774 ServiceManager.addService(DreamService.DREAM_SERVICE, dreamy);
Daniel Sandler7d276c32012-01-30 14:33:52 -0500775 } catch (Throwable e) {
776 reportWtf("starting DreamManagerService", e);
777 }
778 }
Svetoslavb3038ec2013-02-13 14:39:30 -0800779
Romain Guy3b748a42013-04-17 18:54:38 -0700780 if (!disableNonCoreServices) {
781 try {
782 Slog.i(TAG, "Assets Atlas Service");
783 atlas = new AssetAtlasService(context);
784 ServiceManager.addService(AssetAtlasService.ASSET_ATLAS_SERVICE, atlas);
785 } catch (Throwable e) {
786 reportWtf("starting AssetAtlasService", e);
787 }
788 }
789
Svetoslavb3038ec2013-02-13 14:39:30 -0800790 try {
791 Slog.i(TAG, "IdleMaintenanceService");
Svetoslav6a08a122013-05-03 11:24:26 -0700792 new IdleMaintenanceService(context, battery);
Svetoslavb3038ec2013-02-13 14:39:30 -0800793 } catch (Throwable e) {
794 reportWtf("starting IdleMaintenanceService", e);
795 }
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -0700796
797 try {
798 Slog.i(TAG, "Print Service");
Amith Yamasani817ec492013-12-20 13:27:30 -0800799 systemServiceManager.startService(PRINT_MANAGER_SERVICE_CLASS);
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -0700800 } catch (Throwable e) {
801 reportWtf("starting Print Service", e);
802 }
Jeff Brown69b07162013-11-07 00:30:16 -0800803
804 if (!disableNonCoreServices) {
805 try {
806 Slog.i(TAG, "Media Router Service");
807 mediaRouter = new MediaRouterService(context);
808 ServiceManager.addService(Context.MEDIA_ROUTER_SERVICE, mediaRouter);
809 } catch (Throwable e) {
810 reportWtf("starting MediaRouterService", e);
811 }
812 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800813 }
814
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700815 // Before things start rolling, be sure we have decided whether
816 // we are in safe mode.
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700817 final boolean safeMode = wm.detectSafeMode();
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700818 if (safeMode) {
Jeff Brownb09abc12011-01-13 21:08:27 -0800819 ActivityManagerService.self().enterSafeMode();
820 // Post the safe mode state in the Zygote class
821 Zygote.systemInSafeMode = true;
822 // Disable the JIT for the system_server process
823 VMRuntime.getRuntime().disableJitCompilation();
Ben Cheng6c0afff2010-02-14 16:18:56 -0800824 } else {
825 // Enable the JIT for the system_server process
826 VMRuntime.getRuntime().startJitCompilation();
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700827 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800828
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700829 // It is now time to start up the app processes...
Joe Onorato30275482009-07-08 17:09:14 -0700830
Jeff Brown7f6c2312012-04-13 20:38:38 -0700831 try {
832 vibrator.systemReady();
833 } catch (Throwable e) {
834 reportWtf("making Vibrator Service ready", e);
835 }
836
Dan Morrille4d9a012013-03-28 18:10:43 -0700837 if (lockSettings != null) {
838 try {
839 lockSettings.systemReady();
840 } catch (Throwable e) {
841 reportWtf("making Lock Settings Service ready", e);
842 }
Felipe Ramosf35df5b2012-09-18 18:26:27 -0300843 }
844
Amith Yamasani817ec492013-12-20 13:27:30 -0800845 // Needed by DevicePolicyManager for initialization
846 systemServiceManager.startBootPhase(SystemService.PHASE_LOCK_SETTINGS_READY);
Dianne Hackbornd6847842010-01-12 18:14:19 -0800847
Adam Lesinski182f73f2013-12-05 16:48:06 -0800848 systemServiceManager.startBootPhase(SystemService.PHASE_SYSTEM_SERVICES_READY);
Joe Onorato30275482009-07-08 17:09:14 -0700849
Dianne Hackborn661cd522011-08-22 00:26:20 -0700850 try {
851 wm.systemReady();
852 } catch (Throwable e) {
853 reportWtf("making Window Manager Service ready", e);
854 }
Joe Onoratodc565f42010-10-04 15:27:22 -0400855
Jeff Brownb09abc12011-01-13 21:08:27 -0800856 if (safeMode) {
857 ActivityManagerService.self().showSafeModeOverlay();
858 }
859
Joe Onoratodc565f42010-10-04 15:27:22 -0400860 // Update the configuration for this context by hand, because we're going
861 // to start using it before the config change done in wm.systemReady() will
862 // propagate to it.
863 Configuration config = wm.computeNewConfiguration();
864 DisplayMetrics metrics = new DisplayMetrics();
865 WindowManager w = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
866 w.getDefaultDisplay().getMetrics(metrics);
867 context.getResources().updateConfiguration(config, metrics);
868
Jeff Brownaa202a62012-08-21 22:14:26 -0700869 try {
Jeff Brown62c82e42012-09-26 01:30:41 -0700870 power.systemReady(twilight, dreamy);
Jeff Brownaa202a62012-08-21 22:14:26 -0700871 } catch (Throwable e) {
872 reportWtf("making Power Manager Service ready", e);
873 }
874
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800875 try {
876 pm.systemReady();
Dianne Hackborn661cd522011-08-22 00:26:20 -0700877 } catch (Throwable e) {
878 reportWtf("making Package Manager Service ready", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800879 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800880
Jeff Brownbd6e1502012-08-28 03:27:37 -0700881 try {
882 display.systemReady(safeMode, onlyCore);
883 } catch (Throwable e) {
884 reportWtf("making Display Manager Service ready", e);
885 }
886
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700887 // These are needed to propagate to the runnable below.
Joe Onoratof3c3c4f2010-10-21 11:09:02 -0400888 final Context contextF = context;
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700889 final MountService mountServiceF = mountService;
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700890 final BatteryService batteryF = battery;
Jeff Sharkey350083e2011-06-29 10:45:16 -0700891 final NetworkManagementService networkManagementF = networkManagement;
Jeff Sharkey75279902011-05-24 18:39:45 -0700892 final NetworkStatsService networkStatsF = networkStats;
Jeff Sharkeya4620792011-05-20 15:29:23 -0700893 final NetworkPolicyManagerService networkPolicyF = networkPolicy;
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700894 final ConnectivityService connectivityF = connectivity;
895 final DockObserver dockF = dock;
Mike Lockwood770126a2010-12-09 22:30:37 -0800896 final UsbService usbF = usb;
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700897 final WallpaperManagerService wallpaperF = wallpaper;
898 final InputMethodManagerService immF = imm;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800899 final RecognitionManagerService recognitionF = recognition;
Mike Lockwood46db5042010-02-22 16:36:44 -0500900 final LocationManagerService locationF = location;
Bai Taoa58a8752010-07-13 15:32:16 +0800901 final CountryDetectorService countryDetectorF = countryDetector;
Amith Yamasani6734b9f2010-09-13 16:24:08 -0700902 final NetworkTimeUpdateService networkTimeUpdaterF = networkTimeUpdater;
John Grossmanc1576732012-02-01 15:23:33 -0800903 final CommonTimeManagementService commonTimeMgmtServiceF = commonTimeMgmtService;
satok988323c2011-06-22 16:38:13 +0900904 final TextServicesManagerService textServiceManagerServiceF = tsms;
Dianne Hackborn661cd522011-08-22 00:26:20 -0700905 final StatusBarManagerService statusBarF = statusBar;
Daniel Sandler7d276c32012-01-30 14:33:52 -0500906 final DreamManagerService dreamyF = dreamy;
Romain Guy3b748a42013-04-17 18:54:38 -0700907 final AssetAtlasService atlasF = atlas;
Jeff Brown6ec6f792012-04-17 16:52:41 -0700908 final InputManagerService inputManagerF = inputManager;
Wink Savillea12a7b32012-09-20 10:09:45 -0700909 final TelephonyRegistry telephonyRegistryF = telephonyRegistry;
Jeff Brown69b07162013-11-07 00:30:16 -0800910 final MediaRouterService mediaRouterF = mediaRouter;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800911
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700912 // We now tell the activity manager it is okay to run third party
913 // code. It will call back into us once it has gotten to the state
914 // where third party code can really run (but before it has actually
915 // started launching the initial applications), for us to complete our
916 // initialization.
Dianne Hackborn295e3c22011-08-25 13:19:08 -0700917 ActivityManagerService.self().systemReady(new Runnable() {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700918 public void run() {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800919 Slog.i(TAG, "Making services ready");
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800920
Christopher Tate58d380d2013-03-19 13:10:03 -0700921 try {
922 ActivityManagerService.self().startObservingNativeCrashes();
923 } catch (Throwable e) {
924 reportWtf("observing native crashes", e);
925 }
Amith Yamasanid50d41e2013-11-14 19:24:44 -0800926 try {
927 startSystemUi(contextF);
928 } catch (Throwable e) {
929 reportWtf("starting System UI", e);
930 }
Dianne Hackborn661cd522011-08-22 00:26:20 -0700931 try {
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700932 if (mountServiceF != null) mountServiceF.systemReady();
933 } catch (Throwable e) {
934 reportWtf("making Mount Service ready", e);
935 }
936 try {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700937 if (batteryF != null) batteryF.systemReady();
938 } catch (Throwable e) {
939 reportWtf("making Battery Service ready", e);
940 }
941 try {
942 if (networkManagementF != null) networkManagementF.systemReady();
943 } catch (Throwable e) {
944 reportWtf("making Network Managment Service ready", e);
945 }
946 try {
947 if (networkStatsF != null) networkStatsF.systemReady();
948 } catch (Throwable e) {
949 reportWtf("making Network Stats Service ready", e);
950 }
951 try {
952 if (networkPolicyF != null) networkPolicyF.systemReady();
953 } catch (Throwable e) {
954 reportWtf("making Network Policy Service ready", e);
955 }
956 try {
957 if (connectivityF != null) connectivityF.systemReady();
958 } catch (Throwable e) {
959 reportWtf("making Connectivity Service ready", e);
960 }
961 try {
962 if (dockF != null) dockF.systemReady();
963 } catch (Throwable e) {
964 reportWtf("making Dock Service ready", e);
965 }
966 try {
967 if (usbF != null) usbF.systemReady();
968 } catch (Throwable e) {
969 reportWtf("making USB Service ready", e);
970 }
971 try {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700972 if (recognitionF != null) recognitionF.systemReady();
973 } catch (Throwable e) {
974 reportWtf("making Recognition Service ready", e);
975 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700976 Watchdog.getInstance().start();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800977
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700978 // It is now okay to let the various system services start their
979 // third party code...
Adam Lesinski182f73f2013-12-05 16:48:06 -0800980 systemServiceManager.startBootPhase(SystemService.PHASE_THIRD_PARTY_APPS_CAN_START);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800981
Dianne Hackborn661cd522011-08-22 00:26:20 -0700982 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -0700983 if (wallpaperF != null) wallpaperF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -0700984 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -0700985 reportWtf("Notifying WallpaperService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -0700986 }
987 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -0700988 if (immF != null) immF.systemRunning(statusBarF);
Dianne Hackborn661cd522011-08-22 00:26:20 -0700989 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -0700990 reportWtf("Notifying InputMethodService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -0700991 }
992 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -0700993 if (locationF != null) locationF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -0700994 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -0700995 reportWtf("Notifying Location Service running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -0700996 }
997 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -0700998 if (countryDetectorF != null) countryDetectorF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -0700999 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001000 reportWtf("Notifying CountryDetectorService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001001 }
1002 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001003 if (networkTimeUpdaterF != null) networkTimeUpdaterF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001004 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001005 reportWtf("Notifying NetworkTimeService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001006 }
1007 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001008 if (commonTimeMgmtServiceF != null) commonTimeMgmtServiceF.systemRunning();
John Grossmanc1576732012-02-01 15:23:33 -08001009 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001010 reportWtf("Notifying CommonTimeManagementService running", e);
John Grossmanc1576732012-02-01 15:23:33 -08001011 }
1012 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001013 if (textServiceManagerServiceF != null)
1014 textServiceManagerServiceF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001015 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001016 reportWtf("Notifying TextServicesManagerService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001017 }
Daniel Sandler7d276c32012-01-30 14:33:52 -05001018 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001019 if (dreamyF != null) dreamyF.systemRunning();
Daniel Sandler7d276c32012-01-30 14:33:52 -05001020 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001021 reportWtf("Notifying DreamManagerService running", e);
Daniel Sandler7d276c32012-01-30 14:33:52 -05001022 }
Jeff Brown6ec6f792012-04-17 16:52:41 -07001023 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001024 if (atlasF != null) atlasF.systemRunning();
Romain Guy3b748a42013-04-17 18:54:38 -07001025 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001026 reportWtf("Notifying AssetAtlasService running", e);
Romain Guy3b748a42013-04-17 18:54:38 -07001027 }
1028 try {
Matthew Xie96313142012-06-29 16:57:31 -07001029 // TODO(BT) Pass parameter to input manager
Svetoslav Ganova0027152013-06-25 14:59:53 -07001030 if (inputManagerF != null) inputManagerF.systemRunning();
Jeff Brown6ec6f792012-04-17 16:52:41 -07001031 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001032 reportWtf("Notifying InputManagerService running", e);
Jeff Brown6ec6f792012-04-17 16:52:41 -07001033 }
Dan Morrille4d9a012013-03-28 18:10:43 -07001034
Wink Savillea12a7b32012-09-20 10:09:45 -07001035 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001036 if (telephonyRegistryF != null) telephonyRegistryF.systemRunning();
Wink Savillea12a7b32012-09-20 10:09:45 -07001037 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001038 reportWtf("Notifying TelephonyRegistry running", e);
1039 }
1040
1041 try {
Jeff Brown69b07162013-11-07 00:30:16 -08001042 if (mediaRouterF != null) mediaRouterF.systemRunning();
1043 } catch (Throwable e) {
1044 reportWtf("Notifying MediaRouterService running", e);
1045 }
Adam Lesinski182f73f2013-12-05 16:48:06 -08001046
1047 systemServiceManager.startBootPhase(SystemService.PHASE_BOOT_COMPLETE);
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001048 }
1049 });
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001050
Brad Fitzpatrick1e02d362010-09-10 09:19:50 -07001051 // For debug builds, log event loop stalls to dropbox for analysis.
Brad Fitzpatrick50d66f92010-09-13 21:29:05 -07001052 if (StrictMode.conditionallyEnableDebugLogging()) {
1053 Slog.i(TAG, "Enabled StrictMode for system server main thread.");
Brad Fitzpatrick1e02d362010-09-10 09:19:50 -07001054 }
1055
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001056 Looper.loop();
Joe Onorato8a9b2202010-02-26 18:56:32 -08001057 Slog.d(TAG, "System ServerThread is exiting!");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001058 }
Joe Onoratof3c3c4f2010-10-21 11:09:02 -04001059
1060 static final void startSystemUi(Context context) {
1061 Intent intent = new Intent();
1062 intent.setComponent(new ComponentName("com.android.systemui",
1063 "com.android.systemui.SystemUIService"));
Dianne Hackborn40e9f292012-11-27 19:12:23 -08001064 //Slog.d(TAG, "Starting service: " + intent);
Amith Yamasanicd757062012-10-19 18:23:52 -07001065 context.startServiceAsUser(intent, UserHandle.OWNER);
Joe Onoratof3c3c4f2010-10-21 11:09:02 -04001066 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001067}
1068
Jeff Hamilton35eef702010-06-09 15:45:18 -05001069public class SystemServer {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001070 private static final String TAG = "SystemServer";
1071
1072 public static final int FACTORY_TEST_OFF = 0;
1073 public static final int FACTORY_TEST_LOW_LEVEL = 1;
1074 public static final int FACTORY_TEST_HIGH_LEVEL = 2;
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -07001075
Bob Leee5408332009-09-04 18:31:17 -07001076 static Timer timer;
1077 static final long SNAPSHOT_INTERVAL = 60 * 60 * 1000; // 1hr
1078
Brad Fitzpatrick6bb7a4a2010-10-11 13:41:10 -07001079 // The earliest supported time. We pick one day into 1970, to
1080 // give any timezone code room without going into negative time.
1081 private static final long EARLIEST_SUPPORTED_TIME = 86400 * 1000;
1082
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -07001083 /**
Jeff Brownef691172013-07-15 13:22:04 -07001084 * Called to initialize native system services.
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -07001085 */
Jeff Brownef691172013-07-15 13:22:04 -07001086 private static native void nativeInit();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001087
1088 public static void main(String[] args) {
Brian Carlstrom5637ffc2013-11-01 14:51:58 -07001089
1090 /*
1091 * In case the runtime switched since last boot (such as when
1092 * the old runtime was removed in an OTA), set the system
1093 * property so that it is in sync. We can't do this in
1094 * libnativehelper's JniInvocation::Init code where we already
1095 * had to fallback to a different runtime because it is
1096 * running as root and we need to be the system user to set
1097 * the property. http://b/11463182
1098 */
1099 SystemProperties.set("persist.sys.dalvik.vm.lib",
1100 VMRuntime.getRuntime().vmLibrary());
1101
Brad Fitzpatrick6bb7a4a2010-10-11 13:41:10 -07001102 if (System.currentTimeMillis() < EARLIEST_SUPPORTED_TIME) {
Brad Fitzpatrick35ca9d82010-10-11 11:52:49 -07001103 // If a device's clock is before 1970 (before 0), a lot of
1104 // APIs crash dealing with negative numbers, notably
1105 // java.io.File#setLastModified, so instead we fake it and
1106 // hope that time from cell towers or NTP fixes it
1107 // shortly.
1108 Slog.w(TAG, "System clock is before 1970; setting to 1970.");
Brad Fitzpatrick6bb7a4a2010-10-11 13:41:10 -07001109 SystemClock.setCurrentTimeMillis(EARLIEST_SUPPORTED_TIME);
Brad Fitzpatrick35ca9d82010-10-11 11:52:49 -07001110 }
1111
Bob Leee5408332009-09-04 18:31:17 -07001112 if (SamplingProfilerIntegration.isEnabled()) {
1113 SamplingProfilerIntegration.start();
1114 timer = new Timer();
1115 timer.schedule(new TimerTask() {
1116 @Override
1117 public void run() {
Sen Hubde75702010-05-28 01:54:03 -07001118 SamplingProfilerIntegration.writeSnapshot("system_server", null);
Bob Leee5408332009-09-04 18:31:17 -07001119 }
1120 }, SNAPSHOT_INTERVAL, SNAPSHOT_INTERVAL);
1121 }
1122
Dianne Hackbornac1471a2011-02-03 13:46:06 -08001123 // Mmmmmm... more memory!
1124 dalvik.system.VMRuntime.getRuntime().clearGrowthLimit();
1125
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001126 // The system server has to run all of the time, so it needs to be
1127 // as efficient as possible with its memory usage.
1128 VMRuntime.getRuntime().setTargetHeapUtilization(0.8f);
Sen Hubde75702010-05-28 01:54:03 -07001129
Jeff Sharkey48749fc2013-04-19 13:25:04 -07001130 Environment.setUserRequired(true);
1131
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001132 System.loadLibrary("android_servers");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001133
Joe Onorato8a9b2202010-02-26 18:56:32 -08001134 Slog.i(TAG, "Entered the Android system server!");
Dianne Hackbornefa92b22013-05-03 14:11:43 -07001135
Jeff Brownef691172013-07-15 13:22:04 -07001136 // Initialize native services.
1137 nativeInit();
1138
Dianne Hackbornefa92b22013-05-03 14:11:43 -07001139 // This used to be its own separate thread, but now it is
1140 // just the loop we run on the main thread.
1141 ServerThread thr = new ServerThread();
1142 thr.initAndLoop();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001143 }
1144}