New implementation of NowPlaying

This commit is contained in:
Deluan 2021-06-19 20:56:56 -04:00
parent 0df0ac0715
commit f8ee6db72a
14 changed files with 233 additions and 203 deletions

View 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
}
}()
}