-
Notifications
You must be signed in to change notification settings - Fork 701
/
config.go
75 lines (66 loc) · 1.53 KB
/
config.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
package governor
import (
"fmt"
"github.com/douyu/jupiter/pkg/conf"
"github.com/douyu/jupiter/pkg/util/xnet"
"github.com/douyu/jupiter/pkg/xlog"
)
//ModName ..
const ModName = "govern"
// Config ...
type Config struct {
Host string
Port int
Network string `json:"network" toml:"network"`
logger *xlog.Logger
Enable bool
}
// StdConfig represents Standard gRPC Server config
// which will parse config by conf package,
// panic if no config key found in conf
func StdConfig(name string) *Config {
return RawConfig("jupiter.server." + name)
}
// RawConfig ...
func RawConfig(key string) *Config {
var config = DefaultConfig()
if conf.Get(key) == nil {
return config
}
if err := conf.UnmarshalKey(key, &config); err != nil {
config.logger.Panic("govern server parse config panic",
xlog.FieldErr(err), xlog.FieldKey(key),
xlog.FieldValueAny(config),
)
}
return config
}
// DefaultConfig represents default config
// User should construct config base on DefaultConfig
func DefaultConfig() *Config {
ips := xnet.GetIPs()
if len(ips) == 0 {
xlog.JupiterLogger.Error("govern get local ip error")
}
var host string
if len(ips) == 1 {
host = ips[0]
} else {
host = "localhost"
}
return &Config{
Enable: true,
Host: host,
Network: "tcp4",
Port: 0,
logger: xlog.JupiterLogger.With(xlog.FieldMod(ModName)),
}
}
// Build ...
func (config *Config) Build() *Server {
return newServer(config)
}
// Address ...
func (config Config) Address() string {
return fmt.Sprintf("%s:%d", config.Host, config.Port)
}