mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Update count on getScanStatus
This commit is contained in:
parent
3ea5b85b36
commit
8e584ee020
4 changed files with 31 additions and 17 deletions
|
@ -6,6 +6,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"strconv"
|
"strconv"
|
||||||
"sync"
|
"sync"
|
||||||
|
"sync/atomic"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/deluan/navidrome/core"
|
"github.com/deluan/navidrome/core"
|
||||||
|
@ -25,11 +26,11 @@ type StatusInfo struct {
|
||||||
MediaFolder string
|
MediaFolder string
|
||||||
Scanning bool
|
Scanning bool
|
||||||
LastScan time.Time
|
LastScan time.Time
|
||||||
Count int64
|
Count uint32
|
||||||
}
|
}
|
||||||
|
|
||||||
type FolderScanner interface {
|
type FolderScanner interface {
|
||||||
Scan(ctx context.Context, lastModifiedSince time.Time) error
|
Scan(ctx context.Context, lastModifiedSince time.Time, progress chan uint32) error
|
||||||
}
|
}
|
||||||
|
|
||||||
type scanner struct {
|
type scanner struct {
|
||||||
|
@ -44,7 +45,7 @@ type scanner struct {
|
||||||
|
|
||||||
type scanStatus struct {
|
type scanStatus struct {
|
||||||
active bool
|
active bool
|
||||||
count int64
|
count uint32
|
||||||
lastUpdate time.Time
|
lastUpdate time.Time
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -63,22 +64,22 @@ func New(ds model.DataStore, cacheWarmer core.CacheWarmer) Scanner {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *scanner) Start(interval time.Duration) error {
|
func (s *scanner) Start(interval time.Duration) error {
|
||||||
|
var ticker *time.Ticker
|
||||||
if interval == 0 {
|
if interval == 0 {
|
||||||
log.Warn("Periodic scan is DISABLED", "interval", interval)
|
log.Warn("Periodic scan is DISABLED", "interval", interval)
|
||||||
|
ticker = time.NewTicker(1 * time.Hour)
|
||||||
|
} else {
|
||||||
|
ticker = time.NewTicker(interval)
|
||||||
}
|
}
|
||||||
var sleep <-chan time.Time
|
defer ticker.Stop()
|
||||||
for {
|
for {
|
||||||
if interval == 0 {
|
|
||||||
sleep = make(chan time.Time)
|
|
||||||
} else {
|
|
||||||
sleep = time.After(interval)
|
|
||||||
}
|
|
||||||
select {
|
select {
|
||||||
case full := <-s.scan:
|
case full := <-s.scan:
|
||||||
s.rescanAll(full)
|
s.rescanAll(full)
|
||||||
case <-sleep:
|
case <-ticker.C:
|
||||||
s.rescanAll(false)
|
if interval != 0 {
|
||||||
continue
|
s.rescanAll(false)
|
||||||
|
}
|
||||||
case <-s.done:
|
case <-s.done:
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
@ -104,7 +105,19 @@ func (s *scanner) rescan(mediaFolder string, fullRescan bool) error {
|
||||||
s.setStatusActive(mediaFolder, true)
|
s.setStatusActive(mediaFolder, true)
|
||||||
defer s.setStatus(mediaFolder, false, 0, start)
|
defer s.setStatus(mediaFolder, false, 0, start)
|
||||||
|
|
||||||
err := folderScanner.Scan(log.NewContext(context.TODO()), lastModifiedSince)
|
progress := make(chan uint32, 10)
|
||||||
|
go func() {
|
||||||
|
for {
|
||||||
|
count, more := <-progress
|
||||||
|
if !more {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
atomic.AddUint32(&s.status[mediaFolder].count, count)
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
err := folderScanner.Scan(log.NewContext(context.TODO()), lastModifiedSince, progress)
|
||||||
|
close(progress)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Error("Error importing MediaFolder", "folder", mediaFolder, err)
|
log.Error("Error importing MediaFolder", "folder", mediaFolder, err)
|
||||||
}
|
}
|
||||||
|
@ -142,7 +155,7 @@ func (s *scanner) getStatus(folder string) *scanStatus {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *scanner) setStatus(folder string, active bool, count int64, lastUpdate time.Time) {
|
func (s *scanner) setStatus(folder string, active bool, count uint32, lastUpdate time.Time) {
|
||||||
s.lock.Lock()
|
s.lock.Lock()
|
||||||
defer s.lock.Unlock()
|
defer s.lock.Unlock()
|
||||||
if status, ok := s.status[folder]; ok {
|
if status, ok := s.status[folder]; ok {
|
||||||
|
|
|
@ -67,7 +67,7 @@ const (
|
||||||
// If the playlist is not in the DB, import it, setting sync = true
|
// If the playlist is not in the DB, import it, setting sync = true
|
||||||
// If the playlist is in the DB and sync == true, import it, or else skip it
|
// If the playlist is in the DB and sync == true, import it, or else skip it
|
||||||
// Delete all empty albums, delete all empty artists, clean-up playlists
|
// Delete all empty albums, delete all empty artists, clean-up playlists
|
||||||
func (s *TagScanner) Scan(ctx context.Context, lastModifiedSince time.Time) error {
|
func (s *TagScanner) Scan(ctx context.Context, lastModifiedSince time.Time, progress chan uint32) error {
|
||||||
ctx = s.withAdminUser(ctx)
|
ctx = s.withAdminUser(ctx)
|
||||||
start := time.Now()
|
start := time.Now()
|
||||||
|
|
||||||
|
@ -86,6 +86,7 @@ func (s *TagScanner) Scan(ctx context.Context, lastModifiedSince time.Time) erro
|
||||||
if !more {
|
if !more {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
progress <- folderStats.AudioFilesCount
|
||||||
allFSDirs[folderStats.Path] = folderStats
|
allFSDirs[folderStats.Path] = folderStats
|
||||||
|
|
||||||
if s.folderHasChanged(ctx, folderStats, allDBDirs, lastModifiedSince) {
|
if s.folderHasChanged(ctx, folderStats, allDBDirs, lastModifiedSince) {
|
||||||
|
|
|
@ -19,7 +19,7 @@ type (
|
||||||
ModTime time.Time
|
ModTime time.Time
|
||||||
HasImages bool
|
HasImages bool
|
||||||
HasPlaylist bool
|
HasPlaylist bool
|
||||||
AudioFilesCount int64
|
AudioFilesCount uint32
|
||||||
}
|
}
|
||||||
walkResults = chan dirStats
|
walkResults = chan dirStats
|
||||||
)
|
)
|
||||||
|
|
|
@ -31,7 +31,7 @@ func (c *LibraryScanningController) GetScanStatus(w http.ResponseWriter, r *http
|
||||||
response := newResponse()
|
response := newResponse()
|
||||||
response.ScanStatus = &responses.ScanStatus{
|
response.ScanStatus = &responses.ScanStatus{
|
||||||
Scanning: status.Scanning,
|
Scanning: status.Scanning,
|
||||||
Count: status.Count,
|
Count: int64(status.Count),
|
||||||
LastScan: &status.LastScan,
|
LastScan: &status.LastScan,
|
||||||
}
|
}
|
||||||
return response, nil
|
return response, nil
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue