blob: f5eb167539c8c0a32644ff5bcf3d2e20c291a5aa [file] [log] [blame]
/*
* Copyright (C) 2022 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.systemui.car.systembar;
import android.content.Context;
import com.android.systemui.car.dagger.CarSysUIDynamicOverride;
import com.android.systemui.dagger.SysUISingleton;
import java.util.Optional;
import dagger.BindsOptionalOf;
import dagger.Module;
import dagger.Provides;
/**
* Dagger injection module for {@link CarSystemBar}.
*
* This module includes the non-@Inject classes used as part of the {@link CarSystemBar}, allowing
* extensions of SystemUI to override and provide their own implementations without replacing the
* default system bar class.
*/
@Module
public abstract class CarSystemBarModule {
@BindsOptionalOf
@CarSysUIDynamicOverride
abstract ButtonSelectionStateListener optionalButtonSelectionStateListener();
@SysUISingleton
@Provides
static ButtonSelectionStateListener provideButtonSelectionStateListener(@CarSysUIDynamicOverride
Optional<ButtonSelectionStateListener> overrideButtonSelectionStateListener,
ButtonSelectionStateController controller) {
if (overrideButtonSelectionStateListener.isPresent()) {
return overrideButtonSelectionStateListener.get();
}
return new ButtonSelectionStateListener(controller);
}
@BindsOptionalOf
@CarSysUIDynamicOverride
abstract ButtonSelectionStateController optionalButtonSelectionStateController();
@SysUISingleton
@Provides
static ButtonSelectionStateController provideButtonSelectionStateController(Context context,
@CarSysUIDynamicOverride Optional<ButtonSelectionStateController> controller) {
if (controller.isPresent()) {
return controller.get();
}
return new ButtonSelectionStateController(context);
}
}