mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Clean up runNavidrome function
This commit is contained in:
parent
c4b05dac28
commit
885cd345ab
4 changed files with 41 additions and 20 deletions
49
cmd/root.go
49
cmd/root.go
|
@ -20,10 +20,9 @@ import (
|
||||||
"github.com/navidrome/navidrome/scheduler"
|
"github.com/navidrome/navidrome/scheduler"
|
||||||
"github.com/navidrome/navidrome/server/backgrounds"
|
"github.com/navidrome/navidrome/server/backgrounds"
|
||||||
"github.com/prometheus/client_golang/prometheus/promhttp"
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
||||||
"golang.org/x/sync/errgroup"
|
|
||||||
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
"github.com/spf13/viper"
|
"github.com/spf13/viper"
|
||||||
|
"golang.org/x/sync/errgroup"
|
||||||
)
|
)
|
||||||
|
|
||||||
var interrupted = errors.New("service was interrupted")
|
var interrupted = errors.New("service was interrupted")
|
||||||
|
@ -43,10 +42,14 @@ Complete documentation is available at https://www.navidrome.org/docs`,
|
||||||
Run: func(cmd *cobra.Command, args []string) {
|
Run: func(cmd *cobra.Command, args []string) {
|
||||||
runNavidrome()
|
runNavidrome()
|
||||||
},
|
},
|
||||||
|
PostRun: func(cmd *cobra.Command, args []string) {
|
||||||
|
postRun()
|
||||||
|
},
|
||||||
Version: consts.Version,
|
Version: consts.Version,
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// Execute runs the root cobra command, which will start the Navidrome server by calling the runNavidrome function.
|
||||||
func Execute() {
|
func Execute() {
|
||||||
rootCmd.SetVersionTemplate(`{{println .Version}}`)
|
rootCmd.SetVersionTemplate(`{{println .Version}}`)
|
||||||
if err := rootCmd.Execute(); err != nil {
|
if err := rootCmd.Execute(); err != nil {
|
||||||
|
@ -62,21 +65,17 @@ func preRun() {
|
||||||
conf.Load()
|
conf.Load()
|
||||||
}
|
}
|
||||||
|
|
||||||
func runNavidrome() {
|
func postRun() {
|
||||||
db.Init()
|
log.Info("Navidrome stopped, bye.")
|
||||||
defer func() {
|
}
|
||||||
if err := db.Close(); err != nil {
|
|
||||||
log.Error("Error closing DB", err)
|
|
||||||
}
|
|
||||||
log.Info("Navidrome stopped, bye.")
|
|
||||||
}()
|
|
||||||
|
|
||||||
ctx, cancel := signal.NotifyContext(context.Background(),
|
// runNavidrome is the main entry point for the Navidrome server. It starts all the services and blocks.
|
||||||
os.Interrupt,
|
// If any of the services returns an error, it will log it and exit. If the process receives a signal to exit,
|
||||||
syscall.SIGHUP,
|
// it will cancel the context and exit gracefully.
|
||||||
syscall.SIGTERM,
|
func runNavidrome() {
|
||||||
syscall.SIGABRT,
|
defer db.Init()()
|
||||||
)
|
|
||||||
|
ctx, cancel := mainContext()
|
||||||
defer cancel()
|
defer cancel()
|
||||||
|
|
||||||
g, ctx := errgroup.WithContext(ctx)
|
g, ctx := errgroup.WithContext(ctx)
|
||||||
|
@ -91,6 +90,17 @@ func runNavidrome() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// mainContext returns a context that is cancelled when the process receives a signal to exit.
|
||||||
|
func mainContext() (context.Context, context.CancelFunc) {
|
||||||
|
return signal.NotifyContext(context.Background(),
|
||||||
|
os.Interrupt,
|
||||||
|
syscall.SIGHUP,
|
||||||
|
syscall.SIGTERM,
|
||||||
|
syscall.SIGABRT,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// startServer starts the Navidrome web server, adding all the necessary routers.
|
||||||
func startServer(ctx context.Context) func() error {
|
func startServer(ctx context.Context) func() error {
|
||||||
return func() error {
|
return func() error {
|
||||||
a := CreateServer(conf.Server.MusicFolder)
|
a := CreateServer(conf.Server.MusicFolder)
|
||||||
|
@ -118,6 +128,7 @@ func startServer(ctx context.Context) func() error {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// schedulePeriodicScan schedules a periodic scan of the music library, if configured.
|
||||||
func schedulePeriodicScan(ctx context.Context) func() error {
|
func schedulePeriodicScan(ctx context.Context) func() error {
|
||||||
return func() error {
|
return func() error {
|
||||||
schedule := conf.Server.ScanSchedule
|
schedule := conf.Server.ScanSchedule
|
||||||
|
@ -147,6 +158,7 @@ func schedulePeriodicScan(ctx context.Context) func() error {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// startScheduler starts the Navidrome scheduler, which is used to run periodic tasks.
|
||||||
func startScheduler(ctx context.Context) func() error {
|
func startScheduler(ctx context.Context) func() error {
|
||||||
return func() error {
|
return func() error {
|
||||||
log.Info(ctx, "Starting scheduler")
|
log.Info(ctx, "Starting scheduler")
|
||||||
|
@ -156,12 +168,15 @@ func startScheduler(ctx context.Context) func() error {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// startPlaybackServer starts the Navidrome playback server, if configured.
|
||||||
|
// It is responsible for the Jukebox functionality
|
||||||
func startPlaybackServer(ctx context.Context) func() error {
|
func startPlaybackServer(ctx context.Context) func() error {
|
||||||
return func() error {
|
return func() error {
|
||||||
if !conf.Server.Jukebox.Enabled {
|
if !conf.Server.Jukebox.Enabled {
|
||||||
|
log.Debug("Jukebox is DISABLED")
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
log.Info(ctx, "Starting playback server")
|
log.Info(ctx, "Starting Jukebox service")
|
||||||
playbackInstance := GetPlaybackServer()
|
playbackInstance := GetPlaybackServer()
|
||||||
return playbackInstance.Run(ctx)
|
return playbackInstance.Run(ctx)
|
||||||
}
|
}
|
||||||
|
|
8
db/db.go
8
db/db.go
|
@ -44,7 +44,7 @@ func Close() error {
|
||||||
return Db().Close()
|
return Db().Close()
|
||||||
}
|
}
|
||||||
|
|
||||||
func Init() {
|
func Init() func() {
|
||||||
db := Db()
|
db := Db()
|
||||||
|
|
||||||
// Disable foreign_keys to allow re-creating tables in migrations
|
// Disable foreign_keys to allow re-creating tables in migrations
|
||||||
|
@ -74,6 +74,12 @@ func Init() {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal("Failed to apply new migrations", err)
|
log.Fatal("Failed to apply new migrations", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return func() {
|
||||||
|
if err := Close(); err != nil {
|
||||||
|
log.Error("Error closing DB", err)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
type statusLogger struct{ numPending int }
|
type statusLogger struct{ numPending int }
|
||||||
|
|
|
@ -23,7 +23,7 @@ func TestPersistence(t *testing.T) {
|
||||||
//os.Remove("./test-123.db")
|
//os.Remove("./test-123.db")
|
||||||
//conf.Server.DbPath = "./test-123.db"
|
//conf.Server.DbPath = "./test-123.db"
|
||||||
conf.Server.DbPath = "file::memory:?cache=shared"
|
conf.Server.DbPath = "file::memory:?cache=shared"
|
||||||
db.Init()
|
defer db.Init()()
|
||||||
log.SetLevel(log.LevelError)
|
log.SetLevel(log.LevelError)
|
||||||
RegisterFailHandler(Fail)
|
RegisterFailHandler(Fail)
|
||||||
RunSpecs(t, "Persistence Suite")
|
RunSpecs(t, "Persistence Suite")
|
||||||
|
|
|
@ -14,7 +14,7 @@ import (
|
||||||
func TestScanner(t *testing.T) {
|
func TestScanner(t *testing.T) {
|
||||||
tests.Init(t, true)
|
tests.Init(t, true)
|
||||||
conf.Server.DbPath = "file::memory:?cache=shared"
|
conf.Server.DbPath = "file::memory:?cache=shared"
|
||||||
db.Init()
|
defer db.Init()()
|
||||||
log.SetLevel(log.LevelFatal)
|
log.SetLevel(log.LevelFatal)
|
||||||
RegisterFailHandler(Fail)
|
RegisterFailHandler(Fail)
|
||||||
RunSpecs(t, "Scanner Suite")
|
RunSpecs(t, "Scanner Suite")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue