2021-07-21 08:28:07 +03:00
|
|
|
/*
|
|
|
|
Copyright 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2021-08-30 23:20:03 +03:00
|
|
|
import { DEFAULT_WAVEFORM, Playback, PlaybackState } from "./Playback";
|
2021-07-21 08:28:07 +03:00
|
|
|
import { ManagedPlayback } from "./ManagedPlayback";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handles management of playback instances to ensure certain functionality, like
|
|
|
|
* one playback operating at any one time.
|
|
|
|
*/
|
|
|
|
export class PlaybackManager {
|
|
|
|
private static internalInstance: PlaybackManager;
|
|
|
|
|
|
|
|
private instances: ManagedPlayback[] = [];
|
|
|
|
|
|
|
|
public static get instance(): PlaybackManager {
|
|
|
|
if (!PlaybackManager.internalInstance) {
|
|
|
|
PlaybackManager.internalInstance = new PlaybackManager();
|
|
|
|
}
|
|
|
|
return PlaybackManager.internalInstance;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-08-30 23:20:03 +03:00
|
|
|
* Pauses all other playback instances. If no playback is provided, all playing
|
|
|
|
* instances are paused.
|
2021-07-21 08:28:07 +03:00
|
|
|
* @param playback Optional. The playback to leave untouched.
|
|
|
|
*/
|
2021-08-30 23:20:03 +03:00
|
|
|
public pauseAllExcept(playback?: Playback) {
|
|
|
|
this.instances
|
|
|
|
.filter(p => p !== playback && p.currentState === PlaybackState.Playing)
|
|
|
|
.forEach(p => p.pause());
|
2021-07-21 08:28:07 +03:00
|
|
|
}
|
|
|
|
|
2021-07-21 08:34:27 +03:00
|
|
|
public destroyPlaybackInstance(playback: ManagedPlayback) {
|
2021-07-21 08:28:07 +03:00
|
|
|
this.instances = this.instances.filter(p => p !== playback);
|
|
|
|
}
|
|
|
|
|
2021-07-21 08:34:27 +03:00
|
|
|
public createPlaybackInstance(buf: ArrayBuffer, waveform = DEFAULT_WAVEFORM): Playback {
|
2021-07-21 08:28:07 +03:00
|
|
|
const instance = new ManagedPlayback(this, buf, waveform);
|
|
|
|
this.instances.push(instance);
|
|
|
|
return instance;
|
|
|
|
}
|
|
|
|
}
|