2013-12-15 10:43:31 +00:00
|
|
|
package protocol
|
|
|
|
|
|
|
|
import (
|
|
|
|
"compress/flate"
|
|
|
|
"errors"
|
2013-12-31 02:21:57 +00:00
|
|
|
"fmt"
|
2013-12-15 10:43:31 +00:00
|
|
|
"io"
|
2014-01-23 12:12:45 +00:00
|
|
|
"log"
|
2013-12-15 10:43:31 +00:00
|
|
|
"sync"
|
2013-12-15 15:19:45 +00:00
|
|
|
"time"
|
2013-12-15 10:43:31 +00:00
|
|
|
|
|
|
|
"github.com/calmh/syncthing/buffers"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2013-12-28 13:10:36 +00:00
|
|
|
messageTypeIndex = 1
|
|
|
|
messageTypeRequest = 2
|
|
|
|
messageTypeResponse = 3
|
|
|
|
messageTypePing = 4
|
|
|
|
messageTypePong = 5
|
|
|
|
messageTypeIndexUpdate = 6
|
2014-01-23 12:12:45 +00:00
|
|
|
messageTypeOptions = 7
|
2013-12-15 10:43:31 +00:00
|
|
|
)
|
|
|
|
|
2014-01-07 21:44:21 +00:00
|
|
|
const (
|
|
|
|
FlagDeleted = 1 << 12
|
|
|
|
FlagInvalid = 1 << 13
|
|
|
|
)
|
|
|
|
|
2013-12-15 10:43:31 +00:00
|
|
|
type FileInfo struct {
|
|
|
|
Name string
|
|
|
|
Flags uint32
|
|
|
|
Modified int64
|
2014-01-07 21:44:21 +00:00
|
|
|
Version uint32
|
2013-12-15 10:43:31 +00:00
|
|
|
Blocks []BlockInfo
|
|
|
|
}
|
|
|
|
|
|
|
|
type BlockInfo struct {
|
2014-01-09 15:35:49 +00:00
|
|
|
Size uint32
|
|
|
|
Hash []byte
|
2013-12-15 10:43:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Model interface {
|
|
|
|
// An index was received from the peer node
|
|
|
|
Index(nodeID string, files []FileInfo)
|
2013-12-28 13:10:36 +00:00
|
|
|
// An index update was received from the peer node
|
|
|
|
IndexUpdate(nodeID string, files []FileInfo)
|
2013-12-15 10:43:31 +00:00
|
|
|
// A request was made by the peer node
|
2014-01-09 15:35:49 +00:00
|
|
|
Request(nodeID, name string, offset int64, size uint32, hash []byte) ([]byte, error)
|
2013-12-15 10:43:31 +00:00
|
|
|
// The peer node closed the connection
|
2013-12-31 02:21:57 +00:00
|
|
|
Close(nodeID string, err error)
|
2013-12-15 10:43:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Connection struct {
|
2013-12-24 16:45:16 +00:00
|
|
|
sync.RWMutex
|
2013-12-30 14:22:34 +00:00
|
|
|
|
2014-01-23 12:12:45 +00:00
|
|
|
id string
|
|
|
|
receiver Model
|
|
|
|
reader io.Reader
|
|
|
|
mreader *marshalReader
|
|
|
|
writer io.Writer
|
|
|
|
mwriter *marshalWriter
|
|
|
|
closed bool
|
|
|
|
awaiting map[int]chan asyncResult
|
|
|
|
nextId int
|
|
|
|
indexSent map[string][2]int64
|
|
|
|
options map[string]string
|
|
|
|
optionsLock sync.Mutex
|
2013-12-30 14:53:54 +00:00
|
|
|
|
2014-01-01 02:22:49 +00:00
|
|
|
hasSentIndex bool
|
|
|
|
hasRecvdIndex bool
|
|
|
|
|
2013-12-30 14:53:54 +00:00
|
|
|
statisticsLock sync.Mutex
|
2013-12-15 10:43:31 +00:00
|
|
|
}
|
|
|
|
|
2013-12-15 14:58:27 +00:00
|
|
|
var ErrClosed = errors.New("Connection closed")
|
|
|
|
|
|
|
|
type asyncResult struct {
|
|
|
|
val []byte
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
|
2013-12-31 03:10:54 +00:00
|
|
|
const (
|
|
|
|
pingTimeout = 2 * time.Minute
|
|
|
|
pingIdleTime = 5 * time.Minute
|
|
|
|
)
|
2013-12-15 15:19:45 +00:00
|
|
|
|
2014-01-23 12:12:45 +00:00
|
|
|
func NewConnection(nodeID string, reader io.Reader, writer io.Writer, receiver Model, options map[string]string) *Connection {
|
2013-12-15 10:43:31 +00:00
|
|
|
flrd := flate.NewReader(reader)
|
|
|
|
flwr, err := flate.NewWriter(writer, flate.BestSpeed)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
c := Connection{
|
2014-01-09 12:58:35 +00:00
|
|
|
id: nodeID,
|
2014-01-05 15:16:37 +00:00
|
|
|
receiver: receiver,
|
|
|
|
reader: flrd,
|
|
|
|
mreader: &marshalReader{r: flrd},
|
|
|
|
writer: flwr,
|
|
|
|
mwriter: &marshalWriter{w: flwr},
|
|
|
|
awaiting: make(map[int]chan asyncResult),
|
2013-12-15 10:43:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
go c.readerLoop()
|
2013-12-15 15:19:45 +00:00
|
|
|
go c.pingerLoop()
|
2013-12-15 10:43:31 +00:00
|
|
|
|
2014-01-23 12:12:45 +00:00
|
|
|
if options != nil {
|
|
|
|
go func() {
|
|
|
|
c.Lock()
|
|
|
|
c.mwriter.writeHeader(header{0, c.nextId, messageTypeOptions})
|
|
|
|
c.mwriter.writeOptions(options)
|
|
|
|
err := c.flush()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Warning:", err)
|
|
|
|
}
|
|
|
|
c.nextId++
|
|
|
|
c.Unlock()
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2013-12-15 10:43:31 +00:00
|
|
|
return &c
|
|
|
|
}
|
|
|
|
|
2014-01-09 12:58:35 +00:00
|
|
|
func (c *Connection) ID() string {
|
|
|
|
return c.id
|
|
|
|
}
|
|
|
|
|
2013-12-15 10:43:31 +00:00
|
|
|
// Index writes the list of file information to the connected peer node
|
|
|
|
func (c *Connection) Index(idx []FileInfo) {
|
2013-12-24 16:45:16 +00:00
|
|
|
c.Lock()
|
2013-12-28 13:10:36 +00:00
|
|
|
var msgType int
|
2013-12-30 01:33:57 +00:00
|
|
|
if c.indexSent == nil {
|
2013-12-28 13:10:36 +00:00
|
|
|
// This is the first time we send an index.
|
|
|
|
msgType = messageTypeIndex
|
|
|
|
|
2014-01-08 13:21:47 +00:00
|
|
|
c.indexSent = make(map[string][2]int64)
|
2013-12-28 13:10:36 +00:00
|
|
|
for _, f := range idx {
|
2014-01-08 13:21:47 +00:00
|
|
|
c.indexSent[f.Name] = [2]int64{f.Modified, int64(f.Version)}
|
2013-12-28 13:10:36 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// We have sent one full index. Only send updates now.
|
|
|
|
msgType = messageTypeIndexUpdate
|
|
|
|
var diff []FileInfo
|
|
|
|
for _, f := range idx {
|
2014-01-08 13:21:47 +00:00
|
|
|
if vs, ok := c.indexSent[f.Name]; !ok || f.Modified != vs[0] || int64(f.Version) != vs[1] {
|
2013-12-28 13:10:36 +00:00
|
|
|
diff = append(diff, f)
|
2014-01-08 13:21:47 +00:00
|
|
|
c.indexSent[f.Name] = [2]int64{f.Modified, int64(f.Version)}
|
2013-12-28 13:10:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
idx = diff
|
|
|
|
}
|
|
|
|
|
|
|
|
c.mwriter.writeHeader(header{0, c.nextId, msgType})
|
2013-12-15 10:43:31 +00:00
|
|
|
c.mwriter.writeIndex(idx)
|
2013-12-19 23:01:34 +00:00
|
|
|
err := c.flush()
|
|
|
|
c.nextId = (c.nextId + 1) & 0xfff
|
2014-01-01 02:22:49 +00:00
|
|
|
c.hasSentIndex = true
|
2013-12-24 16:45:16 +00:00
|
|
|
c.Unlock()
|
2014-01-01 02:22:49 +00:00
|
|
|
|
2013-12-31 02:21:57 +00:00
|
|
|
if err != nil {
|
2014-01-09 12:58:35 +00:00
|
|
|
c.close(err)
|
2013-12-31 02:21:57 +00:00
|
|
|
return
|
|
|
|
} else if c.mwriter.err != nil {
|
2014-01-09 12:58:35 +00:00
|
|
|
c.close(c.mwriter.err)
|
2013-12-19 23:01:34 +00:00
|
|
|
return
|
|
|
|
}
|
2013-12-15 10:43:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Request returns the bytes for the specified block after fetching them from the connected peer.
|
2014-01-09 15:35:49 +00:00
|
|
|
func (c *Connection) Request(name string, offset int64, size uint32, hash []byte) ([]byte, error) {
|
2013-12-30 20:27:20 +00:00
|
|
|
c.Lock()
|
|
|
|
if c.closed {
|
|
|
|
c.Unlock()
|
2013-12-28 15:30:02 +00:00
|
|
|
return nil, ErrClosed
|
|
|
|
}
|
2013-12-15 14:58:27 +00:00
|
|
|
rc := make(chan asyncResult)
|
2013-12-15 10:43:31 +00:00
|
|
|
c.awaiting[c.nextId] = rc
|
|
|
|
c.mwriter.writeHeader(header{0, c.nextId, messageTypeRequest})
|
|
|
|
c.mwriter.writeRequest(request{name, offset, size, hash})
|
2013-12-19 23:01:34 +00:00
|
|
|
if c.mwriter.err != nil {
|
2013-12-24 16:45:16 +00:00
|
|
|
c.Unlock()
|
2014-01-09 12:58:35 +00:00
|
|
|
c.close(c.mwriter.err)
|
2013-12-19 23:01:34 +00:00
|
|
|
return nil, c.mwriter.err
|
|
|
|
}
|
|
|
|
err := c.flush()
|
|
|
|
if err != nil {
|
2013-12-24 16:45:16 +00:00
|
|
|
c.Unlock()
|
2014-01-09 12:58:35 +00:00
|
|
|
c.close(err)
|
2013-12-19 23:01:34 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2013-12-15 10:43:31 +00:00
|
|
|
c.nextId = (c.nextId + 1) & 0xfff
|
2013-12-24 16:45:16 +00:00
|
|
|
c.Unlock()
|
2013-12-15 10:43:31 +00:00
|
|
|
|
2013-12-15 14:58:27 +00:00
|
|
|
res, ok := <-rc
|
|
|
|
if !ok {
|
|
|
|
return nil, ErrClosed
|
2013-12-15 10:43:31 +00:00
|
|
|
}
|
2013-12-15 14:58:27 +00:00
|
|
|
return res.val, res.err
|
2013-12-15 10:43:31 +00:00
|
|
|
}
|
|
|
|
|
2014-01-09 12:58:35 +00:00
|
|
|
func (c *Connection) ping() bool {
|
2013-12-30 20:27:20 +00:00
|
|
|
c.Lock()
|
|
|
|
if c.closed {
|
|
|
|
c.Unlock()
|
2013-12-31 01:52:36 +00:00
|
|
|
return false
|
2013-12-28 15:30:02 +00:00
|
|
|
}
|
2013-12-30 20:27:20 +00:00
|
|
|
rc := make(chan asyncResult, 1)
|
2013-12-15 10:43:31 +00:00
|
|
|
c.awaiting[c.nextId] = rc
|
|
|
|
c.mwriter.writeHeader(header{0, c.nextId, messageTypePing})
|
2013-12-19 23:01:34 +00:00
|
|
|
err := c.flush()
|
2013-12-31 02:21:57 +00:00
|
|
|
if err != nil {
|
|
|
|
c.Unlock()
|
2014-01-09 12:58:35 +00:00
|
|
|
c.close(err)
|
2013-12-31 02:21:57 +00:00
|
|
|
return false
|
|
|
|
} else if c.mwriter.err != nil {
|
2013-12-24 16:45:16 +00:00
|
|
|
c.Unlock()
|
2014-01-09 12:58:35 +00:00
|
|
|
c.close(c.mwriter.err)
|
2013-12-31 01:52:36 +00:00
|
|
|
return false
|
2013-12-19 23:01:34 +00:00
|
|
|
}
|
2013-12-15 10:43:31 +00:00
|
|
|
c.nextId = (c.nextId + 1) & 0xfff
|
2013-12-24 16:45:16 +00:00
|
|
|
c.Unlock()
|
2013-12-15 10:43:31 +00:00
|
|
|
|
2013-12-31 01:52:36 +00:00
|
|
|
res, ok := <-rc
|
|
|
|
return ok && res.err == nil
|
2013-12-15 10:43:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type flusher interface {
|
|
|
|
Flush() error
|
|
|
|
}
|
|
|
|
|
2013-12-19 23:01:34 +00:00
|
|
|
func (c *Connection) flush() error {
|
2013-12-15 10:43:31 +00:00
|
|
|
if f, ok := c.writer.(flusher); ok {
|
2013-12-19 23:01:34 +00:00
|
|
|
return f.Flush()
|
2013-12-15 10:43:31 +00:00
|
|
|
}
|
2013-12-19 23:01:34 +00:00
|
|
|
return nil
|
2013-12-15 10:43:31 +00:00
|
|
|
}
|
|
|
|
|
2014-01-09 12:58:35 +00:00
|
|
|
func (c *Connection) close(err error) {
|
2013-12-24 16:45:16 +00:00
|
|
|
c.Lock()
|
2013-12-19 23:01:34 +00:00
|
|
|
if c.closed {
|
2013-12-24 16:45:16 +00:00
|
|
|
c.Unlock()
|
2013-12-19 23:01:34 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
c.closed = true
|
2013-12-15 10:43:31 +00:00
|
|
|
for _, ch := range c.awaiting {
|
|
|
|
close(ch)
|
|
|
|
}
|
|
|
|
c.awaiting = nil
|
2013-12-24 16:45:16 +00:00
|
|
|
c.Unlock()
|
2013-12-15 14:58:27 +00:00
|
|
|
|
2014-01-09 12:58:35 +00:00
|
|
|
c.receiver.Close(c.id, err)
|
2013-12-15 10:43:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Connection) isClosed() bool {
|
2013-12-24 16:45:16 +00:00
|
|
|
c.RLock()
|
|
|
|
defer c.RUnlock()
|
2013-12-15 10:43:31 +00:00
|
|
|
return c.closed
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Connection) readerLoop() {
|
2013-12-31 03:10:54 +00:00
|
|
|
loop:
|
|
|
|
for {
|
2013-12-15 10:43:31 +00:00
|
|
|
hdr := c.mreader.readHeader()
|
|
|
|
if c.mreader.err != nil {
|
2014-01-09 12:58:35 +00:00
|
|
|
c.close(c.mreader.err)
|
2013-12-31 03:10:54 +00:00
|
|
|
break loop
|
2013-12-15 10:43:31 +00:00
|
|
|
}
|
2013-12-21 07:06:54 +00:00
|
|
|
if hdr.version != 0 {
|
2014-01-09 12:58:35 +00:00
|
|
|
c.close(fmt.Errorf("Protocol error: %s: unknown message version %#x", c.ID, hdr.version))
|
2013-12-31 03:10:54 +00:00
|
|
|
break loop
|
2013-12-21 07:06:54 +00:00
|
|
|
}
|
2013-12-15 10:43:31 +00:00
|
|
|
|
|
|
|
switch hdr.msgType {
|
|
|
|
case messageTypeIndex:
|
|
|
|
files := c.mreader.readIndex()
|
|
|
|
if c.mreader.err != nil {
|
2014-01-09 12:58:35 +00:00
|
|
|
c.close(c.mreader.err)
|
2013-12-31 03:10:54 +00:00
|
|
|
break loop
|
2013-12-15 10:43:31 +00:00
|
|
|
} else {
|
2014-01-09 12:58:35 +00:00
|
|
|
c.receiver.Index(c.id, files)
|
2013-12-15 10:43:31 +00:00
|
|
|
}
|
2014-01-01 02:22:49 +00:00
|
|
|
c.Lock()
|
|
|
|
c.hasRecvdIndex = true
|
|
|
|
c.Unlock()
|
2013-12-15 10:43:31 +00:00
|
|
|
|
2013-12-28 13:10:36 +00:00
|
|
|
case messageTypeIndexUpdate:
|
|
|
|
files := c.mreader.readIndex()
|
|
|
|
if c.mreader.err != nil {
|
2014-01-09 12:58:35 +00:00
|
|
|
c.close(c.mreader.err)
|
2013-12-31 03:10:54 +00:00
|
|
|
break loop
|
2013-12-28 13:10:36 +00:00
|
|
|
} else {
|
2014-01-09 12:58:35 +00:00
|
|
|
c.receiver.IndexUpdate(c.id, files)
|
2013-12-28 13:10:36 +00:00
|
|
|
}
|
|
|
|
|
2013-12-15 10:43:31 +00:00
|
|
|
case messageTypeRequest:
|
2013-12-31 03:10:54 +00:00
|
|
|
req := c.mreader.readRequest()
|
|
|
|
if c.mreader.err != nil {
|
2014-01-09 12:58:35 +00:00
|
|
|
c.close(c.mreader.err)
|
2013-12-31 03:10:54 +00:00
|
|
|
break loop
|
|
|
|
}
|
|
|
|
go c.processRequest(hdr.msgID, req)
|
2013-12-15 10:43:31 +00:00
|
|
|
|
|
|
|
case messageTypeResponse:
|
|
|
|
data := c.mreader.readResponse()
|
|
|
|
|
|
|
|
if c.mreader.err != nil {
|
2014-01-09 12:58:35 +00:00
|
|
|
c.close(c.mreader.err)
|
2013-12-31 03:10:54 +00:00
|
|
|
break loop
|
2013-12-15 10:43:31 +00:00
|
|
|
} else {
|
2013-12-30 20:27:20 +00:00
|
|
|
c.Lock()
|
2013-12-15 10:43:31 +00:00
|
|
|
rc, ok := c.awaiting[hdr.msgID]
|
2013-12-30 20:27:20 +00:00
|
|
|
delete(c.awaiting, hdr.msgID)
|
|
|
|
c.Unlock()
|
2013-12-15 10:43:31 +00:00
|
|
|
|
|
|
|
if ok {
|
2013-12-15 14:58:27 +00:00
|
|
|
rc <- asyncResult{data, c.mreader.err}
|
2013-12-15 10:43:31 +00:00
|
|
|
close(rc)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
case messageTypePing:
|
2013-12-24 16:45:16 +00:00
|
|
|
c.Lock()
|
2013-12-15 10:43:31 +00:00
|
|
|
c.mwriter.writeUint32(encodeHeader(header{0, hdr.msgID, messageTypePong}))
|
2013-12-19 23:01:34 +00:00
|
|
|
err := c.flush()
|
2013-12-24 16:45:16 +00:00
|
|
|
c.Unlock()
|
2013-12-31 02:21:57 +00:00
|
|
|
if err != nil {
|
2014-01-09 12:58:35 +00:00
|
|
|
c.close(err)
|
2013-12-31 03:10:54 +00:00
|
|
|
break loop
|
2013-12-31 02:21:57 +00:00
|
|
|
} else if c.mwriter.err != nil {
|
2014-01-09 12:58:35 +00:00
|
|
|
c.close(c.mwriter.err)
|
2013-12-31 03:10:54 +00:00
|
|
|
break loop
|
2013-12-18 17:29:15 +00:00
|
|
|
}
|
2013-12-15 10:43:31 +00:00
|
|
|
|
|
|
|
case messageTypePong:
|
2013-12-24 16:45:16 +00:00
|
|
|
c.RLock()
|
2013-12-15 14:58:27 +00:00
|
|
|
rc, ok := c.awaiting[hdr.msgID]
|
2013-12-24 16:45:16 +00:00
|
|
|
c.RUnlock()
|
2013-12-15 14:58:27 +00:00
|
|
|
|
|
|
|
if ok {
|
|
|
|
rc <- asyncResult{}
|
2013-12-15 10:43:31 +00:00
|
|
|
close(rc)
|
2013-12-15 14:58:27 +00:00
|
|
|
|
2013-12-24 16:45:16 +00:00
|
|
|
c.Lock()
|
2013-12-15 10:43:31 +00:00
|
|
|
delete(c.awaiting, hdr.msgID)
|
2013-12-24 16:45:16 +00:00
|
|
|
c.Unlock()
|
2013-12-15 10:43:31 +00:00
|
|
|
}
|
2013-12-21 07:15:19 +00:00
|
|
|
|
2014-01-23 12:12:45 +00:00
|
|
|
case messageTypeOptions:
|
|
|
|
c.optionsLock.Lock()
|
|
|
|
c.options = c.mreader.readOptions()
|
|
|
|
c.optionsLock.Unlock()
|
|
|
|
|
2013-12-21 07:15:19 +00:00
|
|
|
default:
|
2014-01-09 12:58:35 +00:00
|
|
|
c.close(fmt.Errorf("Protocol error: %s: unknown message type %#x", c.ID, hdr.msgType))
|
2013-12-31 03:10:54 +00:00
|
|
|
break loop
|
2013-12-15 10:43:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-31 03:10:54 +00:00
|
|
|
func (c *Connection) processRequest(msgID int, req request) {
|
2014-01-09 12:58:35 +00:00
|
|
|
data, _ := c.receiver.Request(c.id, req.name, req.offset, req.size, req.hash)
|
2013-12-31 03:10:54 +00:00
|
|
|
|
|
|
|
c.Lock()
|
|
|
|
c.mwriter.writeUint32(encodeHeader(header{0, msgID, messageTypeResponse}))
|
|
|
|
c.mwriter.writeResponse(data)
|
2014-01-18 03:06:44 +00:00
|
|
|
err := c.mwriter.err
|
|
|
|
if err == nil {
|
|
|
|
err = c.flush()
|
|
|
|
}
|
2013-12-31 03:10:54 +00:00
|
|
|
c.Unlock()
|
|
|
|
|
|
|
|
buffers.Put(data)
|
|
|
|
if err != nil {
|
2014-01-09 12:58:35 +00:00
|
|
|
c.close(err)
|
2013-12-15 10:43:31 +00:00
|
|
|
}
|
|
|
|
}
|
2013-12-15 15:19:45 +00:00
|
|
|
|
|
|
|
func (c *Connection) pingerLoop() {
|
2013-12-31 01:52:36 +00:00
|
|
|
var rc = make(chan bool, 1)
|
2013-12-31 03:10:54 +00:00
|
|
|
for {
|
2013-12-31 01:52:36 +00:00
|
|
|
time.Sleep(pingIdleTime / 2)
|
2014-01-01 02:22:49 +00:00
|
|
|
|
|
|
|
c.RLock()
|
|
|
|
ready := c.hasRecvdIndex && c.hasSentIndex
|
|
|
|
c.RUnlock()
|
|
|
|
|
|
|
|
if ready {
|
|
|
|
go func() {
|
2014-01-09 12:58:35 +00:00
|
|
|
rc <- c.ping()
|
2014-01-01 02:22:49 +00:00
|
|
|
}()
|
|
|
|
select {
|
|
|
|
case ok := <-rc:
|
|
|
|
if !ok {
|
2014-01-09 12:58:35 +00:00
|
|
|
c.close(fmt.Errorf("Ping failure"))
|
2014-01-01 02:22:49 +00:00
|
|
|
}
|
|
|
|
case <-time.After(pingTimeout):
|
2014-01-09 12:58:35 +00:00
|
|
|
c.close(fmt.Errorf("Ping timeout"))
|
2013-12-15 15:19:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-12-23 17:12:44 +00:00
|
|
|
|
|
|
|
type Statistics struct {
|
2014-01-05 15:16:37 +00:00
|
|
|
At time.Time
|
|
|
|
InBytesTotal int
|
|
|
|
OutBytesTotal int
|
2013-12-23 17:12:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Connection) Statistics() Statistics {
|
2013-12-30 14:53:54 +00:00
|
|
|
c.statisticsLock.Lock()
|
|
|
|
defer c.statisticsLock.Unlock()
|
2013-12-23 17:12:44 +00:00
|
|
|
|
|
|
|
stats := Statistics{
|
2014-01-05 15:16:37 +00:00
|
|
|
At: time.Now(),
|
|
|
|
InBytesTotal: int(c.mreader.getTot()),
|
|
|
|
OutBytesTotal: int(c.mwriter.getTot()),
|
2013-12-23 17:12:44 +00:00
|
|
|
}
|
2014-01-05 15:16:37 +00:00
|
|
|
|
2013-12-23 17:12:44 +00:00
|
|
|
return stats
|
|
|
|
}
|
2014-01-23 12:12:45 +00:00
|
|
|
|
|
|
|
func (c *Connection) Option(key string) string {
|
|
|
|
c.optionsLock.Lock()
|
|
|
|
defer c.optionsLock.Unlock()
|
|
|
|
return c.options[key]
|
|
|
|
}
|