Revert "refactor: use atomic.Pointer for thread-safe inputSource access"

This reverts commit 41345b0527.
This commit is contained in:
Alex P 2025-11-10 15:42:10 +02:00
parent bc1992ea13
commit b9705f4bac
3 changed files with 22 additions and 21 deletions

View File

@ -205,12 +205,14 @@ lint-go-fix: build_audio_deps
# Run UI linting locally (mirrors GitHub workflow ui-lint.yml)
lint-ui:
@echo "Running UI lint..."
@cd ui && npm ci && npm run lint
@cd ui && npm ci
@cd ui && npm run lint
# Run UI linting with auto-fix
lint-ui-fix:
@echo "Running UI lint with auto-fix..."
@cd ui && npm ci && npm run lint:fix
@cd ui && npm ci
@cd ui && npm run lint:fix
# Legacy alias for UI linting (for backward compatibility)
ui-lint: lint-ui

View File

@ -14,7 +14,7 @@ import (
var (
audioMutex sync.Mutex
outputSource audio.AudioSource
inputSource atomic.Pointer[audio.AudioSource]
inputSource audio.AudioSource
outputRelay *audio.OutputRelay
inputRelay *audio.InputRelay
audioInitialized bool
@ -63,15 +63,13 @@ func startAudio() error {
// Start input audio if not running, USB audio enabled, and input enabled
ensureConfigLoaded()
if inputSource.Load() == nil && audioInputEnabled.Load() && config.UsbDevices != nil && config.UsbDevices.Audio {
if inputSource == nil && audioInputEnabled.Load() && config.UsbDevices != nil && config.UsbDevices.Audio {
alsaPlaybackDevice := "hw:1,0" // USB speakers
// Create CGO audio source
newInputSource := audio.NewCgoInputSource(alsaPlaybackDevice)
var audioSrc audio.AudioSource = newInputSource
inputSource.Store(&audioSrc)
inputSource = audio.NewCgoInputSource(alsaPlaybackDevice)
inputRelay = audio.NewInputRelay(newInputSource)
inputRelay = audio.NewInputRelay(inputSource)
if err := inputRelay.Start(); err != nil {
audioLogger.Error().Err(err).Msg("Failed to start input relay")
}
@ -98,9 +96,9 @@ func stopInputLocked() {
inputRelay.Stop()
inputRelay = nil
}
if source := inputSource.Load(); source != nil {
(*source).Disconnect()
inputSource.Store(nil)
if inputSource != nil {
inputSource.Disconnect()
inputSource = nil
}
}
@ -171,8 +169,8 @@ func SetAudioOutputEnabled(enabled bool) error {
}
} else {
audioMutex.Lock()
defer audioMutex.Unlock()
stopOutputLocked()
audioMutex.Unlock()
}
return nil
@ -190,8 +188,8 @@ func SetAudioInputEnabled(enabled bool) error {
}
} else {
audioMutex.Lock()
defer audioMutex.Unlock()
stopInputLocked()
audioMutex.Unlock()
}
return nil
@ -240,22 +238,23 @@ func handleInputTrackForSession(track *webrtc.TrackRemote) {
continue // Drop frame but keep reading
}
// Get source atomically (hot path optimization)
source := inputSource.Load()
// Get source in single mutex operation (hot path optimization)
audioMutex.Lock()
source := inputSource
audioMutex.Unlock()
if source == nil {
continue // No relay, drop frame but keep reading
}
if !(*source).IsConnected() {
if err := (*source).Connect(); err != nil {
if !source.IsConnected() {
if err := source.Connect(); err != nil {
continue
}
}
if err := (*source).WriteMessage(0, opusData); err != nil {
(*source).Disconnect()
audioLogger.Warn().Err(err).Str("track_id", myTrackID).Msg("failed to write audio message")
if err := source.WriteMessage(0, opusData); err != nil {
source.Disconnect()
}
}
}

View File

@ -133,7 +133,7 @@ func Main() {
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
<-sigs
logger.Log().Msg("JetKVM Shutting Down")
logger.Info().Msg("JetKVM Shutting Down")
stopAudio()