You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
522 B
30 lines
522 B
4 years ago
|
//+build !go1.10
|
||
|
|
||
|
package lz4
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
func (h Header) String() string {
|
||
|
var s bytes.Buffer
|
||
|
|
||
|
s.WriteString(fmt.Sprintf("%T{", h))
|
||
|
if h.BlockChecksum {
|
||
|
s.WriteString("BlockChecksum: true ")
|
||
|
}
|
||
|
if h.NoChecksum {
|
||
|
s.WriteString("NoChecksum: true ")
|
||
|
}
|
||
|
if bs := h.BlockMaxSize; bs != 0 && bs != 4<<20 {
|
||
|
s.WriteString(fmt.Sprintf("BlockMaxSize: %d ", bs))
|
||
|
}
|
||
|
if l := h.CompressionLevel; l != 0 {
|
||
|
s.WriteString(fmt.Sprintf("CompressionLevel: %d ", l))
|
||
|
}
|
||
|
s.WriteByte('}')
|
||
|
|
||
|
return s.String()
|
||
|
}
|