2023-06-29 20:03:08 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"crypto/rand"
|
|
|
|
"fmt"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/libp2p/go-libp2p/core/peer"
|
|
|
|
"github.com/multiformats/go-multiaddr"
|
|
|
|
"github.com/waku-org/go-waku/waku/v2/node"
|
2024-05-24 17:44:53 +00:00
|
|
|
"github.com/waku-org/go-waku/waku/v2/protocol/legacy_store"
|
2023-06-29 20:03:08 +00:00
|
|
|
"github.com/waku-org/go-waku/waku/v2/protocol/pb"
|
|
|
|
"go.uber.org/zap"
|
2024-05-24 17:44:53 +00:00
|
|
|
"google.golang.org/protobuf/proto"
|
2023-06-29 20:03:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func connectToNodes(ctx context.Context, node *node.WakuNode) {
|
|
|
|
wg := sync.WaitGroup{}
|
|
|
|
for _, addr := range nodeList {
|
|
|
|
wg.Add(1)
|
|
|
|
go func(addr string) {
|
|
|
|
wg.Done()
|
|
|
|
ctx, cancel := context.WithTimeout(ctx, 10*time.Second)
|
|
|
|
defer cancel()
|
|
|
|
err := node.DialPeer(ctx, addr)
|
|
|
|
if err != nil {
|
|
|
|
log.Error("could not connect to peer", zap.String("addr", addr), zap.Error(err))
|
|
|
|
}
|
|
|
|
}(addr)
|
|
|
|
}
|
|
|
|
wg.Wait()
|
|
|
|
}
|
|
|
|
|
|
|
|
func sendMessages(ctx context.Context, node *node.WakuNode, numMsgToSend int, topic string, contentTopic string) error {
|
|
|
|
for i := 0; i < numMsgToSend; i++ {
|
|
|
|
payload := make([]byte, 128)
|
|
|
|
_, err := rand.Read(payload)
|
|
|
|
if err != nil {
|
2023-07-14 15:48:19 +00:00
|
|
|
panic(err)
|
2023-06-29 20:03:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
msg := &pb.WakuMessage{
|
|
|
|
Payload: payload,
|
2024-05-24 17:44:53 +00:00
|
|
|
Version: proto.Uint32(0),
|
2023-06-29 20:03:08 +00:00
|
|
|
ContentTopic: contentTopic,
|
2024-05-24 17:44:53 +00:00
|
|
|
Timestamp: proto.Int64(node.Timesource().Now().UnixNano()),
|
2023-06-29 20:03:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_, err = node.Relay().Publish(ctx, msg)
|
|
|
|
if err != nil {
|
2023-07-14 15:48:19 +00:00
|
|
|
panic(err)
|
2023-06-29 20:03:08 +00:00
|
|
|
}
|
2023-07-14 15:48:19 +00:00
|
|
|
time.Sleep(10 * time.Millisecond)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func sendMessagesConcurrent(ctx context.Context, node *node.WakuNode, numMsgToSend int, topic string, contentTopic string) error {
|
|
|
|
wg := sync.WaitGroup{}
|
|
|
|
for i := 0; i < numMsgToSend; i++ {
|
|
|
|
wg.Add(1)
|
|
|
|
go func() {
|
|
|
|
wg.Done()
|
|
|
|
payload := make([]byte, 128)
|
|
|
|
_, err := rand.Read(payload)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2023-06-29 20:03:08 +00:00
|
|
|
|
2023-07-14 15:48:19 +00:00
|
|
|
msg := &pb.WakuMessage{
|
|
|
|
Payload: payload,
|
2024-05-24 17:44:53 +00:00
|
|
|
Version: proto.Uint32(0),
|
2023-07-14 15:48:19 +00:00
|
|
|
ContentTopic: contentTopic,
|
2024-05-24 17:44:53 +00:00
|
|
|
Timestamp: proto.Int64(node.Timesource().Now().UnixNano()),
|
2023-07-14 15:48:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_, err = node.Relay().Publish(ctx, msg)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}()
|
2023-06-29 20:03:08 +00:00
|
|
|
time.Sleep(10 * time.Millisecond)
|
|
|
|
}
|
2023-07-14 15:48:19 +00:00
|
|
|
wg.Wait()
|
2023-06-29 20:03:08 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func queryNode(ctx context.Context, node *node.WakuNode, addr string, pubsubTopic string, contentTopic string, startTime time.Time, endTime time.Time) (int, error) {
|
|
|
|
p, err := multiaddr.NewMultiaddr(addr)
|
|
|
|
if err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info, err := peer.AddrInfoFromP2pAddr(p)
|
|
|
|
if err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
|
|
|
|
cnt := 0
|
|
|
|
cursorIterations := 0
|
|
|
|
|
2024-05-24 17:44:53 +00:00
|
|
|
result, err := node.LegacyStore().Query(ctx, legacy_store.Query{
|
|
|
|
PubsubTopic: pubsubTopic,
|
2023-06-29 20:03:08 +00:00
|
|
|
ContentTopics: []string{contentTopic},
|
2024-05-24 17:44:53 +00:00
|
|
|
StartTime: proto.Int64(startTime.UnixNano()),
|
|
|
|
EndTime: proto.Int64(endTime.UnixNano()),
|
|
|
|
}, legacy_store.WithPeer(info.ID), legacy_store.WithPaging(false, 100), legacy_store.WithRequestID([]byte{1, 2, 3, 4, 5, 6, 7, 8}))
|
2023-06-29 20:03:08 +00:00
|
|
|
if err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
|
|
|
|
for {
|
|
|
|
hasNext, err := result.Next(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if !hasNext { // No more messages available
|
|
|
|
break
|
|
|
|
}
|
2023-07-14 15:48:19 +00:00
|
|
|
cursorIterations += 1
|
2023-06-29 20:03:08 +00:00
|
|
|
|
|
|
|
cnt += len(result.GetMessages())
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Info(fmt.Sprintf("%d messages found in %s (Used cursor %d times)\n", cnt, info.ID, cursorIterations))
|
|
|
|
|
|
|
|
return cnt, nil
|
|
|
|
}
|