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 376 377 378 379 380 381 382 383 384
|
#include "unicode/ucsdet.h"
#include "common.h"
extern VALUE rb_mCharlockHolmes;
static VALUE rb_cEncodingDetector;
typedef struct {
UCharsetDetector *csd;
} charlock_detector_t;
static void rb_encdec__free(void *obj)
{
charlock_detector_t *detector;
detector = (charlock_detector_t *)obj;
if (detector->csd)
ucsdet_close(detector->csd);
free(detector);
}
static const rb_data_type_t charlock_detector_type = {
"Charlock/Detector",
{ 0, rb_encdec__free, 0, },
0, 0,
RUBY_TYPED_FREE_IMMEDIATELY,
};
static VALUE rb_encdec_buildmatch(const UCharsetMatch *match)
{
UErrorCode status = U_ZERO_ERROR;
const char *mname;
const char *mlang;
int mconfidence;
VALUE rb_match;
VALUE enc_tbl;
VALUE enc_name;
VALUE compat_enc;
if (!match)
return Qnil;
mname = ucsdet_getName(match, &status);
mlang = ucsdet_getLanguage(match, &status);
mconfidence = ucsdet_getConfidence(match, &status);
rb_match = rb_hash_new();
rb_hash_aset(rb_match, ID2SYM(rb_intern("type")), ID2SYM(rb_intern("text")));
enc_name = charlock_new_str2(mname);
rb_hash_aset(rb_match, ID2SYM(rb_intern("encoding")), enc_name);
enc_tbl = rb_iv_get(rb_cEncodingDetector, "@encoding_table");
compat_enc = rb_hash_aref(enc_tbl, enc_name);
if (!NIL_P(compat_enc)) {
rb_hash_aset(rb_match, ID2SYM(rb_intern("ruby_encoding")), compat_enc);
}
rb_hash_aset(rb_match, ID2SYM(rb_intern("confidence")), INT2NUM(mconfidence));
if (mlang && mlang[0])
rb_hash_aset(rb_match, ID2SYM(rb_intern("language")), charlock_new_str2(mlang));
return rb_match;
}
static VALUE rb_encdec_binarymatch(void) {
VALUE rb_match;
rb_match = rb_hash_new();
rb_hash_aset(rb_match, ID2SYM(rb_intern("type")), ID2SYM(rb_intern("binary")));
rb_hash_aset(rb_match, ID2SYM(rb_intern("confidence")), INT2NUM(100));
return rb_match;
}
static int detect_binary_content(VALUE self, VALUE rb_str) {
size_t buf_len, scan_len;
const char *buf;
buf = RSTRING_PTR(rb_str);
buf_len = RSTRING_LEN(rb_str);
scan_len = NUM2ULL(rb_iv_get(self, "@binary_scan_length"));
if (buf_len > 10) {
// application/postscript
if (!memcmp(buf, "%!PS-Adobe-", 11))
return 0;
}
if (buf_len > 7) {
// image/png
if (!memcmp(buf, "\x89PNG\x0D\x0A\x1A\x0A", 8))
return 1;
}
if (buf_len > 5) {
// image/gif
if (!memcmp(buf, "GIF87a", 6))
return 1;
// image/gif
if (!memcmp(buf, "GIF89a", 6))
return 1;
}
if (buf_len > 4) {
// application/pdf
if (!memcmp(buf, "%PDF-", 5))
return 1;
}
if (buf_len > 3) {
// UTF-32BE
if (!memcmp(buf, "\0\0\xfe\xff", 4))
return 0;
// UTF-32LE
if (!memcmp(buf, "\xff\xfe\0\0", 4))
return 0;
}
if (buf_len > 2) {
// image/jpeg
if (!memcmp(buf, "\xFF\xD8\xFF", 3))
return 1;
}
if (buf_len > 1) {
// UTF-16BE
if (!memcmp(buf, "\xfe\xff", 2))
return 0;
// UTF-16LE
if (!memcmp(buf, "\xff\xfe", 2))
return 0;
}
/*
* If we got this far, any NULL bytes within the `scan_len`
* range will likely mean the contents are binary.
*/
if (scan_len < buf_len)
buf_len = scan_len;
return !!memchr(buf, 0, buf_len);
}
/*
* call-seq: true/false = EncodingDetector.is_binary? str
*
* Attempt to detect if a string is binary or text
*
* str - a String, what you want to perform the binary check on
*
* Returns: true or false
*/
static VALUE rb_encdec_is_binary(VALUE self, VALUE str)
{
if (detect_binary_content(self, str))
return Qtrue;
else
return Qfalse;
}
/*
* call-seq: detection_hash = EncodingDetector.detect str[, hint_enc]
*
* Attempt to detect the encoding of this string
*
* str - a String, what you want to detect the encoding of
* hint_enc - an optional String (like "UTF-8"), the encoding name which will
* be used as an additional hint to the charset detector
*
* Returns: a Hash with :encoding, :language, :type and :confidence
*/
static VALUE rb_encdec_detect(int argc, VALUE *argv, VALUE self)
{
UErrorCode status = U_ZERO_ERROR;
charlock_detector_t *detector;
VALUE rb_str;
VALUE rb_enc_hint;
rb_scan_args(argc, argv, "11", &rb_str, &rb_enc_hint);
Check_Type(rb_str, T_STRING);
TypedData_Get_Struct(self, charlock_detector_t, &charlock_detector_type, detector);
// first lets see if this is binary content
if (detect_binary_content(self, rb_str)) {
return rb_encdec_binarymatch();
}
// if we got here - the data doesn't look like binary
// lets try to figure out what encoding the text is in
ucsdet_setText(detector->csd, RSTRING_PTR(rb_str), (int32_t)RSTRING_LEN(rb_str), &status);
if (!NIL_P(rb_enc_hint)) {
Check_Type(rb_enc_hint, T_STRING);
ucsdet_setDeclaredEncoding(detector->csd, RSTRING_PTR(rb_enc_hint), (int32_t)RSTRING_LEN(rb_enc_hint), &status);
}
return rb_encdec_buildmatch(ucsdet_detect(detector->csd, &status));
}
/*
* call-seq: detection_hash_array = EncodingDetector.detect_all str[, hint_enc]
*
* Attempt to detect the encoding of this string, and return
* a list with all the possible encodings that match it.
*
*
* str - a String, what you want to detect the encoding of
* hint_enc - an optional String (like "UTF-8"), the encoding name which will
* be used as an additional hint to the charset detector
*
* Returns: an Array with zero or more Hashes,
* each one of them with with :encoding, :language, :type and :confidence
*/
static VALUE rb_encdec_detect_all(int argc, VALUE *argv, VALUE self)
{
UErrorCode status = U_ZERO_ERROR;
charlock_detector_t *detector;
const UCharsetMatch **csm;
VALUE rb_ret;
int i, match_count;
VALUE rb_str;
VALUE rb_enc_hint;
VALUE binary_match;
rb_scan_args(argc, argv, "11", &rb_str, &rb_enc_hint);
Check_Type(rb_str, T_STRING);
TypedData_Get_Struct(self, charlock_detector_t, &charlock_detector_type, detector);
rb_ret = rb_ary_new();
// first lets see if this is binary content
binary_match = Qnil;
if (detect_binary_content(self, rb_str)) {
binary_match = rb_encdec_binarymatch();
}
ucsdet_setText(detector->csd, RSTRING_PTR(rb_str), (int32_t)RSTRING_LEN(rb_str), &status);
if (!NIL_P(rb_enc_hint)) {
Check_Type(rb_enc_hint, T_STRING);
ucsdet_setDeclaredEncoding(detector->csd, RSTRING_PTR(rb_enc_hint), (int32_t)RSTRING_LEN(rb_enc_hint), &status);
}
csm = ucsdet_detectAll(detector->csd, &match_count, &status);
for (i = 0; i < match_count; ++i) {
rb_ary_push(rb_ret, rb_encdec_buildmatch(csm[i]));
}
if (!NIL_P(binary_match))
rb_ary_unshift(rb_ret, binary_match);
return rb_ret;
}
/*
* call-seq: EncodingDetector#strip_tags?
*
* Returns whether or not the strip_tags flag is set on this detector
*
* Returns: Boolean
*/
static VALUE rb_get_strip_tags(VALUE self)
{
charlock_detector_t *detector;
UBool val;
VALUE rb_val;
TypedData_Get_Struct(self, charlock_detector_t, &charlock_detector_type, detector);
val = ucsdet_isInputFilterEnabled(detector->csd);
rb_val = val == 1 ? Qtrue : Qfalse;
return rb_val;
}
/*
* call-seq: EncodingDetector#strip_tags = true
*
* Enable or disable the stripping of HTML/XML tags from the input before
* attempting any detection
*
* Returns: Boolean, the value passed
*/
static VALUE rb_set_strip_tags(VALUE self, VALUE rb_val)
{
charlock_detector_t *detector;
UBool val;
TypedData_Get_Struct(self, charlock_detector_t, &charlock_detector_type, detector);
val = rb_val == Qtrue ? 1 : 0;
ucsdet_enableInputFilter(detector->csd, val);
return rb_val;
}
/*
* call-seq: detectable_encodings = EncodingDetector.supported_encodings
*
* The list of detectable encodings supported by this library
*
* Returns: an Array of Strings
*/
static VALUE rb_get_supported_encodings(VALUE klass)
{
UCharsetDetector *csd;
UErrorCode status = U_ZERO_ERROR;
UEnumeration *encoding_list;
VALUE rb_encoding_list;
int32_t enc_count;
int32_t i;
const char *enc_name;
int32_t enc_name_len;
rb_encoding_list = rb_iv_get(klass, "encoding_list");
// lazily populate the list
if (NIL_P(rb_encoding_list)) {
csd = ucsdet_open(&status);
encoding_list = ucsdet_getAllDetectableCharsets(csd, &status);
rb_encoding_list = rb_ary_new();
enc_count = uenum_count(encoding_list, &status);
rb_ary_push(rb_encoding_list, charlock_new_str2("windows-1250"));
rb_ary_push(rb_encoding_list, charlock_new_str2("windows-1252"));
rb_ary_push(rb_encoding_list, charlock_new_str2("windows-1253"));
rb_ary_push(rb_encoding_list, charlock_new_str2("windows-1254"));
rb_ary_push(rb_encoding_list, charlock_new_str2("windows-1255"));
for(i=0; i < enc_count; i++) {
enc_name = uenum_next(encoding_list, &enc_name_len, &status);
rb_ary_push(rb_encoding_list, charlock_new_str(enc_name, enc_name_len));
}
rb_iv_set(klass, "encoding_list", rb_encoding_list);
ucsdet_close(csd);
}
return rb_encoding_list;
}
static VALUE rb_encdec__alloc(VALUE klass)
{
charlock_detector_t *detector;
UErrorCode status = U_ZERO_ERROR;
VALUE obj;
detector = (charlock_detector_t *) calloc(1, sizeof(charlock_detector_t));
obj = TypedData_Wrap_Struct(klass, &charlock_detector_type, (void *)detector);
detector->csd = ucsdet_open(&status);
if (U_FAILURE(status)) {
rb_raise(rb_eStandardError, "%s", u_errorName(status));
}
return obj;
}
void _init_charlock_encoding_detector(void)
{
rb_cEncodingDetector = rb_define_class_under(rb_mCharlockHolmes, "EncodingDetector", rb_cObject);
rb_define_alloc_func(rb_cEncodingDetector, rb_encdec__alloc);
rb_define_method(rb_cEncodingDetector, "is_binary?", rb_encdec_is_binary, 1);
rb_define_method(rb_cEncodingDetector, "detect", rb_encdec_detect, -1);
rb_define_method(rb_cEncodingDetector, "detect_all", rb_encdec_detect_all, -1);
rb_define_method(rb_cEncodingDetector, "strip_tags", rb_get_strip_tags, 0);
rb_define_method(rb_cEncodingDetector, "strip_tags=", rb_set_strip_tags, 1);
rb_define_singleton_method(rb_cEncodingDetector, "supported_encodings", rb_get_supported_encodings, 0);
}
|