All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.com.android.server.vibrator.FinishSequentialEffectStep Maven / Gradle / Ivy

/*
 * 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.server.vibrator;

import android.os.Trace;
import android.util.Slog;

import java.util.Arrays;
import java.util.List;

/**
 * Finish a sync vibration started by a {@link StartSequentialEffectStep}.
 *
 * 

This only plays after all active vibrators steps have finished, and adds a {@link * StartSequentialEffectStep} to the queue if the sequential effect isn't finished yet. */ final class FinishSequentialEffectStep extends Step { public final StartSequentialEffectStep startedStep; FinishSequentialEffectStep(StartSequentialEffectStep startedStep) { // No predefined startTime, just wait for all steps in the queue. super(startedStep.conductor, Long.MAX_VALUE); this.startedStep = startedStep; } @Override public boolean isCleanUp() { // This step only notes that all the vibrators has been turned off. return true; } @Override public List play() { Trace.traceBegin(Trace.TRACE_TAG_VIBRATOR, "FinishSequentialEffectStep"); try { if (VibrationThread.DEBUG) { Slog.d(VibrationThread.TAG, "FinishSequentialEffectStep for effect #" + startedStep.currentIndex); } conductor.vibratorManagerHooks.noteVibratorOff(conductor.getVibration().uid); Step nextStep = startedStep.nextStep(); return nextStep == null ? VibrationStepConductor.EMPTY_STEP_LIST : Arrays.asList(nextStep); } finally { Trace.traceEnd(Trace.TRACE_TAG_VIBRATOR); } } @Override public List cancel() { cancelImmediately(); return VibrationStepConductor.EMPTY_STEP_LIST; } @Override public void cancelImmediately() { conductor.vibratorManagerHooks.noteVibratorOff(conductor.getVibration().uid); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy