| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- // Copyright (C) 2014 The Syncthing Authors.
- //
- // This program is free software: you can redistribute it and/or modify it
- // under the terms of the GNU General Public License as published by the Free
- // Software Foundation, either version 3 of the License, or (at your option)
- // any later version.
- //
- // This program is distributed in the hope that it will be useful, but WITHOUT
- // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
- // more details.
- //
- // You should have received a copy of the GNU General Public License along
- // with this program. If not, see <http://www.gnu.org/licenses/>.
- //go:generate -command genxdr go run ../../Godeps/_workspace/src/github.com/calmh/xdr/cmd/genxdr/main.go
- //go:generate genxdr -o truncated_xdr.go truncated.go
- package files
- import (
- "fmt"
- "github.com/syncthing/syncthing/internal/protocol"
- )
- // Used for unmarshalling a FileInfo structure but skipping the block list.
- type FileInfoTruncated struct {
- Name string // max:8192
- Flags uint32
- Modified int64
- Version uint64
- LocalVersion uint64
- NumBlocks uint32
- }
- func (f FileInfoTruncated) String() string {
- return fmt.Sprintf("File{Name:%q, Flags:0%o, Modified:%d, Version:%d, Size:%d, NumBlocks:%d}",
- f.Name, f.Flags, f.Modified, f.Version, f.Size(), f.NumBlocks)
- }
- // Returns a statistical guess on the size, not the exact figure
- func (f FileInfoTruncated) Size() int64 {
- if f.IsDeleted() || f.IsDirectory() {
- return 128
- }
- return BlocksToSize(f.NumBlocks)
- }
- func (f FileInfoTruncated) IsDeleted() bool {
- return f.Flags&protocol.FlagDeleted != 0
- }
- func (f FileInfoTruncated) IsInvalid() bool {
- return f.Flags&protocol.FlagInvalid != 0
- }
- func (f FileInfoTruncated) IsDirectory() bool {
- return f.Flags&protocol.FlagDirectory != 0
- }
- func (f FileInfoTruncated) IsSymlink() bool {
- return f.Flags&protocol.FlagSymlink != 0
- }
- func (f FileInfoTruncated) HasPermissionBits() bool {
- return f.Flags&protocol.FlagNoPermBits == 0
- }
- func Truncate(f protocol.FileInfo) FileInfoTruncated {
- return FileInfoTruncated{
- Name: f.Name,
- Flags: f.Flags,
- Modified: f.Modified,
- Version: f.Version,
- LocalVersion: f.LocalVersion,
- NumBlocks: uint32(len(f.Blocks)),
- }
- }
- func BlocksToSize(num uint32) int64 {
- if num < 2 {
- return protocol.BlockSize / 2
- }
- return int64(num-1)*protocol.BlockSize + protocol.BlockSize/2
- }
|