blob: 019d03df19425c7bce3e129e2c7bd3b2fa61b9ab [file] [log] [blame]
Miao Chou658bf2f2015-06-26 17:14:35 -07001/*
2 * Copyright (C) 2015 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
19import android.bluetooth.BluetoothAdapter;
20import android.content.Context;
21import android.util.Log;
22
23class BluetoothService extends SystemService {
24 private static final String TAG = "BluetoothService";
25 private BluetoothManagerService mBluetoothManagerService;
26
27 public BluetoothService(Context context) {
28 super(context);
29 mBluetoothManagerService = new BluetoothManagerService(context);
30 }
31
32 @Override
33 public void onStart() {
Miao Chou658bf2f2015-06-26 17:14:35 -070034 }
35
36 @Override
37 public void onBootPhase(int phase) {
38 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) {
39 Log.d(TAG, "onBootPhase: PHASE_SYSTEM_SERVICES_READY");
Andre Eisenbach305fdab2015-11-11 21:43:26 -080040 publishBinderService(BluetoothAdapter.BLUETOOTH_MANAGER_SERVICE, mBluetoothManagerService);
41 } else if (phase == SystemService.PHASE_ACTIVITY_MANAGER_READY) {
42 Log.d(TAG, "onBootPhase: PHASE_ACTIVITY_MANAGER_READY");
Miao Chou658bf2f2015-06-26 17:14:35 -070043 mBluetoothManagerService.handleOnBootPhase();
44 }
45 }
46
47 @Override
48 public void onSwitchUser(int userHandle) {
49 Log.d(TAG, "onSwitchUser: switching to user " + userHandle);
50 mBluetoothManagerService.handleOnSwitchUser(userHandle);
51 }
52}