-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgen_case_lookups.rb
executable file
Β·373 lines (321 loc) Β· 12.6 KB
/
gen_case_lookups.rb
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
#!/usr/bin/env ruby
# frozen_string_literal: true
# - Except where otherwise more broadly permitted or licensed:
# - you may not make copies of or modifications to Unicode Products for
# public distribution, or incorporate Unicode Products in whole or in part
# into any product or publication, or otherwise publicly distribute them,
# without the express written permission of Unicode, and
# - you may not copy or extract fonts or font data from any Unicode Products,
# including but not limited to Unicode Code Charts.
# - All Unicode Data Files and Unicode Software are subject to the terms and
# conditions of the free and open-source Unicode License v3, unless otherwise
# indicated by specific restriction, permission, or license identified at the
# point of release or in such software, data file, or other documentation.
#
# The Unicode License v3, which can be found at <https://www.unicode.org/license.txt>
# is included in this repository. The license requires one of:
#
# (a) this copyright and permission notice appear with all copies of the Data
# Files or Software
# (b) this copyright and permission notice appear in associated Documentation
#
# `focaccia` distributes this license as `LICENSE-UNICODE` in crate bundles
# and includes `AND Unicode-3.0` in the `Cargo.toml` SPDX license expression.
# See: https://spdx.org/licenses/Unicode-3.0.html.
#
# Updates to Unicode Data Files performed by this `rake` task also update the
# embedded license.
#
# The generated sources created by this script are subject to both the MIT
# License contained in this repository, `LICENSE`, and the Unicode License v3,
# `LICENSE-UNICODE`.
require 'fileutils'
mappings = File.readlines('CaseFolding.txt')
casefolding_version = mappings[0..2].map { |line| "// #{line.delete_prefix('# ')}" }.join.chomp
char_mappings = Hash.new { |hash, key| hash[key] = {} }
mappings.each do |line|
next if line.empty?
next if line[0] == '#'
encoded, = line.split('#', 2)
code, status, map_to = encoded.split(';').map(&:strip)
next unless %w[C F T].include?(status)
code = code.to_i(16)
map_to = map_to.split.map { |char| char.to_i(16) }
mode = :full
mode = :turkic if status == 'T'
char_mappings[code][mode] = map_to
end
range_start = char_mappings.keys.min
last = char_mappings.keys.min
ranges = []
char_mappings.keys.sort.drop(1).each do |key|
if key == last + 1 &&
char_mappings[key][:full].length == char_mappings[last][:full].length &&
char_mappings[key][:full].first == char_mappings[last][:full].first + 1
last = key
next
end
ranges << { start: range_start, end: last, span: last - range_start + 1 }
range_start = key
last = key
end
ranges << { start: range_start, end: last, span: last - range_start + 1 }
ranges.each do |range|
start = range[:start]
last = range[:end]
start_offset = char_mappings[start][:full][0] - start
(start..last).each do |char|
char_offset = char_mappings[char][:full][0] - char
raise "unequal offset in char range: #{range.inspect}" unless char_offset == start_offset
end
range[:offset] = start_offset
puts range.inspect
end
rs = File.open('src/folding/mapping/lookup.rs', 'w')
rs.puts(<<~AUTOGEN)
// @generated
//
// This source is autogenerated. Do not modify it directly.
// To make modifications to this code, see `scripts/gen_case_lookups.rb`.
//
// Last generated on #{Time.now.utc}.
//
// Unicode version:
#{casefolding_version}
use super::{Mapping, Mode};
#[must_use]
#[allow(clippy::match_same_arms)]
#[allow(clippy::too_many_lines)]
pub const fn lookup(c: char, mode: Mode) -> Mapping {
let codepoint = c as u32;
let char_bytes = codepoint.to_be_bytes();
let mid_byte = char_bytes[2];
let high_bytes = u16::from_be_bytes([char_bytes[0], char_bytes[1]]);
match (high_bytes, mid_byte) {
(0x0000, 0x00) => match c {
// Turkic mapping in ASCII range
// 0049; T; 0131; # LATIN CAPITAL LETTER I
'\\u{0049}' if matches!(mode, Mode::Turkic) => Mapping::Single(0x0131),
c if c.is_ascii() => Mapping::Single(c.to_ascii_lowercase() as u32),
AUTOGEN
last_high_bytes = 0x00
last_mid_byte = 0x00
ranges.each do |range|
next if range[:end] < 128
start = range[:start]
last = range[:end]
offset = range[:offset]
mapping = char_mappings[start]
mid_byte = ((start >> 8) & 0xFF)
high_bytes = ((start >> 16) & 0xFFFF)
if high_bytes != last_high_bytes || mid_byte != last_mid_byte
rs.puts ' _ => Mapping::Single(codepoint),'
rs.puts ' },'
rs.puts " (0x#{high_bytes.to_s(16).upcase.rjust(4, '0')}, 0x#{mid_byte.to_s(16).upcase.rjust(2, '0')}) => match c {"
last_high_bytes = high_bytes
last_mid_byte = mid_byte
end
if mapping.key?(:turkic) && mapping.key?(:full)
raise unless (last - start).zero?
char = start.to_s(16).upcase.rjust(4, '0')
full = mapping[:full].map { |ch| ch.to_s(16).upcase.rjust(4, '0') }
case full.length
when 1
rs.puts " '\\u{#{char}}' if matches!(mode, Mode::Full) => Mapping::Single(0x#{full[0]}),"
when 2
rs.puts " '\\u{#{char}}' if matches!(mode, Mode::Full) => Mapping::Double(0x#{full[0]}, 0x#{full[1]}),"
when 3
rs.puts " '\\u{#{char}}' if matches!(mode, Mode::Full) => Mapping::Triple(0x#{full[0]}, 0x#{full[1]}}, 0x#{full[2]}),"
else
raise "Unsupported mapping length: #{map.inspect} for code #{code}"
end
turkic = mapping[:turkic].map { |ch| ch.to_s(16).upcase.rjust(4, '0') }
case turkic.length
when 1
rs.puts " '\\u{#{char}}' if matches!(mode, Mode::Turkic) => Mapping::Single(0x#{turkic[0]}),"
when 2
rs.puts " '\\u{#{char}}' if matches!(mode, Mode::Turkic) => Mapping::Double(0x#{turkic[0]}, 0x#{turkic[1]}),"
when 3
rs.puts " '\\u{#{char}}' if matches!(mode, Mode::Turkic) => Mapping::Triple(0x#{turkic[0]}, 0x#{turkic[1]}, 0x#{turkic[2]}),"
else
raise "Unsupported mapping length: #{map.inspect} for code #{code}"
end
elsif mapping.key?(:full) && !offset.nil?
full = mapping[:full].map { |ch| ch.to_s(16).upcase.rjust(4, '0') }
base = start.to_s(16).upcase.rjust(4, '0')
op = '+'
op_offset = offset
if offset.negative?
op = '-'
op_offset = -offset
end
op_offset = op_offset.to_s(16).rjust(4, '0')
if (last - start).zero? && full.length == 1
rs.puts " '\\u{#{base}}' => Mapping::Single(0x#{full[0]}),"
elsif full.length == 1
finish = last.to_s(16).upcase.rjust(4, '0')
rs.puts " '\\u{#{base}}'..='\\u{#{finish}}' => Mapping::Single(codepoint #{op} 0x#{op_offset}),"
elsif (last - start).zero? && full.length == 2
rs.puts " '\\u{#{base}}' => Mapping::Double(0x#{full[0]}, 0x#{full[1]}),"
elsif full.length == 2
finish = last.to_s(16).upcase.rjust(4, '0')
rs.puts " '\\u{#{base}}'..='\\u{#{finish}}' => Mapping::Double(codepoint #{op} 0x#{op_offset}, 0x#{full[1]}),"
elsif (last - start).zero? && full.length == 3
rs.puts " '\\u{#{base}}' => Mapping::Triple(0x#{full[0]}, 0x#{full[1]}, 0x#{full[2]}),"
elsif full.length == 3
finish = last.to_s(16).upcase.rjust(4, '0')
rs.puts " '\\u{#{base}}'..='\\u{#{finish}}' => Mapping::Triple(codepoint #{op} 0x#{op_offset}, 0x#{full[1]}, 0x#{full[2]}),"
end
elsif mapping.key?(:full)
char = start.to_s(16).upcase.rjust(4, '0')
map = mapping[:full].map { |ch| ch.to_s(16).upcase.rjust(4, '0') }
case map.length
when 1
rs.puts " '\\u{#{char}}' => Mapping::Single(0x#{map[0]}),"
when 2
rs.puts " '\\u{#{char}}' => Mapping::Double(0x#{map[0]}, 0x#{map[1]}),"
when 3
rs.puts " '\\u{#{char}}' => Mapping::Triple(0x#{map[0]}, 0x#{map[1]}, 0x#{map[2]}),"
else
raise "Unsupported mapping length: #{map.inspect} for code #{code}"
end
else
raise 'unsupported full/turkic mapping combination'
end
end
rs.puts ' _ => Mapping::Single(codepoint),'
rs.puts ' },'
rs.puts ' _ => Mapping::Single(codepoint),'
rs.puts ' }'
rs.puts '}'
rs.close
FileUtils.mkdir_p('src/exhaustive')
rs = File.open('src/exhaustive/full.rs', 'w')
rs.puts(<<~AUTOGEN)
// @generated
//
// This source is autogenerated. Do not modify it directly.
// To make modifications to this code, see `scripts/gen_case_lookups.rb`.
//
// Last generated on #{Time.now.utc}.
//
// Unicode version:
#{casefolding_version}
#[must_use]
#[allow(clippy::match_same_arms)]
#[allow(clippy::too_many_lines)]
fn lookup_naive(c: char, buf: &mut [u8; 4]) -> &str {
match c {
AUTOGEN
char_mappings.keys.sort.each do |from|
mapping = char_mappings[from]
char = from.to_s(16).upcase.rjust(4, '0')
full = mapping[:full].map { |ch| ch.to_s(16).upcase.rjust(4, '0') }
case full.length
when 1
rs.puts " '\\u{#{char}}' => \"\\u{#{full[0]}}\","
when 2
rs.puts " '\\u{#{char}}' => \"\\u{#{full[0]}}\\u{#{full[1]}}\","
when 3
rs.puts " '\\u{#{char}}' => \"\\u{#{full[0]}}\\u{#{full[1]}}\\u{#{full[2]}}\","
else
raise "Unsupported mapping length: #{map.inspect} for code #{code}"
end
end
rs.puts ' _ => c.encode_utf8(buf),'
rs.puts ' }'
rs.puts '}'
rs.puts
rs.puts(<<~TEST)
#[cfg(test)]
mod tests {
use core::cmp::Ordering;
use super::lookup_naive;
use crate::{unicode_full_case_eq, unicode_full_casecmp};
#[test]
fn full_case_folding() {
let mut enc = [0; 4];
let mut buf = [0; 4];
for ch in char::MIN..=char::MAX {
let left = ch.encode_utf8(&mut enc);
let right = lookup_naive(ch, &mut buf);
#[rustfmt::skip]
assert!(unicode_full_case_eq(left, right), "For: {ch}, expected: {left}, got: {right}.");
#[rustfmt::skip]
assert!(unicode_full_case_eq(right, left), "For: {ch}, expected: {right}, got: {left}.");
#[rustfmt::skip]
assert_eq!(unicode_full_casecmp(left, right), Ordering::Equal, "For: {ch}, expected: {left}, got: {right}.");
#[rustfmt::skip]
assert_eq!(unicode_full_casecmp(right, left), Ordering::Equal, "For: {ch}, expected: {right}, got: {left}.");
}
}
}
TEST
rs.close
rs = File.open('src/exhaustive/turkic.rs', 'w')
rs.puts(<<~AUTOGEN)
// @generated
//
// This source is autogenerated. Do not modify it directly.
// To make modifications to this code, see `scripts/gen_case_lookups.rb`.
//
// Last generated on #{Time.now.utc}.
//
// Unicode version:
#{casefolding_version}
#[must_use]
#[allow(clippy::match_same_arms)]
#[allow(clippy::too_many_lines)]
fn lookup_naive(c: char, buf: &mut [u8; 4]) -> &str {
match c {
AUTOGEN
char_mappings.keys.sort.each do |from|
mapping = char_mappings[from]
char = from.to_s(16).upcase.rjust(4, '0')
full =
if mapping[:turkic]
mapping[:turkic].map { |ch| ch.to_s(16).upcase.rjust(4, '0') }
else
mapping[:full].map { |ch| ch.to_s(16).upcase.rjust(4, '0') }
end
case full.length
when 1
rs.puts " '\\u{#{char}}' => \"\\u{#{full[0]}}\","
when 2
rs.puts " '\\u{#{char}}' => \"\\u{#{full[0]}}\\u{#{full[1]}}\","
when 3
rs.puts " '\\u{#{char}}' => \"\\u{#{full[0]}}\\u{#{full[1]}}\\u{#{full[2]}}\","
else
raise "Unsupported mapping length: #{map.inspect} for code #{code}"
end
end
rs.puts ' _ => c.encode_utf8(buf),'
rs.puts ' }'
rs.puts '}'
rs.puts
rs.puts(<<~TEST)
#[cfg(test)]
mod tests {
use core::cmp::Ordering;
use super::lookup_naive;
use crate::{unicode_full_turkic_case_eq, unicode_full_turkic_casecmp};
#[test]
fn turkic_case_folding() {
let mut enc = [0; 4];
let mut buf = [0; 4];
for ch in char::MIN..=char::MAX {
let left = ch.encode_utf8(&mut enc);
let right = lookup_naive(ch, &mut buf);
#[rustfmt::skip]
assert!(unicode_full_turkic_case_eq(left, right), "For: {ch}, expected: {left}, got: {right}.");
#[rustfmt::skip]
assert!(unicode_full_turkic_case_eq(right, left), "For: {ch}, expected: {right}, got: {left}.");
#[rustfmt::skip]
assert_eq!(unicode_full_turkic_casecmp(left, right), Ordering::Equal, "For: {ch}, expected: {left}, got: {right}.");
#[rustfmt::skip]
assert_eq!(unicode_full_turkic_casecmp(right, left), Ordering::Equal, "For: {ch}, expected: {right}, got: {left}.");
}
}
}
TEST
rs.close