mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-09 14:50:56 +00:00
Simplify index sending, prevent ping timeout
This commit is contained in:
parent
632bcae856
commit
7e0be89052
8
main.go
8
main.go
@ -215,9 +215,7 @@ listen:
|
||||
|
||||
for nodeID := range nodeAddrs {
|
||||
if nodeID == remoteID {
|
||||
nc := protocol.NewConnection(remoteID, conn, conn, m)
|
||||
m.AddNode(nc)
|
||||
infoln("Connected to node", remoteID, "(in)")
|
||||
m.AddConnection(conn, remoteID)
|
||||
continue listen
|
||||
}
|
||||
}
|
||||
@ -286,9 +284,7 @@ func connect(myID string, addr string, nodeAddrs map[string][]string, m *Model,
|
||||
continue
|
||||
}
|
||||
|
||||
nc := protocol.NewConnection(nodeID, conn, conn, m)
|
||||
m.AddNode(nc)
|
||||
infoln("Connected to node", remoteID, "(out)")
|
||||
m.AddConnection(conn, remoteID)
|
||||
continue nextNode
|
||||
}
|
||||
}
|
||||
|
34
model.go
34
model.go
@ -13,6 +13,7 @@ acquire locks, but document what locks they require.
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"io"
|
||||
"os"
|
||||
"path"
|
||||
"sync"
|
||||
@ -31,6 +32,7 @@ type Model struct {
|
||||
remote map[string]map[string]File
|
||||
need map[string]bool // the files we need to update
|
||||
nodes map[string]*protocol.Connection
|
||||
rawConn map[string]io.ReadWriteCloser
|
||||
|
||||
updatedLocal int64 // timestamp of last update to local
|
||||
updateGlobal int64 // timestamp of last update to remote
|
||||
@ -54,6 +56,7 @@ func NewModel(dir string) *Model {
|
||||
remote: make(map[string]map[string]File),
|
||||
need: make(map[string]bool),
|
||||
nodes: make(map[string]*protocol.Connection),
|
||||
rawConn: make(map[string]io.ReadWriteCloser),
|
||||
lastIdxBcast: time.Now(),
|
||||
}
|
||||
|
||||
@ -192,6 +195,12 @@ func (m *Model) Close(node string, err error) {
|
||||
m.Lock()
|
||||
defer m.Unlock()
|
||||
|
||||
conn, ok := m.rawConn[node]
|
||||
if !ok {
|
||||
return
|
||||
}
|
||||
conn.Close()
|
||||
|
||||
if err != nil {
|
||||
warnf("Disconnected from node %s: %v", node, err)
|
||||
} else {
|
||||
@ -200,6 +209,7 @@ func (m *Model) Close(node string, err error) {
|
||||
|
||||
delete(m.remote, node)
|
||||
delete(m.nodes, node)
|
||||
delete(m.rawConn, node)
|
||||
|
||||
m.recomputeGlobal()
|
||||
m.recomputeNeed()
|
||||
@ -460,24 +470,24 @@ func (m *Model) protocolIndex() []protocol.FileInfo {
|
||||
return index
|
||||
}
|
||||
|
||||
func (m *Model) AddNode(node *protocol.Connection) {
|
||||
func (m *Model) AddConnection(conn io.ReadWriteCloser, nodeID string) {
|
||||
node := protocol.NewConnection(nodeID, conn, conn, m)
|
||||
|
||||
m.Lock()
|
||||
m.nodes[node.ID] = node
|
||||
m.nodes[nodeID] = node
|
||||
m.rawConn[nodeID] = conn
|
||||
m.Unlock()
|
||||
|
||||
infoln("Connected to node", nodeID)
|
||||
|
||||
m.RLock()
|
||||
idx := m.protocolIndex()
|
||||
m.RUnlock()
|
||||
|
||||
for i := 0; i < len(idx); i += 1000 {
|
||||
s := i + 1000
|
||||
if s > len(idx) {
|
||||
s = len(idx)
|
||||
}
|
||||
if opts.Debug.TraceNet {
|
||||
debugf("NET IDX(out/add): %s: %d:%d", node.ID, i, s)
|
||||
}
|
||||
node.Index(idx[i:s])
|
||||
}
|
||||
go func() {
|
||||
node.Index(idx)
|
||||
infoln("Sent initial index to node", nodeID)
|
||||
}()
|
||||
}
|
||||
|
||||
func fileFromFileInfo(f protocol.FileInfo) File {
|
||||
|
@ -129,7 +129,6 @@ func (m *Model) pullFile(name string) error {
|
||||
}
|
||||
|
||||
func (m *Model) puller() {
|
||||
|
||||
for {
|
||||
time.Sleep(time.Second)
|
||||
|
||||
|
@ -57,6 +57,9 @@ type Connection struct {
|
||||
nextId int
|
||||
indexSent map[string]int64
|
||||
|
||||
hasSentIndex bool
|
||||
hasRecvdIndex bool
|
||||
|
||||
lastStatistics Statistics
|
||||
statisticsLock sync.Mutex
|
||||
}
|
||||
@ -126,7 +129,9 @@ func (c *Connection) Index(idx []FileInfo) {
|
||||
c.mwriter.writeIndex(idx)
|
||||
err := c.flush()
|
||||
c.nextId = (c.nextId + 1) & 0xfff
|
||||
c.hasSentIndex = true
|
||||
c.Unlock()
|
||||
|
||||
if err != nil {
|
||||
c.Close(err)
|
||||
return
|
||||
@ -252,6 +257,9 @@ loop:
|
||||
} else {
|
||||
c.receiver.Index(c.ID, files)
|
||||
}
|
||||
c.Lock()
|
||||
c.hasRecvdIndex = true
|
||||
c.Unlock()
|
||||
|
||||
case messageTypeIndexUpdate:
|
||||
files := c.mreader.readIndex()
|
||||
@ -343,6 +351,12 @@ func (c *Connection) pingerLoop() {
|
||||
var rc = make(chan bool, 1)
|
||||
for {
|
||||
time.Sleep(pingIdleTime / 2)
|
||||
|
||||
c.RLock()
|
||||
ready := c.hasRecvdIndex && c.hasSentIndex
|
||||
c.RUnlock()
|
||||
|
||||
if ready {
|
||||
go func() {
|
||||
rc <- c.Ping()
|
||||
}()
|
||||
@ -355,6 +369,7 @@ func (c *Connection) pingerLoop() {
|
||||
c.Close(fmt.Errorf("Ping timeout"))
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
type Statistics struct {
|
||||
|
Loading…
Reference in New Issue
Block a user