2015-01-13 12:31:14 +00:00
|
|
|
// Copyright (C) 2014 The Protocol Authors.
|
2014-09-22 19:42:11 +00:00
|
|
|
|
2015-02-06 21:34:51 +00:00
|
|
|
//go:generate -command genxdr go run ../syncthing/Godeps/_workspace/src/github.com/calmh/xdr/cmd/genxdr/main.go
|
2014-12-06 13:23:10 +00:00
|
|
|
//go:generate genxdr -o message_xdr.go message.go
|
|
|
|
|
2014-09-22 19:42:11 +00:00
|
|
|
package protocol
|
|
|
|
|
|
|
|
import "fmt"
|
|
|
|
|
|
|
|
type IndexMessage struct {
|
2015-03-08 16:55:01 +00:00
|
|
|
Folder string
|
2015-01-08 09:28:39 +00:00
|
|
|
Files []FileInfo
|
|
|
|
Flags uint32
|
|
|
|
Options []Option // max:64
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type FileInfo struct {
|
|
|
|
Name string // max:8192
|
|
|
|
Flags uint32
|
|
|
|
Modified int64
|
2015-03-20 08:58:32 +00:00
|
|
|
Version Vector
|
2015-01-18 00:26:52 +00:00
|
|
|
LocalVersion int64
|
2014-09-22 19:42:11 +00:00
|
|
|
Blocks []BlockInfo
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f FileInfo) String() string {
|
2015-03-20 08:58:32 +00:00
|
|
|
return fmt.Sprintf("File{Name:%q, Flags:0%o, Modified:%d, Version:%v, Size:%d, Blocks:%v}",
|
2014-09-22 19:42:11 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2015-07-21 13:12:19 +00:00
|
|
|
// WinsConflict returns true if "f" is the one to choose when it is in
|
|
|
|
// conflict with "other".
|
|
|
|
func (f FileInfo) WinsConflict(other FileInfo) bool {
|
|
|
|
// If a modification is in conflict with a delete, we pick the
|
|
|
|
// modification.
|
|
|
|
if !f.IsDeleted() && other.IsDeleted() {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
if f.IsDeleted() && !other.IsDeleted() {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// The one with the newer modification time wins.
|
|
|
|
if f.Modified > other.Modified {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
if f.Modified < other.Modified {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// The modification times were equal. Use the device ID in the version
|
|
|
|
// vector as tie breaker.
|
|
|
|
return f.Version.Compare(other.Version) == ConcurrentGreater
|
|
|
|
}
|
|
|
|
|
2014-09-22 19:42:11 +00:00
|
|
|
type BlockInfo struct {
|
|
|
|
Offset int64 // noencode (cache only)
|
2015-01-18 00:26:52 +00:00
|
|
|
Size int32
|
2014-09-22 19:42:11 +00:00
|
|
|
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 {
|
2015-01-08 09:28:39 +00:00
|
|
|
Folder string // max:64
|
|
|
|
Name string // max:8192
|
2015-01-18 00:26:52 +00:00
|
|
|
Offset int64
|
|
|
|
Size int32
|
2015-01-08 09:28:39 +00:00
|
|
|
Hash []byte // max:64
|
|
|
|
Flags uint32
|
|
|
|
Options []Option // max:64
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ResponseMessage struct {
|
2015-02-06 21:34:51 +00:00
|
|
|
Data []byte
|
|
|
|
Code int32
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ClusterConfigMessage struct {
|
2015-03-09 20:21:20 +00:00
|
|
|
ClientName string // max:64
|
|
|
|
ClientVersion string // max:64
|
2015-03-08 16:55:01 +00:00
|
|
|
Folders []Folder
|
2014-09-28 11:05:25 +00:00
|
|
|
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
|
2015-03-25 20:20:04 +00:00
|
|
|
Flags uint32
|
|
|
|
Options []Option // max:64
|
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
|
2015-01-18 00:26:52 +00:00
|
|
|
MaxLocalVersion int64
|
2015-03-25 20:20:04 +00:00
|
|
|
Flags uint32
|
|
|
|
Options []Option // max:64
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Option struct {
|
|
|
|
Key string // max:64
|
|
|
|
Value string // max:1024
|
|
|
|
}
|
|
|
|
|
|
|
|
type CloseMessage struct {
|
|
|
|
Reason string // max:1024
|
2015-01-18 00:26:52 +00:00
|
|
|
Code int32
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type EmptyMessage struct{}
|