mirror of
https://github.com/unidoc/unipdf.git
synced 2025-04-26 13:48:55 +08:00
47 lines
1.2 KiB
Go
47 lines
1.2 KiB
Go
/*
|
|
* This file is subject to the terms and conditions defined in
|
|
* file 'LICENSE.md', which is part of this source code package.
|
|
*/
|
|
|
|
package fdf
|
|
|
|
import (
|
|
"bufio"
|
|
"errors"
|
|
"io"
|
|
|
|
"github.com/unidoc/unipdf/v3/common"
|
|
)
|
|
|
|
// readAtLeast reads at least n bytes into slice p.
|
|
// Returns the number of bytes read (should always be == n), and an error on failure.
|
|
func (parser *fdfParser) readAtLeast(p []byte, n int) (int, error) {
|
|
remaining := n
|
|
start := 0
|
|
numRounds := 0
|
|
for remaining > 0 {
|
|
nRead, err := parser.reader.Read(p[start:])
|
|
if err != nil {
|
|
common.Log.Debug("ERROR Failed reading (%d;%d) %s", nRead, numRounds, err.Error())
|
|
return start, errors.New("failed reading")
|
|
}
|
|
numRounds++
|
|
start += nRead
|
|
remaining -= nRead
|
|
}
|
|
return start, nil
|
|
}
|
|
|
|
// getFileOffset returns the current file offset, accounting for buffered position.
|
|
func (parser *fdfParser) getFileOffset() int64 {
|
|
offset, _ := parser.rs.Seek(0, io.SeekCurrent)
|
|
offset -= int64(parser.reader.Buffered())
|
|
return offset
|
|
}
|
|
|
|
// setFileOffset seeks the file to an offset position.
|
|
func (parser *fdfParser) setFileOffset(offset int64) {
|
|
parser.rs.Seek(offset, io.SeekStart)
|
|
parser.reader = bufio.NewReader(parser.rs)
|
|
}
|