mirror of
https://github.com/minio/minio.git
synced 2025-01-27 06:33:18 -05:00
donut spec v1 prototype
This commit is contained in:
parent
1b1371ffec
commit
9e304b53de
@ -23,7 +23,43 @@ import (
|
|||||||
"io"
|
"io"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Header struct{}
|
/*
|
||||||
|
** DONUT v1 Spec **
|
||||||
|
|
||||||
|
BlockStart uint32 // Magic="MINI"
|
||||||
|
VersionMajor uint16
|
||||||
|
VersionMinor uint16
|
||||||
|
VersionPatch uint16
|
||||||
|
VersionReserved uint16
|
||||||
|
Reserved uint64
|
||||||
|
GobHeaderLen uint32
|
||||||
|
GobHeader Sizeof(GobHeader)
|
||||||
|
BlockData uint32 // Magic="DATA"
|
||||||
|
Data []byte
|
||||||
|
BlockLen uint64
|
||||||
|
BlockEnd uint32 // Magic="INIM"
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
type DonutHeader struct {
|
||||||
|
BlockStart uint32 // Magic="MINI"
|
||||||
|
VersionMajor uint16
|
||||||
|
VersionMinor uint16
|
||||||
|
VersionPatch uint16
|
||||||
|
VersionReserved uint16
|
||||||
|
Reserved uint64
|
||||||
|
GobHeaderLen uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type DonutGobHeader struct {
|
||||||
|
DataLen uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
type DonutFooter struct {
|
||||||
|
BlockLen uint64
|
||||||
|
BlockEnd uint32 // Magic="INIM"
|
||||||
|
}
|
||||||
|
|
||||||
type Donut struct {
|
type Donut struct {
|
||||||
file io.Writer
|
file io.Writer
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user