8 type flattenedFileObject struct {
9 FlatFileHeader FlatFileHeader
10 FlatFileInformationForkHeader FlatFileInformationForkHeader
11 FlatFileInformationFork FlatFileInformationFork
12 FlatFileDataForkHeader FlatFileDataForkHeader
16 // FlatFileHeader is the first section of a "Flattened File Object". All fields have static values.
17 type FlatFileHeader struct {
18 Format [4]byte // Always "FILP"
19 Version [2]byte // Always 1
20 RSVD [16]byte // Always empty zeros
21 ForkCount [2]byte // Number of forks
24 // NewFlatFileHeader returns a FlatFileHeader struct
25 func NewFlatFileHeader() FlatFileHeader {
26 return FlatFileHeader{
27 Format: [4]byte{0x46, 0x49, 0x4c, 0x50}, // FILP
28 Version: [2]byte{0, 1},
30 ForkCount: [2]byte{0, 2},
34 // FlatFileInformationForkHeader is the second section of a "Flattened File Object"
35 type FlatFileInformationForkHeader struct {
36 ForkType [4]byte // Always "INFO"
37 CompressionType [4]byte // Always 0; Compression was never implemented in the Hotline protocol
38 RSVD [4]byte // Always zeros
39 DataSize [4]byte // Size of the flat file information fork
42 type FlatFileInformationFork struct {
43 Platform []byte // Operating System used. ("AMAC" or "MWIN")
44 TypeSignature []byte // File type signature
45 CreatorSignature []byte // File creator signature
51 NameScript []byte // TODO: what is this?
52 NameSize []byte // Length of file name (Maximum 128 characters)
53 Name []byte // File name
54 CommentSize []byte // Length of file comment
55 Comment []byte // File comment
58 func NewFlatFileInformationFork(fileName string, modifyTime []byte, typeSignature string, creatorSignature string) FlatFileInformationFork {
59 return FlatFileInformationFork{
60 Platform: []byte("AMAC"), // TODO: Remove hardcode to support "AWIN" Platform (maybe?)
61 TypeSignature: []byte(typeSignature), // TODO: Don't infer types from filename
62 CreatorSignature: []byte(creatorSignature), // TODO: Don't infer types from filename
63 Flags: []byte{0, 0, 0, 0}, // TODO: What is this?
64 PlatformFlags: []byte{0, 0, 1, 0}, // TODO: What is this?
65 RSVD: make([]byte, 32), // Unimplemented in Hotline Protocol
66 CreateDate: modifyTime, // some filesystems don't support createTime
67 ModifyDate: modifyTime,
68 NameScript: make([]byte, 2), // TODO: What is this?
69 Name: []byte(fileName),
70 CommentSize: []byte{0, 0},
71 Comment: []byte{}, // TODO: implement (maybe?)
75 func (ffif *FlatFileInformationFork) friendlyType() []byte {
77 if name, ok := friendlyCreatorNames[string(ffif.TypeSignature)]; ok {
80 return ffif.CreatorSignature
83 // DataSize calculates the size of the flat file information fork, which is
84 // 72 bytes for the fixed length fields plus the length of the Name + Comment
85 func (ffif *FlatFileInformationFork) DataSize() []byte {
86 size := make([]byte, 4)
88 // TODO: Can I do math directly on two byte slices?
89 dataSize := len(ffif.Name) + len(ffif.Comment) + 74
91 binary.BigEndian.PutUint32(size, uint32(dataSize))
96 func (ffo *flattenedFileObject) TransferSize() []byte {
97 payloadSize := len(ffo.BinaryMarshal())
98 dataSize := binary.BigEndian.Uint32(ffo.FlatFileDataForkHeader.DataSize[:])
100 transferSize := make([]byte, 4)
101 binary.BigEndian.PutUint32(transferSize, dataSize+uint32(payloadSize))
106 func (ffif *FlatFileInformationFork) ReadNameSize() []byte {
107 size := make([]byte, 2)
108 binary.BigEndian.PutUint16(size, uint16(len(ffif.Name)))
113 type FlatFileDataForkHeader struct {
115 CompressionType [4]byte
120 func (ffif *FlatFileInformationFork) UnmarshalBinary(b []byte) error {
122 bs := binary.BigEndian.Uint16(nameSize)
125 ffif.Platform = b[0:4]
126 ffif.TypeSignature = b[4:8]
127 ffif.CreatorSignature = b[8:12]
128 ffif.Flags = b[12:16]
129 ffif.PlatformFlags = b[16:20]
131 ffif.CreateDate = b[52:60]
132 ffif.ModifyDate = b[60:68]
133 ffif.NameScript = b[68:70]
134 ffif.NameSize = b[70:72]
135 ffif.Name = b[72:nameEnd]
137 if len(b) > int(nameEnd) {
138 ffif.CommentSize = b[nameEnd : nameEnd+2]
139 commentLen := binary.BigEndian.Uint16(ffif.CommentSize)
141 commentStartPos := int(nameEnd) + 2
142 commentEndPos := int(nameEnd) + 2 + int(commentLen)
144 ffif.Comment = b[commentStartPos:commentEndPos]
150 func (f *flattenedFileObject) BinaryMarshal() []byte {
152 out = append(out, f.FlatFileHeader.Format[:]...)
153 out = append(out, f.FlatFileHeader.Version[:]...)
154 out = append(out, f.FlatFileHeader.RSVD[:]...)
155 out = append(out, f.FlatFileHeader.ForkCount[:]...)
157 out = append(out, []byte("INFO")...)
158 out = append(out, []byte{0, 0, 0, 0}...)
159 out = append(out, make([]byte, 4)...)
160 out = append(out, f.FlatFileInformationFork.DataSize()...)
162 out = append(out, f.FlatFileInformationFork.Platform...)
163 out = append(out, f.FlatFileInformationFork.TypeSignature...)
164 out = append(out, f.FlatFileInformationFork.CreatorSignature...)
165 out = append(out, f.FlatFileInformationFork.Flags...)
166 out = append(out, f.FlatFileInformationFork.PlatformFlags...)
167 out = append(out, f.FlatFileInformationFork.RSVD...)
168 out = append(out, f.FlatFileInformationFork.CreateDate...)
169 out = append(out, f.FlatFileInformationFork.ModifyDate...)
170 out = append(out, f.FlatFileInformationFork.NameScript...)
171 out = append(out, f.FlatFileInformationFork.ReadNameSize()...)
172 out = append(out, f.FlatFileInformationFork.Name...)
173 out = append(out, f.FlatFileInformationFork.CommentSize...)
174 out = append(out, f.FlatFileInformationFork.Comment...)
176 out = append(out, f.FlatFileDataForkHeader.ForkType[:]...)
177 out = append(out, f.FlatFileDataForkHeader.CompressionType[:]...)
178 out = append(out, f.FlatFileDataForkHeader.RSVD[:]...)
179 out = append(out, f.FlatFileDataForkHeader.DataSize[:]...)
184 func NewFlattenedFileObject(fileRoot string, filePath, fileName []byte, dataOffset int64) (*flattenedFileObject, error) {
185 fullFilePath, err := readPath(fileRoot, filePath, fileName)
189 file, err := effectiveFile(fullFilePath)
194 defer func(file *os.File) { _ = file.Close() }(file)
196 fileInfo, err := file.Stat()
201 dataSize := make([]byte, 4)
202 binary.BigEndian.PutUint32(dataSize, uint32(fileInfo.Size()-dataOffset))
204 mTime := toHotlineTime(fileInfo.ModTime())
206 ft, _ := fileTypeFromInfo(fileInfo)
208 return &flattenedFileObject{
209 FlatFileHeader: NewFlatFileHeader(),
210 FlatFileInformationFork: NewFlatFileInformationFork(string(fileName), mTime, ft.TypeCode, ft.CreatorCode),
211 FlatFileDataForkHeader: FlatFileDataForkHeader{
212 ForkType: [4]byte{0x44, 0x41, 0x54, 0x41}, // "DATA"
213 CompressionType: [4]byte{},
215 DataSize: [4]byte{dataSize[0], dataSize[1], dataSize[2], dataSize[3]},