mirror of
https://github.com/stashapp/stash.git
synced 2025-12-16 05:13:46 +01:00
Reduce allocations. Don't create intermediary arrays which we then consume right after. Manually fuse the arrays and decode straight into the sum instead. Furthermore, don't invoke a Reader, but carve out the locations via a loop, directly. These two changes taken together speeds up oshash computations by a factor of 10 according to the benchmark tests. The main reason for this change is a much lowered memory allocation rate which in turn improves GC pressure. While here, add a benchmark for oshash computations and use it for testing the performance.
94 lines
1.8 KiB
Go
94 lines
1.8 KiB
Go
package utils
|
|
|
|
import (
|
|
"encoding/binary"
|
|
"errors"
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
const chunkSize int64 = 64 * 1024
|
|
|
|
var ErrOsHashLen = errors.New("buffer is not a multiple of 8")
|
|
|
|
func sumBytes(buf []byte) (uint64, error) {
|
|
if len(buf)%8 != 0 {
|
|
return 0, ErrOsHashLen
|
|
}
|
|
|
|
sz := len(buf) / 8
|
|
var sum uint64
|
|
for j := 0; j < sz; j++ {
|
|
sum += binary.LittleEndian.Uint64(buf[8*j : 8*(j+1)])
|
|
}
|
|
|
|
return sum, nil
|
|
}
|
|
|
|
func oshash(size int64, head []byte, tail []byte) (string, error) {
|
|
headSum, err := sumBytes(head)
|
|
if err != nil {
|
|
return "", fmt.Errorf("oshash head: %w", err)
|
|
}
|
|
tailSum, err := sumBytes(tail)
|
|
if err != nil {
|
|
return "", fmt.Errorf("oshash tail: %w", err)
|
|
}
|
|
|
|
// Compute the sum of the head, tail and file size
|
|
result := headSum + tailSum + uint64(size)
|
|
// output as hex
|
|
return fmt.Sprintf("%016x", result), nil
|
|
}
|
|
|
|
// OSHashFromFilePath calculates the hash using the same algorithm that
|
|
// OpenSubtitles.org uses.
|
|
//
|
|
// Calculation is as follows:
|
|
// size + 64 bit checksum of the first and last 64k bytes of the file.
|
|
func OSHashFromFilePath(filePath string) (string, error) {
|
|
f, err := os.Open(filePath)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
defer f.Close()
|
|
|
|
fi, err := f.Stat()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
fileSize := fi.Size()
|
|
|
|
if fileSize == 0 {
|
|
return "", nil
|
|
}
|
|
|
|
fileChunkSize := chunkSize
|
|
if fileSize < fileChunkSize {
|
|
fileChunkSize = fileSize
|
|
}
|
|
|
|
head := make([]byte, fileChunkSize)
|
|
tail := make([]byte, fileChunkSize)
|
|
|
|
// read the head of the file into the start of the buffer
|
|
_, err = f.Read(head)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// seek to the end of the file - the chunk size
|
|
_, err = f.Seek(-fileChunkSize, 2)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// read the tail of the file
|
|
_, err = f.Read(tail)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return oshash(fileSize, head, tail)
|
|
}
|