2015-09-19 18:11:14 -04:00
|
|
|
package user
|
2015-09-07 17:48:19 -04:00
|
|
|
|
2015-09-08 07:18:55 -04:00
|
|
|
import (
|
2015-09-14 12:19:17 -04:00
|
|
|
"time"
|
2015-09-16 15:13:13 -04:00
|
|
|
|
2015-09-23 12:19:05 -04:00
|
|
|
"github.com/v2ray/v2ray-core/common/collect"
|
2015-09-19 18:50:21 -04:00
|
|
|
"github.com/v2ray/v2ray-core/common/log"
|
2015-09-14 12:19:17 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
updateIntervalSec = 10
|
|
|
|
cacheDurationSec = 120
|
2015-09-08 07:18:55 -04:00
|
|
|
)
|
|
|
|
|
2015-09-14 13:03:31 -04:00
|
|
|
type UserSet interface {
|
|
|
|
AddUser(user User) error
|
2015-09-14 19:32:55 -04:00
|
|
|
GetUser(timeHash []byte) (*ID, int64, bool)
|
2015-09-14 13:03:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type TimedUserSet struct {
|
2015-09-14 12:19:17 -04:00
|
|
|
validUserIds []ID
|
2015-09-23 12:19:05 -04:00
|
|
|
userHash *collect.TimedStringMap
|
2015-09-14 19:32:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type indexTimePair struct {
|
2015-09-15 18:06:22 -04:00
|
|
|
index int
|
|
|
|
timeSec int64
|
2015-09-14 12:19:17 -04:00
|
|
|
}
|
|
|
|
|
2015-09-14 13:03:31 -04:00
|
|
|
func NewTimedUserSet() UserSet {
|
2015-09-23 12:19:05 -04:00
|
|
|
tus := &TimedUserSet{
|
|
|
|
validUserIds: make([]ID, 0, 16),
|
|
|
|
userHash: collect.NewTimedStringMap(updateIntervalSec),
|
|
|
|
}
|
|
|
|
go tus.updateUserHash(time.Tick(updateIntervalSec * time.Second))
|
|
|
|
return tus
|
2015-09-08 07:18:55 -04:00
|
|
|
}
|
|
|
|
|
2015-09-19 15:56:00 -04:00
|
|
|
func (us *TimedUserSet) generateNewHashes(lastSec, nowSec int64, idx int, id ID) {
|
2015-09-19 17:54:36 -04:00
|
|
|
idHash := NewTimeHash(HMACHash{})
|
2015-09-19 15:56:00 -04:00
|
|
|
for lastSec < nowSec+cacheDurationSec {
|
|
|
|
idHash := idHash.Hash(id.Bytes, lastSec)
|
|
|
|
log.Debug("Valid User Hash: %v", idHash)
|
2015-09-23 12:19:05 -04:00
|
|
|
us.userHash.Set(string(idHash), indexTimePair{idx, lastSec}, lastSec+2*cacheDurationSec)
|
2015-09-19 15:56:00 -04:00
|
|
|
lastSec++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-14 13:03:31 -04:00
|
|
|
func (us *TimedUserSet) updateUserHash(tick <-chan time.Time) {
|
2015-09-14 12:19:17 -04:00
|
|
|
now := time.Now().UTC()
|
2015-09-19 15:56:00 -04:00
|
|
|
lastSec := now.Unix()
|
|
|
|
|
2015-09-14 12:19:17 -04:00
|
|
|
for {
|
|
|
|
now := <-tick
|
|
|
|
nowSec := now.UTC().Unix()
|
2015-09-19 15:56:00 -04:00
|
|
|
for idx, id := range us.validUserIds {
|
|
|
|
us.generateNewHashes(lastSec, nowSec, idx, id)
|
2015-09-15 18:06:22 -04:00
|
|
|
}
|
2015-09-23 12:19:05 -04:00
|
|
|
lastSec = nowSec
|
2015-09-14 12:19:17 -04:00
|
|
|
}
|
2015-09-08 07:18:55 -04:00
|
|
|
}
|
|
|
|
|
2015-09-14 13:03:31 -04:00
|
|
|
func (us *TimedUserSet) AddUser(user User) error {
|
2015-09-08 07:18:55 -04:00
|
|
|
id := user.Id
|
2015-09-19 15:56:00 -04:00
|
|
|
idx := len(us.validUserIds)
|
2015-09-08 07:18:55 -04:00
|
|
|
us.validUserIds = append(us.validUserIds, id)
|
2015-09-19 15:56:00 -04:00
|
|
|
|
|
|
|
nowSec := time.Now().UTC().Unix()
|
|
|
|
lastSec := nowSec - cacheDurationSec
|
|
|
|
us.generateNewHashes(lastSec, nowSec, idx, id)
|
|
|
|
|
2015-09-08 07:18:55 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-09-14 19:32:55 -04:00
|
|
|
func (us TimedUserSet) GetUser(userHash []byte) (*ID, int64, bool) {
|
2015-09-23 12:19:05 -04:00
|
|
|
rawPair, found := us.userHash.Get(string(userHash))
|
2015-09-08 07:18:55 -04:00
|
|
|
if found {
|
2015-09-23 12:19:05 -04:00
|
|
|
pair := rawPair.(indexTimePair)
|
2015-09-14 19:32:55 -04:00
|
|
|
return &us.validUserIds[pair.index], pair.timeSec, true
|
2015-09-08 07:18:55 -04:00
|
|
|
}
|
2015-09-14 19:32:55 -04:00
|
|
|
return nil, 0, false
|
2015-09-07 17:48:19 -04:00
|
|
|
}
|