2014-10-05 21:27:34 -04:00
|
|
|
# coding: utf-8
|
|
|
|
|
2014-10-05 22:21:23 -04:00
|
|
|
# Copyright Ayumu Nojima (野島 歩) and Martin J. Dürst (duerst@it.aoyama.ac.jp)
|
2014-10-05 21:27:34 -04:00
|
|
|
|
2014-10-05 22:21:23 -04:00
|
|
|
# Script to generate Ruby data structures used in implementing
|
|
|
|
# String#unicode_normalize,...
|
|
|
|
|
|
|
|
# Constants for input and ouput directory
|
2014-10-19 23:42:44 -04:00
|
|
|
InputDataDir = $input || 'enc/unicode/data'
|
|
|
|
OuputDataDir = $ouput || 'lib/unicode_normalize'
|
2014-10-05 21:58:01 -04:00
|
|
|
|
2014-10-05 22:21:23 -04:00
|
|
|
# convenience methods
|
2014-10-05 21:27:34 -04:00
|
|
|
class Integer
|
2014-10-05 22:21:23 -04:00
|
|
|
def to_UTF8() # convert to string, taking legibility into account
|
2014-10-05 21:27:34 -04:00
|
|
|
if self>0xFFFF
|
|
|
|
"\\u{#{to_s(16).upcase}}"
|
2014-10-05 23:08:13 -04:00
|
|
|
elsif self>0x7f
|
2014-10-05 21:27:34 -04:00
|
|
|
"\\u#{to_s(16).upcase.rjust(4, '0')}"
|
|
|
|
else
|
2014-10-05 23:08:13 -04:00
|
|
|
chr.sub(/[\\\"]/, '\\\&')
|
2014-10-05 21:27:34 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class Array
|
2014-10-05 23:08:25 -04:00
|
|
|
def line_slice(new_line) # joins items, 8 items per line
|
2014-10-19 23:42:42 -04:00
|
|
|
ary = []
|
|
|
|
0.step(size-1, 8) {|i|
|
|
|
|
ary << self[i, 8].join('')
|
|
|
|
}
|
|
|
|
ary.join(new_line).gsub(/ +$/, '')
|
2014-10-05 21:27:34 -04:00
|
|
|
end
|
2014-10-05 21:27:43 -04:00
|
|
|
|
2014-10-19 23:42:42 -04:00
|
|
|
def to_UTF8() collect {|c| c.to_UTF8}.join('') end
|
2014-10-05 21:27:43 -04:00
|
|
|
|
2014-10-05 21:27:34 -04:00
|
|
|
def to_regexp_chars # converts an array of Integers to character ranges
|
|
|
|
sort.inject([]) do |ranges, value|
|
|
|
|
if ranges.last and ranges.last[1]+1>=value
|
|
|
|
ranges.last[1] = value
|
|
|
|
ranges
|
|
|
|
else
|
|
|
|
ranges << [value, value]
|
|
|
|
end
|
|
|
|
end.collect do |first, last|
|
|
|
|
case last-first
|
|
|
|
when 0
|
|
|
|
first.to_UTF8
|
|
|
|
when 1
|
|
|
|
first.to_UTF8 + last.to_UTF8
|
|
|
|
else
|
|
|
|
first.to_UTF8 + '-' + last.to_UTF8
|
|
|
|
end
|
2014-10-05 23:08:09 -04:00
|
|
|
end.line_slice "\" \\\n \""
|
2014-10-05 21:27:34 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class Hash
|
|
|
|
def to_hash_string
|
|
|
|
collect do |key, value|
|
2014-10-05 23:08:25 -04:00
|
|
|
"\"#{key.to_UTF8}\"=>\"#{value.to_UTF8}\".freeze, "
|
2014-10-05 21:27:34 -04:00
|
|
|
end.line_slice "\n "
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# read the file 'CompositionExclusions.txt'
|
2014-10-19 23:42:42 -04:00
|
|
|
composition_exclusions = File.open("#{InputDataDir}/CompositionExclusions.txt") {|f|
|
|
|
|
f.grep(/^[A-Z0-9]{4,5}/) {|line| line.hex}
|
|
|
|
}
|
2014-10-05 21:27:34 -04:00
|
|
|
|
|
|
|
decomposition_table = {}
|
|
|
|
kompatible_table = {}
|
|
|
|
CombiningClass = {} # constant to allow use in Integer#to_UTF8
|
|
|
|
|
|
|
|
# read the file 'UnicodeData.txt'
|
2014-10-05 21:58:01 -04:00
|
|
|
IO.foreach("#{InputDataDir}/UnicodeData.txt") do |line|
|
2014-10-05 21:27:34 -04:00
|
|
|
codepoint, name, _2, char_class, _4, decomposition, *_rest = line.split(";")
|
2014-10-05 21:27:43 -04:00
|
|
|
|
2014-10-05 21:27:34 -04:00
|
|
|
case decomposition
|
|
|
|
when /^[0-9A-F]/
|
2014-10-19 23:42:42 -04:00
|
|
|
decomposition_table[codepoint.hex] = decomposition.split(' ').collect {|w| w.hex}
|
2014-10-05 21:27:34 -04:00
|
|
|
when /^</
|
2014-10-19 23:42:42 -04:00
|
|
|
kompatible_table[codepoint.hex] = decomposition.split(' ')[1..-1].collect {|w| w.hex}
|
2014-10-05 21:27:34 -04:00
|
|
|
end
|
|
|
|
CombiningClass[codepoint.hex] = char_class.to_i if char_class != "0"
|
2014-10-05 21:27:43 -04:00
|
|
|
|
2014-10-05 21:27:34 -04:00
|
|
|
if name=~/(First|Last)>$/ and (char_class!="0" or decomposition!="")
|
|
|
|
warn "Unexpected: Character range with data relevant to normalization!"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# calculate compositions from decompositions
|
|
|
|
composition_table = decomposition_table.reject do |character, decomposition|
|
|
|
|
composition_exclusions.member? character or # predefined composition exclusion
|
|
|
|
decomposition.length<=1 or # Singleton Decomposition
|
|
|
|
CombiningClass[character] or # character is not a Starter
|
|
|
|
CombiningClass[decomposition.first] # decomposition begins with a character that is not a Starter
|
|
|
|
end.invert
|
|
|
|
|
|
|
|
# recalculate composition_exclusions
|
|
|
|
composition_exclusions = decomposition_table.keys - composition_table.values
|
|
|
|
|
2014-10-19 23:42:42 -04:00
|
|
|
accent_array = CombiningClass.keys + composition_table.keys.collect {|key| key.last}
|
2014-10-05 21:27:34 -04:00
|
|
|
|
2014-10-19 23:42:42 -04:00
|
|
|
composition_starters = composition_table.keys.collect {|key| key.first}
|
2014-10-05 21:27:34 -04:00
|
|
|
|
2014-10-19 23:42:42 -04:00
|
|
|
hangul_no_trailing = []
|
|
|
|
0xAC00.step(0xD7A3, 28) {|c| hangul_no_trailing << c}
|
2014-10-05 21:27:34 -04:00
|
|
|
|
|
|
|
# expand decomposition table values
|
|
|
|
decomposition_table.each do |key, value|
|
|
|
|
position = 0
|
|
|
|
while position < value.length
|
|
|
|
if decomposition = decomposition_table[value[position]]
|
|
|
|
decomposition_table[key] = value = value.dup # avoid overwriting composition_table key
|
|
|
|
value[position, 1] = decomposition
|
|
|
|
else
|
|
|
|
position += 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# deal with relationship between canonical and kompatibility decompositions
|
|
|
|
decomposition_table.each do |key, value|
|
|
|
|
value = value.dup
|
|
|
|
expanded = false
|
|
|
|
position = 0
|
|
|
|
while position < value.length
|
|
|
|
if decomposition = kompatible_table[value[position]]
|
|
|
|
value[position, 1] = decomposition
|
|
|
|
expanded = true
|
|
|
|
else
|
|
|
|
position += 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
kompatible_table[key] = value if expanded
|
|
|
|
end
|
|
|
|
|
|
|
|
class_table_str = CombiningClass.collect do |key, value|
|
|
|
|
"\"#{key.to_UTF8}\"=>#{value}, "
|
|
|
|
end.line_slice "\n "
|
|
|
|
|
|
|
|
# generate normalization tables file
|
2014-10-18 22:09:13 -04:00
|
|
|
open("#{OuputDataDir}/tables.rb", "w").print <<MAPPING_TABLE_FILE_END
|
2014-10-05 23:08:13 -04:00
|
|
|
# coding: us-ascii
|
2014-10-05 21:27:34 -04:00
|
|
|
|
2014-10-05 22:21:23 -04:00
|
|
|
# automatically generated by tool/unicode_norm_gen.rb
|
2014-10-05 21:27:34 -04:00
|
|
|
|
2014-10-18 20:56:58 -04:00
|
|
|
module UnicodeNormalize
|
2014-10-05 23:08:09 -04:00
|
|
|
accents = "" \\
|
|
|
|
"[#{accent_array.to_regexp_chars}]" \\
|
2014-10-05 23:08:25 -04:00
|
|
|
"".freeze
|
2014-10-05 23:08:09 -04:00
|
|
|
ACCENTS = accents
|
|
|
|
REGEXP_D_STRING = "\#{'' # composition starters and composition exclusions
|
|
|
|
}" \\
|
|
|
|
"[#{(composition_table.values+composition_exclusions).to_regexp_chars}]\#{accents}*" \\
|
|
|
|
"|\#{'' # characters that can be the result of a composition, except composition starters
|
|
|
|
}" \\
|
|
|
|
"[#{(composition_starters-composition_table.values).to_regexp_chars}]?\#{accents}+" \\
|
|
|
|
"|\#{'' # precomposed Hangul syllables
|
|
|
|
}" \\
|
|
|
|
"[\\u{AC00}-\\u{D7A4}]" \\
|
2014-10-05 23:08:25 -04:00
|
|
|
"".freeze
|
2014-10-05 23:08:09 -04:00
|
|
|
REGEXP_C_STRING = "\#{'' # composition exclusions
|
|
|
|
}" \\
|
|
|
|
"[#{composition_exclusions.to_regexp_chars}]\#{accents}*" \\
|
|
|
|
"|\#{'' # composition starters and characters that can be the result of a composition
|
|
|
|
}" \\
|
|
|
|
"[#{(composition_starters+composition_table.values).to_regexp_chars}]?\#{accents}+" \\
|
|
|
|
"|\#{'' # Hangul syllables with separate trailer
|
|
|
|
}" \\
|
|
|
|
"[#{hangul_no_trailing.to_regexp_chars}][\\u11A8-\\u11C2]" \\
|
|
|
|
"|\#{'' # decomposed Hangul syllables
|
|
|
|
}" \\
|
|
|
|
"[\\u1100-\\u1112][\\u1161-\\u1175][\\u11A8-\\u11C2]?" \\
|
2014-10-05 23:08:25 -04:00
|
|
|
"".freeze
|
2014-10-05 23:08:09 -04:00
|
|
|
REGEXP_K_STRING = "" \\
|
|
|
|
"[#{kompatible_table.keys.to_regexp_chars}]" \\
|
2014-10-05 23:08:25 -04:00
|
|
|
"".freeze
|
2014-10-05 23:08:09 -04:00
|
|
|
|
|
|
|
class_table = {
|
2014-10-05 21:27:34 -04:00
|
|
|
#{class_table_str}
|
|
|
|
}
|
2014-10-05 23:08:09 -04:00
|
|
|
class_table.default = 0
|
2014-10-05 23:08:25 -04:00
|
|
|
CLASS_TABLE = class_table.freeze
|
2014-10-05 21:27:34 -04:00
|
|
|
|
|
|
|
DECOMPOSITION_TABLE = {
|
|
|
|
#{decomposition_table.to_hash_string}
|
2014-10-05 23:08:25 -04:00
|
|
|
}.freeze
|
2014-10-05 21:27:34 -04:00
|
|
|
|
|
|
|
KOMPATIBLE_TABLE = {
|
|
|
|
#{kompatible_table.to_hash_string}
|
2014-10-05 23:08:25 -04:00
|
|
|
}.freeze
|
2014-10-05 21:27:34 -04:00
|
|
|
|
|
|
|
COMPOSITION_TABLE = {
|
|
|
|
#{composition_table.to_hash_string}
|
2014-10-05 23:08:25 -04:00
|
|
|
}.freeze
|
2014-10-05 21:27:34 -04:00
|
|
|
end
|
|
|
|
MAPPING_TABLE_FILE_END
|