Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(zeromq): add publisher raw block #1670

Merged
merged 1 commit into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions www/zmq/publisher_block_info.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@

if err := b.zmqSocket.Send(message); err != nil {
b.logger.Error("zmq publish message error", "err", err, "publisher", b.TopicName())

return

Check warning on line 37 in www/zmq/publisher_block_info.go

View check run for this annotation

Codecov / codecov/patch

www/zmq/publisher_block_info.go#L36-L37

Added lines #L36 - L37 were not covered by tests
}

b.logger.Debug("zmq published message success",
Expand Down
29 changes: 26 additions & 3 deletions www/zmq/publisher_raw_block.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
package zmq

import (
"bytes"

"github.com/go-zeromq/zmq4"
"github.com/pactus-project/pactus/types/block"
"github.com/pactus-project/pactus/util/logger"
Expand All @@ -20,7 +22,28 @@
}
}

func (*rawBlockPub) onNewBlock(_ *block.Block) {
// TODO implement me
panic("implement me")
func (r *rawBlockPub) onNewBlock(blk *block.Block) {
rawHeader := make([]byte, 0)
buf := bytes.NewBuffer(rawHeader)

if err := blk.Header().Encode(buf); err != nil {
r.logger.Error("failed to encode block header", "err", err, "publisher", r.TopicName())

return
}

Check warning on line 33 in www/zmq/publisher_raw_block.go

View check run for this annotation

Codecov / codecov/patch

www/zmq/publisher_raw_block.go#L30-L33

Added lines #L30 - L33 were not covered by tests

rawMsg := r.makeTopicMsg(buf.Bytes(), blk.Height())
message := zmq4.NewMsg(rawMsg)

if err := r.zmqSocket.Send(message); err != nil {
r.logger.Error("zmq publish message error", "err", err, "publisher", r.TopicName())

return
}

Check warning on line 42 in www/zmq/publisher_raw_block.go

View check run for this annotation

Codecov / codecov/patch

www/zmq/publisher_raw_block.go#L39-L42

Added lines #L39 - L42 were not covered by tests

r.logger.Debug("zmq published message success",
"publisher", r.TopicName(),
"block_height", blk.Height())

r.seqNo++
}
65 changes: 65 additions & 0 deletions www/zmq/publisher_raw_block_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
package zmq

import (
"bytes"
"context"
"encoding/binary"
"fmt"
"testing"

"github.com/go-zeromq/zmq4"
"github.com/pactus-project/pactus/types/block"
"github.com/pactus-project/pactus/util/testsuite"
"github.com/stretchr/testify/require"
)

func TestRawBlockPublisher(t *testing.T) {
port := testsuite.FindFreePort()
addr := fmt.Sprintf("tcp://localhost:%d", port)
conf := DefaultConfig()
conf.ZmqPubRawBlock = addr

td := setup(t, conf)
defer td.closeServer()

td.server.Publishers()

sub := zmq4.NewSub(context.TODO(), zmq4.WithAutomaticReconnect(false))

err := sub.Dial(addr)
require.NoError(t, err)

err = sub.SetOption(zmq4.OptionSubscribe, string(TopicRawBlock.Bytes()))
require.NoError(t, err)

blk, _ := td.TestSuite.GenerateTestBlock(td.RandHeight())

td.eventCh <- blk

received, err := sub.Recv()
require.NoError(t, err)

require.NotNil(t, received.Frames)
require.GreaterOrEqual(t, len(received.Frames), 1)

msg := received.Frames[0]

topic := msg[:2]
blockHeader := msg[2 : len(msg)-8]
height := binary.BigEndian.Uint32(msg[140 : len(msg)-4])
seqNo := binary.BigEndian.Uint32(msg[len(msg)-4:])

buf := bytes.NewBuffer(blockHeader)
header := new(block.Header)

require.NoError(t, header.Decode(buf))

require.NotNil(t, header)
require.Equal(t, uint32(0), seqNo)
require.Equal(t, blk.Height(), height)
require.Equal(t, TopicRawBlock.Bytes(), topic)
require.Equal(t, header.PrevBlockHash(), blk.Header().PrevBlockHash())
require.Equal(t, header.StateRoot(), blk.Header().StateRoot())

require.NoError(t, sub.Close())
}
Loading