blob: 18b73ff0fd202e715f3f6721bdc26d36fcebee0a (
plain)
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
|
package main
import (
"context"
"flag"
"log/slog"
"os"
"os/signal"
"time"
"git.gabrielgio.me/cerrado/pkg/config"
"git.gabrielgio.me/cerrado/pkg/handler"
"git.gabrielgio.me/cerrado/pkg/service"
"git.gabrielgio.me/cerrado/pkg/worker"
)
func main() {
ctx, stop := signal.NotifyContext(context.Background(), os.Interrupt, os.Kill)
defer stop()
if err := run(ctx); err != nil {
slog.Error("Error", "error", err)
os.Exit(1)
}
}
func run(ctx context.Context) error {
var (
configPath = flag.String("config", "/etc/cerrado.scfg", "File path for the configuration file")
)
flag.Parse()
// repositorie
configRepo, err := config.LoadConfigurationRepository(*configPath)
if err != nil {
return err
}
// services
gitService := service.NewGitService(configRepo)
handler, err := handler.MountHandler(gitService, configRepo)
if err != nil {
return err
}
serverTask := worker.NewServerTask(configRepo.GetListenAddr(), handler)
pool := worker.NewTaskPool()
pool.AddTask("http-server", 5*time.Second, serverTask)
return pool.Start(ctx)
}
|