Home | History | Annotate | Download | only in server
      1 /*
      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 
     17 package com.android.server;
     18 
     19 import android.bluetooth.BluetoothAdapter;
     20 import android.content.Context;
     21 import android.util.Log;
     22 
     23 class 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() {
     34         Log.d(TAG, "onStart: publishing BluetoothManagerService");
     35         publishBinderService(BluetoothAdapter.BLUETOOTH_MANAGER_SERVICE, mBluetoothManagerService);
     36     }
     37 
     38     @Override
     39     public void onBootPhase(int phase) {
     40         if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) {
     41             Log.d(TAG, "onBootPhase: PHASE_SYSTEM_SERVICES_READY");
     42             mBluetoothManagerService.handleOnBootPhase();
     43         }
     44     }
     45 
     46     @Override
     47     public void onSwitchUser(int userHandle) {
     48         Log.d(TAG, "onSwitchUser: switching to user " + userHandle);
     49         mBluetoothManagerService.handleOnSwitchUser(userHandle);
     50     }
     51 }
     52