blob: ca8e53deffdcd56829f362d4b50beb65f5a6aaa1 [file] [log] [blame]
Govinda Wasserman2e86fb62019-08-13 11:35:44 -04001/*
2 * Copyright (C) 2019 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
Dave Mankofff4736812019-10-18 17:25:50 -040017package com.android.systemui.dagger;
Govinda Wasserman2e86fb62019-08-13 11:35:44 -040018
19import android.annotation.Nullable;
20import android.content.Context;
21import android.content.pm.PackageManager;
22
Dave Mankoff80c612b2019-10-23 17:47:24 -040023import com.android.keyguard.KeyguardUpdateMonitor;
Govinda Wasserman61c92d62019-09-05 16:32:23 -040024import com.android.systemui.assist.AssistModule;
Vinit Nayak59b114e62019-08-12 11:50:00 -070025import com.android.systemui.model.SysUiState;
Govinda Wasserman2e86fb62019-08-13 11:35:44 -040026import com.android.systemui.plugins.statusbar.StatusBarStateController;
Steve Elliott58adc212019-10-15 11:07:54 -040027import com.android.systemui.statusbar.notification.people.PeopleHubModule;
Govinda Wasserman2e86fb62019-08-13 11:35:44 -040028import com.android.systemui.statusbar.phone.KeyguardLiftController;
Dave Mankoff63a12822019-09-16 14:38:06 -040029import com.android.systemui.util.sensors.AsyncSensorManager;
Govinda Wasserman2e86fb62019-08-13 11:35:44 -040030
31import javax.inject.Singleton;
32
Dave Mankoffae8ec452019-10-29 15:50:02 -040033import dagger.Binds;
Govinda Wasserman2e86fb62019-08-13 11:35:44 -040034import dagger.Module;
35import dagger.Provides;
36
37/**
38 * A dagger module for injecting components of System UI that are not overridden by the System UI
39 * implementation.
40 */
Dave Mankoffbbc2f8f2019-10-21 12:21:29 -040041@Module(includes = {AssistModule.class,
Dave Mankoffbbc2f8f2019-10-21 12:21:29 -040042 PeopleHubModule.class})
Govinda Wasserman2e86fb62019-08-13 11:35:44 -040043public abstract class SystemUIModule {
Dave Mankoffae8ec452019-10-29 15:50:02 -040044 /** */
45 @Binds
46 public abstract ContextComponentHelper bindComponentHelper(
47 ContextComponentResolver componentHelper);
Govinda Wasserman2e86fb62019-08-13 11:35:44 -040048
49 @Singleton
50 @Provides
51 @Nullable
52 static KeyguardLiftController provideKeyguardLiftController(Context context,
53 StatusBarStateController statusBarStateController,
Dave Mankoff80c612b2019-10-23 17:47:24 -040054 AsyncSensorManager asyncSensorManager,
55 KeyguardUpdateMonitor keyguardUpdateMonitor) {
Govinda Wasserman2e86fb62019-08-13 11:35:44 -040056 if (!context.getPackageManager().hasSystemFeature(PackageManager.FEATURE_FACE)) {
57 return null;
58 }
Dave Mankoff80c612b2019-10-23 17:47:24 -040059 return new KeyguardLiftController(statusBarStateController, asyncSensorManager,
60 keyguardUpdateMonitor);
Govinda Wasserman2e86fb62019-08-13 11:35:44 -040061 }
Vinit Nayak59b114e62019-08-12 11:50:00 -070062
Vinit Nayak59b114e62019-08-12 11:50:00 -070063 @Singleton
64 @Provides
65 static SysUiState provideSysUiState() {
66 return new SysUiState();
67 }
Govinda Wasserman2e86fb62019-08-13 11:35:44 -040068}