123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305 |
- // 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/.
- //go:generate go run ../../script/protofmt.go structs.proto
- //go:generate protoc -I ../../ -I . --gogofast_out=Mlib/protocol/bep.proto=github.com/syncthing/syncthing/lib/protocol:. structs.proto
- package db
- import (
- "bytes"
- "fmt"
- "sort"
- "time"
- "github.com/syncthing/syncthing/lib/protocol"
- )
- func (f FileInfoTruncated) String() string {
- switch f.Type {
- case protocol.FileInfoTypeDirectory:
- return fmt.Sprintf("Directory{Name:%q, Sequence:%d, Permissions:0%o, ModTime:%v, Version:%v, Deleted:%v, Invalid:%v, LocalFlags:0x%x, NoPermissions:%v}",
- f.Name, f.Sequence, f.Permissions, f.ModTime(), f.Version, f.Deleted, f.RawInvalid, f.LocalFlags, f.NoPermissions)
- case protocol.FileInfoTypeFile:
- return fmt.Sprintf("File{Name:%q, Sequence:%d, Permissions:0%o, ModTime:%v, Version:%v, Length:%d, Deleted:%v, Invalid:%v, LocalFlags:0x%x, NoPermissions:%v, BlockSize:%d}",
- f.Name, f.Sequence, f.Permissions, f.ModTime(), f.Version, f.Size, f.Deleted, f.RawInvalid, f.LocalFlags, f.NoPermissions, f.RawBlockSize)
- case protocol.FileInfoTypeSymlink, protocol.FileInfoTypeDeprecatedSymlinkDirectory, protocol.FileInfoTypeDeprecatedSymlinkFile:
- return fmt.Sprintf("Symlink{Name:%q, Type:%v, Sequence:%d, Version:%v, Deleted:%v, Invalid:%v, LocalFlags:0x%x, NoPermissions:%v, SymlinkTarget:%q}",
- f.Name, f.Type, f.Sequence, f.Version, f.Deleted, f.RawInvalid, f.LocalFlags, f.NoPermissions, f.SymlinkTarget)
- default:
- panic("mystery file type detected")
- }
- }
- func (f FileInfoTruncated) IsDeleted() bool {
- return f.Deleted
- }
- func (f FileInfoTruncated) IsInvalid() bool {
- return f.RawInvalid || f.LocalFlags&protocol.LocalInvalidFlags != 0
- }
- func (f FileInfoTruncated) IsUnsupported() bool {
- return f.LocalFlags&protocol.FlagLocalUnsupported != 0
- }
- func (f FileInfoTruncated) IsIgnored() bool {
- return f.LocalFlags&protocol.FlagLocalIgnored != 0
- }
- func (f FileInfoTruncated) MustRescan() bool {
- return f.LocalFlags&protocol.FlagLocalMustRescan != 0
- }
- func (f FileInfoTruncated) IsReceiveOnlyChanged() bool {
- return f.LocalFlags&protocol.FlagLocalReceiveOnly != 0
- }
- func (f FileInfoTruncated) IsDirectory() bool {
- return f.Type == protocol.FileInfoTypeDirectory
- }
- func (f FileInfoTruncated) IsSymlink() bool {
- switch f.Type {
- case protocol.FileInfoTypeSymlink, protocol.FileInfoTypeDeprecatedSymlinkDirectory, protocol.FileInfoTypeDeprecatedSymlinkFile:
- return true
- default:
- return false
- }
- }
- func (f FileInfoTruncated) ShouldConflict() bool {
- return f.LocalFlags&protocol.LocalConflictFlags != 0
- }
- func (f FileInfoTruncated) HasPermissionBits() bool {
- return !f.NoPermissions
- }
- func (f FileInfoTruncated) FileSize() int64 {
- if f.Deleted {
- return 0
- }
- if f.IsDirectory() || f.IsSymlink() {
- return protocol.SyntheticDirectorySize
- }
- return f.Size
- }
- func (f FileInfoTruncated) BlockSize() int {
- if f.RawBlockSize == 0 {
- return protocol.MinBlockSize
- }
- return int(f.RawBlockSize)
- }
- func (f FileInfoTruncated) FileName() string {
- return f.Name
- }
- func (f FileInfoTruncated) FileLocalFlags() uint32 {
- return f.LocalFlags
- }
- func (f FileInfoTruncated) ModTime() time.Time {
- return time.Unix(f.ModifiedS, int64(f.ModifiedNs))
- }
- func (f FileInfoTruncated) SequenceNo() int64 {
- return f.Sequence
- }
- func (f FileInfoTruncated) FileVersion() protocol.Vector {
- return f.Version
- }
- func (f FileInfoTruncated) FileType() protocol.FileInfoType {
- return f.Type
- }
- func (f FileInfoTruncated) FilePermissions() uint32 {
- return f.Permissions
- }
- func (f FileInfoTruncated) FileModifiedBy() protocol.ShortID {
- return f.ModifiedBy
- }
- func (f FileInfoTruncated) ConvertToIgnoredFileInfo(by protocol.ShortID) protocol.FileInfo {
- file := f.copyToFileInfo()
- file.SetIgnored(by)
- return file
- }
- func (f FileInfoTruncated) ConvertToDeletedFileInfo(by protocol.ShortID) protocol.FileInfo {
- file := f.copyToFileInfo()
- file.SetDeleted(by)
- return file
- }
- // ConvertDeletedToFileInfo converts a deleted truncated file info to a regular file info
- func (f FileInfoTruncated) ConvertDeletedToFileInfo() protocol.FileInfo {
- if !f.Deleted {
- panic("ConvertDeletedToFileInfo must only be called on deleted items")
- }
- return f.copyToFileInfo()
- }
- // copyToFileInfo just copies all members of FileInfoTruncated to protocol.FileInfo
- func (f FileInfoTruncated) copyToFileInfo() protocol.FileInfo {
- return protocol.FileInfo{
- Name: f.Name,
- Size: f.Size,
- ModifiedS: f.ModifiedS,
- ModifiedBy: f.ModifiedBy,
- Version: f.Version,
- Sequence: f.Sequence,
- SymlinkTarget: f.SymlinkTarget,
- BlocksHash: f.BlocksHash,
- Type: f.Type,
- Permissions: f.Permissions,
- ModifiedNs: f.ModifiedNs,
- RawBlockSize: f.RawBlockSize,
- LocalFlags: f.LocalFlags,
- Deleted: f.Deleted,
- RawInvalid: f.RawInvalid,
- NoPermissions: f.NoPermissions,
- }
- }
- func (c Counts) Add(other Counts) Counts {
- return Counts{
- Files: c.Files + other.Files,
- Directories: c.Directories + other.Directories,
- Symlinks: c.Symlinks + other.Symlinks,
- Deleted: c.Deleted + other.Deleted,
- Bytes: c.Bytes + other.Bytes,
- Sequence: c.Sequence + other.Sequence,
- DeviceID: protocol.EmptyDeviceID[:],
- LocalFlags: c.LocalFlags | other.LocalFlags,
- }
- }
- func (c Counts) TotalItems() int32 {
- return c.Files + c.Directories + c.Symlinks + c.Deleted
- }
- // Equal compares the numbers only, not sequence/dev/flags.
- func (c Counts) Equal(o Counts) bool {
- return c.Files == o.Files && c.Directories == o.Directories && c.Symlinks == o.Symlinks && c.Deleted == o.Deleted && c.Bytes == o.Bytes
- }
- func (vl VersionList) String() string {
- var b bytes.Buffer
- var id protocol.DeviceID
- b.WriteString("{")
- for i, v := range vl.Versions {
- if i > 0 {
- b.WriteString(", ")
- }
- copy(id[:], v.Device)
- fmt.Fprintf(&b, "{%v, %v}", v.Version, id)
- }
- b.WriteString("}")
- return b.String()
- }
- // update brings the VersionList up to date with file. It returns the updated
- // VersionList, a potentially removed old FileVersion and its index, as well as
- // the index where the new FileVersion was inserted.
- func (vl VersionList) update(folder, device []byte, file protocol.FileInfo, t readOnlyTransaction) (_ VersionList, removedFV FileVersion, removedAt int, insertedAt int, err error) {
- vl, removedFV, removedAt = vl.pop(device)
- nv := FileVersion{
- Device: device,
- Version: file.Version,
- Invalid: file.IsInvalid(),
- Deleted: file.IsDeleted(),
- }
- i := 0
- if nv.Invalid {
- i = sort.Search(len(vl.Versions), func(j int) bool {
- return vl.Versions[j].Invalid
- })
- }
- for ; i < len(vl.Versions); i++ {
- switch vl.Versions[i].Version.Compare(file.Version) {
- case protocol.Equal:
- fallthrough
- case protocol.Lesser:
- // The version at this point in the list is equal to or lesser
- // ("older") than us. We insert ourselves in front of it.
- vl = vl.insertAt(i, nv)
- return vl, removedFV, removedAt, i, nil
- case protocol.ConcurrentLesser, protocol.ConcurrentGreater:
- // The version at this point is in conflict with us. We must pull
- // the actual file metadata to determine who wins. If we win, we
- // insert ourselves in front of the loser here. (The "Lesser" and
- // "Greater" in the condition above is just based on the device
- // IDs in the version vector, which is not the only thing we use
- // to determine the winner.)
- //
- // A surprise missing file entry here is counted as a win for us.
- if of, ok, err := t.getFile(folder, vl.Versions[i].Device, []byte(file.Name)); err != nil {
- return vl, removedFV, removedAt, i, err
- } else if !ok || file.WinsConflict(of) {
- vl = vl.insertAt(i, nv)
- return vl, removedFV, removedAt, i, nil
- }
- }
- }
- // We didn't find a position for an insert above, so append to the end.
- vl.Versions = append(vl.Versions, nv)
- return vl, removedFV, removedAt, len(vl.Versions) - 1, nil
- }
- func (vl VersionList) insertAt(i int, v FileVersion) VersionList {
- vl.Versions = append(vl.Versions, FileVersion{})
- copy(vl.Versions[i+1:], vl.Versions[i:])
- vl.Versions[i] = v
- return vl
- }
- // pop returns the VersionList without the entry for the given device, as well
- // as the removed FileVersion and the position, where that FileVersion was.
- // If there is no FileVersion for the given device, the position is -1.
- func (vl VersionList) pop(device []byte) (VersionList, FileVersion, int) {
- for i, v := range vl.Versions {
- if bytes.Equal(v.Device, device) {
- vl.Versions = append(vl.Versions[:i], vl.Versions[i+1:]...)
- return vl, v, i
- }
- }
- return vl, FileVersion{}, -1
- }
- func (vl VersionList) Get(device []byte) (FileVersion, bool) {
- for _, v := range vl.Versions {
- if bytes.Equal(v.Device, device) {
- return v, true
- }
- }
- return FileVersion{}, false
- }
- type fileList []protocol.FileInfo
- func (fl fileList) Len() int {
- return len(fl)
- }
- func (fl fileList) Swap(a, b int) {
- fl[a], fl[b] = fl[b], fl[a]
- }
- func (fl fileList) Less(a, b int) bool {
- return fl[a].Name < fl[b].Name
- }
|