-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathknowns.go
More file actions
375 lines (329 loc) · 8.37 KB
/
Copy pathknowns.go
File metadata and controls
375 lines (329 loc) · 8.37 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
package magicnumber
import (
"io"
"log/slog"
"sync"
)
// Archive reads all the bytes from the reader and returns the file type signature if
// the file is a known archive of files or Unknown if the file is not an archive.
func Archive(r io.ReaderAt) (Signature, error) {
if r == nil {
return Unknown, ErrNilReader
}
for _, item := range archives() {
if item.matcher(r) {
return item.sig, nil
}
}
return Unknown, nil
}
// Archives returns all the archive file type signatures.
func Archives() []Signature {
return packs
}
// DiscImage reads all the bytes from the reader and returns the file type signature if
// the file is a known CD disk image or Unknown if the file is not a disk image.
func DiscImage(r io.ReaderAt) (Signature, error) {
if r == nil {
return Unknown, ErrNilReader
}
for _, item := range discImages() {
if item.matcher(r) {
return item.sig, nil
}
}
return Unknown, nil
}
// DiscImages returns all the CD disk image file type signatures.
func DiscImages() []Signature {
return discs
}
// ArchivesBBS returns all the archive file type signatures that were
// commonly used in the BBS online era of the 1980s and early 1990s.
// Eventually these were replaced by the universal ZIP format using
// the Deflate and Store compression methods.
func ArchivesBBS() []Signature {
return bbsPacks
}
// Document reads all the bytes from the reader and returns the file type signature if
// the file is a known document or Unknown if the file is not a document.
func Document(r io.ReaderAt) (Signature, error) {
if r == nil {
return Unknown, ErrNilReader
}
for _, item := range documents() {
if item.matcher(r) {
return item.sig, nil
}
}
switch {
case Ansi(r):
return ANSIEscapeText, nil
case CodePage(r):
return PlainText, nil
case Txt(r):
return PlainText, nil
default:
return Unknown, nil
}
}
// Documents returns all the documentation file type signatures.
func Documents() []Signature {
return docs
}
// Image reads all the bytes from the reader and returns the file type signature if
// the file is a known image or Unknown if the file is not an image.
func Image(r io.ReaderAt) (Signature, error) {
if r == nil {
return Unknown, ErrNilReader
}
for _, item := range images() {
if item.matcher(r) {
return item.sig, nil
}
}
return Unknown, nil
}
// Images returns all the image file type signatures.
func Images() []Signature {
return imgs
}
// Program reads all the bytes from the reader and returns the file type signature if
// the file is a known DOS or Windows program or Unknown if the file is not a program.
func Program(r io.ReaderAt) (Signature, error) {
if r == nil {
return Unknown, ErrNilReader
}
for _, item := range programs() {
if item.matcher(r) {
return item.sig, nil
}
}
return Unknown, nil
}
// Programs returns all the program file type signatures for
// Microsoft operating systems, DOS and Windows.
func Programs() []Signature {
return progs
}
// Text reads the first 512 bytes from the reader and returns the file type signature if
// the file is a known plain text file or Unknown if the file is not a text file.
func Text(r io.ReaderAt) (Signature, error) {
return TextWithLogger(nil, r)
}
// Deprecated: use [TextWithLogger] instead.
// The io.Writer is unused.
func TextW(_ io.Writer, r io.ReaderAt) (Signature, error) {
return TextWithLogger(nil, r)
}
// TextWithLogger reads the first 512 bytes from the reader and returns the file type signature if
// the file is a known plain text file or Unknown if the file is not a text file.
func TextWithLogger(sl *slog.Logger, r io.ReaderAt) (Signature, error) {
if sl == nil {
sl = slog.New(slog.DiscardHandler)
}
if r == nil {
return Unknown, ErrNilReader
}
const msg = "known texts"
for _, item := range texts() {
if item.matcher(r) {
sl.Debug(msg+" finder matched", slog.Int("signature", int(item.sig)), slog.String("title", item.sig.Title()))
return item.sig, nil
}
}
switch {
case AnsiWithLogger(sl, r):
return ANSIEscapeText, nil
case CodePageWithLogger(sl, r):
return PlainText, nil
case TxtWithLogger(sl, r):
return PlainText, nil
default:
sl.Debug(msg + " returned a default, unknown")
return Unknown, nil
}
}
// Texts returns all the text file type signatures.
func Texts() []Signature {
return txts
}
// Video reads all the bytes from the reader and returns the file type signature if
// the file is a known video or Unknown if the file is not a video.
func Video(r io.ReaderAt) (Signature, error) {
if r == nil {
return Unknown, ErrNilReader
}
for _, item := range videos() {
if item.matcher(r) {
return item.sig, nil
}
}
return Unknown, nil
}
// Videos returns all the video file type signatures.
func Videos() []Signature {
return vids
}
type sigMatcher struct {
sig Signature
matcher Matcher
}
var archives = sync.OnceValue(func() []sigMatcher { //nolint:gochecknoglobals
find := defaultFinder()
var matchers []sigMatcher
for _, pack := range packs {
if m, exists := find[pack]; exists {
matchers = append(matchers, sigMatcher{sig: pack, matcher: m})
}
}
return matchers
})
var packs = []Signature{ //nolint:gochecknoglobals
PKWAREZipShrink,
PKWAREZipReduce,
PKWAREZipImplode,
PKWAREZip64,
PKWAREZip,
PKWAREMultiVolume,
PKLITE,
PKSFX,
TapeARchive,
RoshalARchive,
RoshalARchivev5,
GzipCompressArchive,
Bzip2CompressArchive,
X7zCompressArchive,
XZCompressArchive,
ZStandardArchive,
FreeArc,
NoGatePAK, // NoGatePAK must go before ARChiveSEA
ARChiveSEA,
YoshiLHA,
ZooArchive,
ArchiveRobertJung,
MicrosoftCABinet,
}
var bbsPacks = []Signature{ //nolint:gochecknoglobals
PKWAREZipShrink,
PKWAREZipReduce,
PKWAREZipImplode,
ARChiveSEA,
YoshiLHA,
ZooArchive,
ArchiveRobertJung,
NoGatePAK,
}
var discImages = sync.OnceValue(func() []sigMatcher { //nolint:gochecknoglobals
find := defaultFinder()
var matchers []sigMatcher
for _, disc := range discs {
if m, exists := find[disc]; exists {
matchers = append(matchers, sigMatcher{sig: disc, matcher: m})
}
}
return matchers
})
var discs = []Signature{ //nolint:gochecknoglobals
CDISO9660,
CDNero,
CDPowerISO,
CDAlcohol120,
}
var documents = sync.OnceValue(func() []sigMatcher { //nolint:gochecknoglobals
find := defaultFinder()
var matchers []sigMatcher
for _, doc := range docs {
if m, exists := find[doc]; exists {
matchers = append(matchers, sigMatcher{sig: doc, matcher: m})
}
}
return matchers
})
var docs = []Signature{ //nolint:gochecknoglobals
WindowsHelpFile,
PortableDocumentFormat,
RichTextFormat,
UTF8Text,
UTF16Text,
UTF32Text,
}
var images = sync.OnceValue(func() []sigMatcher { //nolint:gochecknoglobals
find := defaultFinder()
var matchers []sigMatcher
for _, img := range imgs {
if m, exists := find[img]; exists {
matchers = append(matchers, sigMatcher{sig: img, matcher: m})
}
}
return matchers
})
var imgs = []Signature{ //nolint:gochecknoglobals
AV1ImageFile,
JPEGFileInterchangeFormat,
JPEG2000,
PortableNetworkGraphics,
GraphicsInterchangeFormat,
GoogleWebP,
TaggedImageFileFormat,
BMPFileFormat,
PersonalComputereXchange,
InterleavedBitmap,
MicrosoftIcon,
RIPscrip,
ElectronicArtsAnim,
ElectronicArtsIFF,
}
var programs = sync.OnceValue(func() []sigMatcher { //nolint:gochecknoglobals
find := defaultFinder()
var matchers []sigMatcher
for _, prog := range progs {
if m, exists := find[prog]; exists {
matchers = append(matchers, sigMatcher{sig: prog, matcher: m})
}
}
return matchers
})
var progs = []Signature{ //nolint:gochecknoglobals
MicrosoftExecutable,
MicrosoftDOSKWAJ,
MicrosoftDOSSZDD,
MicrosoftCompoundFile,
}
var texts = sync.OnceValue(func() []sigMatcher { //nolint:gochecknoglobals
find := defaultFinder()
var matchers []sigMatcher
for _, txt := range txts {
if m, exists := find[txt]; exists {
matchers = append(matchers, sigMatcher{sig: txt, matcher: m})
}
}
return matchers
})
var txts = []Signature{ //nolint:gochecknoglobals
UTF8Text,
UTF16Text,
UTF32Text,
ANSIEscapeText,
PlainText,
}
var videos = sync.OnceValue(func() []sigMatcher { //nolint:gochecknoglobals
find := defaultFinder()
var matchers []sigMatcher
for _, vid := range vids {
if m, exists := find[vid]; exists {
matchers = append(matchers, sigMatcher{sig: vid, matcher: m})
}
}
return matchers
})
var vids = []Signature{ //nolint:gochecknoglobals
MPEG4,
QuickTimeMovie,
QuickTimeM4V,
MicrosoftAudioVideoInterleave,
MicrosoftWindowsMedia,
MPEG,
FlashVideo,
RealPlayer,
}