mirror of https://github.com/minio/minio.git
cache decode matrix tables and matrix
This commit is contained in:
parent
638ed36cc6
commit
b44d2100db
|
@ -37,9 +37,6 @@ import (
|
||||||
// blocks.
|
// blocks.
|
||||||
// "dataLen" is the length of original source data
|
// "dataLen" is the length of original source data
|
||||||
func (e *Encoder) Decode(encodedDataBlocks [][]byte, dataLen int) (decodedData []byte, err error) {
|
func (e *Encoder) Decode(encodedDataBlocks [][]byte, dataLen int) (decodedData []byte, err error) {
|
||||||
var decodeMatrix *C.uint8_t
|
|
||||||
var decodeTbls *C.uint8_t
|
|
||||||
var decodeIndex *C.uint32_t
|
|
||||||
var source, target **C.uint8_t
|
var source, target **C.uint8_t
|
||||||
|
|
||||||
k := int(e.params.K)
|
k := int(e.params.K)
|
||||||
|
@ -82,9 +79,19 @@ func (e *Encoder) Decode(encodedDataBlocks [][]byte, dataLen int) (decodedData [
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Initialzie decoder
|
// If not already initialized, recompute and cache
|
||||||
C.minio_init_decoder(missingEncodedBlocksC, C.int(k), C.int(n), C.int(missingEncodedBlocksCount-1),
|
if e.decodeMatrix == nil || e.decodeTbls == nil || e.decodeIndex == nil {
|
||||||
e.encodeMatrix, &decodeMatrix, &decodeTbls, &decodeIndex)
|
var decodeMatrix, decodeTbls *C.uint8_t
|
||||||
|
var decodeIndex *C.uint32_t
|
||||||
|
|
||||||
|
C.minio_init_decoder(missingEncodedBlocksC, C.int(k), C.int(n), C.int(missingEncodedBlocksCount-1),
|
||||||
|
e.encodeMatrix, &decodeMatrix, &decodeTbls, &decodeIndex)
|
||||||
|
|
||||||
|
// cache this for future needs
|
||||||
|
e.decodeMatrix = decodeMatrix
|
||||||
|
e.decodeTbls = decodeTbls
|
||||||
|
e.decodeIndex = decodeIndex
|
||||||
|
}
|
||||||
|
|
||||||
// Make a slice of pointers to encoded blocks. Necessary to bridge to the C world.
|
// Make a slice of pointers to encoded blocks. Necessary to bridge to the C world.
|
||||||
pointers := make([]*byte, n)
|
pointers := make([]*byte, n)
|
||||||
|
@ -94,13 +101,13 @@ func (e *Encoder) Decode(encodedDataBlocks [][]byte, dataLen int) (decodedData [
|
||||||
|
|
||||||
// Get pointers to source "data" and target "parity" blocks from the output byte array.
|
// Get pointers to source "data" and target "parity" blocks from the output byte array.
|
||||||
ret := C.minio_get_source_target(C.int(missingEncodedBlocksCount-1), C.int(k), C.int(m), missingEncodedBlocksC,
|
ret := C.minio_get_source_target(C.int(missingEncodedBlocksCount-1), C.int(k), C.int(m), missingEncodedBlocksC,
|
||||||
decodeIndex, (**C.uint8_t)(unsafe.Pointer(&pointers[0])), &source, &target)
|
e.decodeIndex, (**C.uint8_t)(unsafe.Pointer(&pointers[0])), &source, &target)
|
||||||
if int(ret) == -1 {
|
if int(ret) == -1 {
|
||||||
return nil, errors.New("Unable to decode data")
|
return nil, errors.New("Unable to decode data")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Decode data
|
// Decode data
|
||||||
C.ec_encode_data(C.int(encodedBlockLen), C.int(k), C.int(missingEncodedBlocksCount-1), decodeTbls,
|
C.ec_encode_data(C.int(encodedBlockLen), C.int(k), C.int(missingEncodedBlocksCount-1), e.decodeTbls,
|
||||||
source, target)
|
source, target)
|
||||||
|
|
||||||
// Allocate buffer to output buffer
|
// Allocate buffer to output buffer
|
||||||
|
@ -109,9 +116,5 @@ func (e *Encoder) Decode(encodedDataBlocks [][]byte, dataLen int) (decodedData [
|
||||||
decodedData = append(decodedData, encodedDataBlocks[i]...)
|
decodedData = append(decodedData, encodedDataBlocks[i]...)
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO cache this if necessary
|
|
||||||
e.decodeMatrix = decodeMatrix
|
|
||||||
e.decodeTbls = decodeTbls
|
|
||||||
|
|
||||||
return decodedData[:dataLen], nil
|
return decodedData[:dataLen], nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,11 +56,10 @@ type EncoderParams struct {
|
||||||
|
|
||||||
// Encoder is an object used to encode and decode data.
|
// Encoder is an object used to encode and decode data.
|
||||||
type Encoder struct {
|
type Encoder struct {
|
||||||
params *EncoderParams
|
params *EncoderParams
|
||||||
encodeMatrix,
|
encodeMatrix, encodeTbls *C.uint8_t
|
||||||
encodeTbls,
|
decodeMatrix, decodeTbls *C.uint8_t
|
||||||
decodeMatrix,
|
decodeIndex *C.uint32_t
|
||||||
decodeTbls *C.uint8_t
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ParseEncoderParams creates an EncoderParams object.
|
// ParseEncoderParams creates an EncoderParams object.
|
||||||
|
@ -114,6 +113,7 @@ func NewEncoder(ep *EncoderParams) *Encoder {
|
||||||
encodeTbls: encodeTbls,
|
encodeTbls: encodeTbls,
|
||||||
decodeMatrix: nil,
|
decodeMatrix: nil,
|
||||||
decodeTbls: nil,
|
decodeTbls: nil,
|
||||||
|
decodeIndex: nil,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue