-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsessionWrapper.go
58 lines (48 loc) · 1.04 KB
/
sessionWrapper.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
package mgop
import (
"gopkg.in/mgo.v2"
"sync/atomic"
)
type sessionWrapper struct {
s *mgo.Session
belongTo SessionPool
ref int32
maxRef int32
host string // which host the session is connect to
}
func (sw *sessionWrapper) Release() {
sw.ReleaseWithFraction(-1)
}
func (sw *sessionWrapper) ReleaseWithFraction(i int32) {
atomic.AddInt32(&sw.ref, i)
}
func (sw *sessionWrapper) atomicAcquire() bool {
atomic.AddInt32(&sw.ref, 1)
return true
}
// only allowed native session operation
func (sw *sessionWrapper)DB(name string) *mgo.Database {
return sw.s.DB(name)
}
// if a reset happen ,return true else return false
func (sw *sessionWrapper)refreshIfNotMaster() bool {
result := &isMasterResult{}
sw.s.Run("ismaster", result)
if result.IsMaster {
return false
}
sw.s.Refresh()
return true
}
func (sw *sessionWrapper)refresh() {
sw.s.Refresh()
sw.s.Ping()
}
func newSessionWrapper(p SessionPool, session *mgo.Session) *sessionWrapper {
sess := &sessionWrapper{
s :session,
belongTo:p,
ref:0,
}
return sess
}