mirror of
https://github.com/libp2p/go-eventbus.git
synced 2026-08-22 15:23:27 +08:00
Compare commits
2 Commits
v0.1.0
...
feat/array
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6ef2bfd659 | ||
|
|
348ee8b92b |
28
basic.go
28
basic.go
@@ -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{}) {
|
||||||
|
|||||||
@@ -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()
|
||||||
|
|
||||||
|
}
|
||||||
|
|||||||
13
interface.go
13
interface.go
@@ -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)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user