-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
77 lines (56 loc) · 1.7 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
package main
import (
"context"
"github.com/Rostislaved/ethereum-parser/internal/app/adapters/httpAdapter"
"github.com/Rostislaved/ethereum-parser/internal/app/config"
"github.com/Rostislaved/ethereum-parser/internal/app/entity"
"github.com/Rostislaved/ethereum-parser/internal/app/parser"
"github.com/Rostislaved/ethereum-parser/internal/app/provider"
"github.com/Rostislaved/ethereum-parser/internal/app/storage/inmemory_storage"
"github.com/Rostislaved/ethereum-parser/internal/pkg/hexconverter"
signalListener "github.com/Rostislaved/ethereum-parser/internal/pkg/signal-listener"
"log"
"sync"
)
var _ Parser = (*parser.Parser)(nil) // parser implements the interface
type Parser interface {
// last parsed block
GetCurrentBlock() int
// add address to observer
Subscribe(address string) bool
// list of inbound or outbound transactions for an address
GetTransactions(address string) []entity.Transaction
}
func main() {
config := config.Get()
hexconverter := hexconverter.New()
prv := provider.New(config.Provider, hexconverter)
storage := inMemoryStorage.New()
parser := parser.New(config.Parser, storage, prv)
httpAdapter := httpAdapter.New(config.Server, parser)
var wg sync.WaitGroup
ctx, cancel := context.WithCancel(context.Background())
wg.Add(1)
go func() {
defer wg.Done()
parser.Start(ctx)
}()
wg.Add(1)
go func() {
defer wg.Done()
httpAdapter.Start()
}()
signalListener := signalListener.New()
select {
case err := <-httpAdapter.Notify():
log.Println(err)
case signal := <-signalListener.Notify():
log.Printf("\nCaught signal: %v. Exiting...\n", signal)
err := httpAdapter.Shutdown()
if err != nil {
log.Println(err)
}
}
cancel()
wg.Wait()
}