-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.go
176 lines (133 loc) · 4.18 KB
/
App.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
package main
import (
"M-socket/Configs"
"dsfd-socket/Telega"
"fmt"
"github.com/jmoiron/sqlx"
"log"
"sync"
"time"
)
type Application struct {
LockerTerminals sync.RWMutex
LockerPrices sync.RWMutex
LockerMath sync.RWMutex
PricesOrder []string
mysql *sqlx.DB
Terminals map[string]*TerminalStatus
Prices map[string]map[string]*PriceTerminal
Math map[string]*Expression
}
func NewApplication() *Application {
app := &Application{
Terminals: make(map[string]*TerminalStatus),
Prices: make(map[string]map[string]*PriceTerminal),
Math: make(map[string]*Expression),
PricesOrder: []string{"JBl", "JHGJ", "JH", "KLJHK", "UIGj", "LKJN", "LKJ", "UYGJ", "KJHl"},
}
// Прикорячимся к БД
app.mysqlInit()
// Таймер проверки терминалов
app.timerTerminalChecker(Configs.TimerTerminalChecker)
// Таймер загрузки кастомных котировок пользователей
app.timerLoadExpressions(Configs.TimerLoadExpressions)
// Грузим выражения (кастомные котировки пользователей)
go app.loadExpressions()
log.Println("Started!")
return app
}
// GetMySQL Возвращает коннект к БД
func (a *Application) GetMySQL() *sqlx.DB {
return a.mysql
}
// SetTerminalAlive Выставляет терминал в живое состояние :)
func (a *Application) SetTerminalAlive(name string) {
a.LockerTerminals.Lock()
if terminal, ok := a.Terminals[name]; !ok {
newTerminal := &TerminalStatus{
Name: name,
Datetime: time.Now(),
}
a.Terminals[name] = newTerminal
log.Printf("Терминал %s подключился.", name)
Telega.Send(Configs.MyTelega, fmt.Sprintf("Терминал %s подключился.", name))
} else {
terminal.Datetime = time.Now()
}
a.LockerTerminals.Unlock()
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Конектится к БД или шваркнется в панику
func (a *Application) mysqlInit() {
str := fmt.Sprintf("%s:%s@tcp(%s:%s)/%s",
Configs.MySQLUser,
Configs.MySQLPassword,
Configs.MySQLAddress,
Configs.MySQLPort,
Configs.MySQLBase,
)
db, err := sqlx.Connect("mysql", str)
if err != nil {
log.Fatalln("Нет коннекта к БД")
}
db.SetMaxOpenConns(25)
db.SetConnMaxLifetime(time.Second * 30)
a.mysql = db
log.Println("MySQL Connected")
}
// Таймер проверки терминалов
// Проверяем, шлет ли терминал котировки, если нет, сигналим в телеграм
func (a *Application) timerTerminalChecker(d time.Duration) {
time.AfterFunc(d, func() {
now := time.Now()
a.LockerTerminals.Lock()
for _, term := range a.Terminals {
if now.Sub(term.Datetime) > time.Minute*3 {
log.Printf("Терминал %s не работает", term.Name)
Telega.Send(Configs.MyTelega, fmt.Sprintf("Терминал %s не работает.", term.Name))
}
}
a.LockerTerminals.Unlock()
// Самовызов
a.timerTerminalChecker(d)
})
}
// Таймер загрузки выражений
func (a *Application) timerLoadExpressions(d time.Duration) {
time.AfterFunc(d, func() {
a.loadExpressions()
// Самовызов
a.timerLoadExpressions(d)
})
}
// Загрузка пользовательских выражений
func (a *Application) loadExpressions() {
res, err := App.GetMySQL().Queryx("SELECT seccodeOut, seccodeA, seccodeB, operation FROM `user_quotes`")
if err != nil {
log.Println(err.Error())
return
}
App.LockerMath.Lock()
App.Math = make(map[string]*Expression)
for res.Next() {
exp := &Expression{}
if err := res.StructScan(exp); err != nil {
log.Println("ROW INIT ERROR:", err.Error())
} else {
App.Math[exp.Out] = exp
}
}
App.LockerMath.Unlock()
}
// GetPrice Получение цены
func (a *Application) GetPrice(key string) *PriceTerminal {
a.LockerPrices.RLock()
for _, k := range a.PricesOrder {
if price, ok := a.Prices[k][key]; ok {
a.LockerPrices.RUnlock()
return price
}
}
a.LockerPrices.RUnlock()
return nil
}