-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
128 lines (99 loc) · 2.59 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
125
126
127
128
package main
import (
"context"
"errors"
"fmt"
"log"
"log/slog"
"net/http"
"os"
"os/signal"
"syscall"
"time"
"github.com/Roman2K/txstreet-bulk-eth-api/bulkethhandler"
"github.com/Roman2K/txstreet-bulk-eth-api/limits"
"github.com/ethereum/go-ethereum/ethclient"
)
func main() {
slog.Info("Starting")
if err := run(); err != nil {
log.Fatal(err)
}
slog.Info("Exiting")
}
func run() error {
var opts options
opts.flagSet().Parse(os.Args[1:])
slog.Info(
"Command-line args parsed",
"listenAddr", opts.listenAddr,
"ethUrl", opts.ethUrl,
"ethConcurrency", opts.ethConcurrency,
"logLevel", opts.logLevel,
)
setLogger(opts.logLevel)
ctx := context.Background()
var cancel context.CancelCauseFunc
ctx, cancel = stopOnSignal(ctx)
client, err := ethclient.DialContext(ctx, opts.ethUrl)
if err != nil {
return fmt.Errorf("Failed to instantiate Ethereum client: %w", err)
}
limiter := limits.NewLimiter(opts.ethConcurrency)
handler := bulkethhandler.NewHandler(ctx, client, limiter)
server := &http.Server{
Addr: opts.listenAddr,
Handler: handler,
ReadTimeout: 10 * time.Second,
WriteTimeout: 20 * time.Second,
MaxHeaderBytes: 1 << 20, // 1 MB
}
slog.Info("HTTP server listening", "addr", server.Addr)
go func() {
defer cancel(nil)
<-ctx.Done()
slog.Debug("Signal context cancelled", "error", ctx.Err(), "cause", context.Cause(ctx))
ctx, timeoutCancel := context.WithTimeout(ctx, 10*time.Second)
defer timeoutCancel()
slog.Info("Shutting down HTTP server", "timeout", formatContextTimeout(ctx))
server.Shutdown(ctx)
}()
if err = server.ListenAndServe(); !errors.Is(err, http.ErrServerClosed) {
return err
}
slog.Info("HTTP server shut down")
slog.Info("Waiting for pending tasks")
limiter.Wait()
return nil
}
func setLogger(level slog.Level) {
slog.SetDefault(
slog.New(
slog.NewTextHandler(
os.Stderr,
&slog.HandlerOptions{Level: level},
),
),
)
}
func formatContextTimeout(ctx context.Context) string {
if deadline, ok := ctx.Deadline(); ok {
return deadline.Sub(time.Now()).String()
}
return "None"
}
func stopOnSignal(ctx context.Context) (context.Context, context.CancelCauseFunc) {
sigContext, cancel := context.WithCancelCause(ctx)
sigChan := make(chan os.Signal)
go func() {
defer cancel(nil)
signal := <-sigChan
slog.Info("Received signal", "signal", signal)
cancel(fmt.Errorf("Received %s", signal))
signal = <-sigChan
slog.Warn("Received second signal, stopping", "signal", signal)
os.Exit(2)
}()
signal.Notify(sigChan, os.Interrupt, syscall.SIGTERM)
return sigContext, cancel
}