blob: 8e24eebd10cccca2048de3c175d24cb3defed145 [file] [log] [blame]
Dianne Hackborn45ce8642011-07-14 16:10:16 -07001/*
2 * Copyright (C) 2011 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.systemui;
18
19import android.content.BroadcastReceiver;
20import android.content.ContentResolver;
21import android.content.Context;
22import android.content.Intent;
23import android.provider.Settings;
John Spurlockcd686b52013-06-05 10:13:46 -040024import android.util.Log;
Dianne Hackborn45ce8642011-07-14 16:10:16 -070025
26/**
27 * Performs a number of miscellaneous, non-system-critical actions
28 * after the system has finished booting.
29 */
30public class BootReceiver extends BroadcastReceiver {
31 private static final String TAG = "SystemUIBootReceiver";
32
33 @Override
34 public void onReceive(final Context context, Intent intent) {
35 try {
36 // Start the load average overlay, if activated
37 ContentResolver res = context.getContentResolver();
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -070038 if (Settings.Global.getInt(res, Settings.Global.SHOW_PROCESSES, 0) != 0) {
Dianne Hackborn45ce8642011-07-14 16:10:16 -070039 Intent loadavg = new Intent(context, com.android.systemui.LoadAverageService.class);
40 context.startService(loadavg);
41 }
42 } catch (Exception e) {
John Spurlockcd686b52013-06-05 10:13:46 -040043 Log.e(TAG, "Can't start load average service", e);
Dianne Hackborn45ce8642011-07-14 16:10:16 -070044 }
45 }
46}