| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- // Copyright (C) 2014 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"
- "strconv"
- "time"
- "github.com/syncthing/syncthing/lib/fs"
- "github.com/syncthing/syncthing/lib/util"
- )
- func init() {
- // Register the constructor for this type of versioner with the name "simple"
- Factories["simple"] = NewSimple
- }
- type Simple struct {
- keep int
- folderFs fs.Filesystem
- versionsFs fs.Filesystem
- }
- func NewSimple(folderID string, folderFs fs.Filesystem, params map[string]string) Versioner {
- keep, err := strconv.Atoi(params["keep"])
- if err != nil {
- keep = 5 // A reasonable default
- }
- s := Simple{
- keep: keep,
- folderFs: folderFs,
- versionsFs: fsFromParams(folderFs, params),
- }
- l.Debugf("instantiated %#v", s)
- return s
- }
- // Archive moves the named file away to a version archive. If this function
- // returns nil, the named file does not exist any more (has been archived).
- func (v Simple) Archive(filePath string) error {
- err := archiveFile(v.folderFs, v.versionsFs, filePath, TagFilename)
- if err != nil {
- return err
- }
- file := filepath.Base(filePath)
- dir := filepath.Dir(filePath)
- // Glob according to the new file~timestamp.ext pattern.
- pattern := filepath.Join(dir, TagFilename(file, TimeGlob))
- newVersions, err := v.versionsFs.Glob(pattern)
- if err != nil {
- l.Warnln("globbing:", err, "for", pattern)
- return nil
- }
- // Also according to the old file.ext~timestamp pattern.
- pattern = filepath.Join(dir, file+"~"+TimeGlob)
- oldVersions, err := v.versionsFs.Glob(pattern)
- if err != nil {
- l.Warnln("globbing:", err, "for", pattern)
- return nil
- }
- // Use all the found filenames. "~" sorts after "." so all old pattern
- // files will be deleted before any new, which is as it should be.
- versions := util.UniqueStrings(append(oldVersions, newVersions...))
- if len(versions) > v.keep {
- for _, toRemove := range versions[:len(versions)-v.keep] {
- l.Debugln("cleaning out", toRemove)
- err = v.versionsFs.Remove(toRemove)
- if err != nil {
- l.Warnln("removing old version:", err)
- }
- }
- }
- return nil
- }
- func (v Simple) GetVersions() (map[string][]FileVersion, error) {
- return retrieveVersions(v.versionsFs)
- }
- func (v Simple) Restore(filepath string, versionTime time.Time) error {
- return restoreFile(v.versionsFs, v.folderFs, filepath, versionTime, TagFilename)
- }
|