2023-07-14 10:16:58 +08:00
|
|
|
|
package config
|
|
|
|
|
|
|
|
|
|
import (
|
2023-08-18 10:22:17 +08:00
|
|
|
|
"flag"
|
2023-07-14 10:16:58 +08:00
|
|
|
|
"fmt"
|
2023-08-31 14:06:53 +08:00
|
|
|
|
"net"
|
2023-07-14 10:16:58 +08:00
|
|
|
|
"os"
|
2023-08-31 14:06:53 +08:00
|
|
|
|
"strings"
|
2023-07-14 10:16:58 +08:00
|
|
|
|
|
|
|
|
|
"github.com/spf13/viper"
|
2023-08-31 14:06:53 +08:00
|
|
|
|
"joylink.club/bj-rtsts-server/dto"
|
2023-07-14 10:16:58 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type AppConfig struct {
|
|
|
|
|
Env string
|
|
|
|
|
Server server
|
|
|
|
|
Datasource datasource
|
|
|
|
|
Logging log
|
2023-07-26 17:51:32 +08:00
|
|
|
|
Messaging messaging
|
2023-07-26 17:02:53 +08:00
|
|
|
|
Dynamics dynamics
|
2023-08-18 16:20:40 +08:00
|
|
|
|
Vobc vobc
|
2023-07-14 10:16:58 +08:00
|
|
|
|
}
|
|
|
|
|
type server struct {
|
|
|
|
|
Port int
|
|
|
|
|
}
|
|
|
|
|
type datasource struct {
|
|
|
|
|
Dsn string
|
|
|
|
|
}
|
|
|
|
|
type log struct {
|
|
|
|
|
Level string // 日志打印级别 debug info warn error
|
|
|
|
|
Format string // 输出日志格式 logfmt, json
|
|
|
|
|
Path string // 输出日志文件路径
|
|
|
|
|
FileName string // 输出日志文件名称
|
|
|
|
|
FileMaxSize int // 【日志分割】单个日志文件最多存储量 单位(mb)
|
|
|
|
|
FileMaxBackups int // 【日志分割】日志备份文件最多数量
|
|
|
|
|
MaxAge int // 日志保留时间,单位: 天 (day)
|
|
|
|
|
Compress bool // 是否压缩日志
|
|
|
|
|
Stdout bool // 是否输出到控制台
|
|
|
|
|
}
|
2023-07-26 18:00:00 +08:00
|
|
|
|
|
2023-07-26 17:51:32 +08:00
|
|
|
|
type messaging struct {
|
|
|
|
|
Centrifugo centrifugo
|
|
|
|
|
}
|
|
|
|
|
type centrifugo struct {
|
|
|
|
|
TokenSecret string
|
|
|
|
|
ApiKey string
|
|
|
|
|
ApiEndpoint string
|
|
|
|
|
Address string
|
2023-07-26 18:00:00 +08:00
|
|
|
|
}
|
2023-07-26 17:02:53 +08:00
|
|
|
|
type dynamics struct {
|
2023-08-23 15:33:07 +08:00
|
|
|
|
Ip string
|
|
|
|
|
UdpLocalPort int
|
|
|
|
|
UdpRemotePort int
|
|
|
|
|
UdpRemoteTrainPort int
|
|
|
|
|
HttpPort int
|
2023-07-26 17:02:53 +08:00
|
|
|
|
}
|
2023-08-18 16:20:40 +08:00
|
|
|
|
type vobc struct {
|
|
|
|
|
Ip string
|
|
|
|
|
LocalPort int
|
|
|
|
|
RemotePort int
|
|
|
|
|
}
|
2023-07-14 10:16:58 +08:00
|
|
|
|
|
|
|
|
|
var Config AppConfig
|
|
|
|
|
|
2023-08-31 14:06:53 +08:00
|
|
|
|
var SimulationId_prefix = (func() string {
|
|
|
|
|
ip := "127.0.0.1"
|
|
|
|
|
addrList, err := net.InterfaceAddrs()
|
|
|
|
|
if err != nil {
|
|
|
|
|
panic(dto.ErrorDto{Code: dto.DataOperationError, Message: err.Error()})
|
|
|
|
|
}
|
|
|
|
|
for _, address := range addrList {
|
|
|
|
|
if ipNet, ok := address.(*net.IPNet); ok && !ipNet.IP.IsLoopback() {
|
|
|
|
|
if ipNet.IP.To4() != nil {
|
|
|
|
|
ip = ipNet.IP.String()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
ipArr := strings.Split(ip, ".")
|
|
|
|
|
return ipArr[2] + "_" + ipArr[3]
|
|
|
|
|
})()
|
|
|
|
|
|
2023-08-18 10:22:17 +08:00
|
|
|
|
// 获取配置文件名称,从运行flag参数config中获取,若未提供,使用默认'dev'
|
|
|
|
|
func getConfigName() string {
|
|
|
|
|
configName := ""
|
|
|
|
|
flag.StringVar(&configName, "config", "dev", "config name, eg: -config test")
|
|
|
|
|
flag.Parse()
|
|
|
|
|
if configName == "" {
|
|
|
|
|
configName = "dev"
|
|
|
|
|
}
|
|
|
|
|
fmt.Println("config name:", configName)
|
|
|
|
|
return configName
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-14 10:16:58 +08:00
|
|
|
|
// 加载配置
|
|
|
|
|
func LoadConfig() {
|
2023-08-18 10:22:17 +08:00
|
|
|
|
cnf := viper.New()
|
|
|
|
|
cnf.SetConfigName(getConfigName())
|
|
|
|
|
cnf.SetConfigType("yml")
|
|
|
|
|
cnf.AddConfigPath("./config/")
|
|
|
|
|
cnf.AddConfigPath(".")
|
|
|
|
|
err := cnf.ReadInConfig()
|
2023-07-14 10:16:58 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
panic(fmt.Errorf("读取配置文件错误: %w", err))
|
|
|
|
|
}
|
|
|
|
|
fmt.Println(os.Args)
|
2023-08-18 10:22:17 +08:00
|
|
|
|
err = cnf.Unmarshal(&Config)
|
2023-07-14 10:16:58 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
panic(fmt.Errorf("解析配置文件错误: %w", err))
|
|
|
|
|
}
|
|
|
|
|
fmt.Println(Config)
|
|
|
|
|
}
|