Edit

kc3-lang/libxkbcommon/test/log.c

Branch :

  • Show log

    Commit

  • Author : Pierre Le Marre
    Date : 2024-09-24 15:23:16
    Hash : cdafba4f
    Message : rules: Add support for index ranges There is a lot of repetition in the current rules files provided by xkeyboard-config, because the MLVO mappings need to match on the exact layout/variant index. This also prevents to increase the number of maximum groups, because it does not scale. We introduces the following new special layout/variant indexes: - “single”: matches a single layout; same as with no index. - “first”: matches the first layout/variant, no matter how many layouts are in the RMLVO configuration. It allows to merge `layout` and `layout[1]` patterns. - “later”: matches all but the first layout. This is an index range. - “any”: matches layout at any position. This is an index range. We also introduces the new `%i` expansion, which correspond to the index of the matched layout in a mapping with an index range. Example: layout[later] = symbols my_layout = +my_symbols:%i * = +%l[%i]:%i Let’s have a look at concrete examples from xkeyboard-config: ! model layout = symbols * * = pc+%l%(v) ! model layout[1] = symbols * * = pc+%l[1]%(v[1]) ! model layout[2] = symbols * * = +%l[2]%(v[2]) ! model layout[3] = symbols * * = +%l[3]%(v[3]) ! model layout[4] = symbols * * = +%l[4]%(v[4]) ! layout option = symbols * grp:toggle = +group(toggle) ! layout[1] option = symbols * grp:toggle = +group(toggle):1 ! layout[2] option = symbols * grp:toggle = +group(toggle):2 ! layout[3] option = symbols * grp:toggle = +group(toggle):3 ! layout[4] option = symbols * grp:toggle = +group(toggle):4 With this commit we can now simplify it into: ! model layout[first] = symbols * * = pc+%l[%i]%(v[%i]) ! model layout[later] = symbols * * = +%l[%i]%(v[%i]):%i ! layout[any] option = symbols * grp:toggle = +group(toggle):%i The latter rule will work even if we increase XKB_MAX_GROUPS, whereas the former would require to add the missing entries for the new groups. In order to maintain consistent rules, we now disallow layout and variant to have different indexes. For example, the following mapping are now invalid: - layout variant[1] - layout[1] variant[2] - layout[1] variant - layout[first] variant[1] - layout[first] variant - layout variant[any] - etc.

  • test/log.c
  • /*
     * Copyright © 2012 Ran Benita <ran234@gmail.com>
     *
     * Permission is hereby granted, free of charge, to any person obtaining a
     * copy of this software and associated documentation files (the "Software"),
     * to deal in the Software without restriction, including without limitation
     * the rights to use, copy, modify, merge, publish, distribute, sublicense,
     * and/or sell copies of the Software, and to permit persons to whom the
     * Software is furnished to do so, subject to the following conditions:
     *
     * The above copyright notice and this permission notice (including the next
     * paragraph) shall be included in all copies or substantial portions of the
     * Software.
     *
     * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
     * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
     * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
     * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
     * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
     * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
     * DEALINGS IN THE SOFTWARE.
     */
    
    #include "config.h"
    
    #include "test.h"
    #include "context.h"
    #include "messages-codes.h"
    
    #ifdef __GNUC__
    #pragma GCC diagnostic ignored "-Wmissing-format-attribute"
    #endif
    
    static const char *
    log_level_to_string(enum xkb_log_level level)
    {
        switch (level) {
        case XKB_LOG_LEVEL_CRITICAL:
            return "critical";
        case XKB_LOG_LEVEL_ERROR:
            return "error";
        case XKB_LOG_LEVEL_WARNING:
            return "warning";
        case XKB_LOG_LEVEL_INFO:
            return "info";
        case XKB_LOG_LEVEL_DEBUG:
            return "debug";
        }
    
        return "unknown";
    }
    
    ATTR_PRINTF(3, 0) static void
    log_fn(struct xkb_context *ctx, enum xkb_log_level level,
           const char *fmt, va_list args)
    {
        char *s;
        int size;
        darray_char *ls = xkb_context_get_user_data(ctx);
        assert(ls);
    
        size = vasprintf(&s, fmt, args);
        assert(size != -1);
    
        darray_append_string(*ls, log_level_to_string(level));
        darray_append_lit(*ls, ": ");
        darray_append_string(*ls, s);
        free(s);
    }
    
    int
    main(void)
    {
        darray_char log_string;
        struct xkb_context *ctx;
        int ret;
    
        test_init();
    
        ret = setenv("XKB_LOG_LEVEL", "warn", 1);
        assert(ret == 0);
        ret = setenv("XKB_LOG_VERBOSITY", "5", 1);
        assert(ret == 0);
        ctx = test_get_context(0);
        assert(ctx);
    
        darray_init(log_string);
        xkb_context_set_user_data(ctx, &log_string);
        xkb_context_set_log_fn(ctx, log_fn);
    
        log_warn(ctx, XKB_LOG_MESSAGE_NO_ID, "first warning: %d\n", 87);
        log_info(ctx, XKB_LOG_MESSAGE_NO_ID, "first info\n");
        log_dbg(ctx, XKB_LOG_MESSAGE_NO_ID, "first debug: %s\n", "hello");
        log_err(ctx, XKB_LOG_MESSAGE_NO_ID, "first error: %lu\n", 115415UL);
        log_vrb(ctx, 5, XKB_LOG_MESSAGE_NO_ID, "first verbose 5\n");
    
        xkb_context_set_log_level(ctx, XKB_LOG_LEVEL_DEBUG);
        log_warn(ctx, XKB_LOG_MESSAGE_NO_ID, "second warning: %d\n", 87);
        log_dbg(ctx, XKB_LOG_MESSAGE_NO_ID, "second debug: %s %s\n", "hello", "world");
        log_info(ctx, XKB_LOG_MESSAGE_NO_ID, "second info\n");
        log_err(ctx, XKB_ERROR_MALFORMED_NUMBER_LITERAL, "second error: %lu\n", 115415UL);
        log_vrb(ctx, 6, XKB_LOG_MESSAGE_NO_ID, "second verbose 6\n");
    
        xkb_context_set_log_verbosity(ctx, 0);
        xkb_context_set_log_level(ctx, XKB_LOG_LEVEL_CRITICAL);
        log_warn(ctx, XKB_LOG_MESSAGE_NO_ID, "third warning: %d\n", 87);
        log_dbg(ctx, XKB_LOG_MESSAGE_NO_ID, "third debug: %s %s\n", "hello", "world");
        log_info(ctx, XKB_LOG_MESSAGE_NO_ID, "third info\n");
        log_err(ctx, XKB_LOG_MESSAGE_NO_ID, "third error: %lu\n", 115415UL);
        log_vrb(ctx, 0, XKB_LOG_MESSAGE_NO_ID, "third verbose 0\n");
    
        printf("%s", darray_items(log_string));
    
        assert(streq(darray_items(log_string),
                     "warning: first warning: 87\n"
                     "error: first error: 115415\n"
                     "warning: first verbose 5\n"
                     "warning: second warning: 87\n"
                     "debug: second debug: hello world\n"
                     "info: second info\n"
                     "error: [XKB-034] second error: 115415\n"));
    
        xkb_context_unref(ctx);
        darray_free(log_string);
        return 0;
    }