blob: 1b85632b806c660c48fd656fa14e73b9628b2e17 [file] [log] [blame]
Peng Xu9ff7d222016-02-11 13:02:05 -08001/*
2 * Copyright (C) 2016 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.hardware.location.ContextHubService;
20import android.content.Context;
21import android.util.Log;
22
23class ContextHubSystemService extends SystemService {
24 private static final String TAG = "ContextHubSystemService";
25 private final ContextHubService mContextHubService;
26
27 public ContextHubSystemService(Context context) {
28 super(context);
29 mContextHubService = new ContextHubService(context);
30 }
31
32 @Override
33 public void onStart() {
34 }
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");
40 publishBinderService(ContextHubService.CONTEXTHUB_SERVICE, mContextHubService);
41 }
42 }
43}