mirror of https://github.com/minio/minio.git
286 lines
6.8 KiB
Go
286 lines
6.8 KiB
Go
|
package cmd
|
||
|
|
||
|
// Code generated by github.com/tinylib/msgp DO NOT EDIT.
|
||
|
|
||
|
import (
|
||
|
"github.com/tinylib/msgp/msgp"
|
||
|
)
|
||
|
|
||
|
// DecodeMsg implements msgp.Decodable
|
||
|
func (z *PartialOperation) DecodeMsg(dc *msgp.Reader) (err error) {
|
||
|
var field []byte
|
||
|
_ = field
|
||
|
var zb0001 uint32
|
||
|
zb0001, err = dc.ReadMapHeader()
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err)
|
||
|
return
|
||
|
}
|
||
|
for zb0001 > 0 {
|
||
|
zb0001--
|
||
|
field, err = dc.ReadMapKeyPtr()
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err)
|
||
|
return
|
||
|
}
|
||
|
switch msgp.UnsafeString(field) {
|
||
|
case "Bucket":
|
||
|
z.Bucket, err = dc.ReadString()
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err, "Bucket")
|
||
|
return
|
||
|
}
|
||
|
case "Object":
|
||
|
z.Object, err = dc.ReadString()
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err, "Object")
|
||
|
return
|
||
|
}
|
||
|
case "VersionID":
|
||
|
z.VersionID, err = dc.ReadString()
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err, "VersionID")
|
||
|
return
|
||
|
}
|
||
|
case "Versions":
|
||
|
z.Versions, err = dc.ReadBytes(z.Versions)
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err, "Versions")
|
||
|
return
|
||
|
}
|
||
|
case "SetIndex":
|
||
|
z.SetIndex, err = dc.ReadInt()
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err, "SetIndex")
|
||
|
return
|
||
|
}
|
||
|
case "PoolIndex":
|
||
|
z.PoolIndex, err = dc.ReadInt()
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err, "PoolIndex")
|
||
|
return
|
||
|
}
|
||
|
case "Queued":
|
||
|
z.Queued, err = dc.ReadTime()
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err, "Queued")
|
||
|
return
|
||
|
}
|
||
|
case "BitrotScan":
|
||
|
z.BitrotScan, err = dc.ReadBool()
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err, "BitrotScan")
|
||
|
return
|
||
|
}
|
||
|
default:
|
||
|
err = dc.Skip()
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err)
|
||
|
return
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// EncodeMsg implements msgp.Encodable
|
||
|
func (z *PartialOperation) EncodeMsg(en *msgp.Writer) (err error) {
|
||
|
// map header, size 8
|
||
|
// write "Bucket"
|
||
|
err = en.Append(0x88, 0xa6, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74)
|
||
|
if err != nil {
|
||
|
return
|
||
|
}
|
||
|
err = en.WriteString(z.Bucket)
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err, "Bucket")
|
||
|
return
|
||
|
}
|
||
|
// write "Object"
|
||
|
err = en.Append(0xa6, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74)
|
||
|
if err != nil {
|
||
|
return
|
||
|
}
|
||
|
err = en.WriteString(z.Object)
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err, "Object")
|
||
|
return
|
||
|
}
|
||
|
// write "VersionID"
|
||
|
err = en.Append(0xa9, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x44)
|
||
|
if err != nil {
|
||
|
return
|
||
|
}
|
||
|
err = en.WriteString(z.VersionID)
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err, "VersionID")
|
||
|
return
|
||
|
}
|
||
|
// write "Versions"
|
||
|
err = en.Append(0xa8, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73)
|
||
|
if err != nil {
|
||
|
return
|
||
|
}
|
||
|
err = en.WriteBytes(z.Versions)
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err, "Versions")
|
||
|
return
|
||
|
}
|
||
|
// write "SetIndex"
|
||
|
err = en.Append(0xa8, 0x53, 0x65, 0x74, 0x49, 0x6e, 0x64, 0x65, 0x78)
|
||
|
if err != nil {
|
||
|
return
|
||
|
}
|
||
|
err = en.WriteInt(z.SetIndex)
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err, "SetIndex")
|
||
|
return
|
||
|
}
|
||
|
// write "PoolIndex"
|
||
|
err = en.Append(0xa9, 0x50, 0x6f, 0x6f, 0x6c, 0x49, 0x6e, 0x64, 0x65, 0x78)
|
||
|
if err != nil {
|
||
|
return
|
||
|
}
|
||
|
err = en.WriteInt(z.PoolIndex)
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err, "PoolIndex")
|
||
|
return
|
||
|
}
|
||
|
// write "Queued"
|
||
|
err = en.Append(0xa6, 0x51, 0x75, 0x65, 0x75, 0x65, 0x64)
|
||
|
if err != nil {
|
||
|
return
|
||
|
}
|
||
|
err = en.WriteTime(z.Queued)
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err, "Queued")
|
||
|
return
|
||
|
}
|
||
|
// write "BitrotScan"
|
||
|
err = en.Append(0xaa, 0x42, 0x69, 0x74, 0x72, 0x6f, 0x74, 0x53, 0x63, 0x61, 0x6e)
|
||
|
if err != nil {
|
||
|
return
|
||
|
}
|
||
|
err = en.WriteBool(z.BitrotScan)
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err, "BitrotScan")
|
||
|
return
|
||
|
}
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// MarshalMsg implements msgp.Marshaler
|
||
|
func (z *PartialOperation) MarshalMsg(b []byte) (o []byte, err error) {
|
||
|
o = msgp.Require(b, z.Msgsize())
|
||
|
// map header, size 8
|
||
|
// string "Bucket"
|
||
|
o = append(o, 0x88, 0xa6, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74)
|
||
|
o = msgp.AppendString(o, z.Bucket)
|
||
|
// string "Object"
|
||
|
o = append(o, 0xa6, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74)
|
||
|
o = msgp.AppendString(o, z.Object)
|
||
|
// string "VersionID"
|
||
|
o = append(o, 0xa9, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x44)
|
||
|
o = msgp.AppendString(o, z.VersionID)
|
||
|
// string "Versions"
|
||
|
o = append(o, 0xa8, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73)
|
||
|
o = msgp.AppendBytes(o, z.Versions)
|
||
|
// string "SetIndex"
|
||
|
o = append(o, 0xa8, 0x53, 0x65, 0x74, 0x49, 0x6e, 0x64, 0x65, 0x78)
|
||
|
o = msgp.AppendInt(o, z.SetIndex)
|
||
|
// string "PoolIndex"
|
||
|
o = append(o, 0xa9, 0x50, 0x6f, 0x6f, 0x6c, 0x49, 0x6e, 0x64, 0x65, 0x78)
|
||
|
o = msgp.AppendInt(o, z.PoolIndex)
|
||
|
// string "Queued"
|
||
|
o = append(o, 0xa6, 0x51, 0x75, 0x65, 0x75, 0x65, 0x64)
|
||
|
o = msgp.AppendTime(o, z.Queued)
|
||
|
// string "BitrotScan"
|
||
|
o = append(o, 0xaa, 0x42, 0x69, 0x74, 0x72, 0x6f, 0x74, 0x53, 0x63, 0x61, 0x6e)
|
||
|
o = msgp.AppendBool(o, z.BitrotScan)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// UnmarshalMsg implements msgp.Unmarshaler
|
||
|
func (z *PartialOperation) UnmarshalMsg(bts []byte) (o []byte, err error) {
|
||
|
var field []byte
|
||
|
_ = field
|
||
|
var zb0001 uint32
|
||
|
zb0001, bts, err = msgp.ReadMapHeaderBytes(bts)
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err)
|
||
|
return
|
||
|
}
|
||
|
for zb0001 > 0 {
|
||
|
zb0001--
|
||
|
field, bts, err = msgp.ReadMapKeyZC(bts)
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err)
|
||
|
return
|
||
|
}
|
||
|
switch msgp.UnsafeString(field) {
|
||
|
case "Bucket":
|
||
|
z.Bucket, bts, err = msgp.ReadStringBytes(bts)
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err, "Bucket")
|
||
|
return
|
||
|
}
|
||
|
case "Object":
|
||
|
z.Object, bts, err = msgp.ReadStringBytes(bts)
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err, "Object")
|
||
|
return
|
||
|
}
|
||
|
case "VersionID":
|
||
|
z.VersionID, bts, err = msgp.ReadStringBytes(bts)
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err, "VersionID")
|
||
|
return
|
||
|
}
|
||
|
case "Versions":
|
||
|
z.Versions, bts, err = msgp.ReadBytesBytes(bts, z.Versions)
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err, "Versions")
|
||
|
return
|
||
|
}
|
||
|
case "SetIndex":
|
||
|
z.SetIndex, bts, err = msgp.ReadIntBytes(bts)
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err, "SetIndex")
|
||
|
return
|
||
|
}
|
||
|
case "PoolIndex":
|
||
|
z.PoolIndex, bts, err = msgp.ReadIntBytes(bts)
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err, "PoolIndex")
|
||
|
return
|
||
|
}
|
||
|
case "Queued":
|
||
|
z.Queued, bts, err = msgp.ReadTimeBytes(bts)
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err, "Queued")
|
||
|
return
|
||
|
}
|
||
|
case "BitrotScan":
|
||
|
z.BitrotScan, bts, err = msgp.ReadBoolBytes(bts)
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err, "BitrotScan")
|
||
|
return
|
||
|
}
|
||
|
default:
|
||
|
bts, err = msgp.Skip(bts)
|
||
|
if err != nil {
|
||
|
err = msgp.WrapError(err)
|
||
|
return
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
o = bts
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
|
||
|
func (z *PartialOperation) Msgsize() (s int) {
|
||
|
s = 1 + 7 + msgp.StringPrefixSize + len(z.Bucket) + 7 + msgp.StringPrefixSize + len(z.Object) + 10 + msgp.StringPrefixSize + len(z.VersionID) + 9 + msgp.BytesPrefixSize + len(z.Versions) + 9 + msgp.IntSize + 10 + msgp.IntSize + 7 + msgp.TimeSize + 11 + msgp.BoolSize
|
||
|
return
|
||
|
}
|