-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwth.go
108 lines (90 loc) · 1.99 KB
/
wth.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
package main
import (
"plugin"
"runtime"
"net/url"
"os"
lib "github.com/mrusme/libwth"
"github.com/mrusme/libwth/module"
"github.com/mrusme/libwth/cfg"
"github.com/mrusme/wth/tui"
tea "github.com/charmbracelet/bubbletea"
"go.uber.org/zap"
)
type Runtime struct {
Config cfg.Cfg
Modules []*module.Module
Logger *zap.Logger
Log *zap.SugaredLogger
}
func NewLogger(
filename string,
level string,
) (*zap.Logger, error) {
if runtime.GOOS == "windows" {
zap.RegisterSink("winfile", func(u *url.URL) (zap.Sink, error) {
return os.OpenFile(u.Path[1:], os.O_WRONLY|os.O_APPEND|os.O_CREATE, 0644)
})
}
cfg := zap.NewDevelopmentConfig()
if runtime.GOOS == "windows" {
cfg.OutputPaths = []string{
"stdout",
"winfile:///" + filename,
}
} else {
cfg.OutputPaths = []string{
filename,
}
}
lvl := zap.NewAtomicLevel()
lvl.UnmarshalText([]byte(level))
cfg.Level = lvl
return cfg.Build()
}
func main() {
rt := new(Runtime)
config, err := cfg.NewCfg()
if err != nil {
panic(err)
}
rt.Config = config
logger, err := NewLogger(
rt.Config.Log.File,
rt.Config.Log.Level,
)
if err != nil {
panic(err)
}
rt.Logger = logger
defer rt.Logger.Sync()
rt.Log = rt.Logger.Sugar()
for _, cfgModule := range config.Modules {
ctx, err := lib.NewCtx(
&config,
cfgModule.ID,
rt.Log,
)
if err != nil {
panic(err)
}
mod, err := plugin.Open(cfgModule.Path)
if err != nil {
panic(err)
}
symNewModule, err := mod.Lookup("NewModule")
if err != nil {
panic(err)
}
module, err := symNewModule.(func(*lib.Ctx) (module.Module, error))(ctx)
if err != nil {
panic(err)
}
rt.Modules = append(rt.Modules, &module)
}
t := tea.NewProgram(tui.New(&rt.Config, &rt.Modules, rt.Log), tea.WithAltScreen())
err = t.Start()
if err != nil {
panic(err)
}
}