blob: c9683d9f69ed81451b018d417b886cd8be83cfef [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.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}.
*
* <p>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<Step> 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().callerInfo.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<Step> cancel() {
cancelImmediately();
return VibrationStepConductor.EMPTY_STEP_LIST;
}
@Override
public void cancelImmediately() {
conductor.vibratorManagerHooks.noteVibratorOff(
conductor.getVibration().callerInfo.uid);
}
}