blob: e7beeeb065349ac7d6447272d4a69b2e63f42a88 [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.wm.shell.bubbles;
import static com.android.wm.shell.bubbles.BubbleDebugConfig.TAG_BUBBLES;
import static com.android.wm.shell.bubbles.BubbleDebugConfig.TAG_WITH_CLASS_NAME;
import android.content.Context;
import android.hardware.input.InputManager;
import android.util.Log;
import android.view.Choreographer;
import android.view.InputChannel;
import android.view.InputEventReceiver;
import android.view.InputMonitor;
import androidx.annotation.Nullable;
import com.android.wm.shell.bubbles.BubblesNavBarMotionEventHandler.MotionEventListener;
/**
* Set up tracking bubbles gestures that begin in navigation bar
*/
class BubblesNavBarGestureTracker {
private static final String TAG = TAG_WITH_CLASS_NAME ? "BubblesGestureTracker" : TAG_BUBBLES;
private static final String GESTURE_MONITOR = "bubbles-gesture";
private final Context mContext;
private final BubblePositioner mPositioner;
@Nullable
private InputMonitor mInputMonitor;
@Nullable
private InputEventReceiver mInputEventReceiver;
BubblesNavBarGestureTracker(Context context, BubblePositioner positioner) {
mContext = context;
mPositioner = positioner;
}
/**
* Start tracking gestures
*
* @param listener listener that is notified of touch events
*/
void start(MotionEventListener listener) {
if (BubbleDebugConfig.DEBUG_BUBBLE_GESTURE) {
Log.d(TAG, "start monitoring bubbles swipe up gesture");
}
stopInternal();
mInputMonitor = InputManager.getInstance().monitorGestureInput(GESTURE_MONITOR,
mContext.getDisplayId());
InputChannel inputChannel = mInputMonitor.getInputChannel();
BubblesNavBarMotionEventHandler motionEventHandler =
new BubblesNavBarMotionEventHandler(mContext, mPositioner,
this::onInterceptTouch, listener);
mInputEventReceiver = new BubblesNavBarInputEventReceiver(inputChannel,
Choreographer.getInstance(), motionEventHandler);
}
void stop() {
if (BubbleDebugConfig.DEBUG_BUBBLE_GESTURE) {
Log.d(TAG, "stop monitoring bubbles swipe up gesture");
}
stopInternal();
}
private void stopInternal() {
if (mInputEventReceiver != null) {
mInputEventReceiver.dispose();
mInputEventReceiver = null;
}
if (mInputMonitor != null) {
mInputMonitor.dispose();
mInputMonitor = null;
}
}
private void onInterceptTouch() {
if (BubbleDebugConfig.DEBUG_BUBBLE_GESTURE) {
Log.d(TAG, "intercept touch event");
}
if (mInputMonitor != null) {
mInputMonitor.pilferPointers();
}
}
}