blob: 9bc2201059f9eb55310dec930513230033c9df79 [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;
Jeff Brown6f357d32014-01-15 20:40:55 -080020import android.app.ActivityThread;
Adam Lesinskief2ea1f2013-12-05 16:48:06 -080021import android.app.IAlarmManager;
22import android.app.INotificationManager;
Nick Pellyf242b7b2009-10-08 00:12:45 +020023import android.bluetooth.BluetoothAdapter;
Joe Onoratof3c3c4f2010-10-21 11:09:02 -040024import android.content.ComponentName;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025import android.content.ContentResolver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026import android.content.Context;
Joe Onoratof3c3c4f2010-10-21 11:09:02 -040027import android.content.Intent;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028import android.content.pm.IPackageManager;
Matthew Xie1dd01eb32013-04-26 12:37:54 -070029import android.content.pm.PackageManager;
Joe Onoratodc565f42010-10-04 15:27:22 -040030import android.content.res.Configuration;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031import android.media.AudioService;
Jeff Sharkey48749fc2013-04-19 13:25:04 -070032import android.os.Environment;
Jeff Brown6f357d32014-01-15 20:40:55 -080033import android.os.FactoryTest;
Jeff Brownbd6e1502012-08-28 03:27:37 -070034import android.os.Handler;
Amith Yamasani817ec492013-12-20 13:27:30 -080035import android.os.IBinder;
Jeff Brown6f357d32014-01-15 20:40:55 -080036import android.os.IPowerManager;
Jeff Hamilton35eef702010-06-09 15:45:18 -050037import android.os.Looper;
38import android.os.RemoteException;
39import android.os.ServiceManager;
Brad Fitzpatrickc74a1b442010-09-10 16:03:29 -070040import android.os.StrictMode;
Jeff Hamilton35eef702010-06-09 15:45:18 -050041import android.os.SystemClock;
42import android.os.SystemProperties;
Amith Yamasanicd757062012-10-19 18:23:52 -070043import android.os.UserHandle;
Dianne Hackbornbe87e2f2012-09-28 16:31:34 -070044import android.service.dreams.DreamService;
Joe Onoratodc565f42010-10-04 15:27:22 -040045import android.util.DisplayMetrics;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080046import android.util.EventLog;
Dianne Hackborn661cd522011-08-22 00:26:20 -070047import android.util.Log;
Joe Onorato8a9b2202010-02-26 18:56:32 -080048import android.util.Slog;
Brad Fitzpatrick5fdc0c72010-10-12 13:12:18 -070049import android.view.WindowManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080050
Dan Morrille4d9a012013-03-28 18:10:43 -070051import com.android.internal.R;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070052import com.android.internal.os.BinderInternal;
53import com.android.internal.os.SamplingProfilerIntegration;
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 Yamasani30f8eb42013-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 Lesinskief2ea1f2013-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 Lesinskief2ea1f2013-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 Lesinskief2ea1f2013-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 Yamasani30f8eb42013-11-06 14:54:50 -080080import com.android.server.wallpaper.WallpaperManagerService;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070081import com.android.server.wm.WindowManagerService;
82
83import dalvik.system.VMRuntime;
84import dalvik.system.Zygote;
85
Dan Egnor4410ec82009-09-11 16:40:01 -070086import java.io.File;
Bob Leee5408332009-09-04 18:31:17 -070087import java.util.Timer;
88import java.util.TimerTask;
89
Jeff Brown6f357d32014-01-15 20:40:55 -080090public final class SystemServer {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080091 private static final String TAG = "SystemServer";
Jeff Brown6f357d32014-01-15 20:40:55 -080092
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 Brown6f357d32014-01-15 20:40:55 -080096 private static final long SNAPSHOT_INTERVAL = 60 * 60 * 1000; // 1hr
97
98 // The earliest supported time. We pick one day into 1970, to
99 // give any timezone code room without going into negative time.
100 private static final long EARLIEST_SUPPORTED_TIME = 86400 * 1000;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800101
Amith Yamasani817ec492013-12-20 13:27:30 -0800102 /*
103 * Implementation class names. TODO: Move them to a codegen class or load
104 * them from the build system somehow.
105 */
106 private static final String BACKUP_MANAGER_SERVICE_CLASS =
107 "com.android.server.backup.BackupManagerSystemService";
108 private static final String DEVICE_POLICY_MANAGER_SERVICE_CLASS =
109 "com.android.server.devicepolicy.DevicePolicyManagerSystemService";
110 private static final String APPWIDGET_SERVICE_CLASS =
111 "com.android.server.appwidget.AppWidgetService";
112 private static final String PRINT_MANAGER_SERVICE_CLASS =
113 "com.android.server.print.PrintManagerService";
114
Jeff Brown6f357d32014-01-15 20:40:55 -0800115 private final int mFactoryTestMode;
116 private Timer mProfilerSnapshotTimer;
117
118 private Context mSystemContext;
119 private SystemServiceManager mSystemServiceManager;
120
Jeff Brown4ccb8232014-01-16 22:16:42 -0800121 // TODO: remove all of these references by improving dependency resolution and boot phases
122 private Installer mInstaller;
123 private PowerManagerService mPowerManagerService;
124 private ActivityManagerService mActivityManagerService;
125 private DisplayManagerService mDisplayManagerService;
Jeff Brown6f357d32014-01-15 20:40:55 -0800126 private ContentResolver mContentResolver;
127
128 /**
129 * Called to initialize native system services.
130 */
131 private static native void nativeInit();
132
133 /**
134 * The main entry point from zygote.
135 */
136 public static void main(String[] args) {
137 new SystemServer().run();
138 }
139
140 public SystemServer() {
141 mFactoryTestMode = FactoryTest.getMode();
142 }
143
144 private void run() {
145 // If a device's clock is before 1970 (before 0), a lot of
146 // APIs crash dealing with negative numbers, notably
147 // java.io.File#setLastModified, so instead we fake it and
148 // hope that time from cell towers or NTP fixes it shortly.
149 if (System.currentTimeMillis() < EARLIEST_SUPPORTED_TIME) {
150 Slog.w(TAG, "System clock is before 1970; setting to 1970.");
151 SystemClock.setCurrentTimeMillis(EARLIEST_SUPPORTED_TIME);
152 }
153
154 // Here we go!
155 Slog.i(TAG, "Entered the Android system server!");
156 EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_SYSTEM_RUN, SystemClock.uptimeMillis());
157
158 // In case the runtime switched since last boot (such as when
159 // the old runtime was removed in an OTA), set the system
160 // property so that it is in sync. We can't do this in
161 // libnativehelper's JniInvocation::Init code where we already
162 // had to fallback to a different runtime because it is
163 // running as root and we need to be the system user to set
164 // the property. http://b/11463182
Brian Carlstromfdb98d42014-01-30 13:14:01 -0800165 SystemProperties.set("persist.sys.dalvik.vm.lib.1", VMRuntime.getRuntime().vmLibrary());
Jeff Brown6f357d32014-01-15 20:40:55 -0800166
167 // Enable the sampling profiler.
168 if (SamplingProfilerIntegration.isEnabled()) {
169 SamplingProfilerIntegration.start();
170 mProfilerSnapshotTimer = new Timer();
171 mProfilerSnapshotTimer.schedule(new TimerTask() {
172 @Override
173 public void run() {
174 SamplingProfilerIntegration.writeSnapshot("system_server", null);
175 }
176 }, SNAPSHOT_INTERVAL, SNAPSHOT_INTERVAL);
177 }
178
179 // Mmmmmm... more memory!
180 VMRuntime.getRuntime().clearGrowthLimit();
181
182 // The system server has to run all of the time, so it needs to be
183 // as efficient as possible with its memory usage.
184 VMRuntime.getRuntime().setTargetHeapUtilization(0.8f);
185
186 // Within the system server, it is an error to access Environment paths without
187 // explicitly specifying a user.
188 Environment.setUserRequired(true);
189
190 // Ensure binder calls into the system always run at foreground priority.
191 BinderInternal.disableBackgroundScheduling(true);
192
193 // Prepare the main looper thread (this thread).
194 android.os.Process.setThreadPriority(
195 android.os.Process.THREAD_PRIORITY_FOREGROUND);
196 android.os.Process.setCanSelfBackground(false);
197 Looper.prepareMainLooper();
198
199 // Initialize native services.
200 System.loadLibrary("android_servers");
201 nativeInit();
202
203 // Check whether we failed to shut down last time we tried.
204 // This call may not return.
205 performPendingShutdown();
206
207 // Initialize the system context.
208 createSystemContext();
209
210 // Create the system service manager.
211 mSystemServiceManager = new SystemServiceManager(mSystemContext);
212
213 // Start services.
214 try {
215 startBootstrapServices();
Jeff Brown4ccb8232014-01-16 22:16:42 -0800216 startCoreServices();
Jeff Brown6f357d32014-01-15 20:40:55 -0800217 startOtherServices();
218 } catch (RuntimeException ex) {
219 Slog.e("System", "******************************************");
220 Slog.e("System", "************ Failure starting system services", ex);
221 throw ex;
222 }
223
224 // For debug builds, log event loop stalls to dropbox for analysis.
225 if (StrictMode.conditionallyEnableDebugLogging()) {
226 Slog.i(TAG, "Enabled StrictMode for system server main thread.");
227 }
228
229 // Loop forever.
230 Looper.loop();
231 throw new RuntimeException("Main thread loop unexpectedly exited");
232 }
233
234 private void reportWtf(String msg, Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700235 Slog.w(TAG, "***********************************************");
236 Log.wtf(TAG, "BOOT FAILURE " + msg, e);
237 }
238
Jeff Brown6f357d32014-01-15 20:40:55 -0800239 private void performPendingShutdown() {
240 final String shutdownAction = SystemProperties.get(
241 ShutdownThread.SHUTDOWN_ACTION_PROPERTY, "");
242 if (shutdownAction != null && shutdownAction.length() > 0) {
243 boolean reboot = (shutdownAction.charAt(0) == '1');
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800244
Jeff Brown6f357d32014-01-15 20:40:55 -0800245 final String reason;
246 if (shutdownAction.length() > 1) {
247 reason = shutdownAction.substring(1, shutdownAction.length());
248 } else {
249 reason = null;
Kenny Rootf547d672010-09-22 10:36:48 -0700250 }
Jeff Brown6f357d32014-01-15 20:40:55 -0800251
252 ShutdownThread.rebootOrShutdown(reboot, reason);
Kenny Rootf547d672010-09-22 10:36:48 -0700253 }
Jeff Brown6f357d32014-01-15 20:40:55 -0800254 }
Kenny Rootf547d672010-09-22 10:36:48 -0700255
Jeff Brown6f357d32014-01-15 20:40:55 -0800256 private void createSystemContext() {
257 ActivityThread activityThread = ActivityThread.systemMain();
258 mSystemContext = activityThread.getSystemContext();
259 mSystemContext.setTheme(android.R.style.Theme_Holo);
260 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800261
Jeff Brown6f357d32014-01-15 20:40:55 -0800262 private void startBootstrapServices() {
263 // Wait for installd to finish starting up so that it has a chance to
264 // create critical directories such as /data/user with the appropriate
265 // permissions. We need this to complete before we initialize other services.
266 mInstaller = mSystemServiceManager.startService(Installer.class);
267
268 // Power manager needs to be started early because other services need it.
269 // TODO: The conversion to the new pattern is incomplete. We need to switch
270 // the power manager's dependencies over then we can use boot phases to arrange
271 // initialization order and remove the mPowerManagerService field.
272 mPowerManagerService = mSystemServiceManager.startService(PowerManagerService.class);
273
274 // Activity manager runs the show.
Jeff Brown4ccb8232014-01-16 22:16:42 -0800275 mActivityManagerService = mSystemServiceManager.startService(
276 ActivityManagerService.Lifecycle.class).getService();
277 }
278
279 private void startCoreServices() {
280 // Display manager is needed to provide display metrics before package manager
281 // starts up.
282 mDisplayManagerService = mSystemServiceManager.startService(DisplayManagerService.class);
Jeff Brown6f357d32014-01-15 20:40:55 -0800283 }
284
285 private void startOtherServices() {
Jeff Brown6f357d32014-01-15 20:40:55 -0800286 final Context context = mSystemContext;
Kenny Root26ff6622012-07-30 12:58:03 -0700287 AccountManagerService accountManager = null;
288 ContentService contentService = null;
Adam Lesinskief2ea1f2013-12-05 16:48:06 -0800289 LightsManager lights = null;
Mike Lockwood07a500f2009-08-12 09:56:44 -0400290 BatteryService battery = null;
Jeff Brown7f6c2312012-04-13 20:38:38 -0700291 VibratorService vibrator = null;
Adam Lesinskief2ea1f2013-12-05 16:48:06 -0800292 IAlarmManager alarm = null;
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700293 MountService mountService = null;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700294 NetworkManagementService networkManagement = null;
Jeff Sharkey75279902011-05-24 18:39:45 -0700295 NetworkStatsService networkStats = null;
Jeff Sharkeya4620792011-05-20 15:29:23 -0700296 NetworkPolicyManagerService networkPolicy = null;
Mike Lockwood0f79b542009-08-14 14:18:49 -0400297 ConnectivityService connectivity = null;
Irfan Sheriff7d024d32012-03-22 17:01:39 -0700298 NsdService serviceDiscovery= null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800299 IPackageManager pm = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800300 WindowManagerService wm = null;
fredc0f420372012-04-12 00:02:00 -0700301 BluetoothManagerService bluetooth = null;
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500302 DockObserver dock = null;
Mike Lockwood770126a2010-12-09 22:30:37 -0800303 UsbService usb = null;
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -0400304 SerialService serial = null;
Adam Lesinskief2ea1f2013-12-05 16:48:06 -0800305 TwilightManager twilight = null;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800306 RecognitionManagerService recognition = null;
Amith Yamasani6734b9f2010-09-13 16:24:08 -0700307 NetworkTimeUpdateService networkTimeUpdater = null;
John Grossmanc1576732012-02-01 15:23:33 -0800308 CommonTimeManagementService commonTimeMgmtService = null;
Jeff Brown6ec6f792012-04-17 16:52:41 -0700309 InputManagerService inputManager = null;
Wink Savillea12a7b32012-09-20 10:09:45 -0700310 TelephonyRegistry telephonyRegistry = null;
Erik Gilling51e95df2013-06-26 11:06:51 -0700311 ConsumerIrService consumerIr = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800312
Jeff Brownbd6e1502012-08-28 03:27:37 -0700313 boolean onlyCore = false;
Dan Morrille4d9a012013-03-28 18:10:43 -0700314 boolean firstBoot = false;
Dan Morrille4d9a012013-03-28 18:10:43 -0700315 boolean disableStorage = SystemProperties.getBoolean("config.disable_storage", false);
316 boolean disableMedia = SystemProperties.getBoolean("config.disable_media", false);
317 boolean disableBluetooth = SystemProperties.getBoolean("config.disable_bluetooth", false);
318 boolean disableTelephony = SystemProperties.getBoolean("config.disable_telephony", false);
319 boolean disableLocation = SystemProperties.getBoolean("config.disable_location", false);
320 boolean disableSystemUI = SystemProperties.getBoolean("config.disable_systemui", false);
321 boolean disableNonCoreServices = SystemProperties.getBoolean("config.disable_noncore", false);
322 boolean disableNetwork = SystemProperties.getBoolean("config.disable_network", false);
323
324 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800325 Slog.i(TAG, "Telephony Registry");
Wink Savillea12a7b32012-09-20 10:09:45 -0700326 telephonyRegistry = new TelephonyRegistry(context);
327 ServiceManager.addService("telephony.registry", telephonyRegistry);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800328
Glenn Kasten07b04652012-04-23 15:00:43 -0700329 Slog.i(TAG, "Scheduling Policy");
Dianne Hackborn35f72be2013-09-16 10:57:39 -0700330 ServiceManager.addService("scheduling_policy", new SchedulingPolicyService());
Glenn Kasten07b04652012-04-23 15:00:43 -0700331
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800332 AttributeCache.init(context);
333
Jeff Brown4ccb8232014-01-16 22:16:42 -0800334 // We need the default display before we can initialize the package manager.
335 mSystemServiceManager.startBootPhase(SystemService.PHASE_WAIT_FOR_DEFAULT_DISPLAY);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700336
Joe Onorato8a9b2202010-02-26 18:56:32 -0800337 Slog.i(TAG, "Package Manager");
Ben Komalo553acf02011-09-19 14:25:28 -0700338 // Only run "core" apps if we're encrypting the device.
339 String cryptState = SystemProperties.get("vold.decrypt");
Ben Komalo3573d402011-09-23 15:08:24 -0700340 if (ENCRYPTING_STATE.equals(cryptState)) {
Ben Komalo553acf02011-09-19 14:25:28 -0700341 Slog.w(TAG, "Detected encryption in progress - only parsing core apps");
Ben Komalo3573d402011-09-23 15:08:24 -0700342 onlyCore = true;
343 } else if (ENCRYPTED_STATE.equals(cryptState)) {
344 Slog.w(TAG, "Device encrypted - only parsing core apps");
345 onlyCore = true;
Ben Komalo553acf02011-09-19 14:25:28 -0700346 }
Ben Komalo3573d402011-09-23 15:08:24 -0700347
Jeff Brown6f357d32014-01-15 20:40:55 -0800348 pm = PackageManagerService.main(context, mInstaller,
349 mFactoryTestMode != FactoryTest.FACTORY_TEST_OFF,
Ben Komalo553acf02011-09-19 14:25:28 -0700350 onlyCore);
Dianne Hackborn58f42a52011-10-10 13:46:34 -0700351 try {
352 firstBoot = pm.isFirstBoot();
353 } catch (RemoteException e) {
354 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800355
Jeff Brown4ccb8232014-01-16 22:16:42 -0800356 mActivityManagerService.setSystemProcess();
Svetoslavb3038ec2013-02-13 14:39:30 -0800357
Nick Kralevich79619dd2013-03-04 13:05:32 -0800358 Slog.i(TAG, "Entropy Mixer");
359 ServiceManager.addService("entropy", new EntropyMixer(context));
360
Amith Yamasani258848d2012-08-10 17:06:33 -0700361 Slog.i(TAG, "User Service");
362 ServiceManager.addService(Context.USER_SERVICE,
Dianne Hackborn4428e172012-08-24 17:43:05 -0700363 UserManagerService.getInstance());
Amith Yamasani258848d2012-08-10 17:06:33 -0700364
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800365 mContentResolver = context.getContentResolver();
366
Fred Quintanae91ebe22009-09-29 20:44:30 -0700367 // The AccountManager must come before the ContentService
Fred Quintana60307342009-03-24 22:48:12 -0700368 try {
Dan Morrille4d9a012013-03-28 18:10:43 -0700369 // TODO: seems like this should be disable-able, but req'd by ContentService
Joe Onorato8a9b2202010-02-26 18:56:32 -0800370 Slog.i(TAG, "Account Manager");
Kenny Root26ff6622012-07-30 12:58:03 -0700371 accountManager = new AccountManagerService(context);
372 ServiceManager.addService(Context.ACCOUNT_SERVICE, accountManager);
Fred Quintana60307342009-03-24 22:48:12 -0700373 } catch (Throwable e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800374 Slog.e(TAG, "Failure starting Account Manager", e);
Fred Quintana60307342009-03-24 22:48:12 -0700375 }
376
Joe Onorato8a9b2202010-02-26 18:56:32 -0800377 Slog.i(TAG, "Content Manager");
Kenny Root26ff6622012-07-30 12:58:03 -0700378 contentService = ContentService.main(context,
Jeff Brown6f357d32014-01-15 20:40:55 -0800379 mFactoryTestMode == FactoryTest.FACTORY_TEST_LOW_LEVEL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800380
Joe Onorato8a9b2202010-02-26 18:56:32 -0800381 Slog.i(TAG, "System Content Providers");
Jeff Brown4ccb8232014-01-16 22:16:42 -0800382 mActivityManagerService.installSystemProviders();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800383
Jeff Brown6f357d32014-01-15 20:40:55 -0800384 mSystemServiceManager.startService(LightsService.class);
Adam Lesinskief2ea1f2013-12-05 16:48:06 -0800385 lights = LocalServices.getService(LightsManager.class);
Mike Lockwood3a322132009-11-24 00:30:52 -0500386
Joe Onoratode1b3592010-10-25 20:36:47 -0700387 Slog.i(TAG, "Battery Service");
388 battery = new BatteryService(context, lights);
389 ServiceManager.addService("battery", battery);
390
Joe Onorato8a9b2202010-02-26 18:56:32 -0800391 Slog.i(TAG, "Vibrator Service");
Jeff Brown7f6c2312012-04-13 20:38:38 -0700392 vibrator = new VibratorService(context);
393 ServiceManager.addService("vibrator", vibrator);
The Android Open Source Project10592532009-03-18 17:39:46 -0700394
Jeff Brown6f357d32014-01-15 20:40:55 -0800395 // TODO: use boot phase
396 // only initialize the power service after we have started the
397 // lights service, content providers and the battery service.
398 mPowerManagerService.init(lights, battery,
399 BatteryStatsService.getService(),
Jeff Brown4ccb8232014-01-16 22:16:42 -0800400 mActivityManagerService.getAppOpsService());
Jeff Brown6f357d32014-01-15 20:40:55 -0800401
Erik Gilling51e95df2013-06-26 11:06:51 -0700402 Slog.i(TAG, "Consumer IR Service");
403 consumerIr = new ConsumerIrService(context);
404 ServiceManager.addService(Context.CONSUMER_IR_SERVICE, consumerIr);
405
Jeff Brown6f357d32014-01-15 20:40:55 -0800406 mSystemServiceManager.startService(AlarmManagerService.class);
Adam Lesinskief2ea1f2013-12-05 16:48:06 -0800407 alarm = IAlarmManager.Stub.asInterface(
408 ServiceManager.getService(Context.ALARM_SERVICE));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800409
Joe Onorato8a9b2202010-02-26 18:56:32 -0800410 Slog.i(TAG, "Init Watchdog");
Jeff Brown6f357d32014-01-15 20:40:55 -0800411 final Watchdog watchdog = Watchdog.getInstance();
Jeff Brown4ccb8232014-01-16 22:16:42 -0800412 watchdog.init(context, mActivityManagerService);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800413
Jeff Browna9d131c2012-09-20 16:48:17 -0700414 Slog.i(TAG, "Input Manager");
Jeff Brown4ccb8232014-01-16 22:16:42 -0800415 inputManager = new InputManagerService(context);
Jeff Browna9d131c2012-09-20 16:48:17 -0700416
Joe Onorato8a9b2202010-02-26 18:56:32 -0800417 Slog.i(TAG, "Window Manager");
Jeff Brown4ccb8232014-01-16 22:16:42 -0800418 wm = WindowManagerService.main(context, inputManager,
Jeff Brown6f357d32014-01-15 20:40:55 -0800419 mFactoryTestMode != FactoryTest.FACTORY_TEST_LOW_LEVEL,
Jeff Brown780c46f2012-06-24 12:15:38 -0700420 !firstBoot, onlyCore);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800421 ServiceManager.addService(Context.WINDOW_SERVICE, wm);
Jeff Brown6ec6f792012-04-17 16:52:41 -0700422 ServiceManager.addService(Context.INPUT_SERVICE, inputManager);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800423
Jeff Brown4ccb8232014-01-16 22:16:42 -0800424 mActivityManagerService.setWindowManager(wm);
Jeff Browna9d131c2012-09-20 16:48:17 -0700425
426 inputManager.setWindowManagerCallbacks(wm.getInputMonitor());
427 inputManager.start();
428
Jeff Brown4ccb8232014-01-16 22:16:42 -0800429 // TODO: Use service dependencies instead.
430 mDisplayManagerService.windowManagerAndInputReady();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800431
432 // Skip Bluetooth if we have an emulator kernel
433 // TODO: Use a more reliable check to see if this product should
434 // support Bluetooth - see bug 988521
435 if (SystemProperties.get("ro.kernel.qemu").equals("1")) {
David 'Digit' Turnere2a5e862011-01-17 00:32:33 +0100436 Slog.i(TAG, "No Bluetooh Service (emulator)");
Jeff Brown6f357d32014-01-15 20:40:55 -0800437 } else if (mFactoryTestMode == FactoryTest.FACTORY_TEST_LOW_LEVEL) {
David 'Digit' Turnere2a5e862011-01-17 00:32:33 +0100438 Slog.i(TAG, "No Bluetooth Service (factory test)");
Matthew Xie1dd01eb32013-04-26 12:37:54 -0700439 } else if (!context.getPackageManager().hasSystemFeature
440 (PackageManager.FEATURE_BLUETOOTH)) {
441 Slog.i(TAG, "No Bluetooth Service (Bluetooth Hardware Not Present)");
Dan Morrille4d9a012013-03-28 18:10:43 -0700442 } else if (disableBluetooth) {
443 Slog.i(TAG, "Bluetooth Service disabled by config");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800444 } else {
fredc0f420372012-04-12 00:02:00 -0700445 Slog.i(TAG, "Bluetooth Manager Service");
446 bluetooth = new BluetoothManagerService(context);
447 ServiceManager.addService(BluetoothAdapter.BLUETOOTH_MANAGER_SERVICE, bluetooth);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800448 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800449 } catch (RuntimeException e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700450 Slog.e("System", "******************************************");
451 Slog.e("System", "************ Failure starting core service", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800452 }
453
Joe Onorato089de882010-04-12 08:18:45 -0700454 StatusBarManagerService statusBar = null;
Adam Lesinskief2ea1f2013-12-05 16:48:06 -0800455 INotificationManager notification = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800456 InputMethodManagerService imm = null;
Dianne Hackbornf21adf62009-08-13 10:20:21 -0700457 WallpaperManagerService wallpaper = null;
Mike Lockwood46db5042010-02-22 16:36:44 -0500458 LocationManagerService location = null;
Bai Taoa58a8752010-07-13 15:32:16 +0800459 CountryDetectorService countryDetector = null;
satok988323c2011-06-22 16:38:13 +0900460 TextServicesManagerService tsms = null;
Amith Yamasani52c489c2012-03-28 11:42:42 -0700461 LockSettingsService lockSettings = null;
Daniel Sandler7d276c32012-01-30 14:33:52 -0500462 DreamManagerService dreamy = null;
Romain Guy3b748a42013-04-17 18:54:38 -0700463 AssetAtlasService atlas = null;
Jeff Brown69b07162013-11-07 00:30:16 -0800464 MediaRouterService mediaRouter = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800465
Dianne Hackborn661cd522011-08-22 00:26:20 -0700466 // Bring up services needed for UI.
Jeff Brown6f357d32014-01-15 20:40:55 -0800467 if (mFactoryTestMode != FactoryTest.FACTORY_TEST_LOW_LEVEL) {
Dan Morrille4d9a012013-03-28 18:10:43 -0700468 //if (!disableNonCoreServices) { // TODO: View depends on these; mock them?
469 if (true) {
470 try {
471 Slog.i(TAG, "Input Method Service");
472 imm = new InputMethodManagerService(context, wm);
473 ServiceManager.addService(Context.INPUT_METHOD_SERVICE, imm);
474 } catch (Throwable e) {
475 reportWtf("starting Input Manager Service", e);
476 }
Dianne Hackborn661cd522011-08-22 00:26:20 -0700477
Dan Morrille4d9a012013-03-28 18:10:43 -0700478 try {
479 Slog.i(TAG, "Accessibility Manager");
Adam Lesinski898c13d2014-01-28 15:34:50 -0800480 ServiceManager.addService(Context.ACCESSIBILITY_SERVICE, (IBinder)
481 getClass().getClassLoader().loadClass("com.android.server.accessibility.AccessibilityManagerService").getConstructor(Context.class).newInstance(context));
Dan Morrille4d9a012013-03-28 18:10:43 -0700482 } catch (Throwable e) {
483 reportWtf("starting Accessibility Manager", e);
484 }
Dianne Hackborn661cd522011-08-22 00:26:20 -0700485 }
486 }
487
488 try {
489 wm.displayReady();
490 } catch (Throwable e) {
491 reportWtf("making display ready", e);
492 }
Dianne Hackborn8795b602011-08-25 13:30:53 -0700493
Dianne Hackborn295e3c22011-08-25 13:19:08 -0700494 try {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700495 pm.performBootDexOpt();
496 } catch (Throwable e) {
497 reportWtf("performing boot dexopt", e);
498 }
499
500 try {
501 ActivityManagerNative.getDefault().showBootMessage(
502 context.getResources().getText(
503 com.android.internal.R.string.android_upgrading_starting_apps),
Adam Lesinskief2ea1f2013-12-05 16:48:06 -0800504 false);
Dianne Hackborn661cd522011-08-22 00:26:20 -0700505 } catch (RemoteException e) {
506 }
507
Jeff Brown6f357d32014-01-15 20:40:55 -0800508 if (mFactoryTestMode != FactoryTest.FACTORY_TEST_LOW_LEVEL) {
Dan Morrille4d9a012013-03-28 18:10:43 -0700509 if (!disableStorage &&
510 !"0".equals(SystemProperties.get("system_init.startmountservice"))) {
Kenny Root51a573c2012-05-17 13:30:28 -0700511 try {
512 /*
513 * NotificationManagerService is dependant on MountService,
514 * (for media / usb notifications) so we must start MountService first.
515 */
516 Slog.i(TAG, "Mount Service");
517 mountService = new MountService(context);
518 ServiceManager.addService("mount", mountService);
519 } catch (Throwable e) {
520 reportWtf("starting Mount Service", e);
521 }
522 }
523
Dan Morrille4d9a012013-03-28 18:10:43 -0700524 if (!disableNonCoreServices) {
525 try {
526 Slog.i(TAG, "LockSettingsService");
527 lockSettings = new LockSettingsService(context);
528 ServiceManager.addService("lock_settings", lockSettings);
529 } catch (Throwable e) {
530 reportWtf("starting LockSettingsService service", e);
531 }
532
533 try {
Adam Lesinski898c13d2014-01-28 15:34:50 -0800534 if (pm.hasSystemFeature("android.software.device_admin")) {
535 mSystemServiceManager.startServiceIfExists(
536 DEVICE_POLICY_MANAGER_SERVICE_CLASS);
537 }
Dan Morrille4d9a012013-03-28 18:10:43 -0700538 } catch (Throwable e) {
539 reportWtf("starting DevicePolicyService", e);
540 }
Amith Yamasani52c489c2012-03-28 11:42:42 -0700541 }
542
Dan Morrille4d9a012013-03-28 18:10:43 -0700543 if (!disableSystemUI) {
544 try {
545 Slog.i(TAG, "Status Bar");
546 statusBar = new StatusBarManagerService(context, wm);
547 ServiceManager.addService(Context.STATUS_BAR_SERVICE, statusBar);
548 } catch (Throwable e) {
549 reportWtf("starting StatusBarManagerService", e);
550 }
Dianne Hackbornd6847842010-01-12 18:14:19 -0800551 }
552
Dan Morrille4d9a012013-03-28 18:10:43 -0700553 if (!disableNonCoreServices) {
554 try {
555 Slog.i(TAG, "Clipboard Service");
556 ServiceManager.addService(Context.CLIPBOARD_SERVICE,
557 new ClipboardService(context));
558 } catch (Throwable e) {
559 reportWtf("starting Clipboard Service", e);
560 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800561 }
562
Dan Morrille4d9a012013-03-28 18:10:43 -0700563 if (!disableNetwork) {
564 try {
565 Slog.i(TAG, "NetworkManagement Service");
566 networkManagement = NetworkManagementService.create(context);
567 ServiceManager.addService(Context.NETWORKMANAGEMENT_SERVICE, networkManagement);
568 } catch (Throwable e) {
569 reportWtf("starting NetworkManagement Service", e);
570 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800571 }
572
Dan Morrille4d9a012013-03-28 18:10:43 -0700573 if (!disableNonCoreServices) {
574 try {
575 Slog.i(TAG, "Text Service Manager Service");
576 tsms = new TextServicesManagerService(context);
577 ServiceManager.addService(Context.TEXT_SERVICES_MANAGER_SERVICE, tsms);
578 } catch (Throwable e) {
579 reportWtf("starting Text Service Manager Service", e);
580 }
San Mehatd1df8ac2010-01-26 06:17:26 -0800581 }
582
Dan Morrille4d9a012013-03-28 18:10:43 -0700583 if (!disableNetwork) {
584 try {
585 Slog.i(TAG, "NetworkStats Service");
586 networkStats = new NetworkStatsService(context, networkManagement, alarm);
587 ServiceManager.addService(Context.NETWORK_STATS_SERVICE, networkStats);
588 } catch (Throwable e) {
589 reportWtf("starting NetworkStats Service", e);
590 }
591
592 try {
593 Slog.i(TAG, "NetworkPolicy Service");
594 networkPolicy = new NetworkPolicyManagerService(
Jeff Brown4ccb8232014-01-16 22:16:42 -0800595 context, mActivityManagerService,
Jeff Brown6f357d32014-01-15 20:40:55 -0800596 (IPowerManager)ServiceManager.getService(Context.POWER_SERVICE),
Dan Morrille4d9a012013-03-28 18:10:43 -0700597 networkStats, networkManagement);
598 ServiceManager.addService(Context.NETWORK_POLICY_SERVICE, networkPolicy);
599 } catch (Throwable e) {
600 reportWtf("starting NetworkPolicy Service", e);
601 }
602
Vinit Deshpande3ffa1a82014-01-08 02:55:29 +0000603 try {
Dan Morrille4d9a012013-03-28 18:10:43 -0700604 Slog.i(TAG, "Wi-Fi P2pService");
Jeff Brown265e87b2014-01-16 14:12:54 -0800605 mSystemServiceManager.startServiceIfExists(
606 "com.android.server.wifi.p2p.WifiP2pService");
Dan Morrille4d9a012013-03-28 18:10:43 -0700607 } catch (Throwable e) {
608 reportWtf("starting Wi-Fi P2pService", e);
609 }
610
Vinit Deshpande3ffa1a82014-01-08 02:55:29 +0000611 try {
Dan Morrille4d9a012013-03-28 18:10:43 -0700612 Slog.i(TAG, "Wi-Fi Service");
Jeff Brown265e87b2014-01-16 14:12:54 -0800613 mSystemServiceManager.startServiceIfExists(
614 "com.android.server.wifi.WifiService");
Dan Morrille4d9a012013-03-28 18:10:43 -0700615 } catch (Throwable e) {
616 reportWtf("starting Wi-Fi Service", e);
617 }
618
619 try {
620 Slog.i(TAG, "Connectivity Service");
621 connectivity = new ConnectivityService(
622 context, networkManagement, networkStats, networkPolicy);
623 ServiceManager.addService(Context.CONNECTIVITY_SERVICE, connectivity);
624 networkStats.bindConnectivityManager(connectivity);
625 networkPolicy.bindConnectivityManager(connectivity);
Dan Morrille4d9a012013-03-28 18:10:43 -0700626 } catch (Throwable e) {
627 reportWtf("starting Connectivity Service", e);
628 }
629
630 try {
631 Slog.i(TAG, "Network Service Discovery Service");
632 serviceDiscovery = NsdService.create(context);
633 ServiceManager.addService(
634 Context.NSD_SERVICE, serviceDiscovery);
635 } catch (Throwable e) {
636 reportWtf("starting Service Discovery Service", e);
637 }
satok988323c2011-06-22 16:38:13 +0900638 }
639
Dan Morrille4d9a012013-03-28 18:10:43 -0700640 if (!disableNonCoreServices) {
641 try {
642 Slog.i(TAG, "UpdateLock Service");
643 ServiceManager.addService(Context.UPDATE_LOCK_SERVICE,
644 new UpdateLockService(context));
645 } catch (Throwable e) {
646 reportWtf("starting UpdateLockService", e);
647 }
Christopher Tate8662cab52012-02-23 14:59:36 -0800648 }
649
Kenny Root51a573c2012-05-17 13:30:28 -0700650 /*
651 * MountService has a few dependencies: Notification Manager and
652 * AppWidget Provider. Make sure MountService is completely started
653 * first before continuing.
654 */
Ken Sumrall025adc42013-06-05 22:08:12 -0700655 if (mountService != null && !onlyCore) {
Kenny Root51a573c2012-05-17 13:30:28 -0700656 mountService.waitForAsecScan();
San Mehat1bf3f8b2010-02-03 14:43:09 -0800657 }
658
659 try {
Kenny Root26ff6622012-07-30 12:58:03 -0700660 if (accountManager != null)
661 accountManager.systemReady();
662 } catch (Throwable e) {
663 reportWtf("making Account Manager Service ready", e);
664 }
665
666 try {
667 if (contentService != null)
668 contentService.systemReady();
669 } catch (Throwable e) {
670 reportWtf("making Content Service ready", e);
671 }
672
Jeff Brown6f357d32014-01-15 20:40:55 -0800673 mSystemServiceManager.startService(NotificationManagerService.class);
Adam Lesinskief2ea1f2013-12-05 16:48:06 -0800674 notification = INotificationManager.Stub.asInterface(
675 ServiceManager.getService(Context.NOTIFICATION_SERVICE));
676 networkPolicy.bindNotificationManager(notification);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800677
Jeff Brown6f357d32014-01-15 20:40:55 -0800678 mSystemServiceManager.startService(DeviceStorageMonitorService.class);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800679
Dan Morrille4d9a012013-03-28 18:10:43 -0700680 if (!disableLocation) {
681 try {
682 Slog.i(TAG, "Location Manager");
683 location = new LocationManagerService(context);
684 ServiceManager.addService(Context.LOCATION_SERVICE, location);
685 } catch (Throwable e) {
686 reportWtf("starting Location Manager", e);
687 }
688
689 try {
690 Slog.i(TAG, "Country Detector");
691 countryDetector = new CountryDetectorService(context);
692 ServiceManager.addService(Context.COUNTRY_DETECTOR, countryDetector);
693 } catch (Throwable e) {
694 reportWtf("starting Country Detector", e);
695 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800696 }
697
Dan Morrille4d9a012013-03-28 18:10:43 -0700698 if (!disableNonCoreServices) {
699 try {
700 Slog.i(TAG, "Search Service");
701 ServiceManager.addService(Context.SEARCH_SERVICE,
702 new SearchManagerService(context));
703 } catch (Throwable e) {
704 reportWtf("starting Search Service", e);
705 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800706 }
707
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800708 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800709 Slog.i(TAG, "DropBox Service");
Dan Egnor95240272009-10-27 18:23:39 -0700710 ServiceManager.addService(Context.DROPBOX_SERVICE,
Dan Egnorf18a01c2009-11-12 11:32:50 -0800711 new DropBoxManagerService(context, new File("/data/system/dropbox")));
Dan Egnor4410ec82009-09-11 16:40:01 -0700712 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700713 reportWtf("starting DropBoxManagerService", e);
Dan Egnor4410ec82009-09-11 16:40:01 -0700714 }
715
Dan Morrille4d9a012013-03-28 18:10:43 -0700716 if (!disableNonCoreServices && context.getResources().getBoolean(
717 R.bool.config_enableWallpaperService)) {
Mike Lockwoodc067c9c2011-10-31 12:50:12 -0400718 try {
719 Slog.i(TAG, "Wallpaper Service");
Mike Lockwooded8902d2013-11-15 11:01:47 -0800720 wallpaper = new WallpaperManagerService(context);
721 ServiceManager.addService(Context.WALLPAPER_SERVICE, wallpaper);
Mike Lockwoodc067c9c2011-10-31 12:50:12 -0400722 } catch (Throwable e) {
723 reportWtf("starting Wallpaper Service", e);
Mike Lockwood3a74bd32011-08-12 13:55:22 -0700724 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800725 }
726
Dan Morrille4d9a012013-03-28 18:10:43 -0700727 if (!disableMedia && !"0".equals(SystemProperties.get("system_init.startaudioservice"))) {
Mike Lockwoodcba928c2011-08-17 15:58:52 -0700728 try {
729 Slog.i(TAG, "Audio Service");
730 ServiceManager.addService(Context.AUDIO_SERVICE, new AudioService(context));
731 } catch (Throwable e) {
732 reportWtf("starting Audio Service", e);
733 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800734 }
735
Dan Morrille4d9a012013-03-28 18:10:43 -0700736 if (!disableNonCoreServices) {
737 try {
738 Slog.i(TAG, "Dock Observer");
739 // Listen for dock station changes
740 dock = new DockObserver(context);
741 } catch (Throwable e) {
742 reportWtf("starting DockObserver", e);
743 }
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500744 }
745
Dan Morrille4d9a012013-03-28 18:10:43 -0700746 if (!disableMedia) {
747 try {
748 Slog.i(TAG, "Wired Accessory Manager");
749 // Listen for wired headset changes
750 inputManager.setWiredAccessoryCallbacks(
751 new WiredAccessoryManager(context, inputManager));
752 } catch (Throwable e) {
753 reportWtf("starting WiredAccessoryManager", e);
754 }
Praveen Bharathi21e941b2010-10-06 15:23:14 -0500755 }
756
Dan Morrille4d9a012013-03-28 18:10:43 -0700757 if (!disableNonCoreServices) {
758 try {
759 Slog.i(TAG, "USB Service");
760 // Manage USB host and device support
761 usb = new UsbService(context);
762 ServiceManager.addService(Context.USB_SERVICE, usb);
763 } catch (Throwable e) {
764 reportWtf("starting UsbService", e);
765 }
Mike Lockwood57c798a2010-06-23 17:36:36 -0400766
Dan Morrille4d9a012013-03-28 18:10:43 -0700767 try {
768 Slog.i(TAG, "Serial Service");
769 // Serial port support
770 serial = new SerialService(context);
771 ServiceManager.addService(Context.SERIAL_SERVICE, serial);
772 } catch (Throwable e) {
773 Slog.e(TAG, "Failure starting SerialService", e);
774 }
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -0400775 }
776
Jeff Brown6f357d32014-01-15 20:40:55 -0800777 mSystemServiceManager.startService(TwilightService.class);
Adam Lesinskief2ea1f2013-12-05 16:48:06 -0800778 twilight = LocalServices.getService(TwilightManager.class);
Jeff Brown2416e092012-08-21 22:12:20 -0700779
Jeff Brown6f357d32014-01-15 20:40:55 -0800780 mSystemServiceManager.startService(UiModeManagerService.class);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800781
Dan Morrille4d9a012013-03-28 18:10:43 -0700782 if (!disableNonCoreServices) {
783 try {
Adam Lesinski898c13d2014-01-28 15:34:50 -0800784 if (pm.hasSystemFeature("android.software.backup")) {
785 mSystemServiceManager.startServiceIfExists(BACKUP_MANAGER_SERVICE_CLASS);
786 }
Dan Morrille4d9a012013-03-28 18:10:43 -0700787 } catch (Throwable e) {
788 Slog.e(TAG, "Failure starting Backup Service", e);
789 }
Christopher Tate487529a2009-04-29 14:03:25 -0700790
Dan Morrille4d9a012013-03-28 18:10:43 -0700791 try {
Adam Lesinski898c13d2014-01-28 15:34:50 -0800792 if (pm.hasSystemFeature("android.software.app_widgets")) {
793 mSystemServiceManager.startServiceIfExists(APPWIDGET_SERVICE_CLASS);
794 }
Dan Morrille4d9a012013-03-28 18:10:43 -0700795 } catch (Throwable e) {
796 reportWtf("starting AppWidget Service", e);
797 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800798
Dan Morrille4d9a012013-03-28 18:10:43 -0700799 try {
800 Slog.i(TAG, "Recognition Service");
801 recognition = new RecognitionManagerService(context);
802 } catch (Throwable e) {
803 reportWtf("starting Recognition Service", e);
804 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800805 }
Jaikumar Ganesh7d0548d2010-10-18 15:29:09 -0700806
Nick Pelly038cabe2010-09-23 16:12:11 -0700807 try {
Dan Egnor621bc542010-03-25 16:20:14 -0700808 Slog.i(TAG, "DiskStats Service");
809 ServiceManager.addService("diskstats", new DiskStatsService(context));
810 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700811 reportWtf("starting DiskStats Service", e);
Dan Egnor621bc542010-03-25 16:20:14 -0700812 }
Sen Hubde75702010-05-28 01:54:03 -0700813
814 try {
815 // need to add this service even if SamplingProfilerIntegration.isEnabled()
816 // is false, because it is this service that detects system property change and
817 // turns on SamplingProfilerIntegration. Plus, when sampling profiler doesn't work,
818 // there is little overhead for running this service.
819 Slog.i(TAG, "SamplingProfiler Service");
820 ServiceManager.addService("samplingprofiler",
821 new SamplingProfilerService(context));
822 } catch (Throwable e) {
Dianne Hackborn661cd522011-08-22 00:26:20 -0700823 reportWtf("starting SamplingProfiler Service", e);
Sen Hubde75702010-05-28 01:54:03 -0700824 }
Chung-yih Wang024d5962010-08-06 12:06:04 +0800825
Dan Morrille4d9a012013-03-28 18:10:43 -0700826 if (!disableNetwork) {
827 try {
828 Slog.i(TAG, "NetworkTimeUpdateService");
829 networkTimeUpdater = new NetworkTimeUpdateService(context);
830 } catch (Throwable e) {
831 reportWtf("starting NetworkTimeUpdate service", e);
832 }
Amith Yamasani6734b9f2010-09-13 16:24:08 -0700833 }
John Grossmanc1576732012-02-01 15:23:33 -0800834
Dan Morrille4d9a012013-03-28 18:10:43 -0700835 if (!disableMedia) {
836 try {
837 Slog.i(TAG, "CommonTimeManagementService");
838 commonTimeMgmtService = new CommonTimeManagementService(context);
839 ServiceManager.addService("commontime_management", commonTimeMgmtService);
840 } catch (Throwable e) {
841 reportWtf("starting CommonTimeManagementService service", e);
842 }
John Grossmanc1576732012-02-01 15:23:33 -0800843 }
Geremy Condra3d33c262012-05-06 18:32:19 -0700844
Dan Morrille4d9a012013-03-28 18:10:43 -0700845 if (!disableNetwork) {
846 try {
847 Slog.i(TAG, "CertBlacklister");
848 CertBlacklister blacklister = new CertBlacklister(context);
849 } catch (Throwable e) {
850 reportWtf("starting CertBlacklister", e);
851 }
Geremy Condra3d33c262012-05-06 18:32:19 -0700852 }
Jim Miller5ecd8112013-01-09 18:50:26 -0800853
Adam Lesinski898c13d2014-01-28 15:34:50 -0800854 if (!disableNonCoreServices &&
Dan Morrille4d9a012013-03-28 18:10:43 -0700855 context.getResources().getBoolean(R.bool.config_dreamsSupported)) {
Daniel Sandler7d276c32012-01-30 14:33:52 -0500856 try {
857 Slog.i(TAG, "Dreams Service");
858 // Dreams (interactive idle-time views, a/k/a screen savers)
Jeff Brown4ccb8232014-01-16 22:16:42 -0800859 dreamy = new DreamManagerService(context);
Dianne Hackbornbe87e2f2012-09-28 16:31:34 -0700860 ServiceManager.addService(DreamService.DREAM_SERVICE, dreamy);
Daniel Sandler7d276c32012-01-30 14:33:52 -0500861 } catch (Throwable e) {
862 reportWtf("starting DreamManagerService", e);
863 }
864 }
Svetoslavb3038ec2013-02-13 14:39:30 -0800865
Romain Guy3b748a42013-04-17 18:54:38 -0700866 if (!disableNonCoreServices) {
867 try {
868 Slog.i(TAG, "Assets Atlas Service");
869 atlas = new AssetAtlasService(context);
870 ServiceManager.addService(AssetAtlasService.ASSET_ATLAS_SERVICE, atlas);
871 } catch (Throwable e) {
872 reportWtf("starting AssetAtlasService", e);
873 }
874 }
875
Svetoslavb3038ec2013-02-13 14:39:30 -0800876 try {
877 Slog.i(TAG, "IdleMaintenanceService");
Svetoslav6a08a122013-05-03 11:24:26 -0700878 new IdleMaintenanceService(context, battery);
Svetoslavb3038ec2013-02-13 14:39:30 -0800879 } catch (Throwable e) {
880 reportWtf("starting IdleMaintenanceService", e);
881 }
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -0700882
883 try {
Adam Lesinski898c13d2014-01-28 15:34:50 -0800884 if (pm.hasSystemFeature("android.software.print")) {
885 mSystemServiceManager.startServiceIfExists(PRINT_MANAGER_SERVICE_CLASS);
886 }
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -0700887 } catch (Throwable e) {
888 reportWtf("starting Print Service", e);
889 }
Jeff Brown69b07162013-11-07 00:30:16 -0800890
891 if (!disableNonCoreServices) {
892 try {
893 Slog.i(TAG, "Media Router Service");
894 mediaRouter = new MediaRouterService(context);
895 ServiceManager.addService(Context.MEDIA_ROUTER_SERVICE, mediaRouter);
896 } catch (Throwable e) {
897 reportWtf("starting MediaRouterService", e);
898 }
899 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800900 }
901
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700902 // Before things start rolling, be sure we have decided whether
903 // we are in safe mode.
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700904 final boolean safeMode = wm.detectSafeMode();
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700905 if (safeMode) {
Jeff Brown4ccb8232014-01-16 22:16:42 -0800906 mActivityManagerService.enterSafeMode();
Jeff Brownb09abc12011-01-13 21:08:27 -0800907 // Post the safe mode state in the Zygote class
908 Zygote.systemInSafeMode = true;
909 // Disable the JIT for the system_server process
910 VMRuntime.getRuntime().disableJitCompilation();
Ben Cheng6c0afff2010-02-14 16:18:56 -0800911 } else {
912 // Enable the JIT for the system_server process
913 VMRuntime.getRuntime().startJitCompilation();
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700914 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800915
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700916 // It is now time to start up the app processes...
Joe Onorato30275482009-07-08 17:09:14 -0700917
Jeff Brown7f6c2312012-04-13 20:38:38 -0700918 try {
919 vibrator.systemReady();
920 } catch (Throwable e) {
921 reportWtf("making Vibrator Service ready", e);
922 }
923
Dan Morrille4d9a012013-03-28 18:10:43 -0700924 if (lockSettings != null) {
925 try {
926 lockSettings.systemReady();
927 } catch (Throwable e) {
928 reportWtf("making Lock Settings Service ready", e);
929 }
Felipe Ramosf35df5b2012-09-18 18:26:27 -0300930 }
931
Amith Yamasani817ec492013-12-20 13:27:30 -0800932 // Needed by DevicePolicyManager for initialization
Jeff Brown6f357d32014-01-15 20:40:55 -0800933 mSystemServiceManager.startBootPhase(SystemService.PHASE_LOCK_SETTINGS_READY);
Dianne Hackbornd6847842010-01-12 18:14:19 -0800934
Jeff Brown6f357d32014-01-15 20:40:55 -0800935 mSystemServiceManager.startBootPhase(SystemService.PHASE_SYSTEM_SERVICES_READY);
Joe Onorato30275482009-07-08 17:09:14 -0700936
Dianne Hackborn661cd522011-08-22 00:26:20 -0700937 try {
938 wm.systemReady();
939 } catch (Throwable e) {
940 reportWtf("making Window Manager Service ready", e);
941 }
Joe Onoratodc565f42010-10-04 15:27:22 -0400942
Jeff Brownb09abc12011-01-13 21:08:27 -0800943 if (safeMode) {
Jeff Brown4ccb8232014-01-16 22:16:42 -0800944 mActivityManagerService.showSafeModeOverlay();
Jeff Brownb09abc12011-01-13 21:08:27 -0800945 }
946
Joe Onoratodc565f42010-10-04 15:27:22 -0400947 // Update the configuration for this context by hand, because we're going
948 // to start using it before the config change done in wm.systemReady() will
949 // propagate to it.
950 Configuration config = wm.computeNewConfiguration();
951 DisplayMetrics metrics = new DisplayMetrics();
952 WindowManager w = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
953 w.getDefaultDisplay().getMetrics(metrics);
954 context.getResources().updateConfiguration(config, metrics);
955
Jeff Brownaa202a62012-08-21 22:14:26 -0700956 try {
Jeff Brown6f357d32014-01-15 20:40:55 -0800957 // TODO: use boot phase
958 mPowerManagerService.systemReady(twilight, dreamy);
Jeff Brownaa202a62012-08-21 22:14:26 -0700959 } catch (Throwable e) {
960 reportWtf("making Power Manager Service ready", e);
961 }
962
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800963 try {
964 pm.systemReady();
Dianne Hackborn661cd522011-08-22 00:26:20 -0700965 } catch (Throwable e) {
966 reportWtf("making Package Manager Service ready", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800967 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800968
Jeff Brownbd6e1502012-08-28 03:27:37 -0700969 try {
Jeff Brown4ccb8232014-01-16 22:16:42 -0800970 // TODO: use boot phase and communicate these flags some other way
971 mDisplayManagerService.systemReady(safeMode, onlyCore);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700972 } catch (Throwable e) {
973 reportWtf("making Display Manager Service ready", e);
974 }
975
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700976 // These are needed to propagate to the runnable below.
Joe Onoratof3c3c4f2010-10-21 11:09:02 -0400977 final Context contextF = context;
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700978 final MountService mountServiceF = mountService;
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700979 final BatteryService batteryF = battery;
Jeff Sharkey350083e2011-06-29 10:45:16 -0700980 final NetworkManagementService networkManagementF = networkManagement;
Jeff Sharkey75279902011-05-24 18:39:45 -0700981 final NetworkStatsService networkStatsF = networkStats;
Jeff Sharkeya4620792011-05-20 15:29:23 -0700982 final NetworkPolicyManagerService networkPolicyF = networkPolicy;
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700983 final ConnectivityService connectivityF = connectivity;
984 final DockObserver dockF = dock;
Mike Lockwood770126a2010-12-09 22:30:37 -0800985 final UsbService usbF = usb;
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700986 final WallpaperManagerService wallpaperF = wallpaper;
987 final InputMethodManagerService immF = imm;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800988 final RecognitionManagerService recognitionF = recognition;
Mike Lockwood46db5042010-02-22 16:36:44 -0500989 final LocationManagerService locationF = location;
Bai Taoa58a8752010-07-13 15:32:16 +0800990 final CountryDetectorService countryDetectorF = countryDetector;
Amith Yamasani6734b9f2010-09-13 16:24:08 -0700991 final NetworkTimeUpdateService networkTimeUpdaterF = networkTimeUpdater;
John Grossmanc1576732012-02-01 15:23:33 -0800992 final CommonTimeManagementService commonTimeMgmtServiceF = commonTimeMgmtService;
satok988323c2011-06-22 16:38:13 +0900993 final TextServicesManagerService textServiceManagerServiceF = tsms;
Dianne Hackborn661cd522011-08-22 00:26:20 -0700994 final StatusBarManagerService statusBarF = statusBar;
Daniel Sandler7d276c32012-01-30 14:33:52 -0500995 final DreamManagerService dreamyF = dreamy;
Romain Guy3b748a42013-04-17 18:54:38 -0700996 final AssetAtlasService atlasF = atlas;
Jeff Brown6ec6f792012-04-17 16:52:41 -0700997 final InputManagerService inputManagerF = inputManager;
Wink Savillea12a7b32012-09-20 10:09:45 -0700998 final TelephonyRegistry telephonyRegistryF = telephonyRegistry;
Jeff Brown69b07162013-11-07 00:30:16 -0800999 final MediaRouterService mediaRouterF = mediaRouter;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001000
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001001 // We now tell the activity manager it is okay to run third party
1002 // code. It will call back into us once it has gotten to the state
1003 // where third party code can really run (but before it has actually
1004 // started launching the initial applications), for us to complete our
1005 // initialization.
Jeff Brown4ccb8232014-01-16 22:16:42 -08001006 mActivityManagerService.systemReady(new Runnable() {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001007 public void run() {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001008 Slog.i(TAG, "Making services ready");
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001009
Christopher Tate58d380d2013-03-19 13:10:03 -07001010 try {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001011 mActivityManagerService.startObservingNativeCrashes();
Christopher Tate58d380d2013-03-19 13:10:03 -07001012 } catch (Throwable e) {
1013 reportWtf("observing native crashes", e);
1014 }
Amith Yamasanib6fda092013-11-14 19:24:44 -08001015 try {
1016 startSystemUi(contextF);
1017 } catch (Throwable e) {
1018 reportWtf("starting System UI", e);
1019 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07001020 try {
Jeff Sharkeyb049e212012-09-07 23:16:01 -07001021 if (mountServiceF != null) mountServiceF.systemReady();
1022 } catch (Throwable e) {
1023 reportWtf("making Mount Service ready", e);
1024 }
1025 try {
Dianne Hackborn661cd522011-08-22 00:26:20 -07001026 if (batteryF != null) batteryF.systemReady();
1027 } catch (Throwable e) {
1028 reportWtf("making Battery Service ready", e);
1029 }
1030 try {
1031 if (networkManagementF != null) networkManagementF.systemReady();
1032 } catch (Throwable e) {
1033 reportWtf("making Network Managment Service ready", e);
1034 }
1035 try {
1036 if (networkStatsF != null) networkStatsF.systemReady();
1037 } catch (Throwable e) {
1038 reportWtf("making Network Stats Service ready", e);
1039 }
1040 try {
1041 if (networkPolicyF != null) networkPolicyF.systemReady();
1042 } catch (Throwable e) {
1043 reportWtf("making Network Policy Service ready", e);
1044 }
1045 try {
1046 if (connectivityF != null) connectivityF.systemReady();
1047 } catch (Throwable e) {
1048 reportWtf("making Connectivity Service ready", e);
1049 }
1050 try {
1051 if (dockF != null) dockF.systemReady();
1052 } catch (Throwable e) {
1053 reportWtf("making Dock Service ready", e);
1054 }
1055 try {
1056 if (usbF != null) usbF.systemReady();
1057 } catch (Throwable e) {
1058 reportWtf("making USB Service ready", e);
1059 }
1060 try {
Dianne Hackborn661cd522011-08-22 00:26:20 -07001061 if (recognitionF != null) recognitionF.systemReady();
1062 } catch (Throwable e) {
1063 reportWtf("making Recognition Service ready", e);
1064 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001065 Watchdog.getInstance().start();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001066
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001067 // It is now okay to let the various system services start their
1068 // third party code...
Jeff Brown6f357d32014-01-15 20:40:55 -08001069 mSystemServiceManager.startBootPhase(SystemService.PHASE_THIRD_PARTY_APPS_CAN_START);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001070
Dianne Hackborn661cd522011-08-22 00:26:20 -07001071 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001072 if (wallpaperF != null) wallpaperF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001073 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001074 reportWtf("Notifying WallpaperService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001075 }
1076 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001077 if (immF != null) immF.systemRunning(statusBarF);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001078 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001079 reportWtf("Notifying InputMethodService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001080 }
1081 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001082 if (locationF != null) locationF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001083 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001084 reportWtf("Notifying Location Service running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001085 }
1086 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001087 if (countryDetectorF != null) countryDetectorF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001088 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001089 reportWtf("Notifying CountryDetectorService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001090 }
1091 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001092 if (networkTimeUpdaterF != null) networkTimeUpdaterF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001093 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001094 reportWtf("Notifying NetworkTimeService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001095 }
1096 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001097 if (commonTimeMgmtServiceF != null) commonTimeMgmtServiceF.systemRunning();
John Grossmanc1576732012-02-01 15:23:33 -08001098 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001099 reportWtf("Notifying CommonTimeManagementService running", e);
John Grossmanc1576732012-02-01 15:23:33 -08001100 }
1101 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001102 if (textServiceManagerServiceF != null)
1103 textServiceManagerServiceF.systemRunning();
Dianne Hackborn661cd522011-08-22 00:26:20 -07001104 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001105 reportWtf("Notifying TextServicesManagerService running", e);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001106 }
Daniel Sandler7d276c32012-01-30 14:33:52 -05001107 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001108 if (dreamyF != null) dreamyF.systemRunning();
Daniel Sandler7d276c32012-01-30 14:33:52 -05001109 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001110 reportWtf("Notifying DreamManagerService running", e);
Daniel Sandler7d276c32012-01-30 14:33:52 -05001111 }
Jeff Brown6ec6f792012-04-17 16:52:41 -07001112 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001113 if (atlasF != null) atlasF.systemRunning();
Romain Guy3b748a42013-04-17 18:54:38 -07001114 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001115 reportWtf("Notifying AssetAtlasService running", e);
Romain Guy3b748a42013-04-17 18:54:38 -07001116 }
1117 try {
Matthew Xie96313142012-06-29 16:57:31 -07001118 // TODO(BT) Pass parameter to input manager
Svetoslav Ganova0027152013-06-25 14:59:53 -07001119 if (inputManagerF != null) inputManagerF.systemRunning();
Jeff Brown6ec6f792012-04-17 16:52:41 -07001120 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001121 reportWtf("Notifying InputManagerService running", e);
Jeff Brown6ec6f792012-04-17 16:52:41 -07001122 }
Dan Morrille4d9a012013-03-28 18:10:43 -07001123
Wink Savillea12a7b32012-09-20 10:09:45 -07001124 try {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001125 if (telephonyRegistryF != null) telephonyRegistryF.systemRunning();
Wink Savillea12a7b32012-09-20 10:09:45 -07001126 } catch (Throwable e) {
Svetoslav Ganova0027152013-06-25 14:59:53 -07001127 reportWtf("Notifying TelephonyRegistry running", e);
1128 }
1129
1130 try {
Jeff Brown69b07162013-11-07 00:30:16 -08001131 if (mediaRouterF != null) mediaRouterF.systemRunning();
1132 } catch (Throwable e) {
1133 reportWtf("Notifying MediaRouterService running", e);
1134 }
Adam Lesinskief2ea1f2013-12-05 16:48:06 -08001135
Jeff Brown6f357d32014-01-15 20:40:55 -08001136 mSystemServiceManager.startBootPhase(SystemService.PHASE_BOOT_COMPLETE);
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001137 }
1138 });
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001139 }
Joe Onoratof3c3c4f2010-10-21 11:09:02 -04001140
1141 static final void startSystemUi(Context context) {
1142 Intent intent = new Intent();
1143 intent.setComponent(new ComponentName("com.android.systemui",
1144 "com.android.systemui.SystemUIService"));
Dianne Hackborn40e9f292012-11-27 19:12:23 -08001145 //Slog.d(TAG, "Starting service: " + intent);
Amith Yamasanicd757062012-10-19 18:23:52 -07001146 context.startServiceAsUser(intent, UserHandle.OWNER);
Joe Onoratof3c3c4f2010-10-21 11:09:02 -04001147 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001148}