mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-09 14:50:56 +00:00
116 lines
2.4 KiB
Go
116 lines
2.4 KiB
Go
// Copyright (C) 2014 Jakob Borg and Contributors (see the CONTRIBUTORS file).
|
|
// All rights reserved. Use of this source code is governed by an MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package versioner
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"sort"
|
|
"strconv"
|
|
"time"
|
|
|
|
"github.com/syncthing/syncthing/osutil"
|
|
)
|
|
|
|
func init() {
|
|
// Register the constructor for this type of versioner with the name "simple"
|
|
Factories["simple"] = NewSimple
|
|
}
|
|
|
|
// The type holds our configuration
|
|
type Simple struct {
|
|
keep int
|
|
}
|
|
|
|
// The constructor function takes a map of parameters and creates the type.
|
|
func NewSimple(params map[string]string) Versioner {
|
|
keep, err := strconv.Atoi(params["keep"])
|
|
if err != nil {
|
|
keep = 5 // A reasonable default
|
|
}
|
|
|
|
s := Simple{
|
|
keep: keep,
|
|
}
|
|
|
|
if debug {
|
|
l.Debugf("instantiated %#v", s)
|
|
}
|
|
return s
|
|
}
|
|
|
|
// Move away the named file to a version archive. If this function returns
|
|
// nil, the named file does not exist any more (has been archived).
|
|
func (v Simple) Archive(repoPath, filePath string) error {
|
|
_, err := os.Stat(filePath)
|
|
if err != nil && os.IsNotExist(err) {
|
|
if debug {
|
|
l.Debugln("not archiving nonexistent file", filePath)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
versionsDir := filepath.Join(repoPath, ".stversions")
|
|
_, err = os.Stat(versionsDir)
|
|
if err != nil {
|
|
if os.IsNotExist(err) {
|
|
if debug {
|
|
l.Debugln("creating versions dir", versionsDir)
|
|
}
|
|
os.MkdirAll(versionsDir, 0755)
|
|
osutil.HideFile(versionsDir)
|
|
} else {
|
|
return err
|
|
}
|
|
}
|
|
|
|
if debug {
|
|
l.Debugln("archiving", filePath)
|
|
}
|
|
|
|
file := filepath.Base(filePath)
|
|
inRepoPath, err := filepath.Rel(repoPath, filepath.Dir(filePath))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
dir := filepath.Join(versionsDir, inRepoPath)
|
|
err = os.MkdirAll(dir, 0755)
|
|
if err != nil && !os.IsExist(err) {
|
|
return err
|
|
}
|
|
|
|
ver := file + "~" + time.Now().Format("20060102-150405")
|
|
dst := filepath.Join(dir, ver)
|
|
if debug {
|
|
l.Debugln("moving to", dst)
|
|
}
|
|
err = osutil.Rename(filePath, dst)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
versions, err := filepath.Glob(filepath.Join(dir, file+"~*"))
|
|
if err != nil {
|
|
l.Warnln(err)
|
|
return nil
|
|
}
|
|
|
|
if len(versions) > v.keep {
|
|
sort.Strings(versions)
|
|
for _, toRemove := range versions[:len(versions)-v.keep] {
|
|
if debug {
|
|
l.Debugln("cleaning out", toRemove)
|
|
}
|
|
err = os.Remove(toRemove)
|
|
if err != nil {
|
|
l.Warnln(err)
|
|
}
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|