chardistribution.js
9.76 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
/*
* The Original Code is Mozilla Universal charset detector code.
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 2001
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* António Afonso (antonio.afonso gmail.com) - port to JavaScript
* Mark Pilgrim - port to Python
* Shy Shalom - original C code
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
!function(jschardet) {
jschardet.CharDistributionAnalysis = function() {
var ENOUGH_DATA_THRESHOLD = 1024;
var SURE_YES = 0.99;
var SURE_NO = 0.01;
var MINIMUM_DATA_THRESHOLD = 3;
var self = this;
function init() {
self._mCharToFreqOrder = null; // Mapping table to get frequency order from char order (get from GetOrder())
self._mTableSize = null; // Size of above table
self._mTypicalDistributionRatio = null; // This is a constant value which varies from language to language, used in calculating confidence. See http://www.mozilla.org/projects/intl/UniversalCharsetDetection.html for further detail.
self.reset();
}
/**
* reset analyser, clear any state
*/
this.reset = function() {
this._mDone = false; // If this flag is set to constants.True, detection is done and conclusion has been made
this._mTotalChars = 0; // Total characters encountered
this._mFreqChars = 0; // The number of characters whose frequency order is less than 512
}
/**
* feed a character with known length
*/
this.feed = function(aStr, aCharLen) {
if( aCharLen == 2 ) {
// we only care about 2-bytes character in our distribution analysis
var order = this.getOrder(aStr);
} else {
order = -1;
}
if( order >= 0 ) {
this._mTotalChars++;
// order is valid
if( order < this._mTableSize ) {
if( 512 > this._mCharToFreqOrder[order] ) {
this._mFreqChars++;
}
}
}
}
/**
* return confidence based on existing data
*/
this.getConfidence = function() {
// if we didn't receive any character in our consideration range, return negative answer
if( this._mTotalChars <= 0 || this._mFreqChars <= MINIMUM_DATA_THRESHOLD) {
return SURE_NO;
}
if( this._mTotalChars != this._mFreqChars ) {
var r = this._mFreqChars / ((this._mTotalChars - this._mFreqChars) * this._mTypicalDistributionRatio);
if( r < SURE_YES ) {
return r;
}
}
// normalize confidence (we don't want to be 100% sure)
return SURE_YES;
}
this.gotEnoughData = function() {
// It is not necessary to receive all data to draw conclusion. For charset detection,
// certain amount of data is enough
return this._mTotalChars > ENOUGH_DATA_THRESHOLD;
}
this.getOrder = function(aStr) {
// We do not handle characters based on the original encoding string, but
// convert this encoding string to a number, here called order.
// This allows multiple encodings of a language to share one frequency table.
return -1;
}
init();
}
jschardet.EUCTWDistributionAnalysis = function() {
jschardet.CharDistributionAnalysis.apply(this);
var self = this;
function init() {
self._mCharToFreqOrder = jschardet.EUCTWCharToFreqOrder;
self._mTableSize = jschardet.EUCTW_TABLE_SIZE;
self._mTypicalDistributionRatio = jschardet.EUCTW_TYPICAL_DISTRIBUTION_RATIO;
}
this.getOrder = function(aStr) {
// for euc-TW encoding, we are interested
// first byte range: 0xc4 -- 0xfe
// second byte range: 0xa1 -- 0xfe
// no validation needed here. State machine has done that
if( aStr.charCodeAt(0) >= 0xC4 ) {
return 94 * (aStr.charCodeAt(0) - 0xC4) + aStr.charCodeAt(1) - 0xA1;
} else {
return -1;
}
}
init();
}
jschardet.EUCTWDistributionAnalysis.prototype = new jschardet.CharDistributionAnalysis();
jschardet.EUCKRDistributionAnalysis = function() {
jschardet.CharDistributionAnalysis.apply(this);
var self = this;
function init() {
self._mCharToFreqOrder = jschardet.EUCKRCharToFreqOrder;
self._mTableSize = jschardet.EUCKR_TABLE_SIZE;
self._mTypicalDistributionRatio = jschardet.EUCKR_TYPICAL_DISTRIBUTION_RATIO;
}
this.getOrder = function(aStr) {
// for euc-KR encoding, we are interested
// first byte range: 0xb0 -- 0xfe
// second byte range: 0xa1 -- 0xfe
// no validation needed here. State machine has done that
if( aStr.charCodeAt(0) >= 0xB0 ) {
return 94 * (aStr.charCodeAt(0) - 0xB0) + aStr.charCodeAt(1) - 0xA1;
} else {
return -1;
}
}
init();
}
jschardet.EUCKRDistributionAnalysis.prototype = new jschardet.CharDistributionAnalysis();
jschardet.GB2312DistributionAnalysis = function() {
jschardet.CharDistributionAnalysis.apply(this);
var self = this;
function init() {
self._mCharToFreqOrder = jschardet.GB2312CharToFreqOrder;
self._mTableSize = jschardet.GB2312_TABLE_SIZE;
self._mTypicalDistributionRatio = jschardet.GB2312_TYPICAL_DISTRIBUTION_RATIO;
}
this.getOrder = function(aStr) {
// for GB2312 encoding, we are interested
// first byte range: 0xb0 -- 0xfe
// second byte range: 0xa1 -- 0xfe
// no validation needed here. State machine has done that
if( aStr.charCodeAt(0) >= 0xB0 && aStr.charCodeAt(1) >= 0xA1 ) {
return 94 * (aStr.charCodeAt(0) - 0xB0) + aStr.charCodeAt(1) - 0xA1;
} else {
return -1;
}
}
init();
}
jschardet.GB2312DistributionAnalysis.prototype = new jschardet.CharDistributionAnalysis();
jschardet.Big5DistributionAnalysis = function() {
jschardet.CharDistributionAnalysis.apply(this);
var self = this;
function init() {
self._mCharToFreqOrder = jschardet.Big5CharToFreqOrder;
self._mTableSize = jschardet.BIG5_TABLE_SIZE;
self._mTypicalDistributionRatio = jschardet.BIG5_TYPICAL_DISTRIBUTION_RATIO;
}
this.getOrder = function(aStr) {
// for big5 encoding, we are interested
// first byte range: 0xa4 -- 0xfe
// second byte range: 0x40 -- 0x7e , 0xa1 -- 0xfe
// no validation needed here. State machine has done that
if( aStr.charCodeAt(0) >= 0xA4 ) {
if( aStr.charCodeAt(1) >= 0xA1 ) {
return 157 * (aStr.charCodeAt(0) - 0xA4) + aStr.charCodeAt(1) - 0xA1 + 63;
} else {
return 157 * (aStr.charCodeAt(0) - 0xA4) + aStr.charCodeAt(1) - 0x40;
}
} else {
return -1;
}
}
init();
}
jschardet.Big5DistributionAnalysis.prototype = new jschardet.CharDistributionAnalysis();
jschardet.SJISDistributionAnalysis = function() {
jschardet.CharDistributionAnalysis.apply(this);
var self = this;
function init() {
self._mCharToFreqOrder = jschardet.JISCharToFreqOrder;
self._mTableSize = jschardet.JIS_TABLE_SIZE;
self._mTypicalDistributionRatio = jschardet.JIS_TYPICAL_DISTRIBUTION_RATIO;
}
this.getOrder = function(aStr) {
// for sjis encoding, we are interested
// first byte range: 0x81 -- 0x9f , 0xe0 -- 0xef
// second byte range: 0x40 -- 0x7e, 0x80 -- 0xfc
// no validation needed here. State machine has done that
if( aStr.charCodeAt(0) >= 0x81 && aStr.charCodeAt(0) <= 0x9F ) {
var order = 188 * (aStr.charCodeAt(0) - 0x81);
} else if( aStr.charCodeAt(0) >= 0xE0 && aStr.charCodeAt(0) <= 0xEF ) {
order = 188 * (aStr.charCodeAt(0) - 0xE0 + 31);
} else {
return -1;
}
order += aStr.charCodeAt(1) - 0x40;
if( aStr.charCodeAt(1) < 0x40 || aStr.charCodeAt(1) === 0x7F || aStr.charCodeAt(1) > 0xFC) {
order = -1;
}
return order;
}
init();
}
jschardet.SJISDistributionAnalysis.prototype = new jschardet.CharDistributionAnalysis();
jschardet.EUCJPDistributionAnalysis = function() {
jschardet.CharDistributionAnalysis.apply(this);
var self = this;
function init() {
self._mCharToFreqOrder = jschardet.JISCharToFreqOrder;
self._mTableSize = jschardet.JIS_TABLE_SIZE;
self._mTypicalDistributionRatio = jschardet.JIS_TYPICAL_DISTRIBUTION_RATIO;
}
this.getOrder = function(aStr) {
// for euc-JP encoding, we are interested
// first byte range: 0xa0 -- 0xfe
// second byte range: 0xa1 -- 0xfe
// no validation needed here. State machine has done that
if( aStr[0] >= "\xA0" ) {
return 94 * (aStr.charCodeAt(0) - 0xA1) + aStr.charCodeAt(1) - 0xA1;
} else {
return -1;
}
}
init();
}
jschardet.EUCJPDistributionAnalysis.prototype = new jschardet.CharDistributionAnalysis();
}(require('./init'));