aboutsummaryrefslogtreecommitdiffstats
path: root/enc/make_encdb.rb
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-13 20:46:00 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-13 20:46:00 +0000
commit5b46f99ce1111eec5fc45ea0b9d9631b09aa02d9 (patch)
tree7703aa64fb18ec9f329857ee7c023031711298b2 /enc/make_encdb.rb
parent50bbc4e6ae9229907ad08730ab7330024361918a (diff)
downloadruby-5b46f99ce1111eec5fc45ea0b9d9631b09aa02d9.tar.gz
* enc/*.c: add replicas and aliases.
* enc/make_encdb.h: add duplicate and undefined check. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15028 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enc/make_encdb.rb')
-rwxr-xr-xenc/make_encdb.rb36
1 files changed, 28 insertions, 8 deletions
diff --git a/enc/make_encdb.rb b/enc/make_encdb.rb
index f260a2caa0..c140007f67 100755
--- a/enc/make_encdb.rb
+++ b/enc/make_encdb.rb
@@ -9,6 +9,12 @@
# ENC_ALIAS("CP932", "Windows-31J")
#
+def check_duplication(encs, name, fn, line)
+ if encs.include?(name)
+ raise ArgumentError, "%s:%d: encoding %s is already registered" % [fn, line, name]
+ end
+end
+
encodings = []
replicas = {}
aliases = {}
@@ -17,20 +23,34 @@ Dir.open(encdir) {|d| d.grep(/.+\.c\z/)}.sort.each do |fn|
open(File.join(encdir,fn)) do |f|
orig = nil
name = nil
+ encs = []
f.each_line do |line|
break if /^OnigEncodingDefine/o =~ line
end
f.each_line do |line|
break if /"(.*?)"/ =~ line
end
- encodings << $1 if $1
- f.each_line do |line|
- if /^ENC_REPLICATE\(\s*"([^"]+)"\s*,\s*"([^"]+)"/o =~ line
- encodings << $1
- replicas[$1] = $2
- elsif /^ENC_ALIAS\(\s*"([^"]+)"\s*,\s*"([^"]+)"/o =~ line
- encodings << $1
- aliases[$1] = $2
+ if $1
+ check_duplication(encs, $1, fn, $.)
+ encs << $1.upcase
+ encodings << $1
+ f.each_line do |line|
+ if /^ENC_REPLICATE\(\s*"([^"]+)"\s*,\s*"([^"]+)"/o =~ line
+ raise ArgumentError,
+ '%s:%d: ENC_REPLICATE: %s is not defined yet. (replica %s)' %
+ [fn, $., $2, $1] unless encs.include?($2.upcase)
+ check_duplication(encs, $1, fn, $.)
+ encs << $1.upcase
+ encodings << $1
+ replicas[$1] = $2
+ elsif /^ENC_ALIAS\(\s*"([^"]+)"\s*,\s*"([^"]+)"/o =~ line
+ raise ArgumentError,
+ '%s:%d: ENC_ALIAS: %s is not defined yet. (alias %s)' %
+ [fn, $., $2, $1] unless encs.include?($2.upcase)
+ check_duplication(encs, $1, fn, $.)
+ encodings << $1
+ aliases[$1] = $2
+ end
end
end
end