mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-01-22 09:58:14 -05:00
48 lines
805 B
Go
48 lines
805 B
Go
package conf
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
|
|
"github.com/InazumaV/V2bX/common/json5"
|
|
|
|
"github.com/goccy/go-json"
|
|
)
|
|
|
|
type Conf struct {
|
|
LogConfig LogConfig `json:"Log"`
|
|
CoresConfig []CoreConfig `json:"Cores"`
|
|
NodeConfig []NodeConfig `json:"Nodes"`
|
|
}
|
|
|
|
func New() *Conf {
|
|
return &Conf{
|
|
LogConfig: LogConfig{
|
|
Level: "info",
|
|
Output: "",
|
|
},
|
|
}
|
|
}
|
|
|
|
func (p *Conf) LoadFromPath(filePath string) error {
|
|
f, err := os.Open(filePath)
|
|
if err != nil {
|
|
return fmt.Errorf("open config file error: %s", err)
|
|
}
|
|
defer f.Close()
|
|
|
|
reader := json5.NewTrimNodeReader(f)
|
|
data, err := io.ReadAll(reader)
|
|
if err != nil {
|
|
return fmt.Errorf("read config file error: %s", err)
|
|
}
|
|
|
|
err = json.Unmarshal(data, p)
|
|
if err != nil {
|
|
return fmt.Errorf("unmarshal config error: %s", err)
|
|
}
|
|
|
|
return nil
|
|
}
|