-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
124 lines (104 loc) · 2.36 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
package main
import (
"context"
"flag"
"fmt"
queue "github.com/mbretter/go-mongodb-queue"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
"log"
"os"
"sync"
)
type Payload struct {
Name string `bson:"name"`
Desc string `bson:"desc"`
Num int `bson:"num"`
}
func main() {
var collName = flag.String("c", "queue", "mongodb collection name")
var publish = flag.String("p", "", "publish topic")
var getnext = flag.String("g", "", "next topic")
var ackId = flag.String("a", "", "ack id")
var selfcare = flag.Bool("sc", false, "run selfcare")
var createIndexes = flag.Bool("i", false, "create indexes")
var subscribe = flag.String("s", "", "subscribe on topic")
flag.Parse()
mongodbUri := os.Getenv("MONGODB_URI")
dbName := os.Getenv("MONGODB_DB")
if len(mongodbUri) == 0 {
log.Fatal("mongodb uri missing")
}
if len(dbName) == 0 {
log.Fatal("mongodb database name missing")
}
ctx := context.TODO()
client, err := mongo.Connect(ctx, options.Client().ApplyURI(mongodbUri))
if err != nil {
log.Fatal(err)
}
//goland:noinspection ALL
defer client.Disconnect(ctx)
collection := client.Database(dbName).Collection(*collName)
queueDb := queue.NewStdDb(collection, ctx)
qu := queue.NewQueue(queueDb)
payload := Payload{
Name: "Arnold Schwarzenegger",
Desc: "I'll be back",
Num: 73,
}
if *subscribe != "" {
// inlined to be more readable, practically this func would be somewhere else
workerFunc := func(qu *queue.Queue, task queue.Task) {
fmt.Println("worker", task)
_ = qu.Ack(task.Id.Hex())
}
var wg sync.WaitGroup
err := qu.Subscribe(*subscribe, func(t queue.Task) {
wg.Add(1)
go func() {
defer wg.Done()
workerFunc(qu, t)
}()
})
if err != nil {
log.Fatal(err)
}
wg.Wait()
}
if *publish != "" {
opts := queue.NewPublishOptions().SetMaxTries(1)
task, err := qu.Publish(*publish, &payload, opts)
if err != nil {
log.Fatal(err)
}
fmt.Println(*task)
}
if *getnext != "" {
task, err := qu.GetNext(*getnext)
if err != nil {
log.Fatal(err)
}
if task != nil {
fmt.Println(*task)
}
}
if *ackId != "" {
err := qu.Ack(*ackId)
if err != nil {
log.Fatal(err)
}
}
if *selfcare {
err := qu.Selfcare("", 0)
if err != nil {
log.Fatal(err)
}
}
if *createIndexes {
err := qu.CreateIndexes()
if err != nil {
log.Fatal(err)
}
}
}