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
/
conn.go
157 lines (137 loc) · 3.02 KB
/
conn.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
// 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 (
"encoding/binary"
"fmt"
"net"
"sync"
"github.com/golang/glog"
)
type Conn interface {
Send(xid Xid, zxid ZXid, resp interface{}) error
Read() <-chan ZKRequest
StopNotify() <-chan struct{}
Close()
}
type sendMsg struct {
buf []byte
pktlen int
}
type conn struct {
zkc net.Conn
outc chan sendMsg
readc chan ZKRequest
mu sync.RWMutex
// stopc is closed to shutdown session
stopc chan struct{}
// donec is closed to signal session is torn down
donec chan struct{}
}
type ZKRequest struct {
xid Xid
req interface{}
err error
}
func (zk *ZKRequest) String() string {
if zk.req != nil {
return fmt.Sprintf("{xid:%v req:%T:%+v}", zk.xid, zk.req, zk.req)
}
if zk.err != nil {
return fmt.Sprintf("{xid:%v err:%q}", zk.xid, zk.err)
}
return fmt.Sprintf("{xid:%v err:%q}", zk.xid, zk.err)
}
func NewConn(zk net.Conn) Conn {
outc := make(chan sendMsg, 16)
c := &conn{
zkc: zk,
outc: outc,
readc: make(chan ZKRequest),
stopc: make(chan struct{}),
donec: make(chan struct{}),
}
go func() {
defer close(c.readc)
for {
xid, req, err := readReqOp(c.zkc)
select {
case c.readc <- ZKRequest{xid, req, err}:
if err != nil {
return
}
case <-c.stopc:
return
case <-c.donec:
return
}
}
}()
go func() {
defer close(c.donec)
for msg := range outc {
if _, err := c.zkc.Write(msg.buf[:msg.pktlen]); err != nil {
return
}
bufpool.Put(msg.buf)
}
}()
return c
}
func (c *conn) Read() <-chan ZKRequest { return c.readc }
func (c *conn) Send(xid Xid, zxid ZXid, resp interface{}) error {
buf := bufpool.Get().([]byte)
hdr := &ResponseHeader{Xid: xid, Zxid: zxid, Err: errOk}
_, isEv := resp.(*WatcherEvent)
if isEv {
hdr.Xid = -1
}
ec, hasErr := resp.(*ErrCode)
if hasErr {
hdr.Err = *ec
}
n1, err1 := encodePacket(buf[4:], hdr)
if err1 != nil {
return err1
}
pktlen := n1
if !hasErr {
n2, err2 := encodePacket(buf[4+n1:], resp)
if err2 != nil {
return err2
}
pktlen += n2
}
binary.BigEndian.PutUint32(buf[:4], uint32(pktlen))
c.mu.RLock()
defer c.mu.RUnlock()
select {
case c.outc <- sendMsg{buf, 4 + pktlen}:
glog.V(9).Infof("conn.Send(xid=%v, zxid=%v, %+v)", xid, zxid, resp)
case <-c.donec:
}
return nil
}
func (c *conn) Close() {
c.mu.Lock()
if c.outc != nil {
close(c.stopc)
close(c.outc)
c.outc = nil
c.zkc.Close()
}
c.mu.Unlock()
<-c.donec
}
func (c *conn) StopNotify() <-chan struct{} { return c.donec }