-
Notifications
You must be signed in to change notification settings - Fork 3
/
rsync.go
123 lines (104 loc) · 2.48 KB
/
rsync.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
package main
import (
"log/slog"
"slices"
"time"
"github.com/zloylos/grsync"
)
const (
bufferizeDuration = 200 * time.Millisecond
)
func rsyncDirectory(
logger *slog.Logger,
conf configSync,
filesCh <-chan []string,
) {
source := endsWithSlash(conf.Source)
target := endsWithSlash(conf.Target)
logger = logger.With(slog.String("source", source), slog.String("target", target))
logger.Info("initial synchronization")
rsyncCh := make(chan *grsync.Task, 1)
rsyncCh <- grsync.NewTask(source, target, newRsyncDirectoryOptions(conf))
go func() {
for files := range filesCh {
rsyncCh <- grsync.NewTask(source, target, newRsyncFilesOptions(conf, files))
}
close(rsyncCh)
}()
for task := range rsyncCh {
err := task.Run()
state := task.State()
logger := logger.With(
slog.Int("remain", state.Remain),
slog.Int("total", state.Total),
slog.Float64("progress", state.Progress),
slog.String("speed", state.Speed),
)
if err != nil {
logger.Error(
"synchronization failed",
slog.Any("err", err),
slog.String("strerr", task.Log().Stderr),
)
} else {
logger.Info("synchronization complete")
}
}
}
func bufferize(filesCh <-chan string, d time.Duration) <-chan []string {
bufferedCh := make(chan []string, 1)
go func() {
defer close(bufferedCh)
buffer := make([]string, 0)
flush := func() {
if len(buffer) > 0 {
bufferedCh <- slices.Clone(buffer)
buffer = buffer[:0]
}
}
ticker := time.NewTicker(d)
defer ticker.Stop()
for {
select {
case file, ok := <-filesCh:
if !ok {
flush()
return
}
buffer = append(buffer, file)
case <-ticker.C:
flush()
}
}
}()
return bufferedCh
}
func newRsyncFilesOptions(conf configSync, files []string) grsync.RsyncOptions {
return grsync.RsyncOptions{
Rsh: conf.Rsync.Rsh,
ACLs: conf.Rsync.ACLs,
Perms: conf.Rsync.Perms,
Include: expandPaths(files),
Exclude: []string{"*"},
Contimeout: conf.Rsync.getConnectTimeoutSeconds(),
Timeout: conf.Rsync.getTimeoutSeconds(),
Progress: true,
Stats: false,
Verbose: true,
Recursive: true,
Delete: true,
IgnoreErrors: true,
Force: true,
}
}
func newRsyncDirectoryOptions(conf configSync) grsync.RsyncOptions {
return grsync.RsyncOptions{
Rsh: conf.Rsync.Rsh,
ACLs: conf.Rsync.ACLs,
Perms: conf.Rsync.Perms,
Exclude: conf.Exclude,
Timeout: rsyncDefaultTimeoutSeconds,
Stats: true,
Delete: true,
}
}