-
Notifications
You must be signed in to change notification settings - Fork 104
/
Config.go
186 lines (164 loc) · 6.04 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
package main
import (
"encoding/json"
"io/ioutil"
"strings"
"time"
"github.com/golang/glog"
)
type PoolInfo struct {
Host string
Port uint16
SubAccount string
}
func (r *PoolInfo) UnmarshalJSON(p []byte) error {
var tmp []json.RawMessage
if err := json.Unmarshal(p, &tmp); err != nil {
return err
}
if len(tmp) > 0 {
if err := json.Unmarshal(tmp[0], &r.Host); err != nil {
return err
}
}
if len(tmp) > 1 {
if err := json.Unmarshal(tmp[1], &r.Port); err != nil {
return err
}
}
if len(tmp) > 2 {
if err := json.Unmarshal(tmp[2], &r.SubAccount); err != nil {
return err
}
}
return nil
}
func (r *PoolInfo) MarshalJSON() ([]byte, error) {
return json.Marshal([]interface{}{r.Host, r.Port, r.SubAccount})
}
type Seconds uint32
func (s Seconds) Get() time.Duration {
return time.Duration(s) * time.Second
}
type Config struct {
MultiUserMode bool `json:"multi_user_mode"`
AgentType string `json:"agent_type"`
AlwaysKeepDownconn bool `json:"always_keep_downconn"`
DisconnectWhenLostAsicboost bool `json:"disconnect_when_lost_asicboost"`
UseIpAsWorkerName bool `json:"use_ip_as_worker_name"`
IpWorkerNameFormat string `json:"ip_worker_name_format"`
FixedWorkerName string `json:"fixed_worker_name"`
SubmitResponseFromServer bool `json:"submit_response_from_server"`
AgentListenIp string `json:"agent_listen_ip"`
AgentListenPort uint16 `json:"agent_listen_port"`
Proxy []string `json:"proxy"`
UseProxy bool `json:"use_proxy"`
DirectConnectWithProxy bool `json:"direct_connect_with_proxy"`
DirectConnectAfterProxy bool `json:"direct_connect_after_proxy"`
PoolUseTls bool `json:"pool_use_tls"`
Pools []PoolInfo `json:"pools"`
HTTPDebug struct {
Enable bool `json:"enable"`
Listen string `json:"listen"`
} `json:"http_debug"`
Advanced struct {
// 每个子账户的矿池连接数量
PoolConnectionNumberPerSubAccount uint8 `json:"pool_connection_number_per_subaccount"`
// 矿池连接超时时间
PoolConnectionDialTimeoutSeconds Seconds `json:"pool_connection_dial_timeout_seconds"`
// 矿池读取超时时间
PoolConnectionReadTimeoutSeconds Seconds `json:"pool_connection_read_timeout_seconds"`
// 假任务的发送周期(秒)
FakeJobNotifyIntervalSeconds Seconds `json:"fake_job_notify_interval_seconds"`
// 不进行 TLS 证书校验
TLSSkipCertificateVerify bool `json:"tls_skip_certificate_verify"`
// 消息队列大小
MessageQueueSize struct {
SessionManager uint `json:"session_manager"`
PoolSessionManager uint `json:"pool_session_manager"`
PoolSession uint `json:"pool_session"`
MinerSession uint `json:"miner_session"`
} `json:"message_queue_size"`
} `json:"advanced"`
sessionFactory SessionFactory
}
// NewConfig 创建配置对象并设置默认值
func NewConfig() (config *Config) {
config = new(Config)
config.AgentType = "btc"
config.DisconnectWhenLostAsicboost = DownSessionDisconnectWhenLostAsicboost
config.IpWorkerNameFormat = DefaultIpWorkerNameFormat
config.UseProxy = true
config.DirectConnectAfterProxy = true
config.Advanced.PoolConnectionNumberPerSubAccount = UpSessionNumPerSubAccount
config.Advanced.PoolConnectionDialTimeoutSeconds = UpSessionDialTimeoutSeconds
config.Advanced.PoolConnectionReadTimeoutSeconds = UpSessionReadTimeoutSeconds
config.Advanced.FakeJobNotifyIntervalSeconds = FakeJobNotifyIntervalSeconds
config.Advanced.TLSSkipCertificateVerify = UpSessionTLSInsecureSkipVerify
config.Advanced.MessageQueueSize.SessionManager = SessionManagerChannelCache
config.Advanced.MessageQueueSize.PoolSessionManager = UpSessionManagerChannelCache
config.Advanced.MessageQueueSize.PoolSession = UpSessionChannelCache
config.Advanced.MessageQueueSize.MinerSession = DownSessionChannelCache
return
}
// LoadFromFile 从文件载入配置
func (conf *Config) LoadFromFile(file string) (err error) {
configJSON, err := ioutil.ReadFile(file)
if err != nil {
return
}
err = json.Unmarshal(configJSON, conf)
return
}
func (conf *Config) Init() {
conf.AgentType = strings.ToLower(conf.AgentType)
switch conf.AgentType {
case "btc":
conf.sessionFactory = new(SessionFactoryBTC)
case "etc":
fallthrough
case "ethw":
fallthrough
case "etf":
fallthrough
case "eth":
conf.sessionFactory = new(SessionFactoryETH)
default:
glog.Fatal("[OPTION] Unknown agent_type: ", conf.AgentType)
return
}
glog.Info("[OPTION] BTCAgent for ", strings.ToUpper(conf.AgentType))
if conf.MultiUserMode {
glog.Info("[OPTION] Multi user mode: Enabled. Sub-accounts in config file will be ignored.")
} else {
glog.Info("[OPTION] Multi user mode: Disabled. Sub-accounts in config file will be used.")
}
glog.Info("[OPTION] Connect to pool server with SSL/TLS encryption: ", IsEnabled(conf.PoolUseTls))
glog.Info("[OPTION] Always keep miner connections even if pool disconnected: ", IsEnabled(conf.AlwaysKeepDownconn))
glog.Info("[OPTION] Disconnect if a miner lost its AsicBoost mid-way: ", IsEnabled(conf.DisconnectWhenLostAsicboost))
if len(conf.FixedWorkerName) > 0 {
glog.Info("[OPTION] Fixed worker name enabled, all worker name will be replaced to ", conf.FixedWorkerName, " on the server.")
}
if !conf.UseProxy && len(conf.Proxy) > 0 {
conf.Proxy = []string{}
glog.Info("[OPTION] Proxy disabled")
}
for i := range conf.Proxy {
if conf.Proxy[i] == "system" {
conf.Proxy[i] = GetProxyURLFromEnv()
}
}
if len(conf.Proxy) > 0 {
glog.Info("[OPTION] Connect to pool server with proxy ", conf.Proxy)
}
for i := range conf.Pools {
pool := &conf.Pools[i]
if conf.MultiUserMode {
// 如果启用多用户模式,删除矿池设置中的子账户名
pool.SubAccount = ""
glog.Info("add pool: ", pool.Host, ":", pool.Port, ", multi user mode")
} else {
glog.Info("add pool: ", pool.Host, ":", pool.Port, ", sub-account: ", pool.SubAccount)
}
}
}