mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
New implementation of NowPlaying
This commit is contained in:
parent
0df0ac0715
commit
f8ee6db72a
14 changed files with 233 additions and 203 deletions
48
utils/singleton/singleton.go
Normal file
48
utils/singleton/singleton.go
Normal file
|
@ -0,0 +1,48 @@
|
|||
package singleton
|
||||
|
||||
import (
|
||||
"reflect"
|
||||
"strings"
|
||||
|
||||
"github.com/navidrome/navidrome/log"
|
||||
)
|
||||
|
||||
var (
|
||||
instances = make(map[string]interface{})
|
||||
getOrCreateC = make(chan *entry, 1)
|
||||
)
|
||||
|
||||
type entry struct {
|
||||
constructor func() interface{}
|
||||
object interface{}
|
||||
resultC chan interface{}
|
||||
}
|
||||
|
||||
// Get returns an existing instance of object. If it is not yet created, calls `constructor`, stores the
|
||||
// result for future calls and return it
|
||||
func Get(object interface{}, constructor func() interface{}) interface{} {
|
||||
e := &entry{
|
||||
constructor: constructor,
|
||||
object: object,
|
||||
resultC: make(chan interface{}),
|
||||
}
|
||||
getOrCreateC <- e
|
||||
return <-e.resultC
|
||||
}
|
||||
|
||||
func init() {
|
||||
go func() {
|
||||
for {
|
||||
e := <-getOrCreateC
|
||||
name := reflect.TypeOf(e.object).String()
|
||||
name = strings.TrimPrefix(name, "*")
|
||||
v, created := instances[name]
|
||||
if !created {
|
||||
v = e.constructor()
|
||||
log.Trace("Created new singleton", "object", name, "instance", v)
|
||||
instances[name] = v
|
||||
}
|
||||
e.resultC <- v
|
||||
}
|
||||
}()
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue