blob: b18229a666a5d66ead8435fa73eb60d8e6e0a064 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
package hotline
import (
"encoding/binary"
"io"
"slices"
)
type FileHeader struct {
Size [2]byte // Total size of FileHeader payload
Type [2]byte // 0 for file, 1 for dir
FilePath []byte // encoded file path
readOffset int // Internal offset to track read progress
}
func NewFileHeader(fileName string, isDir bool) FileHeader {
fh := FileHeader{
FilePath: EncodeFilePath(fileName),
}
if isDir {
fh.Type = [2]byte{0x00, 0x01}
}
encodedPathLen := uint16(len(fh.FilePath) + len(fh.Type))
binary.BigEndian.PutUint16(fh.Size[:], encodedPathLen)
return fh
}
func (fh *FileHeader) Read(p []byte) (int, error) {
buf := slices.Concat(
fh.Size[:],
fh.Type[:],
fh.FilePath,
)
if fh.readOffset >= len(buf) {
return 0, io.EOF // All bytes have been read
}
n := copy(p, buf[fh.readOffset:])
fh.readOffset += n
return n, nil
}
|