-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcharacterize.go
300 lines (282 loc) · 8.98 KB
/
characterize.go
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
// Copyright 2015 Richard Lehane.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Golang port of encoding.c from the file command
// https://github.com/file/file/blob/master/src/encoding.c
// Original copyright notice:
/*
* Copyright (c) Ian F. Darwin 1986-1995.
* Software written by Ian F. Darwin and others;
* maintained 1995-present by Christos Zoulas and others.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice immediately at the beginning of the file, without modification,
* this list of conditions, and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
// Package characterize is a port of the text detection algorithm used by the file command
package characterize
// CharType is the character encoding reported by the file command
type CharType byte
const (
DATA CharType = iota // Binary data
ASCII // ASCII text
UTF7 // UTF-7 Unicode
UTF8BOM // UTF-8 Unicode (with BOM)
UTF8 // UTF-8 Unicode
UTF16LE // Little-endian UTF-16 Unicode
UTF16BE // Big-endian UTF-16 Unicode
LATIN1 // ISO-8859
EXTENDED // Non-ISO extended-ASCII
EBCDIC // EBCDIC
EBCDICINT // International EBCDIC
)
func (c CharType) String() string {
switch c {
case ASCII:
return "ASCII"
case UTF7:
return "UTF-7 Unicode"
case UTF8BOM:
return "UTF-8 Unicode (with BOM)"
case UTF8:
return "UTF-8 Unicode"
case UTF16LE:
return "Little-endian UTF-16 Unicode"
case UTF16BE:
return "Big-endian UTF-16 Unicode"
case LATIN1:
return "ISO-8859"
case EXTENDED:
return "Non-ISO extended-ASCII"
case EBCDIC:
return "EBCDIC"
case EBCDICINT:
return "International EBCDIC"
}
return "Binary data"
}
// Detect applies the file command's text detection algorithm to a byte slice.
// Returns a CharType that is equivalent to the file command's text types.
func Detect(buf []byte) CharType {
if len(buf) == 0 { // don't report text for empty slices
return DATA
}
ubom := utf8BOM(buf)
if ubom {
buf = buf[3:]
}
tt := detectText(buf)
if tt == _a {
if ubom {
return UTF8BOM
}
if utf7BOM(buf) {
return UTF7
}
return ASCII
}
if detectUTF8(buf) {
if ubom {
return UTF8BOM
}
return UTF8
}
if utf16, big := detectUTF16(buf); utf16 {
if big {
return UTF16BE
}
return UTF16LE
}
if tt == _i {
return LATIN1
}
if tt == _e {
return EXTENDED
}
if ebcdic, international := detectEBCDIC(buf); ebcdic {
if international {
return EBCDICINT
}
return EBCDIC
}
return DATA
}
type textType byte
const (
_n textType = iota /* character never appears in text */
_a /* character appears in plain ASCII text */
_i /* character appears in ISO-8859 text */
_e /* character appears in non-ISO extended ASCII (Mac, IBM PC) */
)
var textChars = [256]textType{
_n, _n, _n, _n, _n, _n, _n, _a, _a, _a, _a, _a, _a, _a, _n, _n,
_n, _n, _n, _n, _n, _n, _n, _n, _n, _n, _n, _a, _n, _n, _n, _n,
_a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a,
_a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a,
_a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a,
_a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a,
_a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a,
_a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _a, _n,
_e, _e, _e, _e, _e, _a, _e, _e, _e, _e, _e, _e, _e, _e, _e, _e,
_e, _e, _e, _e, _e, _e, _e, _e, _e, _e, _e, _e, _e, _e, _e, _e,
_i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i,
_i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i,
_i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i,
_i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i,
_i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i,
_i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i, _i,
}
func detectText(r []byte) textType {
var t textType
for _, b := range r {
nt := textChars[b]
if nt == _n {
return _n
}
if nt > t {
t = nt
}
}
return t
}
func utf7BOM(r []byte) bool {
if len(r) > 4 && r[0] == '+' && r[1] == '/' && r[2] == 'v' {
switch r[3] {
case '8', '9', '+', '/':
return true
}
}
return false
}
func utf8BOM(r []byte) bool {
if len(r) > 3 && r[0] == 239 && r[1] == 187 && r[2] == 191 {
return true
}
return false
}
func detectUTF8(r []byte) bool {
var high bool
for i := 0; i < len(r); i++ {
if r[i]&0x80 == 0 {
if textChars[r[i]] != _a {
return false
}
} else if r[i]&0x40 == 0 {
return false
} else {
var following int
switch {
case r[i]&0x20 == 0:
following = 1
case r[i]&0x10 == 0:
following = 2
case r[i]&0x08 == 0:
following = 3
case r[i]&0x04 == 0:
following = 4
case r[i]&0x02 == 0:
following = 5
default:
return false
}
for n := 0; n < following; n++ {
i++
if i >= len(r) {
return high
}
if r[i]&0x80 == 0 || r[i]&0x40 != 0 {
return false
}
}
high = true
}
}
return high
}
func detectUTF16(r []byte) (bool, bool) {
var big bool
if len(r) < 2 {
return false, false
}
if r[0] == 0xff && r[1] == 0xfe {
big = false
} else if r[0] == 0xfe && r[1] == 0xff {
big = true
} else {
return false, false
}
for i := 2; i+1 < len(r); i += 2 {
var char int
if big {
char = int(r[i+1]) + 256*int(r[i])
} else {
char = int(r[i]) + 256*int(r[i+1])
}
if char == 0xfffe {
return false, false
}
if char < 128 && textChars[char] != _a {
return false, false
}
}
return true, big
}
var ebcdicASCII = [256]byte{
0, 1, 2, 3, 156, 9, 134, 127, 151, 141, 142, 11, 12, 13, 14, 15,
16, 17, 18, 19, 157, 133, 8, 135, 24, 25, 146, 143, 28, 29, 30, 31,
128, 129, 130, 131, 132, 10, 23, 27, 136, 137, 138, 139, 140, 5, 6, 7,
144, 145, 22, 147, 148, 149, 150, 4, 152, 153, 154, 155, 20, 21, 158, 26,
' ', 160, 161, 162, 163, 164, 165, 166, 167, 168, 213, '.', '<', '(', '+', '|',
'&', 169, 170, 171, 172, 173, 174, 175, 176, 177, '!', '$', '*', ')', ';', '~',
'-', '/', 178, 179, 180, 181, 182, 183, 184, 185, 203, ',', '%', '_', '>', '?',
186, 187, 188, 189, 190, 191, 192, 193, 194, '`', ':', '#', '@', '\'', '=', '"',
195, 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 196, 197, 198, 199, 200, 201,
202, 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', '^', 204, 205, 206, 207, 208,
209, 229, 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 210, 211, 212, '[', 214, 215,
216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, ']', 230, 231,
'{', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 232, 233, 234, 235, 236, 237,
'}', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 238, 239, 240, 241, 242, 243,
'\\', 159, 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 244, 245, 246, 247, 248, 249,
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 250, 251, 252, 253, 254, 255,
}
func detectEBCDIC(r []byte) (bool, bool) {
var international bool
for _, b := range r {
switch textChars[ebcdicASCII[b]] {
case _n, _e:
return false, false
case _i:
international = true
}
}
return true, international
}