2 Commits

Author SHA1 Message Date
Jakub Sztandera
6ef2bfd659 Use slice instead of map
License: MIT
Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
2019-06-16 19:17:34 +02:00
Łukasz Magiera
348ee8b92b Gofmt 2019-06-16 19:06:49 +02:00
3 changed files with 38 additions and 27 deletions

View File

@@ -89,10 +89,17 @@ func (b *bus) Subscribe(typedChan interface{}, opts ...SubOption) (c CancelFunc,
err = b.withNode(typ.Elem(), func(n *node) { err = b.withNode(typ.Elem(), func(n *node) {
// when all subs are waiting on this channel, setting this to 1 doesn't // when all subs are waiting on this channel, setting this to 1 doesn't
// really affect benchmarks // really affect benchmarks
i := n.sub(refCh) n.sub(refCh)
c = func() { c = func() {
n.lk.Lock() n.lk.Lock()
delete(n.sinks, i) for i := 0; i < len(n.sinks); i++ {
if n.sinks[i] == refCh {
n.sinks[i] = n.sinks[len(n.sinks)-1]
n.sinks = n.sinks[:len(n.sinks)-1]
break
}
}
tryDrop := len(n.sinks) == 0 && n.nEmitters == 0 tryDrop := len(n.sinks) == 0 && n.nEmitters == 0
n.lk.Unlock() n.lk.Unlock()
if tryDrop { if tryDrop {
@@ -143,27 +150,20 @@ type node struct {
// emitter ref count // emitter ref count
nEmitters int32 nEmitters int32
// sink index counter keepLast bool
sinkC int last reflect.Value
// TODO: we could make emit a bit faster by making this into an array, but sinks []reflect.Value
// it doesn't seem needed for now
sinks map[int]reflect.Value
} }
func newNode(typ reflect.Type) *node { func newNode(typ reflect.Type) *node {
return &node{ return &node{
typ: typ, typ: typ,
sinks: map[int]reflect.Value{},
} }
} }
func (n *node) sub(outChan reflect.Value) int { func (n *node) sub(outChan reflect.Value) {
i := n.sinkC n.sinks = append(n.sinks, outChan)
n.sinkC++
n.sinks[i] = outChan
return i
} }
func (n *node) emit(event interface{}) { func (n *node) emit(event interface{}) {

View File

@@ -336,3 +336,15 @@ func BenchmarkMs6e0m0(b *testing.B) {
b.ReportAllocs() b.ReportAllocs()
testMany(b, 1000000, 1, 1) testMany(b, 1000000, 1, 1)
} }
func t() {
bus := NewBus()
events := make(chan fmt.Stringer)
cancel, err := bus.Subscribe(events, Stateful)
if err != nil {
//
}
defer cancel()
}

View File

@@ -25,19 +25,18 @@ type EmitterSettings struct {}
type EmitterOption func(*EmitterSettings) type EmitterOption func(*EmitterSettings)
type Bus interface { type Bus interface {
// Subscribe creates new subscription. Failing to drain the incoming channel // Subscribe creates new subscription. Failing to drain the channel will cause
// will cause publishers to get blocked // publishers to get blocked
Subscribe(typedChan interface{}, opts ...SubOption) (CancelFunc, error)
// Emitter creates new emitter
// //
// evtTypes only accepts typed nil pointers, and uses the type information to // eventType accepts typed nil pointers, and uses the type information to
// select output type // select output type
// //
// Example: // Example:
// sub, cancel, err := eventbus.Subscribe(new(os.Signal)) // sub, cancel, err := eventbus.Subscribe(new(os.Signal))
// defer cancel() // defer cancel()
//
// evt := (<-sub).(os.Signal) // guaranteed to be safe
Subscribe(typedChan interface{}, opts ...SubOption) (CancelFunc, error)
Emitter(eventType interface{}, opts ...EmitterOption) (EmitFunc, CancelFunc, error) Emitter(eventType interface{}, opts ...EmitterOption) (EmitFunc, CancelFunc, error)
} }