Skip to content

Commit

Permalink
Merge pull request #471 from ripienaar/470
Browse files Browse the repository at this point in the history
(#470) replace satori/go.uuid with gofrs/uuid
  • Loading branch information
ripienaar authored Oct 27, 2018
2 parents c25a3c3 + 442ba6f commit 712b453
Show file tree
Hide file tree
Showing 14 changed files with 71 additions and 29 deletions.
11 changes: 8 additions & 3 deletions broker/adapter/natsstream/output.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ import (
"github.com/choria-io/go-choria/broker/adapter/stats"
"github.com/choria-io/go-choria/choria"
"github.com/choria-io/go-choria/srvcache"
uuid "github.com/gofrs/uuid"
stan "github.com/nats-io/go-nats-streaming"
"github.com/prometheus/client_golang/prometheus"
uuid "github.com/satori/go.uuid"
log "github.com/sirupsen/logrus"
)

Expand Down Expand Up @@ -62,15 +62,20 @@ func newStream(name string, work chan adaptable, logger *log.Entry) ([]*stream,

clusterID := cfg.Option(prefix+"clusterid", "")
if clusterID == "" {
return nil, fmt.Errorf("No ClusterID configured, please set %s", prefix+"clusterid'")
return nil, fmt.Errorf("no ClusterID configured, please set %s", prefix+"clusterid'")
}

workers := []*stream{}

for i := 0; i < instances; i++ {
logger.Infof("Creating NATS Streaming Adapter %s NATS Streaming instance %d / %d publishing to %s on cluster %s", name, i, instances, topic, clusterID)

iname := fmt.Sprintf("%s_%d-%s", name, i, strings.Replace(uuid.NewV4().String(), "-", "", -1))
wid, err := uuid.NewV4()
if err != nil {
return nil, fmt.Errorf("could not start output worker %d: %s", i, err)
}

iname := fmt.Sprintf("%s_%d-%s", name, i, strings.Replace(wid.String(), "-", "", -1))

st := &stream{
clusterID: clusterID,
Expand Down
6 changes: 4 additions & 2 deletions broker/federation/choria_nats_egest_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ var _ = Describe("Choria NATS Egest", func() {
connector *pooledWorker
manager *stubConnectionManager
in chainmessage
err error
logtxt *bufio.Writer
logbuf *bytes.Buffer
logger *log.Entry
Expand All @@ -31,7 +30,10 @@ var _ = Describe("Choria NATS Egest", func() {
ctx, cancel = context.WithCancel(context.Background())
logger, logtxt, logbuf = newDiscardLogger()

request, err = c.NewRequest(protocol.RequestV1, "test", "tester", "choria=tester", 60, c.NewRequestID(), "mcollective")
rid, err := c.NewRequestID()
Expect(err).ToNot(HaveOccurred())

request, err = c.NewRequest(protocol.RequestV1, "test", "tester", "choria=tester", 60, rid, "mcollective")
Expect(err).ToNot(HaveOccurred())
request.SetMessage(`{"hello":"world"}`)

Expand Down
6 changes: 4 additions & 2 deletions broker/federation/choria_nats_ingest_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ var _ = Describe("Choria NATS Ingest", func() {
connector *pooledWorker
manager *stubConnectionManager
in *choria.ConnectorMessage
err error
logtxt *bufio.Writer
logbuf *bytes.Buffer
logger *log.Entry
Expand All @@ -33,7 +32,10 @@ var _ = Describe("Choria NATS Ingest", func() {
ctx, cancel = context.WithCancel(context.Background())
logger, logtxt, logbuf = newDiscardLogger()

request, err = c.NewRequest(protocol.RequestV1, "test", "tester", "choria=tester", 60, c.NewRequestID(), "mcollective")
rid, err := c.NewRequestID()
Expect(err).ToNot(HaveOccurred())

request, err = c.NewRequest(protocol.RequestV1, "test", "tester", "choria=tester", 60, rid, "mcollective")
Expect(err).ToNot(HaveOccurred())
request.SetMessage(`{"hello":"world"}`)

Expand Down
4 changes: 2 additions & 2 deletions broker/federation/federation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@ func (s *stubConnection) Close() {
return
}

func (s *stubConnection) ReplyTarget(msg *choria.Message) string {
return ""
func (s *stubConnection) ReplyTarget(msg *choria.Message) (string, error) {
return "stubreplytarget", nil
}

func (s *stubConnection) Nats() *nats.Conn {
Expand Down
5 changes: 4 additions & 1 deletion broker/federation/reply_transformer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ var _ = Describe("Reply Transformer", func() {
c, err = choria.New("testdata/federation.cfg")
Expect(err).ToNot(HaveOccurred())

request, err = c.NewRequest(protocol.RequestV1, "test", "tester", "choria=tester", 60, c.NewRequestID(), "mcollective")
rid, err := c.NewRequestID()
Expect(err).ToNot(HaveOccurred())

request, err = c.NewRequest(protocol.RequestV1, "test", "tester", "choria=tester", 60, rid, "mcollective")
Expect(err).ToNot(HaveOccurred())
request.SetMessage(`{"hello":"world"}`)

Expand Down
5 changes: 4 additions & 1 deletion broker/federation/request_transformer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ var _ = Describe("RequestTransformer", func() {
c, err = choria.New("testdata/federation.cfg")
Expect(err).ToNot(HaveOccurred())

request, err = c.NewRequest(protocol.RequestV1, "test", "tester", "choria=tester", 60, c.NewRequestID(), "mcollective")
rid, err := c.NewRequestID()
Expect(err).ToNot(HaveOccurred())

request, err = c.NewRequest(protocol.RequestV1, "test", "tester", "choria=tester", 60, rid, "mcollective")
Expect(err).ToNot(HaveOccurred())

request.SetMessage(`{"hello":"world"}`)
Expand Down
11 changes: 8 additions & 3 deletions choria/connection.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ type InstanceConnector interface {
type Connector interface {
InstanceConnector

ReplyTarget(msg *Message) string
ReplyTarget(msg *Message) (string, error)
ChanQueueSubscribe(name string, subject string, group string, capacity int) (chan *ConnectorMessage, error)
Connect(ctx context.Context) (err error)
Nats() *nats.Conn
Expand Down Expand Up @@ -486,8 +486,13 @@ func ReplyTarget(msg *Message, requestid string) string {
return fmt.Sprintf("%s.reply.%s.%s", msg.Collective(), msg.SenderID, requestid)
}

func (conn *Connection) ReplyTarget(msg *Message) string {
return ReplyTarget(msg, conn.choria.NewRequestID())
func (conn *Connection) ReplyTarget(msg *Message) (string, error) {
id, err := conn.choria.NewRequestID()
if err != nil {
return "", err
}

return ReplyTarget(msg, id), nil
}

func (conn *Connection) federationTarget(federation string, side string) string {
Expand Down
2 changes: 1 addition & 1 deletion choria/framework.go
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ func (fw *Framework) PuppetAIOCmd(command string, def string) string {
}

// NewRequestID Creates a new RequestID
func (fw *Framework) NewRequestID() string {
func (fw *Framework) NewRequestID() (string, error) {
return NewRequestID()
}

Expand Down
7 changes: 6 additions & 1 deletion choria/message.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,14 @@ func NewMessageFromRequest(req protocol.Request, replyto string, choria *Framewo

// NewMessage constructs a basic Message instance
func NewMessage(payload string, agent string, collective string, msgType string, request *Message, choria *Framework) (msg *Message, err error) {
id, err := choria.NewRequestID()
if err != nil {
return
}

msg = &Message{
Payload: payload,
RequestID: choria.NewRequestID(),
RequestID: id,
TTL: choria.Config.TTL,
DiscoveredHosts: []string{},
SenderID: choria.Config.Identity,
Expand Down
10 changes: 8 additions & 2 deletions choria/message_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,10 @@ var _ = Describe("Choria/Message", func() {
})

It("Should support reply", func() {
req, err := fw.NewRequest(protocol.RequestV1, "test_agent", "sender.example.net", "test=sender", 60, fw.NewRequestID(), "test_collective")
rid, err := fw.NewRequestID()
Expect(err).ToNot(HaveOccurred())

req, err := fw.NewRequest(protocol.RequestV1, "test_agent", "sender.example.net", "test=sender", 60, rid, "test_collective")
Expect(err).ToNot(HaveOccurred())
req.SetMessage("hello world")

Expand Down Expand Up @@ -194,7 +197,10 @@ var _ = Describe("Choria/Message", func() {
})

It("Should set up the transport", func() {
req, err := fw.NewRequest(protocol.RequestV1, "test_agent", "sender.example.net", "test=sender", 60, fw.NewRequestID(), "test_collective")
rid, err := fw.NewRequestID()
Expect(err).ToNot(HaveOccurred())

req, err := fw.NewRequest(protocol.RequestV1, "test_agent", "sender.example.net", "test=sender", 60, rid, "test_collective")
Expect(err).ToNot(HaveOccurred())
req.SetMessage("hello world")

Expand Down
11 changes: 8 additions & 3 deletions choria/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"strings"

"github.com/choria-io/go-choria/puppet"
uuid "github.com/satori/go.uuid"
uuid "github.com/gofrs/uuid"
)

// UserConfig determines what is the active config file for a user
Expand Down Expand Up @@ -162,6 +162,11 @@ func MatchAnyRegex(str []byte, regex []string) bool {
}

// NewRequestID Creates a new RequestID
func NewRequestID() string {
return strings.Replace(uuid.NewV4().String(), "-", "", -1)
func NewRequestID() (string, error) {
id, err := uuid.NewV4()
if err != nil {
return "", err
}

return strings.Replace(id.String(), "-", "", -1), nil
}
13 changes: 8 additions & 5 deletions glide.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions glide.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ import:
version: ^1
- package: github.com/nats-io/go-nats-streaming
version: ^0.4.0
- package: github.com/satori/go.uuid
version: ^1.2.0
- package: github.com/tidwall/gjson
- package: github.com/tidwall/match
- package: github.com/xeipuuv/gojsonschema
Expand Down Expand Up @@ -58,3 +56,5 @@ import:
- package: github.com/choria-io/go-mcoshim
- package: github.com/choria-io/go-lifecycle
version: ^0.2.0
- package: github.com/gofrs/uuid
version: ^3.1.1
5 changes: 4 additions & 1 deletion server/discovery/discovery_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ var _ = Describe("Server/Discovery", func() {

BeforeEach(func() {
mgr = New(fw, log)
req, err = fw.NewRequest(protocol.RequestV1, "test", "testid", "callerid", 60, fw.NewRequestID(), "mcollective")
rid, err := fw.NewRequestID()
Expect(err).ToNot(HaveOccurred())

req, err = fw.NewRequest(protocol.RequestV1, "test", "testid", "callerid", 60, rid, "mcollective")
Expect(err).ToNot(HaveOccurred())

filter = req.NewFilter()
Expand Down

0 comments on commit 712b453

Please sign in to comment.