/* * Copyright (C) 2020 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.classifier; import android.content.res.Resources; import android.view.ViewConfiguration; import com.android.systemui.dagger.SysUISingleton; import com.android.systemui.dagger.qualifiers.Main; import com.android.systemui.res.R; import com.android.systemui.scene.shared.flag.SceneContainerFlag; import com.android.systemui.statusbar.phone.NotificationTapHelper; import dagger.Binds; import dagger.Module; import dagger.Provides; import dagger.multibindings.ElementsIntoSet; import java.util.Arrays; import java.util.HashSet; import java.util.Set; import javax.inject.Named; /** Dagger Module for Falsing. */ @Module(includes = {FalsingStartModule.class}) public interface FalsingModule { String BRIGHT_LINE_GESTURE_CLASSIFERS = "bright_line_gesture_classifiers"; String SINGLE_TAP_TOUCH_SLOP = "falsing_single_tap_touch_slop"; String LONG_TAP_TOUCH_SLOP = "falsing_long_tap_slop"; String DOUBLE_TAP_TOUCH_SLOP = "falsing_double_tap_touch_slop"; String DOUBLE_TAP_TIMEOUT_MS = "falsing_double_tap_timeout_ms"; String IS_FOLDABLE_DEVICE = "falsing_foldable_device"; /** Provides the actual {@link FalsingCollector} if the scene container feature is off. */ @Provides @SysUISingleton static FalsingCollector providesFalsingCollectorLegacy( FalsingCollectorImpl impl, FalsingCollectorNoOp noOp) { return SceneContainerFlag.isEnabled() ? noOp : impl; } /** Provides the actual {@link FalsingCollector}. */ @Binds @FalsingCollectorActual FalsingCollector bindsFalsingCollectorActual(FalsingCollectorImpl impl); /** */ @Provides @ElementsIntoSet @Named(BRIGHT_LINE_GESTURE_CLASSIFERS) static Set providesBrightLineGestureClassifiers( DistanceClassifier distanceClassifier, ProximityClassifier proximityClassifier, PointerCountClassifier pointerCountClassifier, TypeClassifier typeClassifier, DiagonalClassifier diagonalClassifier, ZigZagClassifier zigZagClassifier) { return new HashSet<>(Arrays.asList( pointerCountClassifier, typeClassifier, diagonalClassifier, distanceClassifier, proximityClassifier, zigZagClassifier)); } /** */ @Provides @Named(DOUBLE_TAP_TIMEOUT_MS) static long providesDoubleTapTimeoutMs() { return NotificationTapHelper.DOUBLE_TAP_TIMEOUT_MS; } /** */ @Provides @Named(DOUBLE_TAP_TOUCH_SLOP) static float providesDoubleTapTouchSlop(@Main Resources resources) { return resources.getDimension(R.dimen.double_tap_slop); } /** */ @Provides @Named(SINGLE_TAP_TOUCH_SLOP) static float providesSingleTapTouchSlop(ViewConfiguration viewConfiguration) { return viewConfiguration.getScaledTouchSlop(); } /** */ @Provides @Named(LONG_TAP_TOUCH_SLOP) static float providesLongTapTouchSlop(ViewConfiguration viewConfiguration) { return viewConfiguration.getScaledTouchSlop() * 1.25f; } /** */ @Provides @Named(IS_FOLDABLE_DEVICE) static boolean providesIsFoldableDevice(@Main Resources resources) { try { return resources.getIntArray( com.android.internal.R.array.config_foldedDeviceStates).length != 0; } catch (Resources.NotFoundException e) { return false; } } }