This repository has been archived by the owner on Oct 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 94
/
session.go
99 lines (85 loc) · 2.04 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
// Copyright 2016 CoreOS, Inc.
//
// 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 zetcd
import (
"sync"
etcd "github.com/coreos/etcd/clientv3"
"github.com/golang/glog"
"golang.org/x/net/context"
)
type Session interface {
Conn
Watches
Sid() Sid
ZXid() ZXid
ConnReq() ConnectRequest
Backing() interface{}
}
type session struct {
Conn
*watches
id etcd.LeaseID
c *etcd.Client
req ConnectRequest
leaseZXid ZXid
mu sync.RWMutex
}
func (s *session) ConnReq() ConnectRequest { return s.req }
func (s *session) Backing() interface{} { return s }
func newSession(c *etcd.Client, zkc Conn, id etcd.LeaseID) (*session, error) {
ctx, cancel := context.WithCancel(c.Ctx())
s := &session{Conn: zkc, id: id, c: c, watches: newWatches(c)}
kach, kaerr := c.KeepAlive(ctx, id)
if kaerr != nil {
cancel()
return nil, kaerr
}
go func() {
glog.V(9).Infof("starting the session... id=%v", id)
defer func() {
glog.V(9).Infof("finishing the session... id=%v; expect revoke...", id)
cancel()
s.Close()
}()
for {
select {
case ka, ok := <-kach:
if !ok {
return
}
if ka.ResponseHeader == nil {
continue
}
s.mu.Lock()
s.leaseZXid = ZXid(ka.ResponseHeader.Revision)
s.mu.Unlock()
case <-s.StopNotify():
return
}
}
}()
return s, nil
}
func (s *session) Sid() Sid { return Sid(s.id) }
func (s *session) Close() {
s.watches.close()
s.Conn.Close()
}
// ZXid gets the lease ZXid
func (s *session) ZXid() ZXid {
s.mu.RLock()
zxid := s.leaseZXid
s.mu.RUnlock()
return zxid
}