diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-11-08 05:32:45 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-11-08 05:32:45 +0000 |
commit | a0265b06629a0ae835adcf0f66fdba070653a785 () | |
tree | 708c86c5231fed8795bf0f7ed8a41adf88269b07 /tool/enc-unicode.rb | |
parent | 294070d86a0d3f2d9afdc539a3ad45ac0bb1493c (diff) |
* tool/enc-unicode.rb,
enc/unicode/name2ctype.h, enc/unicode/name2ctype.h.blt, enc/unicode/name2ctype.kwd, enc/unicode/name2ctype.src: Add Age property to regexp. [ruby-core:33019] ed by Ammar Ali, tested by Run Paint Run Run git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29717 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rwxr-xr-x | tool/enc-unicode.rb | 42 |
1 files changed, 40 insertions, 2 deletions
@@ -4,8 +4,8 @@ # property names and POSIX character classes # # To use this, get UnicodeData.txt, Scripts.txt, PropList.txt, -# PropertyAliases.txt, PropertyValueAliases.txt, and -# DerivedCoreProperties.txt from unicode.org. # (http://unicode.org/Public/UNIDATA/) And run following command. # ruby1.9 tool/enc-unicode.rb data_dir > enc/unicode/name2ctype.kwd # You can get source file for gperf. After this, simply make ruby. @@ -174,6 +174,32 @@ def parse_aliases(data) kv end $const_cache = {} # make_const(property, pairs, name): Prints a 'static const' structure for a # given property, group of paired codepoints, and a human-friendly name for @@ -202,6 +228,10 @@ def normalize_propname(name) name end def get_file(name) File.join(ARGV[0], name) end @@ -224,6 +254,7 @@ end props.concat parse_scripts(data) puts '#endif /* USE_UNICODE_PROPERTIES */' aliases = parse_aliases(data) define_posix_props(data) POSIX_NAMES.each do |name| make_const(name, data[name], "[[:#{name}:]]") @@ -235,6 +266,7 @@ __HEREDOC POSIX_NAMES.each{|name|puts" CR_#{name},"} puts "#ifdef USE_UNICODE_PROPERTIES" props.each{|name|puts" CR_#{name},"} puts(<<'__HEREDOC') #endif /* USE_UNICODE_PROPERTIES */ @@ -268,6 +300,12 @@ aliases.each_pair do |k, v| next unless v = name_to_index[v] puts "%-40s %3d" % [k + ',', v] end puts(<<'__HEREDOC') #endif /* USE_UNICODE_PROPERTIES */ %% |