mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-06 05:17:49 +00:00
21c074cc2c
refactor: replace empty slice literal with `var` An empty slice can be represented by `nil` or an empty slice literal. They are functionally equivalent — their `len` and `cap` are both zero — but the `nil` slice is the preferred style. For more information about empty slices, see [Declaring Empty Slices](https://github.com/golang/go/wiki/CodeReviewComments#declaring-empty-slices). Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
53 lines
1.1 KiB
Go
53 lines
1.1 KiB
Go
// Copyright (C) 2017 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 https://mozilla.org/MPL/2.0/.
|
|
|
|
package versioner
|
|
|
|
import (
|
|
"path/filepath"
|
|
"sort"
|
|
|
|
"github.com/syncthing/syncthing/lib/fs"
|
|
)
|
|
|
|
type emptyDirTracker map[string]struct{}
|
|
|
|
func (t emptyDirTracker) addDir(path string) {
|
|
if path == "." {
|
|
return
|
|
}
|
|
t[path] = struct{}{}
|
|
}
|
|
|
|
// Remove all dirs from the path to the file
|
|
func (t emptyDirTracker) addFile(path string) {
|
|
dir := filepath.Dir(path)
|
|
for dir != "." {
|
|
delete(t, dir)
|
|
dir = filepath.Dir(dir)
|
|
}
|
|
}
|
|
|
|
func (t emptyDirTracker) emptyDirs() []string {
|
|
var empty []string
|
|
|
|
for dir := range t {
|
|
empty = append(empty, dir)
|
|
}
|
|
sort.Sort(sort.Reverse(sort.StringSlice(empty)))
|
|
return empty
|
|
}
|
|
|
|
func (t emptyDirTracker) deleteEmptyDirs(fs fs.Filesystem) {
|
|
for _, path := range t.emptyDirs() {
|
|
l.Debugln("Cleaner: deleting empty directory", path)
|
|
err := fs.Remove(path)
|
|
if err != nil {
|
|
l.Warnln("Versioner: can't remove directory", path, err)
|
|
}
|
|
}
|
|
}
|