Skip to content

Commit

Permalink
cmd/pubsub: fix pubsub peers format brakage
Browse files Browse the repository at this point in the history
License: MIT
Signed-off-by: Jakub Sztandera <[email protected]>
  • Loading branch information
Kubuxu committed Mar 16, 2018
1 parent 42d1aa5 commit c7ecbac
Showing 1 changed file with 28 additions and 4 deletions.
32 changes: 28 additions & 4 deletions core/commands/pubsub.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ import (
"fmt"
"io"
"net/http"
"sort"
"sync"
"time"

core "github.com/ipfs/go-ipfs/core"
e "github.com/ipfs/go-ipfs/core/commands/e"

floodsub "gx/ipfs/QmSFihvoND3eDaAYRCeLgLPt62yCPgMZs1NSZmKFEtJQQw/go-libp2p-floodsub"
pstore "gx/ipfs/QmXauCuJzmzapetmC6W4TuDJLL1yFFrVzSHoWv8YdbmnxH/go-libp2p-peerstore"
Expand Down Expand Up @@ -271,6 +273,23 @@ To use, the daemon must be run with '--enable-pubsub-experiment'.
cmds.EmitOnce(res, stringList{n.Floodsub.GetTopics()})
},
Type: stringList{},
Encoders: cmds.EncoderMap{
cmds.Text: cmds.MakeEncoder(stringListEncoder),
},
}

func stringListEncoder(req *cmds.Request, w io.Writer, v interface{}) error {
list, ok := v.(*stringList)
if !ok {
return e.TypeErr(stat, v)
}
for _, str := range list.Strings {
_, err := fmt.Fprintf(w, "%s\n", str)
if err != nil {
return err
}
}
return wtr.Flush()
}

var PubsubPeersCmd = &cmds.Command{
Expand Down Expand Up @@ -313,12 +332,17 @@ To use, the daemon must be run with '--enable-pubsub-experiment'.
topic = req.Arguments[0]
}

for _, peer := range n.Floodsub.ListPeers(topic) {
res.Emit(peer.Pretty())
peers := n.Floodsub.ListPeers(topic)
list := &stringList{make([]string, len(peers), 0)}

for _, peer := range peers {
list.Strings = append(list.Strings, peer.Pretty)
}
sort.Strings(list.Strings)
cmds.EmitOnce(res, list)
},
Type: "",
Type: stringList{},
Encoders: cmds.EncoderMap{
cmds.Text: cmds.Encoders[cmds.TextNewline],
cmds.Text: cmds.MakeEncoder(stringListEncoder),
},
}

0 comments on commit c7ecbac

Please sign in to comment.