2016-02-06 19:20:54 +01:00
|
|
|
package contentenc
|
2015-09-05 20:30:20 +02:00
|
|
|
|
|
|
|
// intraBlock identifies a part of a file block
|
|
|
|
type intraBlock struct {
|
2015-10-04 14:36:20 +02:00
|
|
|
BlockNo uint64 // Block number in file
|
|
|
|
Skip uint64 // Offset into block plaintext
|
|
|
|
Length uint64 // Length of data from this block
|
2016-02-06 19:20:54 +01:00
|
|
|
fs *ContentEnc
|
2015-09-05 20:30:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// isPartial - is the block partial? This means we have to do read-modify-write.
|
|
|
|
func (ib *intraBlock) IsPartial() bool {
|
2015-10-04 14:24:43 +02:00
|
|
|
if ib.Skip > 0 || ib.Length < ib.fs.plainBS {
|
2015-09-05 20:30:20 +02:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// CiphertextRange - get byte range in ciphertext file corresponding to BlockNo
|
|
|
|
// (complete block)
|
|
|
|
func (ib *intraBlock) CiphertextRange() (offset uint64, length uint64) {
|
2015-11-01 12:11:36 +01:00
|
|
|
return ib.fs.BlockNoToCipherOff(ib.BlockNo), ib.fs.cipherBS
|
2015-09-05 20:30:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// PlaintextRange - get byte range in plaintext corresponding to BlockNo
|
|
|
|
// (complete block)
|
|
|
|
func (ib *intraBlock) PlaintextRange() (offset uint64, length uint64) {
|
2015-11-01 12:11:36 +01:00
|
|
|
return ib.fs.BlockNoToPlainOff(ib.BlockNo), ib.fs.plainBS
|
2015-09-05 20:30:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// CropBlock - crop a potentially larger plaintext block down to the relevant part
|
2015-10-04 14:36:20 +02:00
|
|
|
func (ib *intraBlock) CropBlock(d []byte) []byte {
|
2015-09-05 20:30:20 +02:00
|
|
|
lenHave := len(d)
|
2015-10-04 14:36:20 +02:00
|
|
|
lenWant := int(ib.Skip + ib.Length)
|
2015-09-05 20:30:20 +02:00
|
|
|
if lenHave < lenWant {
|
2015-10-04 14:24:43 +02:00
|
|
|
return d[ib.Skip:lenHave]
|
2015-09-05 20:30:20 +02:00
|
|
|
}
|
2015-10-04 14:24:43 +02:00
|
|
|
return d[ib.Skip:lenWant]
|
2015-09-05 20:30:20 +02:00
|
|
|
}
|
2015-11-01 12:11:36 +01:00
|
|
|
|
|
|
|
// Ciphertext range corresponding to the sum of all "blocks" (complete blocks)
|
|
|
|
func (ib *intraBlock) JointCiphertextRange(blocks []intraBlock) (offset uint64, length uint64) {
|
|
|
|
firstBlock := blocks[0]
|
|
|
|
lastBlock := blocks[len(blocks)-1]
|
|
|
|
|
|
|
|
offset = ib.fs.BlockNoToCipherOff(firstBlock.BlockNo)
|
|
|
|
offsetLast := ib.fs.BlockNoToCipherOff(lastBlock.BlockNo)
|
|
|
|
length = offsetLast + ib.fs.cipherBS - offset
|
|
|
|
|
|
|
|
return offset, length
|
|
|
|
}
|