-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
62 lines (52 loc) · 1.12 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
package main
import (
"flag"
"fmt"
"log"
"os"
"runtime"
"runtime/pprof"
"time"
"github.com/ProjectAnni/anniv-go/config"
"github.com/ProjectAnni/anniv-go/meta"
"github.com/ProjectAnni/anniv-go/services"
)
func main() {
flag.Parse()
err := config.Load()
if err != nil {
fmt.Printf("Failed to load config: %v\n", err)
os.Exit(1)
}
if config.Cfg.Debug.Enabled {
go func() {
for {
f, err := os.Create(config.Cfg.Debug.MemProfilePath)
if err != nil {
log.Printf("Failed to create mem profile file: %v\n", err)
continue
}
runtime.GC()
if err := pprof.WriteHeapProfile(f); err != nil {
log.Printf("Failed to create heap profile: %v\n", err)
continue
}
f.Close()
log.Printf("Heap profile saved at %s\n", config.Cfg.Debug.MemProfilePath)
time.Sleep(time.Minute)
}
}()
}
if config.Cfg.EnableMeta {
err = meta.Init("./tmp/meta", config.Cfg.RepoURL)
if err != nil {
log.Printf("Failed to init meta repo: %v\n", err)
os.Exit(1)
}
}
err = services.Start(config.Cfg.Listen)
if err != nil {
log.Printf("Failed to start: %v\n", err)
os.Exit(1)
}
}