| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861 |
- // 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.
- // ************************************************************
- // This file is automatically generated by genxdr. Do not edit.
- // ************************************************************
- package protocol
- import (
- "bytes"
- "io"
- "github.com/calmh/syncthing/xdr"
- )
- /*
- IndexMessage Structure:
- 0 1 2 3
- 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Length of Repository |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- / /
- \ Repository (variable length) \
- / /
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Number of Files |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- / /
- \ Zero or more FileInfo Structures \
- / /
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- struct IndexMessage {
- string Repository<64>;
- FileInfo Files<>;
- }
- */
- func (o IndexMessage) EncodeXDR(w io.Writer) (int, error) {
- var xw = xdr.NewWriter(w)
- return o.encodeXDR(xw)
- }
- func (o IndexMessage) MarshalXDR() []byte {
- return o.AppendXDR(make([]byte, 0, 128))
- }
- func (o IndexMessage) AppendXDR(bs []byte) []byte {
- var aw = xdr.AppendWriter(bs)
- var xw = xdr.NewWriter(&aw)
- o.encodeXDR(xw)
- return []byte(aw)
- }
- func (o IndexMessage) encodeXDR(xw *xdr.Writer) (int, error) {
- if len(o.Repository) > 64 {
- return xw.Tot(), xdr.ErrElementSizeExceeded
- }
- xw.WriteString(o.Repository)
- xw.WriteUint32(uint32(len(o.Files)))
- for i := range o.Files {
- o.Files[i].encodeXDR(xw)
- }
- return xw.Tot(), xw.Error()
- }
- func (o *IndexMessage) DecodeXDR(r io.Reader) error {
- xr := xdr.NewReader(r)
- return o.decodeXDR(xr)
- }
- func (o *IndexMessage) UnmarshalXDR(bs []byte) error {
- var br = bytes.NewReader(bs)
- var xr = xdr.NewReader(br)
- return o.decodeXDR(xr)
- }
- func (o *IndexMessage) decodeXDR(xr *xdr.Reader) error {
- o.Repository = xr.ReadStringMax(64)
- _FilesSize := int(xr.ReadUint32())
- o.Files = make([]FileInfo, _FilesSize)
- for i := range o.Files {
- (&o.Files[i]).decodeXDR(xr)
- }
- return xr.Error()
- }
- /*
- FileInfo Structure:
- 0 1 2 3
- 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Length of Name |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- / /
- \ Name (variable length) \
- / /
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Flags |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | |
- + Modified (64 bits) +
- | |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | |
- + Version (64 bits) +
- | |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | |
- + Local Version (64 bits) +
- | |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Number of Blocks |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- / /
- \ Zero or more BlockInfo Structures \
- / /
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- struct FileInfo {
- string Name<1024>;
- unsigned int Flags;
- hyper Modified;
- unsigned hyper Version;
- unsigned hyper LocalVersion;
- BlockInfo Blocks<>;
- }
- */
- func (o FileInfo) EncodeXDR(w io.Writer) (int, error) {
- var xw = xdr.NewWriter(w)
- return o.encodeXDR(xw)
- }
- func (o FileInfo) MarshalXDR() []byte {
- return o.AppendXDR(make([]byte, 0, 128))
- }
- func (o FileInfo) AppendXDR(bs []byte) []byte {
- var aw = xdr.AppendWriter(bs)
- var xw = xdr.NewWriter(&aw)
- o.encodeXDR(xw)
- return []byte(aw)
- }
- func (o FileInfo) encodeXDR(xw *xdr.Writer) (int, error) {
- if len(o.Name) > 1024 {
- return xw.Tot(), xdr.ErrElementSizeExceeded
- }
- xw.WriteString(o.Name)
- xw.WriteUint32(o.Flags)
- xw.WriteUint64(uint64(o.Modified))
- xw.WriteUint64(o.Version)
- xw.WriteUint64(o.LocalVersion)
- xw.WriteUint32(uint32(len(o.Blocks)))
- for i := range o.Blocks {
- o.Blocks[i].encodeXDR(xw)
- }
- return xw.Tot(), xw.Error()
- }
- func (o *FileInfo) DecodeXDR(r io.Reader) error {
- xr := xdr.NewReader(r)
- return o.decodeXDR(xr)
- }
- func (o *FileInfo) UnmarshalXDR(bs []byte) error {
- var br = bytes.NewReader(bs)
- var xr = xdr.NewReader(br)
- return o.decodeXDR(xr)
- }
- func (o *FileInfo) decodeXDR(xr *xdr.Reader) error {
- o.Name = xr.ReadStringMax(1024)
- o.Flags = xr.ReadUint32()
- o.Modified = int64(xr.ReadUint64())
- o.Version = xr.ReadUint64()
- o.LocalVersion = xr.ReadUint64()
- _BlocksSize := int(xr.ReadUint32())
- o.Blocks = make([]BlockInfo, _BlocksSize)
- for i := range o.Blocks {
- (&o.Blocks[i]).decodeXDR(xr)
- }
- return xr.Error()
- }
- /*
- BlockInfo Structure:
- 0 1 2 3
- 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Size |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Length of Hash |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- / /
- \ Hash (variable length) \
- / /
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- struct BlockInfo {
- unsigned int Size;
- opaque Hash<64>;
- }
- */
- func (o BlockInfo) EncodeXDR(w io.Writer) (int, error) {
- var xw = xdr.NewWriter(w)
- return o.encodeXDR(xw)
- }
- func (o BlockInfo) MarshalXDR() []byte {
- return o.AppendXDR(make([]byte, 0, 128))
- }
- func (o BlockInfo) AppendXDR(bs []byte) []byte {
- var aw = xdr.AppendWriter(bs)
- var xw = xdr.NewWriter(&aw)
- o.encodeXDR(xw)
- return []byte(aw)
- }
- func (o BlockInfo) encodeXDR(xw *xdr.Writer) (int, error) {
- xw.WriteUint32(o.Size)
- if len(o.Hash) > 64 {
- return xw.Tot(), xdr.ErrElementSizeExceeded
- }
- xw.WriteBytes(o.Hash)
- return xw.Tot(), xw.Error()
- }
- func (o *BlockInfo) DecodeXDR(r io.Reader) error {
- xr := xdr.NewReader(r)
- return o.decodeXDR(xr)
- }
- func (o *BlockInfo) UnmarshalXDR(bs []byte) error {
- var br = bytes.NewReader(bs)
- var xr = xdr.NewReader(br)
- return o.decodeXDR(xr)
- }
- func (o *BlockInfo) decodeXDR(xr *xdr.Reader) error {
- o.Size = xr.ReadUint32()
- o.Hash = xr.ReadBytesMax(64)
- return xr.Error()
- }
- /*
- RequestMessage Structure:
- 0 1 2 3
- 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Length of Repository |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- / /
- \ Repository (variable length) \
- / /
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Length of Name |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- / /
- \ Name (variable length) \
- / /
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | |
- + Offset (64 bits) +
- | |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Size |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- struct RequestMessage {
- string Repository<64>;
- string Name<1024>;
- unsigned hyper Offset;
- unsigned int Size;
- }
- */
- func (o RequestMessage) EncodeXDR(w io.Writer) (int, error) {
- var xw = xdr.NewWriter(w)
- return o.encodeXDR(xw)
- }
- func (o RequestMessage) MarshalXDR() []byte {
- return o.AppendXDR(make([]byte, 0, 128))
- }
- func (o RequestMessage) AppendXDR(bs []byte) []byte {
- var aw = xdr.AppendWriter(bs)
- var xw = xdr.NewWriter(&aw)
- o.encodeXDR(xw)
- return []byte(aw)
- }
- func (o RequestMessage) encodeXDR(xw *xdr.Writer) (int, error) {
- if len(o.Repository) > 64 {
- return xw.Tot(), xdr.ErrElementSizeExceeded
- }
- xw.WriteString(o.Repository)
- if len(o.Name) > 1024 {
- return xw.Tot(), xdr.ErrElementSizeExceeded
- }
- xw.WriteString(o.Name)
- xw.WriteUint64(o.Offset)
- xw.WriteUint32(o.Size)
- return xw.Tot(), xw.Error()
- }
- func (o *RequestMessage) DecodeXDR(r io.Reader) error {
- xr := xdr.NewReader(r)
- return o.decodeXDR(xr)
- }
- func (o *RequestMessage) UnmarshalXDR(bs []byte) error {
- var br = bytes.NewReader(bs)
- var xr = xdr.NewReader(br)
- return o.decodeXDR(xr)
- }
- func (o *RequestMessage) decodeXDR(xr *xdr.Reader) error {
- o.Repository = xr.ReadStringMax(64)
- o.Name = xr.ReadStringMax(1024)
- o.Offset = xr.ReadUint64()
- o.Size = xr.ReadUint32()
- return xr.Error()
- }
- /*
- ResponseMessage Structure:
- 0 1 2 3
- 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Length of Data |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- / /
- \ Data (variable length) \
- / /
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- struct ResponseMessage {
- opaque Data<>;
- }
- */
- func (o ResponseMessage) EncodeXDR(w io.Writer) (int, error) {
- var xw = xdr.NewWriter(w)
- return o.encodeXDR(xw)
- }
- func (o ResponseMessage) MarshalXDR() []byte {
- return o.AppendXDR(make([]byte, 0, 128))
- }
- func (o ResponseMessage) AppendXDR(bs []byte) []byte {
- var aw = xdr.AppendWriter(bs)
- var xw = xdr.NewWriter(&aw)
- o.encodeXDR(xw)
- return []byte(aw)
- }
- func (o ResponseMessage) encodeXDR(xw *xdr.Writer) (int, error) {
- xw.WriteBytes(o.Data)
- return xw.Tot(), xw.Error()
- }
- func (o *ResponseMessage) DecodeXDR(r io.Reader) error {
- xr := xdr.NewReader(r)
- return o.decodeXDR(xr)
- }
- func (o *ResponseMessage) UnmarshalXDR(bs []byte) error {
- var br = bytes.NewReader(bs)
- var xr = xdr.NewReader(br)
- return o.decodeXDR(xr)
- }
- func (o *ResponseMessage) decodeXDR(xr *xdr.Reader) error {
- o.Data = xr.ReadBytes()
- return xr.Error()
- }
- /*
- ClusterConfigMessage Structure:
- 0 1 2 3
- 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Length of Client Name |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- / /
- \ Client Name (variable length) \
- / /
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Length of Client Version |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- / /
- \ Client Version (variable length) \
- / /
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Number of Repositories |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- / /
- \ Zero or more Repository Structures \
- / /
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Number of Options |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- / /
- \ Zero or more Option Structures \
- / /
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- struct ClusterConfigMessage {
- string ClientName<64>;
- string ClientVersion<64>;
- Repository Repositories<64>;
- Option Options<64>;
- }
- */
- func (o ClusterConfigMessage) EncodeXDR(w io.Writer) (int, error) {
- var xw = xdr.NewWriter(w)
- return o.encodeXDR(xw)
- }
- func (o ClusterConfigMessage) MarshalXDR() []byte {
- return o.AppendXDR(make([]byte, 0, 128))
- }
- func (o ClusterConfigMessage) AppendXDR(bs []byte) []byte {
- var aw = xdr.AppendWriter(bs)
- var xw = xdr.NewWriter(&aw)
- o.encodeXDR(xw)
- return []byte(aw)
- }
- func (o ClusterConfigMessage) encodeXDR(xw *xdr.Writer) (int, error) {
- if len(o.ClientName) > 64 {
- return xw.Tot(), xdr.ErrElementSizeExceeded
- }
- xw.WriteString(o.ClientName)
- if len(o.ClientVersion) > 64 {
- return xw.Tot(), xdr.ErrElementSizeExceeded
- }
- xw.WriteString(o.ClientVersion)
- if len(o.Repositories) > 64 {
- return xw.Tot(), xdr.ErrElementSizeExceeded
- }
- xw.WriteUint32(uint32(len(o.Repositories)))
- for i := range o.Repositories {
- o.Repositories[i].encodeXDR(xw)
- }
- if len(o.Options) > 64 {
- return xw.Tot(), xdr.ErrElementSizeExceeded
- }
- xw.WriteUint32(uint32(len(o.Options)))
- for i := range o.Options {
- o.Options[i].encodeXDR(xw)
- }
- return xw.Tot(), xw.Error()
- }
- func (o *ClusterConfigMessage) DecodeXDR(r io.Reader) error {
- xr := xdr.NewReader(r)
- return o.decodeXDR(xr)
- }
- func (o *ClusterConfigMessage) UnmarshalXDR(bs []byte) error {
- var br = bytes.NewReader(bs)
- var xr = xdr.NewReader(br)
- return o.decodeXDR(xr)
- }
- func (o *ClusterConfigMessage) decodeXDR(xr *xdr.Reader) error {
- o.ClientName = xr.ReadStringMax(64)
- o.ClientVersion = xr.ReadStringMax(64)
- _RepositoriesSize := int(xr.ReadUint32())
- if _RepositoriesSize > 64 {
- return xdr.ErrElementSizeExceeded
- }
- o.Repositories = make([]Repository, _RepositoriesSize)
- for i := range o.Repositories {
- (&o.Repositories[i]).decodeXDR(xr)
- }
- _OptionsSize := int(xr.ReadUint32())
- if _OptionsSize > 64 {
- return xdr.ErrElementSizeExceeded
- }
- o.Options = make([]Option, _OptionsSize)
- for i := range o.Options {
- (&o.Options[i]).decodeXDR(xr)
- }
- return xr.Error()
- }
- /*
- Repository Structure:
- 0 1 2 3
- 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Length of ID |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- / /
- \ ID (variable length) \
- / /
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Number of Nodes |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- / /
- \ Zero or more Node Structures \
- / /
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- struct Repository {
- string ID<64>;
- Node Nodes<64>;
- }
- */
- func (o Repository) EncodeXDR(w io.Writer) (int, error) {
- var xw = xdr.NewWriter(w)
- return o.encodeXDR(xw)
- }
- func (o Repository) MarshalXDR() []byte {
- return o.AppendXDR(make([]byte, 0, 128))
- }
- func (o Repository) AppendXDR(bs []byte) []byte {
- var aw = xdr.AppendWriter(bs)
- var xw = xdr.NewWriter(&aw)
- o.encodeXDR(xw)
- return []byte(aw)
- }
- func (o Repository) encodeXDR(xw *xdr.Writer) (int, error) {
- if len(o.ID) > 64 {
- return xw.Tot(), xdr.ErrElementSizeExceeded
- }
- xw.WriteString(o.ID)
- if len(o.Nodes) > 64 {
- return xw.Tot(), xdr.ErrElementSizeExceeded
- }
- xw.WriteUint32(uint32(len(o.Nodes)))
- for i := range o.Nodes {
- o.Nodes[i].encodeXDR(xw)
- }
- return xw.Tot(), xw.Error()
- }
- func (o *Repository) DecodeXDR(r io.Reader) error {
- xr := xdr.NewReader(r)
- return o.decodeXDR(xr)
- }
- func (o *Repository) UnmarshalXDR(bs []byte) error {
- var br = bytes.NewReader(bs)
- var xr = xdr.NewReader(br)
- return o.decodeXDR(xr)
- }
- func (o *Repository) decodeXDR(xr *xdr.Reader) error {
- o.ID = xr.ReadStringMax(64)
- _NodesSize := int(xr.ReadUint32())
- if _NodesSize > 64 {
- return xdr.ErrElementSizeExceeded
- }
- o.Nodes = make([]Node, _NodesSize)
- for i := range o.Nodes {
- (&o.Nodes[i]).decodeXDR(xr)
- }
- return xr.Error()
- }
- /*
- Node Structure:
- 0 1 2 3
- 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Length of ID |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- / /
- \ ID (variable length) \
- / /
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Flags |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | |
- + Max Local Version (64 bits) +
- | |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- struct Node {
- opaque ID<32>;
- unsigned int Flags;
- unsigned hyper MaxLocalVersion;
- }
- */
- func (o Node) EncodeXDR(w io.Writer) (int, error) {
- var xw = xdr.NewWriter(w)
- return o.encodeXDR(xw)
- }
- func (o Node) MarshalXDR() []byte {
- return o.AppendXDR(make([]byte, 0, 128))
- }
- func (o Node) AppendXDR(bs []byte) []byte {
- var aw = xdr.AppendWriter(bs)
- var xw = xdr.NewWriter(&aw)
- o.encodeXDR(xw)
- return []byte(aw)
- }
- func (o Node) encodeXDR(xw *xdr.Writer) (int, error) {
- if len(o.ID) > 32 {
- return xw.Tot(), xdr.ErrElementSizeExceeded
- }
- xw.WriteBytes(o.ID)
- xw.WriteUint32(o.Flags)
- xw.WriteUint64(o.MaxLocalVersion)
- return xw.Tot(), xw.Error()
- }
- func (o *Node) DecodeXDR(r io.Reader) error {
- xr := xdr.NewReader(r)
- return o.decodeXDR(xr)
- }
- func (o *Node) UnmarshalXDR(bs []byte) error {
- var br = bytes.NewReader(bs)
- var xr = xdr.NewReader(br)
- return o.decodeXDR(xr)
- }
- func (o *Node) decodeXDR(xr *xdr.Reader) error {
- o.ID = xr.ReadBytesMax(32)
- o.Flags = xr.ReadUint32()
- o.MaxLocalVersion = xr.ReadUint64()
- return xr.Error()
- }
- /*
- Option Structure:
- 0 1 2 3
- 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Length of Key |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- / /
- \ Key (variable length) \
- / /
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Length of Value |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- / /
- \ Value (variable length) \
- / /
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- struct Option {
- string Key<64>;
- string Value<1024>;
- }
- */
- func (o Option) EncodeXDR(w io.Writer) (int, error) {
- var xw = xdr.NewWriter(w)
- return o.encodeXDR(xw)
- }
- func (o Option) MarshalXDR() []byte {
- return o.AppendXDR(make([]byte, 0, 128))
- }
- func (o Option) AppendXDR(bs []byte) []byte {
- var aw = xdr.AppendWriter(bs)
- var xw = xdr.NewWriter(&aw)
- o.encodeXDR(xw)
- return []byte(aw)
- }
- func (o Option) encodeXDR(xw *xdr.Writer) (int, error) {
- if len(o.Key) > 64 {
- return xw.Tot(), xdr.ErrElementSizeExceeded
- }
- xw.WriteString(o.Key)
- if len(o.Value) > 1024 {
- return xw.Tot(), xdr.ErrElementSizeExceeded
- }
- xw.WriteString(o.Value)
- return xw.Tot(), xw.Error()
- }
- func (o *Option) DecodeXDR(r io.Reader) error {
- xr := xdr.NewReader(r)
- return o.decodeXDR(xr)
- }
- func (o *Option) UnmarshalXDR(bs []byte) error {
- var br = bytes.NewReader(bs)
- var xr = xdr.NewReader(br)
- return o.decodeXDR(xr)
- }
- func (o *Option) decodeXDR(xr *xdr.Reader) error {
- o.Key = xr.ReadStringMax(64)
- o.Value = xr.ReadStringMax(1024)
- return xr.Error()
- }
- /*
- CloseMessage Structure:
- 0 1 2 3
- 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Length of Reason |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- / /
- \ Reason (variable length) \
- / /
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- struct CloseMessage {
- string Reason<1024>;
- }
- */
- func (o CloseMessage) EncodeXDR(w io.Writer) (int, error) {
- var xw = xdr.NewWriter(w)
- return o.encodeXDR(xw)
- }
- func (o CloseMessage) MarshalXDR() []byte {
- return o.AppendXDR(make([]byte, 0, 128))
- }
- func (o CloseMessage) AppendXDR(bs []byte) []byte {
- var aw = xdr.AppendWriter(bs)
- var xw = xdr.NewWriter(&aw)
- o.encodeXDR(xw)
- return []byte(aw)
- }
- func (o CloseMessage) encodeXDR(xw *xdr.Writer) (int, error) {
- if len(o.Reason) > 1024 {
- return xw.Tot(), xdr.ErrElementSizeExceeded
- }
- xw.WriteString(o.Reason)
- return xw.Tot(), xw.Error()
- }
- func (o *CloseMessage) DecodeXDR(r io.Reader) error {
- xr := xdr.NewReader(r)
- return o.decodeXDR(xr)
- }
- func (o *CloseMessage) UnmarshalXDR(bs []byte) error {
- var br = bytes.NewReader(bs)
- var xr = xdr.NewReader(br)
- return o.decodeXDR(xr)
- }
- func (o *CloseMessage) decodeXDR(xr *xdr.Reader) error {
- o.Reason = xr.ReadStringMax(1024)
- return xr.Error()
- }
- /*
- EmptyMessage Structure:
- 0 1 2 3
- 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- struct EmptyMessage {
- }
- */
- func (o EmptyMessage) EncodeXDR(w io.Writer) (int, error) {
- var xw = xdr.NewWriter(w)
- return o.encodeXDR(xw)
- }
- func (o EmptyMessage) MarshalXDR() []byte {
- return o.AppendXDR(make([]byte, 0, 128))
- }
- func (o EmptyMessage) AppendXDR(bs []byte) []byte {
- var aw = xdr.AppendWriter(bs)
- var xw = xdr.NewWriter(&aw)
- o.encodeXDR(xw)
- return []byte(aw)
- }
- func (o EmptyMessage) encodeXDR(xw *xdr.Writer) (int, error) {
- return xw.Tot(), xw.Error()
- }
- func (o *EmptyMessage) DecodeXDR(r io.Reader) error {
- xr := xdr.NewReader(r)
- return o.decodeXDR(xr)
- }
- func (o *EmptyMessage) UnmarshalXDR(bs []byte) error {
- var br = bytes.NewReader(bs)
- var xr = xdr.NewReader(br)
- return o.decodeXDR(xr)
- }
- func (o *EmptyMessage) decodeXDR(xr *xdr.Reader) error {
- return xr.Error()
- }
|