Terminate all MPV instances when stopping Navidrome (#3008)

* Terminate all mpv instances when stopping Navidrome

* Exit trackSwitcher goroutine when terminating

* Remove potential race condition when starting the Playback device

* Fix lint error

* Removed unused and unneeded vars/functions

* Use device short name in log

* Small refactor

* Small nitpick

* Make start functions more uniform
This commit is contained in:
Deluan Quintão 2024-05-09 06:57:24 -04:00 committed by GitHub
parent 677d9947f3
commit 6408dda948
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 59 additions and 79 deletions

View file

@ -83,12 +83,9 @@ func runNavidrome() {
g.Go(startServer(ctx))
g.Go(startSignaller(ctx))
g.Go(startScheduler(ctx))
g.Go(startPlaybackServer(ctx))
g.Go(schedulePeriodicScan(ctx))
if conf.Server.Jukebox.Enabled {
g.Go(startPlaybackServer(ctx))
}
if err := g.Wait(); err != nil && !errors.Is(err, interrupted) {
log.Error("Fatal error in Navidrome. Aborting", err)
}
@ -151,21 +148,21 @@ func schedulePeriodicScan(ctx context.Context) func() error {
}
func startScheduler(ctx context.Context) func() error {
log.Info(ctx, "Starting scheduler")
schedulerInstance := scheduler.GetInstance()
return func() error {
log.Info(ctx, "Starting scheduler")
schedulerInstance := scheduler.GetInstance()
schedulerInstance.Run(ctx)
return nil
}
}
func startPlaybackServer(ctx context.Context) func() error {
log.Info(ctx, "Starting playback server")
playbackInstance := GetPlaybackServer()
return func() error {
if !conf.Server.Jukebox.Enabled {
return nil
}
log.Info(ctx, "Starting playback server")
playbackInstance := GetPlaybackServer()
return playbackInstance.Run(ctx)
}
}