2014-07-12 22:45:33 +00:00
|
|
|
// 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.
|
2014-06-01 20:50:14 +00:00
|
|
|
|
2014-05-25 18:49:08 +00:00
|
|
|
package versioner
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"sort"
|
|
|
|
"strconv"
|
|
|
|
|
2014-09-22 19:42:11 +00:00
|
|
|
"github.com/syncthing/syncthing/internal/osutil"
|
2014-05-25 18:49:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
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 {
|
2014-08-17 05:52:26 +00:00
|
|
|
keep int
|
|
|
|
repoPath string
|
2014-05-25 18:49:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// The constructor function takes a map of parameters and creates the type.
|
2014-08-17 05:52:26 +00:00
|
|
|
func NewSimple(repoID, repoPath string, params map[string]string) Versioner {
|
2014-05-25 18:49:08 +00:00
|
|
|
keep, err := strconv.Atoi(params["keep"])
|
|
|
|
if err != nil {
|
|
|
|
keep = 5 // A reasonable default
|
|
|
|
}
|
|
|
|
|
|
|
|
s := Simple{
|
2014-08-17 05:52:26 +00:00
|
|
|
keep: keep,
|
|
|
|
repoPath: repoPath,
|
2014-05-25 18:49:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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).
|
2014-08-17 05:52:26 +00:00
|
|
|
func (v Simple) Archive(filePath string) error {
|
2014-09-07 11:40:22 +00:00
|
|
|
fileInfo, err := os.Stat(filePath)
|
2014-08-21 22:41:17 +00:00
|
|
|
if err != nil {
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
if debug {
|
|
|
|
l.Debugln("not archiving nonexistent file", filePath)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
} else {
|
|
|
|
return err
|
2014-07-11 09:44:00 +00:00
|
|
|
}
|
2014-05-25 18:49:08 +00:00
|
|
|
}
|
|
|
|
|
2014-08-17 05:52:26 +00:00
|
|
|
versionsDir := filepath.Join(v.repoPath, ".stversions")
|
2014-07-11 09:44:00 +00:00
|
|
|
_, 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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-25 18:49:08 +00:00
|
|
|
if debug {
|
2014-07-11 09:44:00 +00:00
|
|
|
l.Debugln("archiving", filePath)
|
2014-05-25 18:49:08 +00:00
|
|
|
}
|
|
|
|
|
2014-07-11 09:44:00 +00:00
|
|
|
file := filepath.Base(filePath)
|
2014-08-17 05:52:26 +00:00
|
|
|
inRepoPath, err := filepath.Rel(v.repoPath, filepath.Dir(filePath))
|
2014-07-11 09:44:00 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
dir := filepath.Join(versionsDir, inRepoPath)
|
2014-05-25 18:49:08 +00:00
|
|
|
err = os.MkdirAll(dir, 0755)
|
|
|
|
if err != nil && !os.IsExist(err) {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-09-07 11:40:22 +00:00
|
|
|
ver := file + "~" + fileInfo.ModTime().Format("20060102-150405")
|
2014-07-11 09:44:00 +00:00
|
|
|
dst := filepath.Join(dir, ver)
|
|
|
|
if debug {
|
|
|
|
l.Debugln("moving to", dst)
|
|
|
|
}
|
|
|
|
err = osutil.Rename(filePath, dst)
|
2014-05-25 18:49:08 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-09-07 11:40:22 +00:00
|
|
|
versions, err := filepath.Glob(filepath.Join(dir, file+"~[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]-[0-9][0-9][0-9][0-9][0-9][0-9]"))
|
2014-05-25 18:49:08 +00:00
|
|
|
if err != nil {
|
2014-08-17 08:28:36 +00:00
|
|
|
l.Warnln("globbing:", err)
|
2014-05-25 18:49:08 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(versions) > v.keep {
|
|
|
|
sort.Strings(versions)
|
|
|
|
for _, toRemove := range versions[:len(versions)-v.keep] {
|
2014-07-11 09:44:00 +00:00
|
|
|
if debug {
|
|
|
|
l.Debugln("cleaning out", toRemove)
|
|
|
|
}
|
2014-05-25 18:49:08 +00:00
|
|
|
err = os.Remove(toRemove)
|
|
|
|
if err != nil {
|
2014-08-17 08:28:36 +00:00
|
|
|
l.Warnln("removing old version:", err)
|
2014-05-25 18:49:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|