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
|
#[path = "src/joining_group_tables.rs"]
mod joining_group_tables;
#[path = "src/joining_type_tables.rs"]
mod joining_type_tables;
use std::cmp::Ordering;
use std::convert::TryFrom;
use std::env;
use std::fs::File;
use std::io::Write;
use std::path::{Path, PathBuf};
use block::{Block, BlockSize};
use joining_group_tables::{JoiningGroup, JOINING_GROUP};
use joining_type_tables::{JoiningType, JOINING_TYPE};
fn main() {
let output_path = PathBuf::from(env::var("OUT_DIR").unwrap()).join("joining_type.rs");
let joining_type_table = CompiledTable::compile(JOINING_TYPE);
write_joining_type_table(&output_path, &joining_type_table);
let output_path = PathBuf::from(env::var("OUT_DIR").unwrap()).join("joining_group.rs");
let joining_group_table = CompiledTable::compile(JOINING_GROUP);
write_joining_group_table(&output_path, &joining_group_table);
}
struct CompiledTable<T>
where
T: Default + BlockSize + Copy,
{
blocks: Vec<(u32, Block<T>)>,
address_to_block_index: Vec<(u32, usize)>,
last_code_point: u32,
}
impl<T> CompiledTable<T>
where
T: Default + BlockSize + Copy + Eq,
{
fn compile(table: &[(u32, u32, T)]) -> Self {
let last_index = T::last_index();
let shift = last_index.count_ones();
let mut blocks = Vec::new();
let mut address_to_block_index = Vec::new();
let &(start, _, _) = table.iter().min_by_key(|(start, _, _)| start).unwrap();
let &(_, end, _) = table.iter().max_by_key(|(_, end, _)| end).unwrap();
let last_code_point = end;
// Extend end to the end of the last block to ensure the last block is written out
let end_block_address = end & (!last_index as u32);
let end = end_block_address + T::SIZE as u32;
let mut block = Block::new();
for codepoint in start..=end {
let joining_type = lookup(codepoint, table);
let block_address = (codepoint >> shift).saturating_sub(1) << shift;
// This is the first codepoint in this block, write out the previous block
if codepoint != 0 && (codepoint & u32::try_from(last_index).unwrap()) == 0 {
if let Some(index) = blocks.iter().position(|(_, candidate)| candidate == &block) {
address_to_block_index.push((block_address, index));
} else {
// Add the block if it's new
address_to_block_index.push((block_address, blocks.len()));
blocks.push((block_address, block.clone()));
}
block.reset();
}
block[usize::try_from(codepoint).unwrap() & last_index] = joining_type;
}
CompiledTable {
blocks,
address_to_block_index,
last_code_point,
}
}
}
fn write_joining_group_table(path: &Path, compiled_table: &CompiledTable<JoiningGroup>) {
let mut output =
File::create(&path).expect(&format!("unable to open {}", path.to_string_lossy()));
writeln!(output, "use crate::JoiningGroup;").unwrap();
writeln!(output, "use crate::JoiningGroup::*;").unwrap();
writeln!(
output,
"\nconst LAST_CODEPOINT: u32 = 0x{:X};",
compiled_table.last_code_point
)
.unwrap();
writeln!(
output,
"\nconst BLOCK_SIZE: usize = {};",
JoiningGroup::SIZE
)
.unwrap();
// Write out the blocks in address order
writeln!(
output,
"\nconst JOINING_GROUP_BLOCKS: [JoiningGroup; {}] = [",
compiled_table.blocks.len() * JoiningGroup::SIZE
)
.unwrap();
for (address, block) in &compiled_table.blocks {
writeln!(output, "// BLOCK: {:04X}\n", address).unwrap();
for (i, joining_group) in block.iter().enumerate() {
if i != 0 && (i & 0xF) == 0 {
writeln!(output).unwrap();
}
write!(output, "{:?},", joining_group).unwrap();
}
write!(output, "\n\n").unwrap();
}
writeln!(output, "];").unwrap();
write!(output, "\n\n").unwrap();
// Write out constants for the block offsets
for (index, (address, _)) in compiled_table.blocks.iter().enumerate() {
writeln!(
output,
"const BLOCK_OFFSET_{:04X}: u16 = 0x{:04X};",
address,
index * JoiningGroup::SIZE
)
.unwrap();
}
// Write out the array that maps joining groups to offsets
writeln!(
output,
"\nconst JOINING_GROUP_BLOCK_OFFSETS: [u16; {}] = [",
compiled_table.address_to_block_index.len()
)
.unwrap();
for &(_, index) in &compiled_table.address_to_block_index {
let (block_address, _) = compiled_table.blocks[index];
writeln!(output, " BLOCK_OFFSET_{:04X},", block_address).unwrap();
}
writeln!(output, "];").unwrap();
}
fn write_joining_type_table(path: &Path, compiled_table: &CompiledTable<JoiningType>) {
let mut output =
File::create(&path).expect(&format!("unable to open {}", path.to_string_lossy()));
writeln!(output, "use crate::JoiningType;").unwrap();
writeln!(output, "use crate::JoiningType::*;").unwrap();
writeln!(
output,
"\nconst LAST_CODEPOINT: u32 = 0x{:X};",
compiled_table.last_code_point
)
.unwrap();
writeln!(output, "\nconst BLOCK_SIZE: usize = {};", JoiningType::SIZE).unwrap();
// Write out the blocks in address order
writeln!(
output,
"\nconst JOINING_TYPE_BLOCKS: [JoiningType; {}] = [",
compiled_table.blocks.len() * JoiningType::SIZE
)
.unwrap();
for (address, block) in &compiled_table.blocks {
writeln!(output, "// BLOCK: {:04X}\n", address).unwrap();
for (i, joining_type) in block.iter().enumerate() {
if i != 0 && (i & 0xF) == 0 {
writeln!(output).unwrap();
}
write!(output, "{:?},", joining_type).unwrap();
}
write!(output, "\n\n").unwrap();
}
writeln!(output, "];").unwrap();
write!(output, "\n\n").unwrap();
// Write out constants for the block offsets
for (index, (address, _)) in compiled_table.blocks.iter().enumerate() {
writeln!(
output,
"const BLOCK_OFFSET_{:04X}: u16 = 0x{:04X};",
address,
index * JoiningType::SIZE
)
.unwrap();
}
// Write out the array that maps joining types to offsets
writeln!(
output,
"\nconst JOINING_TYPE_BLOCK_OFFSETS: [u16; {}] = [",
compiled_table.address_to_block_index.len()
)
.unwrap();
for &(_, index) in &compiled_table.address_to_block_index {
let (block_address, _) = compiled_table.blocks[index];
writeln!(output, " BLOCK_OFFSET_{:04X},", block_address).unwrap();
}
writeln!(output, "];").unwrap();
}
/// Lookup this code point in `table`
fn lookup<T>(codepoint: u32, table: &[(u32, u32, T)]) -> T
where
T: Default + BlockSize + Eq + Copy,
{
table
.binary_search_by(|&(start, end, _)| {
if codepoint < start {
Ordering::Greater
} else if codepoint > end {
Ordering::Less
} else {
Ordering::Equal
}
})
.ok()
.map(|idx| table[idx].2)
.unwrap_or_default()
}
impl Default for JoiningType {
fn default() -> Self {
JoiningType::NonJoining
}
}
impl BlockSize for JoiningType {
const SIZE: usize = 256;
}
impl Default for JoiningGroup {
fn default() -> Self {
JoiningGroup::NoJoiningGroup
}
}
impl BlockSize for JoiningGroup {
const SIZE: usize = 512;
}
mod block {
use std::ops::{Index, IndexMut};
pub trait BlockSize {
const SIZE: usize;
fn last_index() -> usize {
Self::SIZE - 1
}
}
/// A fixed size block
///
/// Ideally this would be an array but that doesn't work until const generics are stabilised
#[derive(Debug, PartialEq, Eq, Hash, Clone)]
pub struct Block<T>
where
T: Default + BlockSize + Copy,
{
data: Vec<T>,
}
impl<T> Block<T>
where
T: Default + BlockSize + Copy,
{
pub fn new() -> Self {
Block {
data: vec![T::default(); T::SIZE],
}
}
pub fn reset(&mut self) {
self.data.iter_mut().for_each(|val| *val = T::default());
}
pub fn iter(&self) -> impl Iterator<Item = &T> {
self.data.iter()
}
}
impl<T> Index<usize> for Block<T>
where
T: Default + BlockSize + Copy,
{
type Output = T;
fn index(&self, index: usize) -> &Self::Output {
&self.data[index]
}
}
impl<T> IndexMut<usize> for Block<T>
where
T: Default + BlockSize + Copy,
{
fn index_mut(&mut self, index: usize) -> &mut Self::Output {
self.data.index_mut(index)
}
}
}
|