完善
This commit is contained in:
parent
f18bbcd1e6
commit
a6049ff78a
77
cache/map.go
vendored
77
cache/map.go
vendored
|
@ -4,13 +4,13 @@ import (
|
||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"github/fthvgb1/wp-go/safety"
|
||||||
"sync"
|
"sync"
|
||||||
"sync/atomic"
|
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
type MapCache[K comparable, V any] struct {
|
type MapCache[K comparable, V any] struct {
|
||||||
data atomic.Value
|
data safety.Map[K, mapCacheStruct[V]]
|
||||||
mutex *sync.Mutex
|
mutex *sync.Mutex
|
||||||
cacheFunc func(...any) (V, error)
|
cacheFunc func(...any) (V, error)
|
||||||
batchCacheFn func(...any) (map[K]V, error)
|
batchCacheFn func(...any) (map[K]V, error)
|
||||||
|
@ -18,9 +18,7 @@ type MapCache[K comparable, V any] struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewMapCache[K comparable, V any](expireTime time.Duration) *MapCache[K, V] {
|
func NewMapCache[K comparable, V any](expireTime time.Duration) *MapCache[K, V] {
|
||||||
var v atomic.Value
|
return &MapCache[K, V]{expireTime: expireTime}
|
||||||
v.Store(make(map[K]mapCacheStruct[V]))
|
|
||||||
return &MapCache[K, V]{expireTime: expireTime, data: v}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type mapCacheStruct[T any] struct {
|
type mapCacheStruct[T any] struct {
|
||||||
|
@ -34,7 +32,7 @@ func (m *MapCache[K, V]) SetCacheFunc(fn func(...any) (V, error)) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *MapCache[K, V]) GetSetTime(k K) (t time.Time) {
|
func (m *MapCache[K, V]) GetSetTime(k K) (t time.Time) {
|
||||||
r, ok := m.data.Load().(map[K]mapCacheStruct[V])[k]
|
r, ok := m.data.Load(k)
|
||||||
if ok {
|
if ok {
|
||||||
t = r.setTime
|
t = r.setTime
|
||||||
}
|
}
|
||||||
|
@ -61,23 +59,19 @@ func (m *MapCache[K, V]) setCacheFn(fn func(...any) (map[K]V, error)) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewMapCacheByFn[K comparable, V any](fn func(...any) (V, error), expireTime time.Duration) *MapCache[K, V] {
|
func NewMapCacheByFn[K comparable, V any](fn func(...any) (V, error), expireTime time.Duration) *MapCache[K, V] {
|
||||||
var d atomic.Value
|
|
||||||
d.Store(make(map[K]mapCacheStruct[V]))
|
|
||||||
return &MapCache[K, V]{
|
return &MapCache[K, V]{
|
||||||
mutex: &sync.Mutex{},
|
mutex: &sync.Mutex{},
|
||||||
cacheFunc: fn,
|
cacheFunc: fn,
|
||||||
expireTime: expireTime,
|
expireTime: expireTime,
|
||||||
data: d,
|
data: safety.NewMap[K, mapCacheStruct[V]](),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
func NewMapCacheByBatchFn[K comparable, V any](fn func(...any) (map[K]V, error), expireTime time.Duration) *MapCache[K, V] {
|
func NewMapCacheByBatchFn[K comparable, V any](fn func(...any) (map[K]V, error), expireTime time.Duration) *MapCache[K, V] {
|
||||||
var d atomic.Value
|
|
||||||
d.Store(make(map[K]mapCacheStruct[V]))
|
|
||||||
r := &MapCache[K, V]{
|
r := &MapCache[K, V]{
|
||||||
mutex: &sync.Mutex{},
|
mutex: &sync.Mutex{},
|
||||||
batchCacheFn: fn,
|
batchCacheFn: fn,
|
||||||
expireTime: expireTime,
|
expireTime: expireTime,
|
||||||
data: d,
|
data: safety.NewMap[K, mapCacheStruct[V]](),
|
||||||
}
|
}
|
||||||
r.setCacheFn(fn)
|
r.setCacheFn(fn)
|
||||||
return r
|
return r
|
||||||
|
@ -86,13 +80,16 @@ func NewMapCacheByBatchFn[K comparable, V any](fn func(...any) (map[K]V, error),
|
||||||
func (m *MapCache[K, V]) Flush() {
|
func (m *MapCache[K, V]) Flush() {
|
||||||
m.mutex.Lock()
|
m.mutex.Lock()
|
||||||
defer m.mutex.Unlock()
|
defer m.mutex.Unlock()
|
||||||
var d atomic.Value
|
m.data = safety.NewMap[K, mapCacheStruct[V]]()
|
||||||
d.Store(make(map[K]mapCacheStruct[V]))
|
|
||||||
m.data = d
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *MapCache[K, V]) Get(k K) V {
|
func (m *MapCache[K, V]) Get(k K) V {
|
||||||
return m.data.Load().(map[K]mapCacheStruct[V])[k].data
|
r, ok := m.data.Load(k)
|
||||||
|
if ok {
|
||||||
|
return r.data
|
||||||
|
}
|
||||||
|
var rr V
|
||||||
|
return rr
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *MapCache[K, V]) Set(k K, v V) {
|
func (m *MapCache[K, V]) Set(k K, v V) {
|
||||||
|
@ -114,26 +111,24 @@ func (m *MapCache[K, V]) SetByBatchFn(params ...any) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *MapCache[K, V]) set(k K, v V) {
|
func (m *MapCache[K, V]) set(k K, v V) {
|
||||||
d, ok := m.data.Load().(map[K]mapCacheStruct[V])
|
data, ok := m.data.Load(k)
|
||||||
t := time.Now()
|
t := time.Now()
|
||||||
data := d[k]
|
|
||||||
if !ok {
|
if !ok {
|
||||||
data.data = v
|
data.data = v
|
||||||
data.setTime = t
|
data.setTime = t
|
||||||
data.incr++
|
data.incr++
|
||||||
|
m.data.Store(k, data)
|
||||||
} else {
|
} else {
|
||||||
data = mapCacheStruct[V]{
|
m.data.Store(k, mapCacheStruct[V]{
|
||||||
data: v,
|
data: v,
|
||||||
setTime: t,
|
setTime: t,
|
||||||
}
|
})
|
||||||
|
|
||||||
}
|
}
|
||||||
d[k] = data
|
|
||||||
m.data.Store(d)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *MapCache[K, V]) GetCache(c context.Context, key K, timeout time.Duration, params ...any) (V, error) {
|
func (m *MapCache[K, V]) GetCache(c context.Context, key K, timeout time.Duration, params ...any) (V, error) {
|
||||||
d := m.data.Load().(map[K]mapCacheStruct[V])
|
data, ok := m.data.Load(key)
|
||||||
data, ok := d[key]
|
|
||||||
if !ok {
|
if !ok {
|
||||||
data = mapCacheStruct[V]{}
|
data = mapCacheStruct[V]{}
|
||||||
}
|
}
|
||||||
|
@ -144,12 +139,11 @@ func (m *MapCache[K, V]) GetCache(c context.Context, key K, timeout time.Duratio
|
||||||
if !ok || (ok && m.expireTime >= 0 && expired) {
|
if !ok || (ok && m.expireTime >= 0 && expired) {
|
||||||
t := data.incr
|
t := data.incr
|
||||||
call := func() {
|
call := func() {
|
||||||
tmp, o := m.data.Load().(map[K]mapCacheStruct[V])[key]
|
|
||||||
if o && tmp.incr > t {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
m.mutex.Lock()
|
m.mutex.Lock()
|
||||||
defer m.mutex.Unlock()
|
defer m.mutex.Unlock()
|
||||||
|
if data.incr > t {
|
||||||
|
return
|
||||||
|
}
|
||||||
r, er := m.cacheFunc(params...)
|
r, er := m.cacheFunc(params...)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
err = er
|
err = er
|
||||||
|
@ -157,9 +151,8 @@ func (m *MapCache[K, V]) GetCache(c context.Context, key K, timeout time.Duratio
|
||||||
}
|
}
|
||||||
data.setTime = time.Now()
|
data.setTime = time.Now()
|
||||||
data.data = r
|
data.data = r
|
||||||
|
m.data.Store(key, data)
|
||||||
data.incr++
|
data.incr++
|
||||||
d[key] = data
|
|
||||||
m.data.Store(d)
|
|
||||||
}
|
}
|
||||||
if timeout > 0 {
|
if timeout > 0 {
|
||||||
ctx, cancel := context.WithTimeout(c, timeout)
|
ctx, cancel := context.WithTimeout(c, timeout)
|
||||||
|
@ -187,9 +180,8 @@ func (m *MapCache[K, V]) GetCacheBatch(c context.Context, key []K, timeout time.
|
||||||
var res []V
|
var res []V
|
||||||
t := 0
|
t := 0
|
||||||
now := time.Duration(time.Now().UnixNano())
|
now := time.Duration(time.Now().UnixNano())
|
||||||
data := m.data.Load().(map[K]mapCacheStruct[V])
|
|
||||||
for _, k := range key {
|
for _, k := range key {
|
||||||
d, ok := data[k]
|
d, ok := m.data.Load(k)
|
||||||
if !ok {
|
if !ok {
|
||||||
needFlush = append(needFlush, k)
|
needFlush = append(needFlush, k)
|
||||||
continue
|
continue
|
||||||
|
@ -204,17 +196,17 @@ func (m *MapCache[K, V]) GetCacheBatch(c context.Context, key []K, timeout time.
|
||||||
//todo 这里应该判断下取出的值是否为零值,不过怎么操作呢?
|
//todo 这里应该判断下取出的值是否为零值,不过怎么操作呢?
|
||||||
if len(needFlush) > 0 {
|
if len(needFlush) > 0 {
|
||||||
call := func() {
|
call := func() {
|
||||||
|
m.mutex.Lock()
|
||||||
|
defer m.mutex.Unlock()
|
||||||
tt := 0
|
tt := 0
|
||||||
for _, dd := range needFlush {
|
for _, dd := range needFlush {
|
||||||
if ddd, ok := data[dd]; ok {
|
if ddd, ok := m.data.Load(dd); ok {
|
||||||
tt = tt + ddd.incr
|
tt = tt + ddd.incr
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if tt > t {
|
if tt > t {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
m.mutex.Lock()
|
|
||||||
defer m.mutex.Unlock()
|
|
||||||
r, er := m.batchCacheFn(params...)
|
r, er := m.batchCacheFn(params...)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
err = er
|
err = er
|
||||||
|
@ -242,8 +234,10 @@ func (m *MapCache[K, V]) GetCacheBatch(c context.Context, key []K, timeout time.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for _, k := range key {
|
for _, k := range key {
|
||||||
d := data[k]
|
d, ok := m.data.Load(k)
|
||||||
res = append(res, d.data)
|
if ok {
|
||||||
|
res = append(res, d.data)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return res, err
|
return res, err
|
||||||
}
|
}
|
||||||
|
@ -252,11 +246,10 @@ func (m *MapCache[K, V]) ClearExpired() {
|
||||||
now := time.Duration(time.Now().UnixNano())
|
now := time.Duration(time.Now().UnixNano())
|
||||||
m.mutex.Lock()
|
m.mutex.Lock()
|
||||||
defer m.mutex.Unlock()
|
defer m.mutex.Unlock()
|
||||||
data := m.data.Load().(map[K]mapCacheStruct[V])
|
m.data.Range(func(k K, v mapCacheStruct[V]) bool {
|
||||||
for k, v := range data {
|
|
||||||
if now > time.Duration(v.setTime.UnixNano())+m.expireTime {
|
if now > time.Duration(v.setTime.UnixNano())+m.expireTime {
|
||||||
delete(data, k)
|
m.data.Delete(k)
|
||||||
}
|
}
|
||||||
}
|
return true
|
||||||
m.data.Store(data)
|
})
|
||||||
}
|
}
|
||||||
|
|
50
cache/slice.go
vendored
50
cache/slice.go
vendored
|
@ -4,11 +4,16 @@ import (
|
||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"github/fthvgb1/wp-go/safety"
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SliceCache[T any] struct {
|
type SliceCache[T any] struct {
|
||||||
|
v safety.Var[slice[T]]
|
||||||
|
}
|
||||||
|
|
||||||
|
type slice[T any] struct {
|
||||||
data []T
|
data []T
|
||||||
mutex *sync.Mutex
|
mutex *sync.Mutex
|
||||||
setCacheFunc func(...any) ([]T, error)
|
setCacheFunc func(...any) ([]T, error)
|
||||||
|
@ -18,45 +23,52 @@ type SliceCache[T any] struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *SliceCache[T]) SetTime() time.Time {
|
func (c *SliceCache[T]) SetTime() time.Time {
|
||||||
return c.setTime
|
|
||||||
|
return c.v.Load().setTime
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewSliceCache[T any](fun func(...any) ([]T, error), duration time.Duration) *SliceCache[T] {
|
func NewSliceCache[T any](fun func(...any) ([]T, error), duration time.Duration) *SliceCache[T] {
|
||||||
return &SliceCache[T]{
|
return &SliceCache[T]{
|
||||||
mutex: &sync.Mutex{},
|
v: safety.NewVar(slice[T]{
|
||||||
setCacheFunc: fun,
|
mutex: &sync.Mutex{},
|
||||||
expireTime: duration,
|
setCacheFunc: fun,
|
||||||
|
expireTime: duration,
|
||||||
|
}),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *SliceCache[T]) FlushCache() {
|
func (c *SliceCache[T]) FlushCache() {
|
||||||
c.mutex.Lock()
|
mu := c.v.Load().mutex
|
||||||
defer c.mutex.Unlock()
|
mu.Lock()
|
||||||
c.data = nil
|
defer mu.Unlock()
|
||||||
|
c.v.Delete()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *SliceCache[T]) GetCache(ctx context.Context, timeout time.Duration, params ...any) ([]T, error) {
|
func (c *SliceCache[T]) GetCache(ctx context.Context, timeout time.Duration, params ...any) ([]T, error) {
|
||||||
l := len(c.data)
|
v := c.v.Load()
|
||||||
data := c.data
|
l := len(v.data)
|
||||||
|
data := v.data
|
||||||
var err error
|
var err error
|
||||||
expired := time.Duration(c.setTime.UnixNano())+c.expireTime < time.Duration(time.Now().UnixNano())
|
expired := time.Duration(v.setTime.UnixNano())+v.expireTime < time.Duration(time.Now().UnixNano())
|
||||||
if l < 1 || (l > 0 && c.expireTime >= 0 && expired) {
|
if l < 1 || (l > 0 && v.expireTime >= 0 && expired) {
|
||||||
t := c.incr
|
t := v.incr
|
||||||
call := func() {
|
call := func() {
|
||||||
c.mutex.Lock()
|
v := c.v.Load()
|
||||||
defer c.mutex.Unlock()
|
v.mutex.Lock()
|
||||||
if c.incr > t {
|
defer v.mutex.Unlock()
|
||||||
|
if v.incr > t {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
r, er := c.setCacheFunc(params...)
|
r, er := v.setCacheFunc(params...)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
err = er
|
err = er
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
c.setTime = time.Now()
|
v.setTime = time.Now()
|
||||||
c.data = r
|
v.data = r
|
||||||
data = r
|
data = r
|
||||||
c.incr++
|
v.incr++
|
||||||
|
c.v.Store(v)
|
||||||
}
|
}
|
||||||
if timeout > 0 {
|
if timeout > 0 {
|
||||||
ctx, cancel := context.WithTimeout(ctx, timeout)
|
ctx, cancel := context.WithTimeout(ctx, timeout)
|
||||||
|
|
|
@ -2,6 +2,7 @@ package middleware
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
|
"github/fthvgb1/wp-go/helper"
|
||||||
"net/http"
|
"net/http"
|
||||||
"strings"
|
"strings"
|
||||||
"sync/atomic"
|
"sync/atomic"
|
||||||
|
@ -23,18 +24,20 @@ func FlowLimit(maxRequestSleepNum, maxRequestNum int64, sleepTime []time.Duratio
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
atomic.AddInt64(&flow, 1)
|
n := atomic.LoadInt64(&flow)
|
||||||
defer func() {
|
if n >= maxRequestSleepNum && n <= maxRequestNum {
|
||||||
atomic.AddInt64(&flow, -1)
|
t := helper.RandNum(sleepTime[0], sleepTime[1])
|
||||||
}()
|
time.Sleep(t)
|
||||||
if flow >= maxRequestSleepNum && flow <= maxRequestNum {
|
} else if n > maxRequestNum {
|
||||||
//t := helper.RandNum(sleepTime[0], sleepTime[1])
|
|
||||||
//time.Sleep(t)
|
|
||||||
} else if flow > maxRequestNum {
|
|
||||||
c.String(http.StatusForbidden, "请求太多了,服务器君表示压力山大==!, 请稍后访问")
|
c.String(http.StatusForbidden, "请求太多了,服务器君表示压力山大==!, 请稍后访问")
|
||||||
c.Abort()
|
c.Abort()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
atomic.AddInt64(&flow, 1)
|
||||||
|
defer func() {
|
||||||
|
atomic.AddInt64(&flow, -1)
|
||||||
|
}()
|
||||||
|
|
||||||
c.Next()
|
c.Next()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,14 +8,14 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
type IpLimitMap struct {
|
type IpLimitMap struct {
|
||||||
mux *sync.Mutex
|
mux *sync.RWMutex
|
||||||
m map[string]*int64
|
m map[string]*int64
|
||||||
limitNum int64
|
limitNum int64
|
||||||
}
|
}
|
||||||
|
|
||||||
func IpLimit(num int64) func(ctx *gin.Context) {
|
func IpLimit(num int64) func(ctx *gin.Context) {
|
||||||
m := IpLimitMap{
|
m := IpLimitMap{
|
||||||
mux: &sync.Mutex{},
|
mux: &sync.RWMutex{},
|
||||||
m: make(map[string]*int64),
|
m: make(map[string]*int64),
|
||||||
limitNum: num,
|
limitNum: num,
|
||||||
}
|
}
|
||||||
|
@ -23,31 +23,35 @@ func IpLimit(num int64) func(ctx *gin.Context) {
|
||||||
return func(c *gin.Context) {
|
return func(c *gin.Context) {
|
||||||
ip := c.ClientIP()
|
ip := c.ClientIP()
|
||||||
s := false
|
s := false
|
||||||
|
m.mux.RLock()
|
||||||
|
i, ok := m.m[ip]
|
||||||
|
m.mux.RUnlock()
|
||||||
defer func() {
|
defer func() {
|
||||||
i, ok := m.m[ip]
|
ii := atomic.LoadInt64(i)
|
||||||
if ok && s && *i > 0 {
|
if s && ii > 0 {
|
||||||
//time.Sleep(time.Second * 3)
|
|
||||||
atomic.AddInt64(i, -1)
|
atomic.AddInt64(i, -1)
|
||||||
if *i == 0 {
|
if atomic.LoadInt64(i) == 0 {
|
||||||
m.mux.Lock()
|
m.mux.Lock()
|
||||||
delete(m.m, ip)
|
delete(m.m, ip)
|
||||||
m.mux.Unlock()
|
m.mux.Unlock()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
i, ok := m.m[ip]
|
|
||||||
if !ok {
|
if !ok {
|
||||||
m.mux.Lock()
|
m.mux.Lock()
|
||||||
i = new(int64)
|
i = new(int64)
|
||||||
m.m[ip] = i
|
m.m[ip] = i
|
||||||
m.mux.Unlock()
|
m.mux.Unlock()
|
||||||
}
|
}
|
||||||
if m.limitNum > 0 && *i >= m.limitNum {
|
|
||||||
|
if m.limitNum > 0 && atomic.LoadInt64(i) >= m.limitNum {
|
||||||
c.Status(http.StatusForbidden)
|
c.Status(http.StatusForbidden)
|
||||||
c.Abort()
|
c.Abort()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
s = true
|
|
||||||
atomic.AddInt64(i, 1)
|
atomic.AddInt64(i, 1)
|
||||||
|
s = true
|
||||||
|
c.Next()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
15
middleware/searchlimit.go
Normal file
15
middleware/searchlimit.go
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
package middleware
|
||||||
|
|
||||||
|
import "github.com/gin-gonic/gin"
|
||||||
|
|
||||||
|
func SearchLimit(num int64) func(ctx *gin.Context) {
|
||||||
|
fn := IpLimit(num)
|
||||||
|
return func(c *gin.Context) {
|
||||||
|
if "/" == c.FullPath() && c.Query("s") != "" {
|
||||||
|
fn(c)
|
||||||
|
} else {
|
||||||
|
c.Next()
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
|
@ -39,8 +39,8 @@ func SetupRouter() *gin.Engine {
|
||||||
r.Use(
|
r.Use(
|
||||||
middleware.ValidateServerNames(),
|
middleware.ValidateServerNames(),
|
||||||
gin.Logger(),
|
gin.Logger(),
|
||||||
//middleware.FlowLimit(vars.Conf.MaxRequestSleepNum, vars.Conf.MaxRequestNum, vars.Conf.SingleIpSearchNum, vars.Conf.SleepTime),
|
|
||||||
gin.Recovery(),
|
gin.Recovery(),
|
||||||
|
middleware.FlowLimit(vars.Conf.MaxRequestSleepNum, vars.Conf.MaxRequestNum, vars.Conf.SleepTime),
|
||||||
middleware.SetStaticFileCache,
|
middleware.SetStaticFileCache,
|
||||||
)
|
)
|
||||||
//gzip 因为一般会用nginx做反代时自动使用gzip,所以go这边本身可以不用
|
//gzip 因为一般会用nginx做反代时自动使用gzip,所以go这边本身可以不用
|
||||||
|
@ -58,7 +58,7 @@ func SetupRouter() *gin.Engine {
|
||||||
}))
|
}))
|
||||||
store := cookie.NewStore([]byte("secret"))
|
store := cookie.NewStore([]byte("secret"))
|
||||||
r.Use(sessions.Sessions("go-wp", store))
|
r.Use(sessions.Sessions("go-wp", store))
|
||||||
r.GET("/", actions.Index)
|
r.GET("/", middleware.SearchLimit(vars.Conf.SingleIpSearchNum), actions.Index)
|
||||||
r.GET("/page/:page", actions.Index)
|
r.GET("/page/:page", actions.Index)
|
||||||
r.GET("/p/category/:category", actions.Index)
|
r.GET("/p/category/:category", actions.Index)
|
||||||
r.GET("/p/category/:category/page/:page", actions.Index)
|
r.GET("/p/category/:category/page/:page", actions.Index)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package safeMap
|
package safety
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"sync"
|
"sync"
|
||||||
|
@ -59,9 +59,8 @@ type Map[K comparable, V any] struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewMap[K comparable, V any]() Map[K, V] {
|
func NewMap[K comparable, V any]() Map[K, V] {
|
||||||
var r V
|
|
||||||
return Map[K, V]{
|
return Map[K, V]{
|
||||||
expunged: unsafe.Pointer(&r),
|
expunged: unsafe.Pointer(new(any)),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
37
safety/vars.go
Normal file
37
safety/vars.go
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
package safety
|
||||||
|
|
||||||
|
import (
|
||||||
|
"sync/atomic"
|
||||||
|
"unsafe"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Var[T any] struct {
|
||||||
|
val T
|
||||||
|
p unsafe.Pointer
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewVar[T any](val T) Var[T] {
|
||||||
|
return Var[T]{val: val, p: unsafe.Pointer(&val)}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (r *Var[T]) Load() T {
|
||||||
|
return *(*T)(atomic.LoadPointer(&r.p))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (r *Var[T]) Delete() {
|
||||||
|
for {
|
||||||
|
px := atomic.LoadPointer(&r.p)
|
||||||
|
if atomic.CompareAndSwapPointer(&r.p, px, nil) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (r *Var[T]) Store(v T) {
|
||||||
|
for {
|
||||||
|
px := atomic.LoadPointer(&r.p)
|
||||||
|
if atomic.CompareAndSwapPointer(&r.p, px, unsafe.Pointer(&v)) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
41
safety/vars_test.go
Normal file
41
safety/vars_test.go
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
package safety
|
||||||
|
|
||||||
|
import (
|
||||||
|
"reflect"
|
||||||
|
"testing"
|
||||||
|
"unsafe"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestVar_Load(t *testing.T) {
|
||||||
|
type fields struct {
|
||||||
|
val string
|
||||||
|
p unsafe.Pointer
|
||||||
|
}
|
||||||
|
s := ""
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
fields fields
|
||||||
|
want string
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "t1",
|
||||||
|
fields: fields{
|
||||||
|
val: s,
|
||||||
|
p: unsafe.Pointer(&s),
|
||||||
|
},
|
||||||
|
want: "sffs",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
for _, tt := range tests {
|
||||||
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
r := &Var[string]{
|
||||||
|
val: tt.fields.val,
|
||||||
|
p: tt.fields.p,
|
||||||
|
}
|
||||||
|
r.Store(tt.want)
|
||||||
|
if got := r.Load(); !reflect.DeepEqual(got, tt.want) {
|
||||||
|
t.Errorf("Load() = %v, want %v", got, tt.want)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user