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
|
# -*- coding: ASCII-8BIT -*-
# mconv.rb - character code conversion library using iconv
#
# Copyright (C) 2003 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.internal_mime_charset
if Object.const_defined? :Encoding
enc = Encoding.default_external.name
else
enc = $KCODE
end
case enc
when /\Ae/i; 'euc-jp'
when /\As/i; 'shift_jis'
when /\Au/i; 'utf-8'
when /\An/i; 'iso-8859-1'
when /ascii-8bit/i; 'iso-8859-1'
else
raise "unknown default external encoding : #{enc}"
end
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
if rest.respond_to? :force_encoding
rest = rest.dup.force_encoding("ascii-8bit")
end
begin
s = ic.iconv(rest)
result << s
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)
if str.respond_to? :force_encoding
str = str.dup.force_encoding("ascii-8bit")
end
case str
when /\A\xff\xfe/n; return ['utf-16le']
when /\A\xfe\xff/n; 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
ValidPrefix = {
'us-ascii' => /\A[\x00-\x7f]*/,
'iso-8859-1' => /\A[\x00-\xff]*/n,
'euc-jp' =>
/\A(?:
[\x00-\x7f] (?# 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)
)*/nx,
'shift_jis' =>
/\A(?:
[\x00-\x7f] (?# 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)
)*/nx,
'utf-8' =>
/\A(?:
[\x00-\x7f]
| [\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]
)*/nx
}
def Mconv.validize(str, charset)
if str.respond_to? :force_encoding
enc = str.encoding
str = str.dup.force_encoding("ascii-8bit")
end
pat = ValidPrefix[charset]
ret = ''
until str.empty?
pat =~ str
ret << str[0, $&.length]
str = str[$&.length..-1]
unless str.empty?
ret << '?'
str = str[1..-1]
end
end
if str.respond_to? :force_encoding
ret.force_encoding enc
end
ret
end
end
class String
def decode_charset(charset)
Mconv.validize(Mconv.conv(self, Mconv.internal_mime_charset, charset), Mconv.internal_mime_charset)
end
def encode_charset(charset)
Mconv.conv(self, charset, Mconv.internal_mime_charset)
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
|