• Show log

    Commit

  • Hash : e83d08dd
    Author : Pierre Le Marre
    Date : 2024-02-23T17:10:15

    keysyms: Fast and complete case mappings (Unicode 15.1)
    
    The current code to handle keysym case mappings is quite complex and
    slow. It is also incomplete, as it does not cover recent Unicode
    database. Finally, it does not handle title case correctly.
    
    It would be easier if we were to use only a lookup table, but a trivial
    implementation would lead to a huge array: the cased characters range
    from `U+0041` to `U+`1F189, i.e. a span of 127 304 elements.
    
    Thus we need some tricks to compress the lookup table. We based our
    work on the post:
    https://github.com/apankrat/notes/blob/3c551cb028595fd34046c5761fd12d1692576003/fast-case-conversion/README.md
    
    The compression algorithm is roughly:
    1. Compute the delta between the characters and their mappings.
    2. Split the delta array in chunk of a given size.
    3. Rearrange the order of the chunks in order to optimize consecutive
       chunks overlap.
    4. Create a data table with the reordered chunks and an index table
       that maps the original chunk index to its offset in the data table.
    
    The compression algorithm is then applied a second time to the previous
    index table.
    
    The complete algorithm optimizes the two chunk sizes in order to get
    the lowest total data size.
    
    The mappings were generated using CPython 3.12.4, PyICU 2.13, PyYaml
    6.0.1 and ICU 75.1.
    
    Also:
    - Added explicit list of named keysyms and their case mappings.
    - Added benchmark for case mappings.
    - Rework ICU tests.
    
    Note: 13b30f4f0dccc08dfea426d73570b913596ed602 introduced a fix for
    sharp S `U+00DF`. With the new implementation, the *conversion*
    functions `xkb_keysym_to_{lower,upper}` leave it *unchanged*, while
    the *predicate* functions `xkb_keysym_is_{lower,upper_or_title}`
    produce the expected results:
    
    ```c
    xkb_keysym_to_upper(XKB_KEY_ssharp) == XKB_KEY_ssharp;
    xkb_keysym_to_lower(XKB_KEY_ssharp) == XKB_KEY_ssharp;
    xkb_keysym_to_lower(XKB_KEY_Ssharp) == XKB_KEY_ssharp;
    
    xkb_keysym_is_lower         (XKB_KEY_ssharp) == true;
    xkb_keysym_is_upper_or_title(XKB_KEY_Ssharp) == true;
    ```
    

  • Properties

  • Git HTTP https://git.kmx.io/kc3-lang/libxkbcommon.git
    Git SSH git@git.kmx.io:kc3-lang/libxkbcommon.git
    Public access ? public
    Description

    keymap handling library for toolkits and window systems

    Users
    thodg_m kc3_lang_org thodg_w www_kmx_io thodg thodg_l
    Tags

  • README.md

  • Fragments for the changelog

    This directory contains fragments for the future NEWS file.

    Introduction

    We use <code>towncrier</code> to produce useful, summarized news files.

    There are 3 sections types:

    • API: changes/api
    • Tools: changes/tools
    • Build System: changes/build

    There are 3 news fragments types:

    • Breaking changes: .breaking
    • New: .feature
    • Fixes: .bugfix

    Adding a fragment

    Add a short description of the change in a file changes/SECTION/ID.FRAGMENT.md, where:

    • SECTION and FRAGMENT values are described in the previous section.
    • ID is the corresponding issue identifier on Github, if relevant. If there is no such issue, then ID should start with + and some identifier that make the file unique in the directory.

    Examples:

    • A bug fix for the issue #463 is an API change, so the corresponding file should be named changes/api/463.bugfix.md.
    • A new feature for tools like #448 corresponds to e.g. changes/tools/+add-verbose-opt.feature.md.

    Guidelines for the fragment files:

    • Use the Markdown markup.
    • Use past tense, e.g. “Fixed a segfault”.
    • Look at the previous releases NEWS file for further examples.

    Build the changelog

    Install <code>towncrier</code> from Pypi:

    python3 -m pip install towncrier

    Then build the changelog:

    # Only check the result. Useful after adding a new fragment.
    towncrier build --draft --version 1.8.0
    # Write the changelog & delete the news fragments
    towncrier build --yes --version 1.8.0