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 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580
|
/*
Copyright: Copyright (C) 2022 SIL International.
Authors: srl295, mcdurdin
This file provides constants for the KMX Plus (LDML support) binary format,
to be shared between TypeScript and C++ via the generator (below)
*/
// NOTICE!
//
// If you update this file, you *must* be sure to re-run
//
// core/tools/ldml-const-builder/build.sh clean build run
//
// To update keyman_core_ldml.h, and commit the result.
//
// It is not updated automatically.
/**
* Defines the section identifiers and ensures that we include each and every
* one of them in the `sections` block and gives us a type which we can iterate
* through.
*/
export type SectionIdent =
// Keep this sorted, but with `sect` as the first entry.
'sect' |
'bksp' |
'disp' |
'elem' |
'keys' |
'layr' |
'list' |
'loca' |
'meta' |
'strs' |
'tran' |
'uset' |
'vars';
type SectionMap = {
[id in SectionIdent]: SectionIdent;
}
// TODO-LDML: namespace com.keyman.core.ldml {
/**
* Constants for the KMXPlus data format
* These are shared between the data access layer and the compiler.
* Note that the section IDs (section_keys etc.) are 32 bit hex
* values that are designed to appear as text when written in little endian
* format, so 0x7379656b = 'keys'
*/
class Constants {
/**
* The version of the LDML processor
*/
readonly version = '1.0';
/**
* The current CLDR version
*/
readonly cldr_version_latest = '46';
/**
* The version for testdata files
*/
readonly cldr_test_version_latest = 'techpreview';
/**
* import base
*/
readonly cldr_import_base = 'cldr';
/**
* implied keys file
*/
readonly cldr_implied_keys_import = `${this.cldr_version_latest}/keys-Latn-implied.xml`;
/**
* implied scancodes file
*/
readonly cldr_implied_forms_import = `${this.cldr_version_latest}/scanCodes-implied.xml`;
/**
* Length of a raw section header, in bytes
*/
readonly length_header = 8;
/* ------------------------------------------------------------------
* sect section
------------------------------------------------------------------ */
/**
* Minimum length of the 'sect' section, not including entries
*/
readonly length_sect = 16;
/**
* Length of each item in the 'sect' section variable part
*/
readonly length_sect_item = 8;
/* ------------------------------------------------------------------
* bksp section
------------------------------------------------------------------ */
/**
* Minimum length of the 'bksp' section, not including entries
*/
readonly length_bksp = 12;
/**
* Length of each item in the 'bksp' section variable part
*/
readonly length_bksp_item = 16;
/**
* bitwise or value for error="fail" in transform
*/
readonly bksp_flags_error = 0x0001;
/* ------------------------------------------------------------------
* disp section
------------------------------------------------------------------ */
/**
* Minimum length of the 'disp' section, not including entries
*/
readonly length_disp = 16;
/**
* Length of each entry in the 'disp' variable part
*/
readonly length_disp_item = 12;
/* ------------------------------------------------------------------
* elem section
------------------------------------------------------------------ */
/**
* Minimum length of the 'elem' section, not including entries
*/
readonly length_elem = 12;
/**
* Length of each elem string in the 'elem' section variable part
*/
readonly length_elem_item = 8;
/**
* Length of each element in an elem string
*/
readonly length_elem_item_element = 8;
/**
* bitwise or value for type in elem[elemstr][element].flags.
* If bits are 00b, then 'element' is a UTF-32LE codepoint.
* If bits are 01b, then 'element' is a string index.
* If bits are 10b (2), then 'element' is a uset index.
*
* `type = flags & elem_flags_type`
*/
readonly elem_flags_type = 0x00000003;
readonly elem_flags_type_char = 0x00000000;
readonly elem_flags_type_str = 0x00000001;
readonly elem_flags_type_uset = 0x00000002;
/**
* bitwise or value for tertiary_base in elem[elemstr][element].flags.
* If bit is 1, then tertiary_base is true.
* If bit is 0, then tertiary_base is false.
*
* Used only for `ordr`-type element strings.
*
* `tertiary_base = flags & elem_flags_tertiary_base`
*/
readonly elem_flags_tertiary_base = 0x00000004;
/**
* bitwise or value for tertiary_base in elem[elemstr][element].flags.
* If bit is 1, then prebase is true.
* If bit is 0, then prebase is false.
*
* Used only for `ordr`-type element strings.
*
* `prebase = flags & elem_flags_prebase`
*/
readonly elem_flags_prebase = 0x00000008;
/**
* bitwise mask for order in elem[elemstr][element].flags.
*
* Used only for `ordr`-type element strings. 1 byte signed integer.
*
* `order = (flags & elem_flags_order_mask) >> elem_flags_order_bitshift`
*/
readonly elem_flags_order_mask = 0x00FF0000;
/**
* bit shift for order in elem[elemstr][element].flags.
*
* Used only for `ordr`-type element strings.
*
* `order = (flags & elem_flags_order_mask) >> elem_flags_order_bitshift`
*/
readonly elem_flags_order_bitshift = 16;
/**
* bitwise mask for tertiary sort in elem[elemstr][element].flags.
*
* Used only for `ordr`-type element strings. 1 byte signed integer.
*
* `tertiary = (flags & elem_flags_tertiary_mask) >> elem_flags_tertiary_bitshift`
*/
readonly elem_flags_tertiary_mask = 0xFF000000;
/**
* bit shift for tertiary sort in elem[elemstr][element].flags.
*
* Used only for `ordr`-type element strings. 1 byte signed integer.
*
* `order = (flags & elem_flags_tertiary_mask) >> elem_flags_tertiary_bitshift`
*/
readonly elem_flags_tertiary_bitshift = 24;
/* ------------------------------------------------------------------
* finl section
------------------------------------------------------------------ */
/**
* Minimum length of the 'finl' section, not including entries
*/
readonly length_finl = 8;
/**
* Length of each item in the 'finl' section variable part
*/
readonly length_finl_item = 16;
/**
* bitwise or value for error="fail" in transform
*/
readonly finl_flags_error = 0x0001;
/* ------------------------------------------------------------------
* keys section is now keys.kmap
------------------------------------------------------------------ */
/**
* Constant for no modifiers
*/
readonly keys_mod_none = 0x0000;
/**
* bitmask for Left Alt modifier key
*/
readonly keys_mod_altL = 0x0004;
/**
* bitmask for Right Alt (AltGr) modifier key
*/
readonly keys_mod_altR = 0x0008;
/**
* bitmask for either Alt (Windows) or Option (Apple) modifier keys
*/
readonly keys_mod_alt = 0x0040;
/**
* bitmask for Caps modifier key
*/
readonly keys_mod_caps = 0x0100;
/**
* bitmask for Left control modifier key
*/
readonly keys_mod_ctrlL = 0x0001;
/**
* bitmask for Right control modifier key
*/
readonly keys_mod_ctrlR = 0x0002;
/**
* bitmask for either Control modifier key
*/
readonly keys_mod_ctrl = 0x0020;
/**
* bitmask for either shift.
*/
readonly keys_mod_shift = 0x0010;
/**
* bitmask for 'other'.
*/
readonly keys_mod_other = 0x10000;
/**
* Convenience map for modifiers
*/
readonly keys_mod_map: Map<string, number> = new Map(
[
["none", this.keys_mod_none],
["alt", this.keys_mod_alt],
["altL", this.keys_mod_altL],
["altR", this.keys_mod_altR],
["caps", this.keys_mod_caps],
["ctrl", this.keys_mod_ctrl],
["ctrlL", this.keys_mod_ctrlL],
["ctrlR", this.keys_mod_ctrlR],
["shift", this.keys_mod_shift],
["other", this.keys_mod_other],
]
);
/**
* a mask combining all valid modifier bits
*/
readonly keys_mod_all: number = Array.from(this.keys_mod_map.values()).reduce((p, v) => (p | v), this.keys_mod_none);
/* ------------------------------------------------------------------
* keys section
------------------------------------------------------------------ */
/**
* Minimum length of the 'keys' section not including variable parts
*/
readonly length_keys = 24;
/**
* Length of each item in the 'keys' keys sub-table
*/
readonly length_keys_key = 36;
/**
* Length of each item in the 'keys' flick lists sub-table
*/
readonly length_keys_flick_list = 12;
/**
* Length of each item in the 'keys' flick elements sub-table
*/
readonly length_keys_flick_element = 8;
/**
* Length of each item in the 'keys.kmap' key map subtable
*/
readonly length_keys_kmap = 12;
/**
* 0 if to is a char, 1 if it is a string
*/
readonly keys_key_flags_extend = 0x00000001;
/**
* 1 if the key is a gap
*/
readonly keys_key_flags_gap = 0x00000002;
/* ------------------------------------------------------------------
* layr section
------------------------------------------------------------------ */
/**
* Minimum length of the 'layr' section not including variable parts
*/
readonly length_layr = 24;
/**
* Length of each layer list in the 'layr' section variable part
*/
readonly length_layr_list = 16;
/**
* for the 'hardware' field indicating a touch keyboard, non-hardware
*/
readonly layr_list_hardware_touch = 'touch';
/**
* Length of each layer entry in the 'layr' section variable part
*/
readonly length_layr_entry = 16;
/**
* Length of each row entry in the 'layr' section variable part
*/
readonly length_layr_row = 8;
/**
* Length of each key entry in the 'layr' section variable part
*/
readonly length_layr_key = 4;
/* ------------------------------------------------------------------
* list section
------------------------------------------------------------------ */
/**
* Minimum length of the 'list' section not including variable parts
*/
readonly length_list = 16;
/**
* Length of each list item in the 'list' list section variable part
*/
readonly length_list_item = 8;
/**
* Length of each list item in the 'list' indices section variable part
*/
readonly length_list_index = 4;
/* ------------------------------------------------------------------
* loca section
------------------------------------------------------------------ */
/**
* Minimum length of the 'loca' section not including variable parts
*/
readonly length_loca = 12;
/**
* Length of each item in the 'loca' section variable part
*/
readonly length_loca_item = 4;
/* ------------------------------------------------------------------
* meta section
------------------------------------------------------------------ */
/**
* length of the 'meta' section
*/
readonly length_meta = 36;
/**
* bitwise or value for normalization=disabled in meta.settings
*/
readonly meta_settings_normalization_disabled = 1;
/* ------------------------------------------------------------------
* strs section
------------------------------------------------------------------ */
/**
* Minimum length of the 'strs' section not including variable parts
*/
readonly length_strs = 12;
/**
* Length of each item in the 'strs' section variable part
*/
readonly length_strs_item = 8;
/* ------------------------------------------------------------------
* tran section
------------------------------------------------------------------ */
/**
* Minimum length of the 'tran' section, not including entries
*/
readonly length_tran = 20;
/**
* Length of each transform group item
*/
readonly length_tran_group = 12;
/**
* Length of each transform item
*/
readonly length_tran_transform = 16;
/**
* Length of each reorder subtable item
*/
readonly length_tran_reorder = 8;
/**
* bitwise or value for error="fail" in transform
*/
readonly tran_flags_error = 0x0001;
/**
* this group is full of transform items
*/
readonly tran_group_type_transform = 0;
/**
* this group is full of reorder items
*/
readonly tran_group_type_reorder = 1;
/* ------------------------------------------------------------------
* vars section
* ------------------------------------------------------------------ */
/**
* Minimum length of the 'vars' section not including variable parts
*/
readonly length_vars = 16;
/**
* Length of each item in the 'vars' section variable part
*/
readonly length_vars_item = 16;
/**
* String variable
*/
readonly vars_entry_type_string = 0;
/**
* Set variable
*/
readonly vars_entry_type_set = 1;
/**
* unicodeSet variable
*/
readonly vars_entry_type_unicodeSet = 2;
/* ------------------------------------------------------------------
* uset section
* ------------------------------------------------------------------ */
/*
* Minimum length of the 'uset' section not including variable parts
*/
readonly length_uset = 16;
/**
* Length of each entry in the uset.usets subtable
*/
readonly length_uset_uset = 12;
/**
* Length of each entry in the uset.ranges subtable
*/
readonly length_uset_range = 8;
/**
* All section IDs.
*/
readonly section: SectionMap = {
// keep this sorted
bksp: 'bksp',
disp: 'disp',
elem: 'elem',
keys: 'keys',
layr: 'layr',
list: 'list',
loca: 'loca',
meta: 'meta',
sect: 'sect',
strs: 'strs',
tran: 'tran',
uset: 'uset',
vars: 'vars',
};
/**
* Use to convert 4-char string into hex
* @param id section id such as 'sect'
* @returns hex ID such as 0x74636573
*/
hex_section_id(id:string) {
if(!id || typeof id !== 'string' || !id.match(/^[a-z0-9]{4}$/)) {
throw Error(`hex_section_id(${id}) - need a 4-character alphanumeric lower-case string`);
}
let r = 0;
for (let i = 3; i>=0; i--) {
r = (r << 8 | id.charCodeAt(i));
}
return r;
};
/**
* Use to convert hex into 4-char string
* @param hex section ID such as 0x74636573
* @returns string such as 'sect'
*/
str_section_id(hex:number) : string {
const chars : string[] = [];
for (let i = 3; i>=0; i--) {
chars.push(String.fromCharCode(hex & 0xFF));
hex >>= 8;
}
return chars.join('');
}
// ---- marker stuff ----
/** == kmx_file.UC_SENTINEL, always followed by `marker_code`, marker index 0x0001-0xfffe */
readonly uc_sentinel = 0xFFFF;
/** == kmx_file.CODE_DEADKEY */
readonly marker_code = 0x0008;
/** used to refer to no index */
readonly marker_no_index = 0x0000;
/** minimum usable marker index */
readonly marker_min_index = 0x0001;
/** index value referring to the 'any' marker match */
readonly marker_any_index = 0xD7FF;
/** maximum marker index prior to the 'any' value */
readonly marker_max_index = this.marker_any_index - 1;
/** maximum count of markers (not including 'any') */
readonly marker_max_count = this.marker_max_index - this.marker_min_index + 1;
/**
* List of versions to treat as if they were the 'latest' version.
*/
treatAsLatest(version: string): boolean {
return cldrTreatAsLatest.has(version);
}
};
/** There's no data or DTD change in 45, 46, 46.1, 47 so map them all to 46 at present. */
const cldrTreatAsLatest: Set<string> = new Set(['45', '46.1', '47']);
export const constants = new Constants();
// }
|