Skip to content

Commit

Permalink
Merge pull request #11 from libp2p/fix/things
Browse files Browse the repository at this point in the history
Fix close deadlock and Sub type error
  • Loading branch information
Stebalien committed Jun 27, 2019
2 parents 07e9677 + a5a2fbb commit a42ace6
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 5 deletions.
28 changes: 23 additions & 5 deletions p2p/host/eventbus/basic.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,22 +104,38 @@ func (s *sub) Out() <-chan interface{} {
}

func (s *sub) Close() error {
close(s.ch)
stop := make(chan struct{})
go func() {
for {
select {
case <-s.ch:
case <-stop:
close(s.ch)
return
}
}
}()

for _, n := range s.nodes {
n.lk.Lock()

for i := 0; i < len(n.sinks); i++ {
if n.sinks[i] == s.ch {
n.sinks[i], n.sinks[len(n.sinks)-1] = n.sinks[len(n.sinks)-1], nil
n.sinks = n.sinks[:len(n.sinks)-1]
break
}
}

tryDrop := len(n.sinks) == 0 && atomic.LoadInt32(&n.nEmitters) == 0

n.lk.Unlock()

if tryDrop {
s.dropper(n.typ)
}
}
close(stop)
return nil
}

Expand Down Expand Up @@ -148,12 +164,14 @@ func (b *basicBus) Subscribe(evtTypes interface{}, opts ...event.SubscriptionOpt
dropper: b.tryDropNode,
}

for i, etyp := range types {
typ := reflect.TypeOf(etyp)

if typ.Kind() != reflect.Ptr {
for _, etyp := range types {
if reflect.TypeOf(etyp).Kind() != reflect.Ptr {
return nil, errors.New("subscribe called with non-pointer type")
}
}

for i, etyp := range types {
typ := reflect.TypeOf(etyp)

err = b.withNode(typ.Elem(), func(n *node) {
n.sinks = append(n.sinks, out.ch)
Expand Down
43 changes: 43 additions & 0 deletions p2p/host/eventbus/basic_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,49 @@ func TestStateful(t *testing.T) {
}
}

func TestCloseBlocking(t *testing.T) {
bus := NewBus()
em, err := bus.Emitter(new(EventB))
if err != nil {
t.Fatal(err)
}

sub, err := bus.Subscribe(new(EventB))
if err != nil {
t.Fatal(err)
}

go func() {
em.Emit(EventB(159))
}()

time.Sleep(10 * time.Millisecond) // make sure that emit is blocked

sub.Close() // cancel sub
}

func panicOnTimeout(d time.Duration) {
<-time.After(d)
panic("timeout reached")
}

func TestSubFailFully(t *testing.T) {
bus := NewBus()
em, err := bus.Emitter(new(EventB))
if err != nil {
t.Fatal(err)
}

_, err = bus.Subscribe([]interface{}{new(EventB), 5})
if err == nil || err.Error() != "subscribe called with non-pointer type" {
t.Fatal(err)
}

go panicOnTimeout(5 * time.Second)

em.Emit(EventB(159)) // will hang if sub doesn't fail properly
}

func testMany(t testing.TB, subs, emits, msgs int, stateful bool) {
if race.WithRace() && subs+emits > 5000 {
t.SkipNow()
Expand Down

0 comments on commit a42ace6

Please sign in to comment.