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
|
# mconv.rb - character code conversion library using iconv
#
# Copyright (C) 2006 Tanaka Akira <akr@fsij.org>
#
# 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, 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.
# 3. The name of the author may not be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 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.
require 'iconv'
module Mconv
def Mconv.setup(internal_mime_charset)
internal_mime_charset = internal_mime_charset.downcase
case internal_mime_charset
when 'euc-jp'
kcode = 'e'
when 'euc-kr'
kcode = 'e'
when 'shift_jis'
kcode = 's'
when 'iso-8859-1'
kcode = 'n'
when 'utf-8'
kcode = 'u'
else
raise "unexpected MIME charset: #{internal_mime_charset}"
end
@internal_mime_charset = internal_mime_charset
$KCODE = kcode
end
# xxx: euc-kr
case $KCODE
when /\Ae/i; @internal_mime_charset = 'euc-jp'
when /\As/i; @internal_mime_charset = 'shift_jis'
when /\Au/i; @internal_mime_charset = 'utf-8'
when /\An/i; @internal_mime_charset = 'iso-8859-1'
else
raise "unknown $KCODE: #{$KCODE.inspect}"
end
def Mconv.setup_locale_charset
Mconv.setup(Mconv.locale_charset)
end
def Mconv.locale_charset
codeset = Mconv.locale_codeset
case codeset
when /\A(?:euc-jp|eucjp|ujis)\z/i
'euc-jp'
when /\A(?:euc-kr|euckr)\z/i
'euc-kr'
when /\A(?:shift_jis|sjis)\z/i
'shift_jis'
when /\A(?:utf-8|utf8)\z/i
'utf-8'
when /\A(?:iso-8859-1|iso8859-1|us-ascii|ANSI_X3.4-1968)\z/i
'iso-8859-1'
else
'utf-8'
end
end
def Mconv.locale_codeset
codeset = `locale charmap`.chomp
status = $?
if status.to_i == 0 && !codeset.empty?
codeset
else
nil
end
end
def Mconv.internal_mime_charset
@internal_mime_charset.dup
end
def Mconv.valid_charset?(str)
/\A(us-ascii|iso-2022-jp|euc-jp|shift_jis|utf-8|iso-8859-1)\z/i =~ str
end
def Mconv.conv(str, to, from)
ic = Iconv.new(to, from)
result = ''
rest = str
begin
result << ic.iconv(rest)
rescue Iconv::Failure
result << $!.success
rest = $!.failed
# following processing should be customizable by block?
result << '?'
rest = rest[1..-1]
retry
end
result << ic.close
result
end
CharsetTable = {
'us-ascii' => /\A[\s\x21-\x7e]*\z/,
'euc-jp' =>
/\A(?:\s (?# white space character)
| [\x21-\x7e] (?# ASCII)
| [\xa1-\xfe][\xa1-\xfe] (?# JIS X 0208)
| \x8e(?:([\xa1-\xdf]) (?# JIS X 0201 Katakana)
|([\xe0-\xfe])) (?# There is no character in E0 to FE)
| \x8f[\xa1-\xfe][\xa1-\xfe] (?# JIS X 0212)
)*\z/nx,
"iso-2022-jp" => # with katakana
/\A[\s\x21-\x7e]* (?# initial ascii )
(\e\(B[\s\x21-\x7e]* (?# ascii )
|\e\(J[\s\x21-\x7e]* (?# JIS X 0201 latin )
|\e\(I[\s\x21-\x7e]* (?# JIS X 0201 katakana )
|\e\$@(?:[\x21-\x7e][\x21-\x7e])* (?# JIS X 0201 )
|\e\$B(?:[\x21-\x7e][\x21-\x7e])* (?# JIS X 0201 )
)*\z/nx,
'shift_jis' =>
/\A(?:\s (?# white space character)
| [\x21-\x7e] (?# JIS X 0201 Latin)
| ([\xa1-\xdf]) (?# JIS X 0201 Katakana)
| [\x81-\x9f\xe0-\xef][\x40-\x7e\x80-\xfc] (?# JIS X 0208)
| ([\xf0-\xfc][\x40-\x7e\x80-\xfc]) (?# extended area)
)*\z/nx,
'utf-8' =>
/\A(?:\s
| [\x21-\x7e]
| [\xc0-\xdf][\x80-\xbf]
| [\xe0-\xef][\x80-\xbf][\x80-\xbf]
| [\xf0-\xf7][\x80-\xbf][\x80-\xbf][\x80-\xbf]
| [\xf8-\xfb][\x80-\xbf][\x80-\xbf][\x80-\xbf][\x80-\xbf]
| [\xfc-\xfd][\x80-\xbf][\x80-\xbf][\x80-\xbf][\x80-\xbf][\x80-\xbf]
)*\z/nx
}
Preference = ['us-ascii', "iso-2022-jp", 'euc-jp', 'utf-8', 'shift_jis']
def Mconv.guess_charset(str)
guess_charset_list(str).first
end
def Mconv.guess_charset_list(str)
case str
when /\A\xff\xfe/; return ['utf-16le']
when /\A\xfe\xff/; return ['utf-16be']
end
count = {}
CharsetTable.each {|name, regexp|
count[name] = 0
}
str.scan(/\S+/n) {|fragment|
CharsetTable.each {|name, regexp|
count[name] += 1 if regexp =~ fragment
}
}
max = count.values.max
count.reject! {|k, v| v != max }
return count.keys if count.size == 1
return ['us-ascii'] if count['us-ascii']
# xxx: needs more accurate guess
Preference.reject {|name| !count[name] }
end
def Mconv.minimize_charset(charset, string)
# shortcut
if /\A(?:euc-jp|utf-8|iso-8859-1)\z/i =~ charset
if /\A[\x00-\x7f]*\z/ =~ string
return 'us-ascii'
else
return charset
end
end
charset2 = 'us-ascii'
begin
# round trip?
s2 = Iconv.conv(charset, charset2, Iconv.conv(charset2, charset, string))
return charset2 if string == s2
rescue Iconv::Failure
end
charset
end
end
class String
def decode_charset(charset)
Mconv.conv(self, Mconv.internal_mime_charset, charset)
end
def encode_charset(charset)
Mconv.conv(self, charset, Mconv.internal_mime_charset)
end
def decode_charset_exc(charset)
Iconv.conv(Mconv.internal_mime_charset, charset, self)
end
def encode_charset_exc(charset)
Iconv.conv(charset, Mconv.internal_mime_charset, self)
end
def encode_charset_exactly(charset)
result = Iconv.conv(charset, Mconv.internal_mime_charset, self)
round_trip = Iconv.conv(Mconv.internal_mime_charset, charset, result)
if self != round_trip
raise ArgumentError, "not round trip"
end
result
end
def guess_charset
Mconv.guess_charset(self)
end
def guess_charset_list
Mconv.guess_charset_list(self)
end
def decode_charset_guess
decode_charset(guess_charset)
end
end
|