File: compile-compose.c

package info (click to toggle)
libxkbcommon 1.13.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,344 kB
  • sloc: ansic: 57,807; xml: 8,905; python: 7,451; yacc: 913; sh: 253; makefile: 23
file content (193 lines) | stat: -rw-r--r-- 5,329 bytes parent folder | download
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
/*
 * Copyright © 2021 Ran Benita <ran@unusedvar.com>
 * SPDX-License-Identifier: MIT
 */

#include "config.h"

#include <getopt.h>
#include <locale.h>
#include <stdbool.h>

#include "xkbcommon/xkbcommon.h"
#include "xkbcommon/xkbcommon-keysyms.h"
#include "xkbcommon/xkbcommon-compose.h"
#include "src/compose/dump.h"
#include "src/keysym.h"
#include "tools/tools-common.h"

static void
usage(FILE *fp, char *progname)
{
    fprintf(fp,
            "Usage: %s [--help] [--verbose] [--locale LOCALE] [--test] [FILE]\n",
            progname);
    fprintf(fp,
            "\n"
            "Compile a Compose file and print it\n"
            "\n"
            "Options:\n"
            " --help\n"
            "    Print this help and exit\n"
            " --verbose\n"
            "    Enable verbose debugging output\n"
            " --file FILE\n"
            "    Specify a Compose file to load.\n"
            "    DEPRECATED: use the positional argument instead.\n"
            " --locale LOCALE\n"
            "    Specify the locale directly, instead of relying on the environment variables\n"
            "    LC_ALL, LC_TYPE and LANG.\n"
            " --test\n"
            "    Test compilation but do not print the Compose file.\n");
}

int
main(int argc, char *argv[])
{
    const char *locale = NULL;
    const char *path = NULL;
    enum xkb_compose_format format = XKB_COMPOSE_FORMAT_TEXT_V1;
    bool verbose = false;
    bool test = false;
    enum options {
        OPT_VERBOSE,
        OPT_FILE,
        OPT_LOCALE,
        OPT_TEST,
    };
    static struct option opts[] = {
        {"help",    no_argument,       0, 'h'},
        {"verbose", no_argument,       0, OPT_VERBOSE},
        {"file",    required_argument, 0, OPT_FILE},
        {"locale",  required_argument, 0, OPT_LOCALE},
        {"test",    no_argument,       0, OPT_TEST},
        {0, 0, 0, 0},
    };

    setlocale(LC_ALL, "");

    /* Initialize the locale to use */
    locale = setlocale(LC_CTYPE, NULL);
    if (!locale)
        locale = "C";

    while (1) {
        int opt;
        int option_index = 0;

        opt = getopt_long(argc, argv, "h", opts, &option_index);
        if (opt == -1)
            break;

        switch (opt) {
        case OPT_VERBOSE:
            verbose = true;
            break;
        case OPT_FILE:
            path = optarg;
            fprintf(stderr, "WARNING: the flag --file is deprecated\n");
            break;
        case OPT_LOCALE:
            locale = optarg;
            break;
        case OPT_TEST:
            test = true;
            break;
        case 'h':
            usage(stdout, argv[0]);
            return EXIT_SUCCESS;
        default:
            usage(stderr, argv[0]);
            return EXIT_INVALID_USAGE;
        }
    }

    if (locale == NULL) {
        fprintf(stderr, "ERROR: Cannot determine the locale.\n");
        usage(stderr, argv[0]);
        return EXIT_INVALID_USAGE;
    }

    if (optind < argc && !isempty(argv[optind])) {
        /* Some positional arguments left: use a file */
        if (path) {
            fprintf(stderr,
                    "ERROR: Path already provided via the flag: --file\n");
            usage(stderr, argv[0]);
            exit(EXIT_INVALID_USAGE);
        }
        path = argv[optind++];
        if (optind < argc) {
            fprintf(stderr, "ERROR: Too many positional arguments\n");
            usage(stderr, argv[0]);
            exit(EXIT_INVALID_USAGE);
        }
    } else if (is_pipe_or_regular_file(STDIN_FILENO)) {
        /* No positional argument: detect piping */
        path = "-";
    }

    struct xkb_context *ctx = xkb_context_new(XKB_CONTEXT_NO_FLAGS);
    if (!ctx) {
        fprintf(stderr, "ERROR: Couldn't create xkb context\n");
        return EXIT_FAILURE;
    }

    if (verbose)
        tools_enable_verbose_logging(ctx);

    int ret = EXIT_FAILURE;
    struct xkb_compose_table *compose_table = NULL;

    if (path != NULL) {
        FILE *file;
        if (isempty(path) || strcmp(path, "-") == 0) {
            /* Read from stdin */
            file = tools_read_stdin();
        } else {
            /* Read from regular file */
            file = fopen(path, "rb");
        }

        if (file == NULL) {
            perror(path);
            goto file_error;
        }

        compose_table =
            xkb_compose_table_new_from_file(ctx, file, locale, format,
                                            XKB_COMPOSE_COMPILE_NO_FLAGS);
        fclose(file);
        if (!compose_table) {
            fprintf(stderr,
                    "ERROR: Couldn't create compose from file: %s\n", path);
            goto out;
        }
    } else {
        compose_table =
            xkb_compose_table_new_from_locale(ctx, locale,
                                              XKB_COMPOSE_COMPILE_NO_FLAGS);
        if (!compose_table) {
            fprintf(stderr,
                    "ERROR: Couldn't create compose from locale \"%s\"\n",
                    locale);
            goto out;
        }
    }

    if (test) {
        ret = EXIT_SUCCESS;
        goto out;
    }

    ret = xkb_compose_table_dump(stdout, compose_table)
        ? EXIT_SUCCESS
        : EXIT_FAILURE;

out:
    xkb_compose_table_unref(compose_table);
file_error:
    xkb_context_unref(ctx);

    return ret;
}