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.
29 lines
657 B
29 lines
657 B
package filer
|
|
|
|
type ReaderPattern struct {
|
|
isSequentialCounter int64
|
|
lastReadStopOffset int64
|
|
}
|
|
|
|
// For streaming read: only cache the first chunk
|
|
// For random read: only fetch the requested range, instead of the whole chunk
|
|
|
|
func NewReaderPattern() *ReaderPattern {
|
|
return &ReaderPattern{
|
|
isSequentialCounter: 0,
|
|
lastReadStopOffset: 0,
|
|
}
|
|
}
|
|
|
|
func (rp *ReaderPattern) MonitorReadAt(offset int64, size int) {
|
|
if rp.lastReadStopOffset == offset {
|
|
rp.isSequentialCounter++
|
|
} else {
|
|
rp.isSequentialCounter--
|
|
}
|
|
rp.lastReadStopOffset = offset + int64(size)
|
|
}
|
|
|
|
func (rp *ReaderPattern) IsRandomMode() bool {
|
|
return rp.isSequentialCounter >= 0
|
|
}
|