Class: Embulk::Guess::CharsetGuessPlugin
- Inherits:
-
Embulk::GuessPlugin
- Object
- Embulk::GuessPlugin
- Embulk::Guess::CharsetGuessPlugin
- Defined in:
- lib/embulk/guess/charset.rb
Constant Summary collapse
- STATIC_MAPPING =
{ # ISO-8859-1 means ASCII which is a subset of UTF-8 in most of cases # due to lack of sample data set. "ISO-8859-1" => "UTF-8", # Shift_JIS is used almost only by Windows that uses "CP932" in fact. # And "CP932" called by Microsoft actually means "MS932" in Java. "Shift_JIS" => "MS932", }
Instance Method Summary collapse
Methods inherited from Embulk::GuessPlugin
Instance Method Details
#guess(config, sample_buffer) ⇒ Object
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/embulk/guess/charset.rb', line 17 def guess(config, sample_buffer) # ICU4J detector = com.ibm.icu.text.CharsetDetector.new detector.setText(sample_buffer.to_java_bytes) best_match = detector.detect if best_match.getConfidence < 50 name = "UTF-8" else name = best_match.getName if mapped_name = STATIC_MAPPING[name] name = mapped_name end end return {"parser" => {"charset" => name}} end |