2015-03-26 22:26:51 +00:00
|
|
|
// Copyright (C) 2015 The Syncthing Authors.
|
|
|
|
//
|
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
// You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
2015-08-06 09:29:25 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/events"
|
2016-07-25 10:42:17 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/protocol"
|
2015-08-06 09:29:25 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/sync"
|
2015-03-26 22:26:51 +00:00
|
|
|
"github.com/thejerf/suture"
|
|
|
|
)
|
|
|
|
|
2015-12-23 15:31:12 +00:00
|
|
|
// The folderSummaryService adds summary information events (FolderSummary and
|
2015-03-26 22:26:51 +00:00
|
|
|
// FolderCompletion) into the event stream at certain intervals.
|
2015-12-23 15:31:12 +00:00
|
|
|
type folderSummaryService struct {
|
2015-04-28 21:12:19 +00:00
|
|
|
*suture.Supervisor
|
|
|
|
|
2016-03-21 19:36:08 +00:00
|
|
|
cfg configIntf
|
|
|
|
model modelIntf
|
2015-03-29 08:25:41 +00:00
|
|
|
stop chan struct{}
|
|
|
|
immediate chan string
|
2015-03-26 22:26:51 +00:00
|
|
|
|
|
|
|
// For keeping track of folders to recalculate for
|
|
|
|
foldersMut sync.Mutex
|
|
|
|
folders map[string]struct{}
|
2015-04-28 21:12:19 +00:00
|
|
|
|
|
|
|
// For keeping track of when the last event request on the API was
|
|
|
|
lastEventReq time.Time
|
|
|
|
lastEventReqMut sync.Mutex
|
2015-03-26 22:26:51 +00:00
|
|
|
}
|
|
|
|
|
2016-03-21 19:36:08 +00:00
|
|
|
func newFolderSummaryService(cfg configIntf, m modelIntf) *folderSummaryService {
|
2015-12-23 15:31:12 +00:00
|
|
|
service := &folderSummaryService{
|
|
|
|
Supervisor: suture.NewSimple("folderSummaryService"),
|
2015-09-29 18:05:22 +00:00
|
|
|
cfg: cfg,
|
2015-04-28 21:12:19 +00:00
|
|
|
model: m,
|
|
|
|
stop: make(chan struct{}),
|
|
|
|
immediate: make(chan string),
|
|
|
|
folders: make(map[string]struct{}),
|
|
|
|
foldersMut: sync.NewMutex(),
|
|
|
|
lastEventReqMut: sync.NewMutex(),
|
|
|
|
}
|
2015-03-26 22:26:51 +00:00
|
|
|
|
2015-12-23 15:31:12 +00:00
|
|
|
service.Add(serviceFunc(service.listenForUpdates))
|
|
|
|
service.Add(serviceFunc(service.calculateSummaries))
|
2015-03-26 22:26:51 +00:00
|
|
|
|
2015-12-23 15:31:12 +00:00
|
|
|
return service
|
2015-03-26 22:26:51 +00:00
|
|
|
}
|
|
|
|
|
2015-12-23 15:31:12 +00:00
|
|
|
func (c *folderSummaryService) Stop() {
|
2015-04-28 21:12:19 +00:00
|
|
|
c.Supervisor.Stop()
|
2015-03-26 22:26:51 +00:00
|
|
|
close(c.stop)
|
|
|
|
}
|
|
|
|
|
|
|
|
// listenForUpdates subscribes to the event bus and makes note of folders that
|
|
|
|
// need their data recalculated.
|
2015-12-23 15:31:12 +00:00
|
|
|
func (c *folderSummaryService) listenForUpdates() {
|
2016-07-25 10:42:17 +00:00
|
|
|
sub := events.Default.Subscribe(events.LocalIndexUpdated | events.RemoteIndexUpdated | events.StateChanged | events.RemoteDownloadProgress | events.DeviceConnected)
|
2015-03-26 22:26:51 +00:00
|
|
|
defer events.Default.Unsubscribe(sub)
|
|
|
|
|
|
|
|
for {
|
|
|
|
// This loop needs to be fast so we don't miss too many events.
|
|
|
|
|
|
|
|
select {
|
|
|
|
case ev := <-sub.C():
|
2016-07-25 10:42:17 +00:00
|
|
|
if ev.Type == events.DeviceConnected {
|
|
|
|
// When a device connects we schedule a refresh of all
|
|
|
|
// folders shared with that device.
|
|
|
|
|
|
|
|
data := ev.Data.(map[string]string)
|
|
|
|
deviceID, _ := protocol.DeviceIDFromString(data["id"])
|
|
|
|
|
|
|
|
c.foldersMut.Lock()
|
|
|
|
nextFolder:
|
|
|
|
for _, folder := range c.cfg.Folders() {
|
|
|
|
for _, dev := range folder.Devices {
|
|
|
|
if dev.DeviceID == deviceID {
|
|
|
|
c.folders[folder.ID] = struct{}{}
|
|
|
|
continue nextFolder
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
c.foldersMut.Unlock()
|
|
|
|
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// The other events all have a "folder" attribute that they
|
|
|
|
// affect. Whenever the local or remote index is updated for a
|
|
|
|
// given folder we make a note of it.
|
2015-03-26 22:26:51 +00:00
|
|
|
|
|
|
|
data := ev.Data.(map[string]interface{})
|
|
|
|
folder := data["folder"].(string)
|
2015-03-29 08:25:41 +00:00
|
|
|
|
2015-04-14 11:57:42 +00:00
|
|
|
switch ev.Type {
|
|
|
|
case events.StateChanged:
|
|
|
|
if data["to"].(string) == "idle" && data["from"].(string) == "syncing" {
|
|
|
|
// The folder changed to idle from syncing. We should do an
|
|
|
|
// immediate refresh to update the GUI. The send to
|
|
|
|
// c.immediate must be nonblocking so that we can continue
|
|
|
|
// handling events.
|
|
|
|
|
|
|
|
select {
|
|
|
|
case c.immediate <- folder:
|
|
|
|
c.foldersMut.Lock()
|
|
|
|
delete(c.folders, folder)
|
|
|
|
c.foldersMut.Unlock()
|
|
|
|
|
|
|
|
default:
|
|
|
|
}
|
2015-03-29 08:25:41 +00:00
|
|
|
}
|
2015-04-14 11:57:42 +00:00
|
|
|
|
|
|
|
default:
|
2015-03-29 08:25:41 +00:00
|
|
|
// This folder needs to be refreshed whenever we do the next
|
|
|
|
// refresh.
|
|
|
|
|
|
|
|
c.foldersMut.Lock()
|
|
|
|
c.folders[folder] = struct{}{}
|
|
|
|
c.foldersMut.Unlock()
|
|
|
|
}
|
2015-03-26 22:26:51 +00:00
|
|
|
|
|
|
|
case <-c.stop:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// calculateSummaries periodically recalculates folder summaries and
|
|
|
|
// completion percentage, and sends the results on the event bus.
|
2015-12-23 15:31:12 +00:00
|
|
|
func (c *folderSummaryService) calculateSummaries() {
|
2015-03-26 22:26:51 +00:00
|
|
|
const pumpInterval = 2 * time.Second
|
|
|
|
pump := time.NewTimer(pumpInterval)
|
|
|
|
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-pump.C:
|
|
|
|
t0 := time.Now()
|
2015-03-29 08:25:41 +00:00
|
|
|
for _, folder := range c.foldersToHandle() {
|
|
|
|
c.sendSummary(folder)
|
2015-03-26 22:26:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// We don't want to spend all our time calculating summaries. Lets
|
|
|
|
// set an arbitrary limit at not spending more than about 30% of
|
|
|
|
// our time here...
|
|
|
|
wait := 2*time.Since(t0) + pumpInterval
|
|
|
|
pump.Reset(wait)
|
|
|
|
|
2015-03-29 08:25:41 +00:00
|
|
|
case folder := <-c.immediate:
|
|
|
|
c.sendSummary(folder)
|
|
|
|
|
2015-03-26 22:26:51 +00:00
|
|
|
case <-c.stop:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// foldersToHandle returns the list of folders needing a summary update, and
|
|
|
|
// clears the list.
|
2015-12-23 15:31:12 +00:00
|
|
|
func (c *folderSummaryService) foldersToHandle() []string {
|
2015-04-28 15:34:55 +00:00
|
|
|
// We only recalculate summaries if someone is listening to events
|
2015-03-29 08:25:41 +00:00
|
|
|
// (a request to /rest/events has been made within the last
|
|
|
|
// pingEventInterval).
|
|
|
|
|
2015-04-28 21:12:19 +00:00
|
|
|
c.lastEventReqMut.Lock()
|
|
|
|
last := c.lastEventReq
|
|
|
|
c.lastEventReqMut.Unlock()
|
2017-01-31 12:04:29 +00:00
|
|
|
if time.Since(last) > defaultEventTimeout {
|
2015-03-29 08:25:41 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-03-26 22:26:51 +00:00
|
|
|
c.foldersMut.Lock()
|
|
|
|
res := make([]string, 0, len(c.folders))
|
|
|
|
for folder := range c.folders {
|
|
|
|
res = append(res, folder)
|
|
|
|
delete(c.folders, folder)
|
|
|
|
}
|
|
|
|
c.foldersMut.Unlock()
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
2015-03-29 08:25:41 +00:00
|
|
|
// sendSummary send the summary events for a single folder
|
2015-12-23 15:31:12 +00:00
|
|
|
func (c *folderSummaryService) sendSummary(folder string) {
|
2015-03-29 08:25:41 +00:00
|
|
|
// The folder summary contains how many bytes, files etc
|
|
|
|
// are in the folder and how in sync we are.
|
2015-09-29 18:05:22 +00:00
|
|
|
data := folderSummary(c.cfg, c.model, folder)
|
2015-03-29 08:25:41 +00:00
|
|
|
events.Default.Log(events.FolderSummary, map[string]interface{}{
|
|
|
|
"folder": folder,
|
|
|
|
"summary": data,
|
|
|
|
})
|
|
|
|
|
2015-09-29 18:05:22 +00:00
|
|
|
for _, devCfg := range c.cfg.Folders()[folder].Devices {
|
2015-03-29 08:25:41 +00:00
|
|
|
if devCfg.DeviceID.Equals(myID) {
|
|
|
|
// We already know about ourselves.
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if !c.model.ConnectedTo(devCfg.DeviceID) {
|
|
|
|
// We're not interested in disconnected devices.
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get completion percentage of this folder for the
|
|
|
|
// remote device.
|
|
|
|
comp := c.model.Completion(devCfg.DeviceID, folder)
|
|
|
|
events.Default.Log(events.FolderCompletion, map[string]interface{}{
|
2016-08-12 06:41:43 +00:00
|
|
|
"folder": folder,
|
|
|
|
"device": devCfg.DeviceID.String(),
|
|
|
|
"completion": comp.CompletionPct,
|
|
|
|
"needBytes": comp.NeedBytes,
|
|
|
|
"globalBytes": comp.GlobalBytes,
|
2015-03-29 08:25:41 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-23 15:31:12 +00:00
|
|
|
func (c *folderSummaryService) gotEventRequest() {
|
2015-04-28 21:12:19 +00:00
|
|
|
c.lastEventReqMut.Lock()
|
|
|
|
c.lastEventReq = time.Now()
|
|
|
|
c.lastEventReqMut.Unlock()
|
|
|
|
}
|
|
|
|
|
2015-03-26 22:26:51 +00:00
|
|
|
// serviceFunc wraps a function to create a suture.Service without stop
|
|
|
|
// functionality.
|
|
|
|
type serviceFunc func()
|
|
|
|
|
|
|
|
func (f serviceFunc) Serve() { f() }
|
|
|
|
func (f serviceFunc) Stop() {}
|