1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-30 07:46:41 -04:00
v2fly/userset.go

73 lines
1.5 KiB
Go
Raw Normal View History

2015-09-07 17:48:19 -04:00
package core
import (
2015-09-14 12:19:17 -04:00
"time"
)
const (
updateIntervalSec = 10
cacheDurationSec = 120
)
2015-09-12 16:11:54 -04:00
type UserSet struct {
2015-09-14 12:19:17 -04:00
validUserIds []ID
userHashes map[string]int
}
type hashEntry struct {
hash string
timeSec int64
}
2015-09-12 16:11:54 -04:00
func NewUserSet() *UserSet {
vuSet := new(UserSet)
vuSet.validUserIds = make([]ID, 0, 16)
2015-09-14 12:19:17 -04:00
vuSet.userHashes = make(map[string]int)
go vuSet.updateUserHash(time.Tick(updateIntervalSec * time.Second))
return vuSet
}
2015-09-14 12:19:17 -04:00
func (us *UserSet) updateUserHash(tick <-chan time.Time) {
now := time.Now().UTC()
lastSec := now.Unix() - cacheDurationSec
hash2Remove := make(chan hashEntry, updateIntervalSec*2)
lastSec2Remove := now.Unix() + cacheDurationSec
for {
now := <-tick
nowSec := now.UTC().Unix()
remove2Sec := nowSec - cacheDurationSec
if remove2Sec > lastSec2Remove {
for lastSec2Remove+1 < remove2Sec {
entry := <-hash2Remove
lastSec2Remove = entry.timeSec
delete(us.userHashes, entry.hash)
}
}
for i := lastSec + 1; i <= nowSec; i++ {
for idx, id := range us.validUserIds {
idHash := id.TimeHash(i)
hash2Remove <- hashEntry{string(idHash), i}
us.userHashes[string(idHash)] = idx
}
}
}
}
2015-09-12 16:11:54 -04:00
func (us *UserSet) AddUser(user User) error {
id := user.Id
us.validUserIds = append(us.validUserIds, id)
return nil
}
2015-09-14 12:19:17 -04:00
func (us UserSet) IsValidUserId(userHash []byte) (*ID, bool) {
idIndex, found := us.userHashes[string(userHash)]
if found {
return &us.validUserIds[idIndex], true
}
return nil, false
2015-09-07 17:48:19 -04:00
}