Documentation ¶
Overview ¶
Package protocol implements the Block Exchange Protocol.
Index ¶
- Constants
- Variables
- func TotalInOut() (int64, int64)
- type BlockInfo
- func (o BlockInfo) AppendXDR(bs []byte) ([]byte, error)
- func (o *BlockInfo) DecodeXDR(r io.Reader) error
- func (o BlockInfo) EncodeXDR(w io.Writer) (int, error)
- func (o BlockInfo) MarshalXDR() ([]byte, error)
- func (o BlockInfo) MustMarshalXDR() []byte
- func (b BlockInfo) String() string
- func (o *BlockInfo) UnmarshalXDR(bs []byte) error
- type CloseMessage
- func (o CloseMessage) AppendXDR(bs []byte) ([]byte, error)
- func (o *CloseMessage) DecodeXDR(r io.Reader) error
- func (o CloseMessage) EncodeXDR(w io.Writer) (int, error)
- func (o CloseMessage) MarshalXDR() ([]byte, error)
- func (o CloseMessage) MustMarshalXDR() []byte
- func (o *CloseMessage) UnmarshalXDR(bs []byte) error
- type ClusterConfigMessage
- func (o ClusterConfigMessage) AppendXDR(bs []byte) ([]byte, error)
- func (o *ClusterConfigMessage) DecodeXDR(r io.Reader) error
- func (o ClusterConfigMessage) EncodeXDR(w io.Writer) (int, error)
- func (o *ClusterConfigMessage) GetOption(key string) string
- func (o ClusterConfigMessage) MarshalXDR() ([]byte, error)
- func (o ClusterConfigMessage) MustMarshalXDR() []byte
- func (o *ClusterConfigMessage) UnmarshalXDR(bs []byte) error
- type Connection
- type Device
- type DeviceID
- type EmptyMessage
- func (o EmptyMessage) AppendXDR(bs []byte) ([]byte, error)
- func (o *EmptyMessage) DecodeXDR(r io.Reader) error
- func (o EmptyMessage) EncodeXDR(w io.Writer) (int, error)
- func (o EmptyMessage) MarshalXDR() ([]byte, error)
- func (o EmptyMessage) MustMarshalXDR() []byte
- func (o *EmptyMessage) UnmarshalXDR(bs []byte) error
- type FileInfo
- func (o FileInfo) AppendXDR(bs []byte) ([]byte, error)
- func (o *FileInfo) DecodeXDR(r io.Reader) error
- func (o FileInfo) EncodeXDR(w io.Writer) (int, error)
- func (f FileInfo) HasPermissionBits() bool
- func (f FileInfo) IsDeleted() bool
- func (f FileInfo) IsDirectory() bool
- func (f FileInfo) IsInvalid() bool
- func (f FileInfo) IsSymlink() bool
- func (o FileInfo) MarshalXDR() ([]byte, error)
- func (o FileInfo) MustMarshalXDR() []byte
- func (f FileInfo) Size() (bytes int64)
- func (f FileInfo) String() string
- func (o *FileInfo) UnmarshalXDR(bs []byte) error
- type Folder
- type IndexMessage
- func (o IndexMessage) AppendXDR(bs []byte) ([]byte, error)
- func (o *IndexMessage) DecodeXDR(r io.Reader) error
- func (o IndexMessage) EncodeXDR(w io.Writer) (int, error)
- func (o IndexMessage) MarshalXDR() ([]byte, error)
- func (o IndexMessage) MustMarshalXDR() []byte
- func (o *IndexMessage) UnmarshalXDR(bs []byte) error
- type Model
- type Option
- type RequestMessage
- func (o RequestMessage) AppendXDR(bs []byte) ([]byte, error)
- func (o *RequestMessage) DecodeXDR(r io.Reader) error
- func (o RequestMessage) EncodeXDR(w io.Writer) (int, error)
- func (o RequestMessage) MarshalXDR() ([]byte, error)
- func (o RequestMessage) MustMarshalXDR() []byte
- func (o *RequestMessage) UnmarshalXDR(bs []byte) error
- type ResponseMessage
- func (o ResponseMessage) AppendXDR(bs []byte) ([]byte, error)
- func (o *ResponseMessage) DecodeXDR(r io.Reader) error
- func (o ResponseMessage) EncodeXDR(w io.Writer) (int, error)
- func (o ResponseMessage) MarshalXDR() ([]byte, error)
- func (o ResponseMessage) MustMarshalXDR() []byte
- func (o *ResponseMessage) UnmarshalXDR(bs []byte) error
- type Statistics
Constants ¶
View Source
const ( FlagDeleted uint32 = 1 << 12 FlagInvalid = 1 << 13 FlagDirectory = 1 << 14 FlagNoPermBits = 1 << 15 FlagSymlink = 1 << 16 FlagSymlinkMissingTarget = 1 << 17 FlagsAll = (1 << 18) - 1 SymlinkTypeMask = FlagDirectory | FlagSymlinkMissingTarget )
View Source
const ( FlagIntroducer = 1 << 2 )
View Source
const (
BlockSize = 128 * 1024
)
Variables ¶
View Source
var ( ErrClusterHash = fmt.Errorf("configuration error: mismatched cluster hash") ErrClosed = errors.New("connection closed") )
View Source
var LocalDeviceID = DeviceID{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff}
Functions ¶
func TotalInOut ¶
Types ¶
type BlockInfo ¶
func (BlockInfo) MarshalXDR ¶
func (BlockInfo) MustMarshalXDR ¶
func (*BlockInfo) UnmarshalXDR ¶
type CloseMessage ¶
func (CloseMessage) MarshalXDR ¶
func (o CloseMessage) MarshalXDR() ([]byte, error)
func (CloseMessage) MustMarshalXDR ¶
func (o CloseMessage) MustMarshalXDR() []byte
func (*CloseMessage) UnmarshalXDR ¶
func (o *CloseMessage) UnmarshalXDR(bs []byte) error
type ClusterConfigMessage ¶
type ClusterConfigMessage struct { ClientName string // max:64 ClientVersion string // max:64 Folders []Folder // max:64 Options []Option // max:64 }
func (ClusterConfigMessage) AppendXDR ¶
func (o ClusterConfigMessage) AppendXDR(bs []byte) ([]byte, error)
func (*ClusterConfigMessage) DecodeXDR ¶
func (o *ClusterConfigMessage) DecodeXDR(r io.Reader) error
func (ClusterConfigMessage) EncodeXDR ¶
func (o ClusterConfigMessage) EncodeXDR(w io.Writer) (int, error)
func (*ClusterConfigMessage) GetOption ¶
func (o *ClusterConfigMessage) GetOption(key string) string
func (ClusterConfigMessage) MarshalXDR ¶
func (o ClusterConfigMessage) MarshalXDR() ([]byte, error)
func (ClusterConfigMessage) MustMarshalXDR ¶
func (o ClusterConfigMessage) MustMarshalXDR() []byte
func (*ClusterConfigMessage) UnmarshalXDR ¶
func (o *ClusterConfigMessage) UnmarshalXDR(bs []byte) error
type Connection ¶
type Device ¶
func (Device) MarshalXDR ¶
func (Device) MustMarshalXDR ¶
func (*Device) UnmarshalXDR ¶
type DeviceID ¶
type DeviceID [32]byte
func DeviceIDFromBytes ¶
func DeviceIDFromString ¶
func NewDeviceID ¶
NewDeviceID generates a new device ID from the raw bytes of a certificate
func (*DeviceID) MarshalText ¶
func (*DeviceID) UnmarshalText ¶
type EmptyMessage ¶
type EmptyMessage struct{}
func (EmptyMessage) MarshalXDR ¶
func (o EmptyMessage) MarshalXDR() ([]byte, error)
func (EmptyMessage) MustMarshalXDR ¶
func (o EmptyMessage) MustMarshalXDR() []byte
func (*EmptyMessage) UnmarshalXDR ¶
func (o *EmptyMessage) UnmarshalXDR(bs []byte) error
type FileInfo ¶
type FileInfo struct { Name string // max:8192 Flags uint32 Modified int64 Version int64 LocalVersion int64 Blocks []BlockInfo }
func (FileInfo) HasPermissionBits ¶
func (FileInfo) IsDirectory ¶
func (FileInfo) MarshalXDR ¶
func (FileInfo) MustMarshalXDR ¶
func (*FileInfo) UnmarshalXDR ¶
type Folder ¶
func (Folder) MarshalXDR ¶
func (Folder) MustMarshalXDR ¶
func (*Folder) UnmarshalXDR ¶
type IndexMessage ¶
type IndexMessage struct { Folder string // max:64 Files []FileInfo Flags uint32 Options []Option // max:64 }
func (IndexMessage) MarshalXDR ¶
func (o IndexMessage) MarshalXDR() ([]byte, error)
func (IndexMessage) MustMarshalXDR ¶
func (o IndexMessage) MustMarshalXDR() []byte
func (*IndexMessage) UnmarshalXDR ¶
func (o *IndexMessage) UnmarshalXDR(bs []byte) error
type Model ¶
type Model interface { // An index was received from the peer device Index(deviceID DeviceID, folder string, files []FileInfo) // An index update was received from the peer device IndexUpdate(deviceID DeviceID, folder string, files []FileInfo) // A request was made by the peer device Request(deviceID DeviceID, folder string, name string, offset int64, size int) ([]byte, error) // A cluster configuration message was received ClusterConfig(deviceID DeviceID, config ClusterConfigMessage) // The peer device closed the connection Close(deviceID DeviceID, err error) }
type Option ¶
func (Option) MarshalXDR ¶
func (Option) MustMarshalXDR ¶
func (*Option) UnmarshalXDR ¶
type RequestMessage ¶
type RequestMessage struct { Folder string // max:64 Name string // max:8192 Offset int64 Size int32 Hash []byte // max:64 Flags uint32 Options []Option // max:64 }
func (RequestMessage) MarshalXDR ¶
func (o RequestMessage) MarshalXDR() ([]byte, error)
func (RequestMessage) MustMarshalXDR ¶
func (o RequestMessage) MustMarshalXDR() []byte
func (*RequestMessage) UnmarshalXDR ¶
func (o *RequestMessage) UnmarshalXDR(bs []byte) error
type ResponseMessage ¶
func (ResponseMessage) MarshalXDR ¶
func (o ResponseMessage) MarshalXDR() ([]byte, error)
func (ResponseMessage) MustMarshalXDR ¶
func (o ResponseMessage) MustMarshalXDR() []byte
func (*ResponseMessage) UnmarshalXDR ¶
func (o *ResponseMessage) UnmarshalXDR(bs []byte) error
Click to show internal directories.
Click to hide internal directories.