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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
|
package drive
import (
"fmt"
"os"
"path/filepath"
"github.com/gyuho/goraph/graph"
"github.com/sabhiram/go-git-ignore"
"google.golang.org/api/drive/v3"
)
const DefaultIgnoreFile = ".gdriveignore"
func (self *Drive) prepareSyncFiles(localPath string, root *drive.File) (*syncFiles, error) {
localCh := make(chan struct{files []*localFile; err error})
remoteCh := make(chan struct{files []*remoteFile; err error})
go func() {
files, err := prepareLocalFiles(localPath)
localCh <- struct{files []*localFile; err error}{files, err}
}()
go func() {
files, err := self.prepareRemoteFiles(root)
remoteCh <- struct{files []*remoteFile; err error}{files, err}
}()
local := <-localCh
if local.err != nil {
return nil, local.err
}
remote := <-remoteCh
if remote.err != nil {
return nil, remote.err
}
return &syncFiles{
root: &remoteFile{file: root},
local: local.files,
remote: remote.files,
}, nil
}
func prepareLocalFiles(root string) ([]*localFile, error) {
var files []*localFile
// Get absolute root path
absRootPath, err := filepath.Abs(root)
if err != nil {
return nil, err
}
// Prepare ignorer
shouldIgnore, err := prepareIgnorer(filepath.Join(absRootPath, DefaultIgnoreFile))
if err != nil {
return nil, err
}
err = filepath.Walk(absRootPath, func(absPath string, info os.FileInfo, err error) error {
if err != nil {
return err
}
// Skip root directory
if absPath == absRootPath {
return nil
}
// Get relative path from root
relPath, err := filepath.Rel(absRootPath, absPath)
if err != nil {
return err
}
// Skip file if it is ignored by ignore file
if shouldIgnore(relPath) {
return nil
}
files = append(files, &localFile{
absPath: absPath,
relPath: relPath,
info: info,
})
return nil
})
if err != nil {
return nil, fmt.Errorf("Failed to prepare local files: %s", err)
}
return files, err
}
func (self *Drive) prepareRemoteFiles(rootDir *drive.File) ([]*remoteFile, error) {
// Find all files which has rootDir as root
query := fmt.Sprintf("appProperties has {key='syncRootId' and value='%s'}", rootDir.Id)
fileList, err := self.service.Files.List().Q(query).Fields("files(id,name,parents,md5Checksum,mimeType)").Do()
if err != nil {
return nil, fmt.Errorf("Failed listing files: %s", err)
}
if err := checkFiles(fileList.Files); err != nil {
return nil, err
}
relPaths, err := prepareRemoteRelPaths(rootDir.Id, fileList.Files)
if err != nil {
return nil, err
}
var remoteFiles []*remoteFile
for _, f := range fileList.Files {
relPath, ok := relPaths[f.Id]
if !ok {
return nil, fmt.Errorf("File %s does not have a valid parent", f.Id)
}
remoteFiles = append(remoteFiles, &remoteFile{
relPath: relPath,
file: f,
})
}
return remoteFiles, nil
}
func prepareRemoteRelPaths(rootId string, files []*drive.File) (map[string]string, error) {
names := map[string]string{}
idGraph := graph.NewDefaultGraph()
for _, f := range files {
// Store directory name for quick lookup
names[f.Id] = f.Name
// Store path between parent and child folder
idGraph.AddVertex(f.Id)
idGraph.AddVertex(f.Parents[0])
idGraph.AddEdge(f.Parents[0], f.Id, 0)
}
paths := map[string]string{}
for _, f := range files {
// Find path from root to directory
pathIds, _, err := graph.Dijkstra(idGraph, rootId, f.Id)
if err != nil {
return nil, err
}
// Convert path ids to path names
var pathNames []string
for _, id := range pathIds {
pathNames = append(pathNames, names[id])
}
// Store relative file path from root to directory
paths[f.Id] = filepath.Join(pathNames...)
}
return paths, nil
}
func checkFiles(files []*drive.File) error {
uniq := map[string]string{}
for _, f := range files {
// Ensure all files have exactly one parent
if len(f.Parents) != 1 {
return fmt.Errorf("File %s does not have exacly one parent", f.Id)
}
// Ensure that there are no duplicate files
uniqKey := f.Name + f.Parents[0]
if dupeId, isDupe := uniq[uniqKey]; isDupe {
return fmt.Errorf("Found name collision between %s and %s", f.Id, dupeId)
}
uniq[uniqKey] = f.Id
}
return nil
}
type localFile struct {
absPath string
relPath string
info os.FileInfo
}
type remoteFile struct {
relPath string
file *drive.File
}
type changedFile struct {
local *localFile
remote *remoteFile
}
type syncFiles struct {
root *remoteFile
local []*localFile
remote []*remoteFile
}
func (self *syncFiles) filterMissingRemoteDirs() []*localFile {
var files []*localFile
for _, lf := range self.local {
if lf.info.IsDir() && !self.existsRemote(lf) {
files = append(files, lf)
}
}
return files
}
func (self *syncFiles) filterMissingLocalDirs() []*remoteFile {
var files []*remoteFile
for _, rf := range self.remote {
if isDir(rf.file) && !self.existsLocal(rf) {
files = append(files, rf)
}
}
return files
}
func (self *syncFiles) filterMissingRemoteFiles() []*localFile {
var files []*localFile
for _, lf := range self.local {
if !lf.info.IsDir() && !self.existsRemote(lf) {
files = append(files, lf)
}
}
return files
}
func (self *syncFiles) filterMissingLocalFiles() []*remoteFile {
var files []*remoteFile
for _, rf := range self.remote {
if !isDir(rf.file) && !self.existsLocal(rf) {
files = append(files, rf)
}
}
return files
}
func (self *syncFiles) filterChangedLocalFiles() []*changedFile {
var files []*changedFile
for _, lf := range self.local {
// Skip directories
if lf.info.IsDir() {
continue
}
// Skip files that don't exist on drive
rf, found := self.findRemoteByPath(lf.relPath)
if !found {
continue
}
// Add files where remote md5 sum does not match local
if rf.file.Md5Checksum != md5sum(lf.absPath) {
files = append(files, &changedFile{
local: lf,
remote: rf,
})
}
}
return files
}
func (self *syncFiles) filterChangedRemoteFiles() []*changedFile {
var files []*changedFile
for _, rf := range self.remote {
// Skip directories
if isDir(rf.file) {
continue
}
// Skip local files that don't exist
lf, found := self.findLocalByPath(rf.relPath)
if !found {
continue
}
// Add files where remote md5 sum does not match local
if rf.file.Md5Checksum != md5sum(lf.absPath) {
files = append(files, &changedFile{
local: lf,
remote: rf,
})
}
}
return files
}
func (self *syncFiles) filterExtraneousRemoteFiles() []*remoteFile {
var files []*remoteFile
for _, rf := range self.remote {
if !self.existsLocal(rf) {
files = append(files, rf)
}
}
return files
}
func (self *syncFiles) filterExtraneousLocalFiles() []*localFile {
var files []*localFile
for _, lf := range self.local {
if !self.existsRemote(lf) {
files = append(files, lf)
}
}
return files
}
func (self *syncFiles) existsRemote(lf *localFile) bool {
_, found := self.findRemoteByPath(lf.relPath)
return found
}
func (self *syncFiles) existsLocal(rf *remoteFile) bool {
_, found := self.findLocalByPath(rf.relPath)
return found
}
func (self *syncFiles) findRemoteByPath(relPath string) (*remoteFile, bool) {
if relPath == "." {
return self.root, true
}
for _, rf := range self.remote {
if relPath == rf.relPath {
return rf, true
}
}
return nil, false
}
func (self *syncFiles) findLocalByPath(relPath string) (*localFile, bool) {
for _, lf := range self.local {
if relPath == lf.relPath {
return lf, true
}
}
return nil, false
}
type byLocalPathLength []*localFile
func (self byLocalPathLength) Len() int {
return len(self)
}
func (self byLocalPathLength) Swap(i, j int) {
self[i], self[j] = self[j], self[i]
}
func (self byLocalPathLength) Less(i, j int) bool {
return pathLength(self[i].relPath) < pathLength(self[j].relPath)
}
type byRemotePathLength []*remoteFile
func (self byRemotePathLength) Len() int {
return len(self)
}
func (self byRemotePathLength) Swap(i, j int) {
self[i], self[j] = self[j], self[i]
}
func (self byRemotePathLength) Less(i, j int) bool {
return pathLength(self[i].relPath) < pathLength(self[j].relPath)
}
type ignoreFunc func(string) bool
func prepareIgnorer(path string) (ignoreFunc, error) {
acceptAll := func(string) bool {
return false
}
if !fileExists(path) {
return acceptAll, nil
}
ignorer, err := ignore.CompileIgnoreFile(path)
if err != nil {
return acceptAll, fmt.Errorf("Failed to prepare ignorer: %s", err)
}
return ignorer.MatchesPath, nil
}
|