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
|
#[path = "src/tables.rs"]
mod 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, LAST_INDEX};
use tables::{GeneralCategory, GENERAL_CATEGORY};
const SHIFT: u32 = block::LAST_INDEX.count_ones();
fn main() {
let output_path = PathBuf::from(env::var("OUT_DIR").unwrap()).join("category.rs");
write_table(&output_path, &compile_table());
}
struct CompiledTable {
blocks: Vec<(u32, Block)>,
address_to_block_index: Vec<(u32, usize)>,
last_code_point: u32,
}
fn compile_table() -> CompiledTable {
let mut blocks = Vec::new();
let mut address_to_block_index = Vec::new();
let &(start, _, _) = GENERAL_CATEGORY
.iter()
.min_by_key(|(start, _, _)| start)
.unwrap();
let &(_, end, _) = GENERAL_CATEGORY
.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 + block::SIZE as u32;
let mut block = Block::new();
for codepoint in start..=end {
let category = lookup(codepoint);
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(block::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() & block::LAST_INDEX] = category;
}
CompiledTable {
blocks,
address_to_block_index,
last_code_point,
}
}
fn write_table(path: &Path, compiled_table: &CompiledTable) {
let mut output =
File::create(&path).expect(&format!("unable to open {}", path.to_string_lossy()));
writeln!(output, "use crate::GeneralCategory;").unwrap();
writeln!(output, "use crate::GeneralCategory::*;").unwrap();
writeln!(
output,
"\nconst LAST_CODEPOINT: u32 = 0x{:X};",
compiled_table.last_code_point
)
.unwrap();
writeln!(output, "\nconst BLOCK_SIZE: usize = {};", block::SIZE).unwrap();
// Write out the blocks in address order
writeln!(
output,
"\nconst CATEGORY_BLOCKS: [GeneralCategory; {}] = [",
compiled_table.blocks.len() * block::SIZE
)
.unwrap();
for (address, block) in &compiled_table.blocks {
writeln!(output, "// BLOCK: {:04X}\n", address).unwrap();
for (i, category) in block.iter().enumerate() {
if i != 0 && (i & 0xF) == 0 {
writeln!(output).unwrap();
}
write!(output, "{:?},", category).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 * block::SIZE
)
.unwrap();
}
// Write out the array that maps categories to offsets
writeln!(
output,
"\nconst CATEGORY_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 the GENERAL_CATEGORY table
fn lookup(codepoint: u32) -> GeneralCategory {
GENERAL_CATEGORY
.binary_search_by(|&(start, end, _)| {
if codepoint < start {
Ordering::Greater
} else if codepoint > end {
Ordering::Less
} else {
Ordering::Equal
}
})
.ok()
.map(|idx| GENERAL_CATEGORY[idx].2)
.unwrap_or(GeneralCategory::PrivateUse)
}
mod block {
pub const SIZE: usize = 256;
pub const LAST_INDEX: usize = SIZE - 1;
use super::GeneralCategory;
use std::ops::{Index, IndexMut};
/// 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 {
data: Vec<GeneralCategory>,
}
impl Block {
pub fn new() -> Self {
Block {
data: vec![GeneralCategory::Unassigned; SIZE],
}
}
pub fn reset(&mut self) {
self.data
.iter_mut()
.for_each(|val| *val = GeneralCategory::Unassigned);
}
pub fn iter(&self) -> impl Iterator<Item = &GeneralCategory> {
self.data.iter()
}
}
impl Index<usize> for Block {
type Output = GeneralCategory;
fn index(&self, index: usize) -> &Self::Output {
&self.data[index]
}
}
impl IndexMut<usize> for Block {
fn index_mut(&mut self, index: usize) -> &mut Self::Output {
self.data.index_mut(index)
}
}
}
|