Chris@4
|
1 A Fast Method for Identifying Plain Text Files
|
Chris@4
|
2 ==============================================
|
Chris@4
|
3
|
Chris@4
|
4
|
Chris@4
|
5 Introduction
|
Chris@4
|
6 ------------
|
Chris@4
|
7
|
Chris@4
|
8 Given a file coming from an unknown source, it is sometimes desirable
|
Chris@4
|
9 to find out whether the format of that file is plain text. Although
|
Chris@4
|
10 this may appear like a simple task, a fully accurate detection of the
|
Chris@4
|
11 file type requires heavy-duty semantic analysis on the file contents.
|
Chris@4
|
12 It is, however, possible to obtain satisfactory results by employing
|
Chris@4
|
13 various heuristics.
|
Chris@4
|
14
|
Chris@4
|
15 Previous versions of PKZip and other zip-compatible compression tools
|
Chris@4
|
16 were using a crude detection scheme: if more than 80% (4/5) of the bytes
|
Chris@4
|
17 found in a certain buffer are within the range [7..127], the file is
|
Chris@4
|
18 labeled as plain text, otherwise it is labeled as binary. A prominent
|
Chris@4
|
19 limitation of this scheme is the restriction to Latin-based alphabets.
|
Chris@4
|
20 Other alphabets, like Greek, Cyrillic or Asian, make extensive use of
|
Chris@4
|
21 the bytes within the range [128..255], and texts using these alphabets
|
Chris@4
|
22 are most often misidentified by this scheme; in other words, the rate
|
Chris@4
|
23 of false negatives is sometimes too high, which means that the recall
|
Chris@4
|
24 is low. Another weakness of this scheme is a reduced precision, due to
|
Chris@4
|
25 the false positives that may occur when binary files containing large
|
Chris@4
|
26 amounts of textual characters are misidentified as plain text.
|
Chris@4
|
27
|
Chris@4
|
28 In this article we propose a new, simple detection scheme that features
|
Chris@4
|
29 a much increased precision and a near-100% recall. This scheme is
|
Chris@4
|
30 designed to work on ASCII, Unicode and other ASCII-derived alphabets,
|
Chris@4
|
31 and it handles single-byte encodings (ISO-8859, MacRoman, KOI8, etc.)
|
Chris@4
|
32 and variable-sized encodings (ISO-2022, UTF-8, etc.). Wider encodings
|
Chris@4
|
33 (UCS-2/UTF-16 and UCS-4/UTF-32) are not handled, however.
|
Chris@4
|
34
|
Chris@4
|
35
|
Chris@4
|
36 The Algorithm
|
Chris@4
|
37 -------------
|
Chris@4
|
38
|
Chris@4
|
39 The algorithm works by dividing the set of bytecodes [0..255] into three
|
Chris@4
|
40 categories:
|
Chris@4
|
41 - The white list of textual bytecodes:
|
Chris@4
|
42 9 (TAB), 10 (LF), 13 (CR), 32 (SPACE) to 255.
|
Chris@4
|
43 - The gray list of tolerated bytecodes:
|
Chris@4
|
44 7 (BEL), 8 (BS), 11 (VT), 12 (FF), 26 (SUB), 27 (ESC).
|
Chris@4
|
45 - The black list of undesired, non-textual bytecodes:
|
Chris@4
|
46 0 (NUL) to 6, 14 to 31.
|
Chris@4
|
47
|
Chris@4
|
48 If a file contains at least one byte that belongs to the white list and
|
Chris@4
|
49 no byte that belongs to the black list, then the file is categorized as
|
Chris@4
|
50 plain text; otherwise, it is categorized as binary. (The boundary case,
|
Chris@4
|
51 when the file is empty, automatically falls into the latter category.)
|
Chris@4
|
52
|
Chris@4
|
53
|
Chris@4
|
54 Rationale
|
Chris@4
|
55 ---------
|
Chris@4
|
56
|
Chris@4
|
57 The idea behind this algorithm relies on two observations.
|
Chris@4
|
58
|
Chris@4
|
59 The first observation is that, although the full range of 7-bit codes
|
Chris@4
|
60 [0..127] is properly specified by the ASCII standard, most control
|
Chris@4
|
61 characters in the range [0..31] are not used in practice. The only
|
Chris@4
|
62 widely-used, almost universally-portable control codes are 9 (TAB),
|
Chris@4
|
63 10 (LF) and 13 (CR). There are a few more control codes that are
|
Chris@4
|
64 recognized on a reduced range of platforms and text viewers/editors:
|
Chris@4
|
65 7 (BEL), 8 (BS), 11 (VT), 12 (FF), 26 (SUB) and 27 (ESC); but these
|
Chris@4
|
66 codes are rarely (if ever) used alone, without being accompanied by
|
Chris@4
|
67 some printable text. Even the newer, portable text formats such as
|
Chris@4
|
68 XML avoid using control characters outside the list mentioned here.
|
Chris@4
|
69
|
Chris@4
|
70 The second observation is that most of the binary files tend to contain
|
Chris@4
|
71 control characters, especially 0 (NUL). Even though the older text
|
Chris@4
|
72 detection schemes observe the presence of non-ASCII codes from the range
|
Chris@4
|
73 [128..255], the precision rarely has to suffer if this upper range is
|
Chris@4
|
74 labeled as textual, because the files that are genuinely binary tend to
|
Chris@4
|
75 contain both control characters and codes from the upper range. On the
|
Chris@4
|
76 other hand, the upper range needs to be labeled as textual, because it
|
Chris@4
|
77 is used by virtually all ASCII extensions. In particular, this range is
|
Chris@4
|
78 used for encoding non-Latin scripts.
|
Chris@4
|
79
|
Chris@4
|
80 Since there is no counting involved, other than simply observing the
|
Chris@4
|
81 presence or the absence of some byte values, the algorithm produces
|
Chris@4
|
82 consistent results, regardless what alphabet encoding is being used.
|
Chris@4
|
83 (If counting were involved, it could be possible to obtain different
|
Chris@4
|
84 results on a text encoded, say, using ISO-8859-16 versus UTF-8.)
|
Chris@4
|
85
|
Chris@4
|
86 There is an extra category of plain text files that are "polluted" with
|
Chris@4
|
87 one or more black-listed codes, either by mistake or by peculiar design
|
Chris@4
|
88 considerations. In such cases, a scheme that tolerates a small fraction
|
Chris@4
|
89 of black-listed codes would provide an increased recall (i.e. more true
|
Chris@4
|
90 positives). This, however, incurs a reduced precision overall, since
|
Chris@4
|
91 false positives are more likely to appear in binary files that contain
|
Chris@4
|
92 large chunks of textual data. Furthermore, "polluted" plain text should
|
Chris@4
|
93 be regarded as binary by general-purpose text detection schemes, because
|
Chris@4
|
94 general-purpose text processing algorithms might not be applicable.
|
Chris@4
|
95 Under this premise, it is safe to say that our detection method provides
|
Chris@4
|
96 a near-100% recall.
|
Chris@4
|
97
|
Chris@4
|
98 Experiments have been run on many files coming from various platforms
|
Chris@4
|
99 and applications. We tried plain text files, system logs, source code,
|
Chris@4
|
100 formatted office documents, compiled object code, etc. The results
|
Chris@4
|
101 confirm the optimistic assumptions about the capabilities of this
|
Chris@4
|
102 algorithm.
|
Chris@4
|
103
|
Chris@4
|
104
|
Chris@4
|
105 --
|
Chris@4
|
106 Cosmin Truta
|
Chris@4
|
107 Last updated: 2006-May-28
|