2014-11-16 20:13:20 +00:00
|
|
|
// Copyright (C) 2014 The Syncthing Authors.
|
2014-09-29 19:43:32 +00:00
|
|
|
//
|
|
|
|
// 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/>.
|
2014-09-22 19:42:11 +00:00
|
|
|
|
2014-12-06 13:23:10 +00:00
|
|
|
//go:generate -command genxdr go run ../../Godeps/_workspace/src/github.com/calmh/xdr/cmd/genxdr/main.go
|
|
|
|
//go:generate genxdr -o message_xdr.go message.go
|
|
|
|
|
2014-09-22 19:42:11 +00:00
|
|
|
package protocol
|
|
|
|
|
|
|
|
import "fmt"
|
|
|
|
|
|
|
|
type IndexMessage struct {
|
2014-09-28 11:00:38 +00:00
|
|
|
Folder string // max:64
|
2014-09-28 11:05:25 +00:00
|
|
|
Files []FileInfo
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type FileInfo struct {
|
|
|
|
Name string // max:8192
|
|
|
|
Flags uint32
|
|
|
|
Modified int64
|
|
|
|
Version uint64
|
|
|
|
LocalVersion uint64
|
|
|
|
Blocks []BlockInfo
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f FileInfo) String() string {
|
|
|
|
return fmt.Sprintf("File{Name:%q, Flags:0%o, Modified:%d, Version:%d, Size:%d, Blocks:%v}",
|
|
|
|
f.Name, f.Flags, f.Modified, f.Version, f.Size(), f.Blocks)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f FileInfo) Size() (bytes int64) {
|
2014-11-04 23:22:15 +00:00
|
|
|
if f.IsDeleted() || f.IsDirectory() {
|
2014-09-22 19:42:11 +00:00
|
|
|
return 128
|
|
|
|
}
|
|
|
|
for _, b := range f.Blocks {
|
|
|
|
bytes += int64(b.Size)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f FileInfo) IsDeleted() bool {
|
2014-11-04 23:22:15 +00:00
|
|
|
return f.Flags&FlagDeleted != 0
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f FileInfo) IsInvalid() bool {
|
2014-11-04 23:22:15 +00:00
|
|
|
return f.Flags&FlagInvalid != 0
|
2014-10-06 20:57:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f FileInfo) IsDirectory() bool {
|
2014-11-04 23:22:15 +00:00
|
|
|
return f.Flags&FlagDirectory != 0
|
|
|
|
}
|
|
|
|
|
2014-11-07 23:06:04 +00:00
|
|
|
func (f FileInfo) IsSymlink() bool {
|
|
|
|
return f.Flags&FlagSymlink != 0
|
|
|
|
}
|
|
|
|
|
2014-11-04 23:22:15 +00:00
|
|
|
func (f FileInfo) HasPermissionBits() bool {
|
|
|
|
return f.Flags&FlagNoPermBits == 0
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
|
|
|
|
Add job queue (fixes #629)
Request to terminate currently ongoing downloads and jump to the bumped file
incoming in 3, 2, 1.
Also, has a slightly strange effect where we pop a job off the queue, but
the copyChannel is still busy and blocks, though it gets moved to the
progress slice in the jobqueue, and looks like it's in progress which it isn't
as it's waiting to be picked up from the copyChan.
As a result, the progress emitter doesn't register on the task, and hence the file
doesn't have a progress bar, but cannot be replaced by a bump.
I guess I can fix progress bar issue by moving the progressEmiter.Register just
before passing the file to the copyChan, but then we are back to the initial
problem of a file with a progress bar, but no progress happening as it's stuck
on write to copyChan
I checked if there is a way to check for channel writeability (before popping)
but got struck by lightning just for bringing the idea up in #go-nuts.
My ideal scenario would be to check if copyChan is writeable, pop job from the
queue and shove it down handleFile. This way jobs would stay in the queue while
they cannot be handled, meaning that the `Bump` could bring your file up higher.
2014-12-01 19:23:06 +00:00
|
|
|
func (f FileInfo) ToTruncated() FileInfoTruncated {
|
|
|
|
return FileInfoTruncated{
|
|
|
|
Name: f.Name,
|
|
|
|
Flags: f.Flags,
|
|
|
|
Modified: f.Modified,
|
|
|
|
Version: f.Version,
|
|
|
|
LocalVersion: f.LocalVersion,
|
|
|
|
NumBlocks: uint32(len(f.Blocks)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-22 19:42:11 +00:00
|
|
|
// Used for unmarshalling a FileInfo structure but skipping the actual block list
|
|
|
|
type FileInfoTruncated struct {
|
|
|
|
Name string // max:8192
|
|
|
|
Flags uint32
|
|
|
|
Modified int64
|
|
|
|
Version uint64
|
|
|
|
LocalVersion uint64
|
|
|
|
NumBlocks uint32
|
|
|
|
}
|
|
|
|
|
2014-10-16 07:26:20 +00:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2014-11-23 00:52:48 +00:00
|
|
|
func BlocksToSize(num uint32) int64 {
|
|
|
|
if num < 2 {
|
|
|
|
return BlockSize / 2
|
|
|
|
}
|
|
|
|
return int64(num-1)*BlockSize + BlockSize/2
|
|
|
|
}
|
|
|
|
|
2014-09-22 19:42:11 +00:00
|
|
|
// Returns a statistical guess on the size, not the exact figure
|
|
|
|
func (f FileInfoTruncated) Size() int64 {
|
2014-11-04 23:22:15 +00:00
|
|
|
if f.IsDeleted() || f.IsDirectory() {
|
2014-09-22 19:42:11 +00:00
|
|
|
return 128
|
|
|
|
}
|
2014-11-23 00:52:48 +00:00
|
|
|
return BlocksToSize(f.NumBlocks)
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f FileInfoTruncated) IsDeleted() bool {
|
2014-11-04 23:22:15 +00:00
|
|
|
return f.Flags&FlagDeleted != 0
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f FileInfoTruncated) IsInvalid() bool {
|
2014-11-04 23:22:15 +00:00
|
|
|
return f.Flags&FlagInvalid != 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f FileInfoTruncated) IsDirectory() bool {
|
|
|
|
return f.Flags&FlagDirectory != 0
|
|
|
|
}
|
|
|
|
|
2014-11-07 23:06:04 +00:00
|
|
|
func (f FileInfoTruncated) IsSymlink() bool {
|
|
|
|
return f.Flags&FlagSymlink != 0
|
|
|
|
}
|
|
|
|
|
2014-11-04 23:22:15 +00:00
|
|
|
func (f FileInfoTruncated) HasPermissionBits() bool {
|
|
|
|
return f.Flags&FlagNoPermBits == 0
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type FileIntf interface {
|
|
|
|
Size() int64
|
|
|
|
IsDeleted() bool
|
|
|
|
IsInvalid() bool
|
2014-11-04 23:22:15 +00:00
|
|
|
IsDirectory() bool
|
2014-11-07 23:06:04 +00:00
|
|
|
IsSymlink() bool
|
2014-11-04 23:22:15 +00:00
|
|
|
HasPermissionBits() bool
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type BlockInfo struct {
|
|
|
|
Offset int64 // noencode (cache only)
|
|
|
|
Size uint32
|
|
|
|
Hash []byte // max:64
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b BlockInfo) String() string {
|
|
|
|
return fmt.Sprintf("Block{%d/%d/%x}", b.Offset, b.Size, b.Hash)
|
|
|
|
}
|
|
|
|
|
|
|
|
type RequestMessage struct {
|
2014-09-28 11:00:38 +00:00
|
|
|
Folder string // max:64
|
2014-09-28 11:05:25 +00:00
|
|
|
Name string // max:8192
|
|
|
|
Offset uint64
|
|
|
|
Size uint32
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ResponseMessage struct {
|
|
|
|
Data []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
type ClusterConfigMessage struct {
|
2014-09-28 11:05:25 +00:00
|
|
|
ClientName string // max:64
|
|
|
|
ClientVersion string // max:64
|
|
|
|
Folders []Folder // max:64
|
|
|
|
Options []Option // max:64
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (o *ClusterConfigMessage) GetOption(key string) string {
|
|
|
|
for _, option := range o.Options {
|
|
|
|
if option.Key == key {
|
|
|
|
return option.Value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2014-09-28 11:00:38 +00:00
|
|
|
type Folder struct {
|
2014-10-20 20:45:26 +00:00
|
|
|
ID string // max:64
|
|
|
|
Devices []Device
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
|
|
|
|
2014-09-28 11:00:38 +00:00
|
|
|
type Device struct {
|
2014-09-22 19:42:11 +00:00
|
|
|
ID []byte // max:32
|
|
|
|
Flags uint32
|
|
|
|
MaxLocalVersion uint64
|
|
|
|
}
|
|
|
|
|
|
|
|
type Option struct {
|
|
|
|
Key string // max:64
|
|
|
|
Value string // max:1024
|
|
|
|
}
|
|
|
|
|
|
|
|
type CloseMessage struct {
|
|
|
|
Reason string // max:1024
|
|
|
|
}
|
|
|
|
|
|
|
|
type EmptyMessage struct{}
|