2014-07-12 22:45:33 +00:00
|
|
|
// Copyright (C) 2014 Jakob Borg and Contributors (see the CONTRIBUTORS file).
|
|
|
|
// All rights reserved. Use of this source code is governed by an MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
2014-06-01 20:50:14 +00:00
|
|
|
|
2014-02-20 16:40:15 +00:00
|
|
|
package protocol
|
|
|
|
|
2014-07-12 21:06:48 +00:00
|
|
|
import "fmt"
|
|
|
|
|
2014-02-20 16:40:15 +00:00
|
|
|
type IndexMessage struct {
|
|
|
|
Repository string // max:64
|
2014-07-05 09:05:45 +00:00
|
|
|
Files []FileInfo // max:10000000
|
2014-02-20 16:40:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type FileInfo struct {
|
|
|
|
Name string // max:1024
|
|
|
|
Flags uint32
|
|
|
|
Modified int64
|
2014-03-28 13:36:57 +00:00
|
|
|
Version uint64
|
2014-07-05 09:05:45 +00:00
|
|
|
Blocks []BlockInfo // max:1000000
|
2014-02-20 16:40:15 +00:00
|
|
|
}
|
|
|
|
|
2014-07-12 21:06:48 +00:00
|
|
|
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) {
|
|
|
|
for _, b := range f.Blocks {
|
|
|
|
bytes += int64(b.Size)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a FileInfo) Equals(b FileInfo) bool {
|
|
|
|
return a.Version == b.Version
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a FileInfo) NewerThan(b FileInfo) bool {
|
|
|
|
return a.Version > b.Version
|
|
|
|
}
|
|
|
|
|
2014-02-20 16:40:15 +00:00
|
|
|
type BlockInfo struct {
|
2014-07-12 21:06:48 +00:00
|
|
|
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)
|
2014-02-20 16:40:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type RequestMessage struct {
|
|
|
|
Repository string // max:64
|
|
|
|
Name string // max:1024
|
|
|
|
Offset uint64
|
|
|
|
Size uint32
|
|
|
|
}
|
|
|
|
|
2014-04-13 13:28:26 +00:00
|
|
|
type ClusterConfigMessage struct {
|
|
|
|
ClientName string // max:64
|
|
|
|
ClientVersion string // max:64
|
|
|
|
Repositories []Repository // max:64
|
|
|
|
Options []Option // max:64
|
|
|
|
}
|
|
|
|
|
|
|
|
type Repository struct {
|
|
|
|
ID string // max:64
|
|
|
|
Nodes []Node // max:64
|
|
|
|
}
|
|
|
|
|
|
|
|
type Node struct {
|
2014-06-29 23:42:03 +00:00
|
|
|
ID []byte // max:32
|
2014-06-23 07:31:59 +00:00
|
|
|
Flags uint32
|
|
|
|
MaxVersion uint64
|
2014-02-20 16:40:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Option struct {
|
|
|
|
Key string // max:64
|
|
|
|
Value string // max:1024
|
|
|
|
}
|