This repository has been archived by the owner on Aug 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
ranking_load.go
201 lines (175 loc) · 5.26 KB
/
ranking_load.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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
package kartolafc
import (
"gopkg.in/mgo.v2"
"time"
"gopkg.in/mgo.v2/bson"
"log"
"sort"
"github.com/jhonata-menezes/kartolafc-backend/api"
)
type AtletaRanking struct {
AtletaId int `json:"atleta_id"`
}
type AtletasRanking struct {
Pontuacao float32
Atletas []AtletaRanking `bson:"atletas"`
TimeCompleto struct{
TimeId int
Assinante bool `json:"assinante" bson:"assinante"`
} `bson:"timecompleto"`
Mensagem string `bson:"mensagem"`
}
type SelectAtletasRanking struct {
Atletas int `bson:"atletas.atletaid" json:"atletas.atletaid"`
TimeId int `json:"timecompleto.timeid" bson:"timecompleto.timeid"`
Assinante int `json:"timecompleto.assinante" bson:"timecompleto.assinante"`
Mensagem int `bson:"mensagem"`
}
func getSelect() SelectAtletasRanking {
s := SelectAtletasRanking{}
s.Atletas = 1
s.TimeId = 1
s.Assinante = 1
s.Mensagem = 1
return s
}
type TimesRanking []AtletasRanking
type TimeRankingFormated struct {
TimeId int `json:"time_id"`
Pontuacao float32 `json:"pontuacao"`
Assinante bool `json:"assinante" bson:"assinante"`
Atletas []AtletaRanking `bson:"atletas" json:"atletas,omitempty"`
}
// para melhor apresentacao no endpoint
type TimesRankingFormated []TimeRankingFormated
// para apresentar a posicao atraves do ID/Slug
type TimeIdRanking struct {
TimeId int `json:"time_id"`
Pontuacao float32 `json:"pontuacao"`
Posicao int `json:"posicao"`
Assinante bool `json:"assinante" bson:"assinante"`
}
var ChannelAddTimeRanking = make(chan api.TimeCompleto, 1000)
func (a TimesRankingFormated) Len() int {
return len(a)
}
func (a TimesRankingFormated) Swap(i, j int) {
a[i], a[j] = a[j], a[i]
}
func (a TimesRankingFormated) Less(i, j int) bool {
a[i].Pontuacao = SomaPontuacao(a[i])
a[j].Pontuacao = SomaPontuacao(a[j])
return a[i].Pontuacao > a[j].Pontuacao
}
func SomaPontuacao(atletasTime TimeRankingFormated) float32 {
var soma float32
for _, a := range atletasTime.Atletas {
// se o jogador nao existe no map pode retornar um erro
if _, ok := CachePontuados.Atletas[a.AtletaId]; ok {
soma+= CachePontuados.Atletas[a.AtletaId].Pontuacao
}
}
return soma
}
func LoadInMemory(collection *mgo.Collection) {
time.Sleep(5 * time.Second)
// se houver request enquanto faz o load do db gerar: index out of range
CacheRankingTimeIdPontuados = make([]TimeIdRanking, 15000000)
inicio := time.Now()
var atl TimesRanking
// selecionando apenas as fields desejadas
err := collection.Find(bson.M{}).Select(getSelect()).All(&atl)
if err != nil {
panic(err)
}
log.Println("pegar todos times da collection", time.Since(inicio))
// formatando os dados e criando array de tamamnho especifico
atletasFormatado := make([]TimeRankingFormated, len(atl))
for k, a := range atl {
// time que nao tem escalacao, não precisa ser ordenado
if a.Mensagem == "Este time ainda não foi escalado na temporada." || len(a.Atletas) == 0 {
continue
}
timeTemp := TimeRankingFormated{}
timeTemp.TimeId = a.TimeCompleto.TimeId
timeTemp.Pontuacao = a.Pontuacao
timeTemp.Atletas = a.Atletas
timeTemp.Assinante = a.TimeCompleto.Assinante
atletasFormatado[k] = timeTemp
}
log.Println("atualizado array de times com a posicao no indice")
go SortPontuados(atletasFormatado)
}
func SortPontuados(times TimesRankingFormated) {
// cache local para comparar, se houve mudanca na pontuacao entao e efetuado sort, assim economiza processamento
CacheLocalPontuados := CachePontuados
timesPointer := ×
go func(){
for t := range ChannelAddTimeRanking {
atlRanking := []AtletaRanking{}
for _, a := range t.Atletas {
atlRanking = append(atlRanking, AtletaRanking{a.AtletaId})
}
newT := TimeRankingFormated{}
newT.TimeId = t.TimeCompleto.TimeId
newT.Atletas = atlRanking
newT.Assinante = t.TimeCompleto.Assinante
*timesPointer = append(times, newT)
}
}()
for {
inicio := time.Now()
sort.Sort(times)
CacheRankingPontuados = times
log.Println("sort", time.Since(inicio), "contando times no ranking", len(times))
// outro array de times, porem a chave e o time_id
for k, t := range times {
timeTemp := TimeIdRanking{}
timeTemp.Pontuacao = t.Pontuacao
timeTemp.Posicao = (k+1)
timeTemp.TimeId = t.TimeId
timeTemp.Assinante = t.Assinante
CacheRankingTimeIdPontuados[t.TimeId] = timeTemp
}
log.Println("atualizado array de times com time_id no indice")
melhores()
//aguarda 1 minuto para fazer o sort novamente
for PontuadosSaoIguais(CacheLocalPontuados, CachePontuados) {
time.Sleep(60 * time.Second)
}
// atualiza o cache local
CacheLocalPontuados = CachePontuados
}
}
func melhores() {
melhores := make([]TimeRankingFormated, 100)
if len(CacheRankingPontuados) >= 100 {
for k, temp := range CacheRankingPontuados[:100] {
melhores[k] = temp
melhores[k].Atletas = nil
}
CacheRankingPontuadosMelhores = melhores
melhores = make([]TimeRankingFormated, 100)
qtd := 0
for _, temp := range CacheRankingPontuados {
if temp.Assinante == true {
melhores[qtd] = temp
melhores[qtd].Atletas = nil
qtd++
}
if qtd >= 99 {
break
}
}
CacheRankingPontuadosMelhoresPro = melhores
}
}
func PontuadosSaoIguais(old, new api.Pontuados) bool {
for atletaId, desc := range new.Atletas {
if (old.Atletas[atletaId].Pontuacao == desc.Pontuacao) {
continue
}
return false
}
return true
}