fix(sound): guard recording lifecycle - #870
Open
martin-henz wants to merge 2 commits into
Open
Conversation
Contributor
|
Caution The consumer version of Gemini Code Assist on GitHub has been sunset. All code review activity has officially ceased. |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Re-opens #839, which was automatically closed (not merged) when its base branch
conductor-migrationwas deleted after being merged intomastervia #680. This branch cherry-picks the original commits from @11suixing11 unchanged, onto currentmaster.Summary
recordorrecord_foraccepts a requestrecord's returned stop function idempotent so repeated calls reuse onestopRecording()promisestartRecording/stopRecordingfailuresstop()cannot release a newer reservationFixes #799
Why
recordandrecord_forschedule delayed work beforeio().startRecording()runs. The existingactivePlayCountcheck prevents recording during playback, but there was no state reserved for a recording request itself. Two quick calls could therefore schedule independent timeout chains and eventually attempt overlapping recordings against the same tab-side recorder.The PR reserves recording state at call time, so a second request fails before either timeout chain reaches
startRecording().Review Follow-up
CodeRabbit flagged a stale cleanup edge case: after
startRecording()rejects and releases the reservation, invoking the old returnedstop()could settle a second cleanup after a newer recording had reserved the mic.reserveRecording()now returns a generation token, andreleaseRecording()only clears state when that token still identifies the active reservation. The regression test covers this exact sequence:record()fails during startupstop()from the failed first recording is invokedTesting (from original PR, re-verify on CI)
yarn workspace @sourceacademy/bundle-sound test(71 passed)yarn workspace @sourceacademy/bundle-sound tscyarn workspace @sourceacademy/bundle-sound lintOriginal author: @11suixing11