mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Beep isn't needed anymore since we rely on MPV instead. The changes to `go.mod` and `go.sum` were done with: ``` go get github.com/faiface/beep@none go mod tidy ``` Signed-off-by: Dany Marcoux <git@dmarcoux.com>
135 lines
4.3 KiB
Go
135 lines
4.3 KiB
Go
// Package playback implements audio playback using PlaybackDevices. It is used to implement the Jukebox mode in turn.
|
|
// It makes use of the MPV library to do the playback. Major parts are:
|
|
// - decoder which includes decoding and transcoding of various audio file formats
|
|
// - device implementing the basic functions to work with audio devices like set, play, stop, skip, ...
|
|
// - queue a simple playlist
|
|
package playback
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/navidrome/navidrome/conf"
|
|
"github.com/navidrome/navidrome/db"
|
|
"github.com/navidrome/navidrome/log"
|
|
"github.com/navidrome/navidrome/model"
|
|
"github.com/navidrome/navidrome/persistence"
|
|
"github.com/navidrome/navidrome/utils/singleton"
|
|
)
|
|
|
|
type PlaybackServer interface {
|
|
Run(ctx context.Context) error
|
|
GetDeviceForUser(user string) (*playbackDevice, error)
|
|
GetMediaFile(id string) (*model.MediaFile, error)
|
|
GetCtx() *context.Context
|
|
}
|
|
|
|
type playbackServer struct {
|
|
ctx *context.Context
|
|
datastore model.DataStore
|
|
playbackDevices []playbackDevice
|
|
}
|
|
|
|
// GetInstance returns the playback-server singleton
|
|
func GetInstance() PlaybackServer {
|
|
return singleton.GetInstance(func() *playbackServer {
|
|
return &playbackServer{}
|
|
})
|
|
}
|
|
|
|
// Run starts the playback server which serves request until canceled using the given context
|
|
func (ps *playbackServer) Run(ctx context.Context) error {
|
|
ps.datastore = persistence.New(db.Db())
|
|
devices, err := ps.initDeviceStatus(conf.Server.Jukebox.Devices, conf.Server.Jukebox.Default)
|
|
ps.playbackDevices = devices
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
log.Info(ctx, fmt.Sprintf("%d audio devices found", len(devices)))
|
|
|
|
defaultDevice, _ := ps.getDefaultDevice()
|
|
|
|
log.Info(ctx, "Using audio device: "+defaultDevice.DeviceName)
|
|
|
|
ps.ctx = &ctx
|
|
|
|
<-ctx.Done()
|
|
return nil
|
|
}
|
|
|
|
// GetCtx produces the context this server was started with. Used for data-retrieval and cancellation
|
|
func (ps *playbackServer) GetCtx() *context.Context {
|
|
return ps.ctx
|
|
}
|
|
|
|
func (ps *playbackServer) initDeviceStatus(devices []conf.AudioDeviceDefinition, defaultDevice string) ([]playbackDevice, error) {
|
|
pbDevices := make([]playbackDevice, max(1, len(devices)))
|
|
defaultDeviceFound := false
|
|
|
|
if defaultDevice == "" {
|
|
// if there are no devices given and no default device, we create a sythetic device named "auto"
|
|
if len(devices) == 0 {
|
|
pbDevices[0] = *NewPlaybackDevice(ps, "auto", "auto")
|
|
}
|
|
|
|
// if there is but only one entry and no default given, just use that.
|
|
if len(devices) == 1 {
|
|
if len(devices[0]) != 2 {
|
|
return []playbackDevice{}, fmt.Errorf("audio device definition ought to contain 2 fields, found: %d ", len(devices[0]))
|
|
}
|
|
pbDevices[0] = *NewPlaybackDevice(ps, devices[0][0], devices[0][1])
|
|
}
|
|
|
|
if len(devices) > 1 {
|
|
return []playbackDevice{}, fmt.Errorf("number of audio device found is %d, but no default device defined. Set Jukebox.Default", len(devices))
|
|
}
|
|
|
|
pbDevices[0].Default = true
|
|
return pbDevices, nil
|
|
}
|
|
|
|
for idx, audioDevice := range devices {
|
|
if len(audioDevice) != 2 {
|
|
return []playbackDevice{}, fmt.Errorf("audio device definition ought to contain 2 fields, found: %d ", len(audioDevice))
|
|
}
|
|
|
|
pbDevices[idx] = *NewPlaybackDevice(ps, audioDevice[0], audioDevice[1])
|
|
|
|
if audioDevice[0] == defaultDevice {
|
|
pbDevices[idx].Default = true
|
|
defaultDeviceFound = true
|
|
}
|
|
}
|
|
|
|
if !defaultDeviceFound {
|
|
return []playbackDevice{}, fmt.Errorf("default device name not found: %s ", defaultDevice)
|
|
}
|
|
return pbDevices, nil
|
|
}
|
|
|
|
func (ps *playbackServer) getDefaultDevice() (*playbackDevice, error) {
|
|
for idx, audioDevice := range ps.playbackDevices {
|
|
if audioDevice.Default {
|
|
return &ps.playbackDevices[idx], nil
|
|
}
|
|
}
|
|
return &playbackDevice{}, fmt.Errorf("no default device found")
|
|
}
|
|
|
|
// GetMediaFile retrieves the MediaFile given by the id parameter
|
|
func (ps *playbackServer) GetMediaFile(id string) (*model.MediaFile, error) {
|
|
return ps.datastore.MediaFile(*ps.ctx).Get(id)
|
|
}
|
|
|
|
// GetDeviceForUser returns the audio playback device for the given user. As of now this is but only the default device.
|
|
func (ps *playbackServer) GetDeviceForUser(user string) (*playbackDevice, error) {
|
|
log.Debug("Processing GetDevice", "user", user)
|
|
// README: here we might plug-in the user-device mapping one fine day
|
|
device, err := ps.getDefaultDevice()
|
|
if err != nil {
|
|
return &playbackDevice{}, err
|
|
}
|
|
device.User = user
|
|
return device, nil
|
|
}
|