This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 830
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6417 from matrix-org/travis/voice-messages/play-1
Play only one audio file at a time
- Loading branch information
Showing
5 changed files
with
98 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
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. | ||
*/ | ||
|
||
import { DEFAULT_WAVEFORM, Playback } from "./Playback"; | ||
import { PlaybackManager } from "./PlaybackManager"; | ||
|
||
/** | ||
* A managed playback is a Playback instance that is guided by a PlaybackManager. | ||
*/ | ||
export class ManagedPlayback extends Playback { | ||
public constructor(private manager: PlaybackManager, buf: ArrayBuffer, seedWaveform = DEFAULT_WAVEFORM) { | ||
super(buf, seedWaveform); | ||
} | ||
|
||
public async play(): Promise<void> { | ||
this.manager.playOnly(this); | ||
return super.play(); | ||
} | ||
|
||
public destroy() { | ||
this.manager.destroyPlaybackInstance(this); | ||
super.destroy(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/* | ||
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. | ||
*/ | ||
|
||
import { DEFAULT_WAVEFORM, Playback } from "./Playback"; | ||
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; | ||
} | ||
|
||
/** | ||
* Stops all other playback instances. If no playback is provided, all instances | ||
* are stopped. | ||
* @param playback Optional. The playback to leave untouched. | ||
*/ | ||
public playOnly(playback?: Playback) { | ||
this.instances.filter(p => p !== playback).forEach(p => p.stop()); | ||
} | ||
|
||
public destroyPlaybackInstance(playback: ManagedPlayback) { | ||
this.instances = this.instances.filter(p => p !== playback); | ||
} | ||
|
||
public createPlaybackInstance(buf: ArrayBuffer, waveform = DEFAULT_WAVEFORM): Playback { | ||
const instance = new ManagedPlayback(this, buf, waveform); | ||
this.instances.push(instance); | ||
return instance; | ||
} | ||
} |