-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmain.go
59 lines (43 loc) · 1.14 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
package main
import (
"fmt"
"log"
"os"
"time"
"github.com/modernice/goes/examples/todo"
"github.com/modernice/goes/examples/todo/cmd"
"github.com/modernice/goes/projection/schedule"
)
var intro = `Running "todo" server with the following options:
TODO_DEBOUNCE: %s
`
func main() {
debounce := parseDebounce()
fmt.Printf(intro, debounceText(debounce))
var setup cmd.Setup
ctx, cancel := setup.Context()
defer cancel()
ebus, estore, ereg, disconnect := setup.Events(ctx, "server")
defer disconnect()
cbus, _ := setup.Commands(ereg, ebus)
repo := setup.Aggregates(estore)
counter := todo.NewCounter()
counterErrors, err := counter.Project(ctx, ebus, estore, schedule.Debounce(debounce))
if err != nil {
log.Panic(fmt.Errorf("project counter: %w", err))
}
commandErrors := todo.HandleCommands(ctx, cbus, repo)
cmd.LogErrors(ctx, counterErrors, commandErrors)
}
func parseDebounce() time.Duration {
if d, err := time.ParseDuration(os.Getenv("TODO_DEBOUNCE")); err == nil {
return d
}
return 0
}
func debounceText(dur time.Duration) string {
if dur == 0 {
return fmt.Sprintf("%s (disabled)", dur)
}
return dur.String()
}