| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254 |
- // 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 http://mozilla.org/MPL/2.0/.
- // Package db provides a set type to track local/remote files with newness
- // checks. We must do a certain amount of normalization in here. We will get
- // fed paths with either native or wire-format separators and encodings
- // depending on who calls us. We transform paths to wire-format (NFC and
- // slashes) on the way to the database, and transform to native format
- // (varying separator and encoding) on the way back out.
- package db
- import (
- "sync"
- "github.com/syncthing/protocol"
- "github.com/syncthing/syncthing/internal/lamport"
- "github.com/syncthing/syncthing/internal/osutil"
- "github.com/syndtr/goleveldb/leveldb"
- )
- type FileSet struct {
- localVersion map[protocol.DeviceID]int64
- mutex sync.Mutex
- folder string
- db *leveldb.DB
- blockmap *BlockMap
- }
- // FileIntf is the set of methods implemented by both protocol.FileInfo and
- // protocol.FileInfoTruncated.
- type FileIntf interface {
- Size() int64
- IsDeleted() bool
- IsInvalid() bool
- IsDirectory() bool
- IsSymlink() bool
- HasPermissionBits() bool
- }
- // The Iterator is called with either a protocol.FileInfo or a
- // protocol.FileInfoTruncated (depending on the method) and returns true to
- // continue iteration, false to stop.
- type Iterator func(f FileIntf) bool
- func NewFileSet(folder string, db *leveldb.DB) *FileSet {
- var s = FileSet{
- localVersion: make(map[protocol.DeviceID]int64),
- folder: folder,
- db: db,
- blockmap: NewBlockMap(db, folder),
- }
- ldbCheckGlobals(db, []byte(folder))
- var deviceID protocol.DeviceID
- ldbWithAllFolderTruncated(db, []byte(folder), func(device []byte, f FileInfoTruncated) bool {
- copy(deviceID[:], device)
- if f.LocalVersion > s.localVersion[deviceID] {
- s.localVersion[deviceID] = f.LocalVersion
- }
- lamport.Default.Tick(f.Version)
- return true
- })
- if debug {
- l.Debugf("loaded localVersion for %q: %#v", folder, s.localVersion)
- }
- clock(s.localVersion[protocol.LocalDeviceID])
- return &s
- }
- func (s *FileSet) Replace(device protocol.DeviceID, fs []protocol.FileInfo) {
- if debug {
- l.Debugf("%s Replace(%v, [%d])", s.folder, device, len(fs))
- }
- normalizeFilenames(fs)
- s.mutex.Lock()
- defer s.mutex.Unlock()
- s.localVersion[device] = ldbReplace(s.db, []byte(s.folder), device[:], fs)
- if len(fs) == 0 {
- // Reset the local version if all files were removed.
- s.localVersion[device] = 0
- }
- if device == protocol.LocalDeviceID {
- s.blockmap.Drop()
- s.blockmap.Add(fs)
- }
- }
- func (s *FileSet) ReplaceWithDelete(device protocol.DeviceID, fs []protocol.FileInfo) {
- if debug {
- l.Debugf("%s ReplaceWithDelete(%v, [%d])", s.folder, device, len(fs))
- }
- normalizeFilenames(fs)
- s.mutex.Lock()
- defer s.mutex.Unlock()
- if lv := ldbReplaceWithDelete(s.db, []byte(s.folder), device[:], fs); lv > s.localVersion[device] {
- s.localVersion[device] = lv
- }
- if device == protocol.LocalDeviceID {
- s.blockmap.Drop()
- s.blockmap.Add(fs)
- }
- }
- func (s *FileSet) Update(device protocol.DeviceID, fs []protocol.FileInfo) {
- if debug {
- l.Debugf("%s Update(%v, [%d])", s.folder, device, len(fs))
- }
- normalizeFilenames(fs)
- s.mutex.Lock()
- defer s.mutex.Unlock()
- if device == protocol.LocalDeviceID {
- discards := make([]protocol.FileInfo, 0, len(fs))
- updates := make([]protocol.FileInfo, 0, len(fs))
- for _, newFile := range fs {
- existingFile, ok := ldbGet(s.db, []byte(s.folder), device[:], []byte(newFile.Name))
- if !ok || existingFile.Version <= newFile.Version {
- discards = append(discards, existingFile)
- updates = append(updates, newFile)
- }
- }
- s.blockmap.Discard(discards)
- s.blockmap.Update(updates)
- }
- if lv := ldbUpdate(s.db, []byte(s.folder), device[:], fs); lv > s.localVersion[device] {
- s.localVersion[device] = lv
- }
- }
- func (s *FileSet) WithNeed(device protocol.DeviceID, fn Iterator) {
- if debug {
- l.Debugf("%s WithNeed(%v)", s.folder, device)
- }
- ldbWithNeed(s.db, []byte(s.folder), device[:], false, nativeFileIterator(fn))
- }
- func (s *FileSet) WithNeedTruncated(device protocol.DeviceID, fn Iterator) {
- if debug {
- l.Debugf("%s WithNeedTruncated(%v)", s.folder, device)
- }
- ldbWithNeed(s.db, []byte(s.folder), device[:], true, nativeFileIterator(fn))
- }
- func (s *FileSet) WithHave(device protocol.DeviceID, fn Iterator) {
- if debug {
- l.Debugf("%s WithHave(%v)", s.folder, device)
- }
- ldbWithHave(s.db, []byte(s.folder), device[:], false, nativeFileIterator(fn))
- }
- func (s *FileSet) WithHaveTruncated(device protocol.DeviceID, fn Iterator) {
- if debug {
- l.Debugf("%s WithHaveTruncated(%v)", s.folder, device)
- }
- ldbWithHave(s.db, []byte(s.folder), device[:], true, nativeFileIterator(fn))
- }
- func (s *FileSet) WithGlobal(fn Iterator) {
- if debug {
- l.Debugf("%s WithGlobal()", s.folder)
- }
- ldbWithGlobal(s.db, []byte(s.folder), nil, false, nativeFileIterator(fn))
- }
- func (s *FileSet) WithGlobalTruncated(fn Iterator) {
- if debug {
- l.Debugf("%s WithGlobalTruncated()", s.folder)
- }
- ldbWithGlobal(s.db, []byte(s.folder), nil, true, nativeFileIterator(fn))
- }
- func (s *FileSet) WithPrefixedGlobalTruncated(prefix string, fn Iterator) {
- if debug {
- l.Debugf("%s WithPrefixedGlobalTruncated()", s.folder, prefix)
- }
- ldbWithGlobal(s.db, []byte(s.folder), []byte(osutil.NormalizedFilename(prefix)), true, nativeFileIterator(fn))
- }
- func (s *FileSet) Get(device protocol.DeviceID, file string) (protocol.FileInfo, bool) {
- f, ok := ldbGet(s.db, []byte(s.folder), device[:], []byte(osutil.NormalizedFilename(file)))
- f.Name = osutil.NativeFilename(f.Name)
- return f, ok
- }
- func (s *FileSet) GetGlobal(file string) (protocol.FileInfo, bool) {
- fi, ok := ldbGetGlobal(s.db, []byte(s.folder), []byte(osutil.NormalizedFilename(file)), false)
- if !ok {
- return protocol.FileInfo{}, false
- }
- f := fi.(protocol.FileInfo)
- f.Name = osutil.NativeFilename(f.Name)
- return f, true
- }
- func (s *FileSet) GetGlobalTruncated(file string) (FileInfoTruncated, bool) {
- fi, ok := ldbGetGlobal(s.db, []byte(s.folder), []byte(osutil.NormalizedFilename(file)), true)
- if !ok {
- return FileInfoTruncated{}, false
- }
- f := fi.(FileInfoTruncated)
- f.Name = osutil.NativeFilename(f.Name)
- return f, true
- }
- func (s *FileSet) Availability(file string) []protocol.DeviceID {
- return ldbAvailability(s.db, []byte(s.folder), []byte(osutil.NormalizedFilename(file)))
- }
- func (s *FileSet) LocalVersion(device protocol.DeviceID) int64 {
- s.mutex.Lock()
- defer s.mutex.Unlock()
- return s.localVersion[device]
- }
- // ListFolders returns the folder IDs seen in the database.
- func ListFolders(db *leveldb.DB) []string {
- return ldbListFolders(db)
- }
- // DropFolder clears out all information related to the given folder from the
- // database.
- func DropFolder(db *leveldb.DB, folder string) {
- ldbDropFolder(db, []byte(folder))
- bm := &BlockMap{
- db: db,
- folder: folder,
- }
- bm.Drop()
- }
- func normalizeFilenames(fs []protocol.FileInfo) {
- for i := range fs {
- fs[i].Name = osutil.NormalizedFilename(fs[i].Name)
- }
- }
- func nativeFileIterator(fn Iterator) Iterator {
- return func(fi FileIntf) bool {
- switch f := fi.(type) {
- case protocol.FileInfo:
- f.Name = osutil.NativeFilename(f.Name)
- return fn(f)
- case FileInfoTruncated:
- f.Name = osutil.NativeFilename(f.Name)
- return fn(f)
- default:
- panic("unknown interface type")
- }
- }
- }
|