generated from cloudwego/.github
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsession.go
172 lines (151 loc) · 4.12 KB
/
session.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
// Copyright 2023 CloudWeGo Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package localsession
import (
"context"
"sync"
"sync/atomic"
"time"
)
// Session represents a local storage for one session
type Session interface {
// IsValid tells if the session is valid at present
IsValid() bool
// Get returns value for specific key
Get(key interface{}) interface{}
// WithValue sets value for specific key,and return newly effective session
WithValue(key interface{}, val interface{}) Session
}
// SessionCtx implements Session with context,
// which means children session WON'T affect parent and sibling sessions
type SessionCtx struct {
enabled *atomic.Value
storage context.Context
}
// NewSessionCtx creates and enables a SessionCtx
func NewSessionCtx(ctx context.Context) SessionCtx {
var enabled atomic.Value
enabled.Store(true)
return SessionCtx{
enabled: &enabled,
storage: ctx,
}
}
// NewSessionCtx creates and enables a SessionCtx,
// and disable the session after timeout
func NewSessionCtxWithTimeout(ctx context.Context, timeout time.Duration) SessionCtx {
ret := NewSessionCtx(ctx)
go func() {
<-time.NewTimer(timeout).C
ret.Disable()
}()
return ret
}
// Disable ends the session
func (self SessionCtx) Disable() {
self.enabled.Store(false)
}
// Export exports underlying context
func (self SessionCtx) Export() context.Context {
return self.storage
}
// IsValid tells if the session is valid at present
func (self SessionCtx) IsValid() bool {
return self.enabled.Load().(bool)
}
// Get value for specific key
func (self SessionCtx) Get(key interface{}) interface{} {
return self.storage.Value(key)
}
// Set value for specific key,and return newly effective session
func (self SessionCtx) WithValue(key interface{}, val interface{}) Session {
ctx := context.WithValue(self.storage, key, val)
return SessionCtx{
enabled: self.enabled,
storage: ctx,
}
}
// NewSessionMap implements Session with map,
// which means children session WILL affect parent session and sibling sessions
type SessionMap struct {
enabled *atomic.Value
storage map[interface{}]interface{}
lock sync.RWMutex
}
// NewSessionMap creates and enables a SessionMap
func NewSessionMap(m map[interface{}]interface{}) *SessionMap {
var enabled atomic.Value
enabled.Store(true)
return &SessionMap{
enabled: &enabled,
storage: m,
}
}
// NewSessionCtx creates and enables a SessionCtx,
// and disable the session after timeout
func NewSessionMapWithTimeout(m map[interface{}]interface{}, timeout time.Duration) *SessionMap {
ret := NewSessionMap(m)
go func() {
<-time.NewTimer(timeout).C
ret.Disable()
}()
return ret
}
// IsValid tells if the session is valid at present
func (self *SessionMap) IsValid() bool {
if self == nil {
return false
}
return self.enabled.Load().(bool)
}
// Disable ends the session
func (self *SessionMap) Disable() {
if self == nil {
return
}
self.enabled.Store(false)
}
// Export COPIES and exports underlying map
func (self *SessionMap) Export() map[interface{}]interface{} {
if self == nil {
return nil
}
m := make(map[interface{}]interface{}, len(self.storage))
self.lock.RLock()
for k, v := range self.storage {
m[k] = v
}
self.lock.RUnlock()
return m
}
// Get value for specific key
func (self *SessionMap) Get(key interface{}) interface{} {
if self == nil {
return nil
}
self.lock.RLock()
val := self.storage[key]
self.lock.RUnlock()
return val
}
// Set value for specific key,and return itself
func (self *SessionMap) WithValue(key, val interface{}) Session {
if self == nil {
return nil
}
self.lock.Lock()
self.storage[key] = val
self.lock.Unlock()
return self
}