aboutsummaryrefslogtreecommitdiff
path: root/flatcc/src/compiler/codegen_c.c
blob: 5e5fe0e6bcbbecbae8a9414c0a699ca354600a96 (plain)
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
#include "codegen_c.h"
#include "fileio.h"
#include "pstrutil.h"
#include "../../external/hash/str_set.h"

int fb_open_output_file(fb_output_t *out, const char *name, size_t len, const char *ext)
{
    char *path;
    int ret;
    const char *prefix = out->opts->outpath ? out->opts->outpath : "";
    size_t prefix_len = strlen(prefix);

    if (out->fp) {
        return 0;
    }
    checkmem((path = fb_create_join_path_n(prefix, prefix_len, name, len, ext, 1)));
    out->fp = fopen(path, "wb");
    ret = 0;
    if (!out->fp) {
        fprintf(stderr, "error opening file for write: %s\n", path);
        ret = -1;
    }
    free(path);
    return ret;
}

void fb_close_output_file(fb_output_t *out)
{
    /* Concatenate covers either stdout or a file. */
    if (!out->opts->gen_outfile && !out->opts->gen_stdout && out->fp) {
        fclose(out->fp);
        out->fp = 0;
    }
    /* Keep out->fp open for next file. */
}

void fb_end_output_c(fb_output_t *out)
{
    if (out->fp != stdout && out->fp) {
        fclose(out->fp);
    }
    out->fp = 0;
}

/*
 * If used with --stdout or concat=<file>, we assume there
 * are no other language outputs at the same time.
 */
int fb_init_output_c(fb_output_t *out, fb_options_t *opts)
{
    const char *nsc;
    char *path = 0;
    size_t n;
    const char *mode = opts->gen_append ? "ab" : "wb";
    const char *prefix = opts->outpath ? opts->outpath : "";
    int ret = -1;

    memset(out, 0, sizeof(*out));
    out->opts = opts;
    nsc = opts->nsc;
    if (nsc) {
        n = strlen(opts->nsc);
        if (n > FLATCC_NAMESPACE_MAX) {
            fprintf(stderr, "common namespace argument is limited to %i characters\n", (int)FLATCC_NAMESPACE_MAX);
            return -1;
        }
    } else {
        nsc = FLATCC_DEFAULT_NAMESPACE_COMMON;
        n = strlen(nsc);
    }
    strncpy(out->nsc, nsc, FLATCC_NAMESPACE_MAX);
    out->nsc[FLATCC_NAMESPACE_MAX] = '\0';
    if (n) {
        out->nsc[n] = '_';
        out->nsc[n + 1] = '\0';
    }
    pstrcpyupper(out->nscup, out->nsc);
    out->nscup[n] = '\0'; /* No trailing _ */
    out->spacing = opts->cgen_spacing;
    if (opts->gen_stdout) {
        out->fp = stdout;
        return 0;
    }
    if (!out->opts->gen_outfile) {
        /* Normal operation to multiple header filers. */
        return 0;
    }
    checkmem((path = fb_create_join_path(prefix, out->opts->gen_outfile, "", 1)));
    out->fp = fopen(path, mode);
    if (!out->fp) {
        fprintf(stderr, "error opening file for write: %s\n", path);
        ret = -1;
        goto done;
    }
    ret = 0;
done:
    if (path) {
        free(path);
    }
    return ret;
}

static void _str_set_destructor(void *context, char *item)
{
    (void)context;

    free(item);
}

/*
 * Removal of duplicate inclusions is only for a cleaner output - it is
 * not stricly necessary because the preprocessor handles include
 * guards. The guards are required to deal with concatenated files
 * regardless unless we generate special code for concatenation.
 */
void fb_gen_c_includes(fb_output_t *out, const char *ext, const char *extup)
{
    fb_include_t *inc = out->S->includes;
    char *basename, *basenameup, *s;
    str_set_t set;

    fb_clear(set);

    /* Don't include our own file. */
    str_set_insert_item(&set, fb_copy_path(out->S->basenameup), ht_keep);
    while (inc) {
        checkmem((basename = fb_create_basename(
                    inc->name.s.s, (size_t)inc->name.s.len, out->opts->default_schema_ext)));
        inc = inc->link;
        checkmem((basenameup = fb_copy_path(basename)));
        s = basenameup;
        while (*s) {
            *s = (char)toupper(*s);
            ++s;
        }
        if (str_set_insert_item(&set, basenameup, ht_keep)) {
            free(basenameup);
            free(basename);
            continue;
        }
        /* The include guard is needed when concatening output. */
        fprintf(out->fp,
            "#ifndef %s%s\n"
            "#include \"%s%s\"\n"
            "#endif\n",
            basenameup, extup, basename, ext);
        free(basename);
        /* `basenameup` stored in str_set. */
    }
    str_set_destroy(&set, _str_set_destructor, 0);
}

int fb_copy_scope(fb_scope_t *scope, char *buf)
{
    size_t n, len;
    fb_ref_t *name;

    len = (size_t)scope->prefix.len;
    for (name = scope->name; name; name = name->link) {
        n = (size_t)name->ident->len;
        len += n + 1;
    }
    if (len > FLATCC_NAMESPACE_MAX + 1) {
        buf[0] = '\0';
        return -1;
    }
    len = (size_t)scope->prefix.len;
    memcpy(buf, scope->prefix.s, len);
    for (name = scope->name; name; name = name->link) {
        n = (size_t)name->ident->len;
        memcpy(buf + len, name->ident->text, n);
        len += n + 1;
        buf[len - 1] = '_';
    }
    buf[len] = '\0';
    return (int)len;
}

void fb_scoped_symbol_name(fb_scope_t *scope, fb_symbol_t *sym, fb_scoped_name_t *sn)
{
    fb_token_t *t = sym->ident;

    if (sn->scope != scope) {
        if (0 > (sn->scope_len = fb_copy_scope(scope, sn->text))) {
            sn->scope_len = 0;
            fprintf(stderr, "skipping too long namespace\n");
        }
    }
    sn->len = (int)t->len;
    sn->total_len = sn->scope_len + sn->len;
    if (sn->total_len > FLATCC_NAME_BUFSIZ - 1) {
        fprintf(stderr, "warning: truncating identifier: %.*s\n", sn->len, t->text);
        sn->len = FLATCC_NAME_BUFSIZ - sn->scope_len - 1;
        sn->total_len = sn->scope_len + sn->len;
    }
    memcpy(sn->text + sn->scope_len, t->text, (size_t)sn->len);
    sn->text[sn->total_len] = '\0';
}

int fb_codegen_common_c(fb_output_t *out)
{
    size_t nsc_len;
    int ret;

    nsc_len = strlen(out->nsc) - 1;
    ret = 0;
    if (out->opts->cgen_common_reader) {
        if (fb_open_output_file(out, out->nsc, nsc_len, "_common_reader.h")) {
            return -1;
        }
        ret = fb_gen_common_c_header(out);
        fb_close_output_file(out);
    }
    if (!ret && out->opts->cgen_common_builder) {
        if (fb_open_output_file(out, out->nsc, nsc_len, "_common_builder.h")) {
            return -1;
        }
        fb_gen_common_c_builder_header(out);
        fb_close_output_file(out);
    }
    return ret;
}

int fb_codegen_c(fb_output_t *out, fb_schema_t *S)
{
    size_t basename_len;
    /* OK if no files were processed. */
    int ret = 0;

    out->S = S;
    out->current_scope = fb_scope_table_find(&S->root_schema->scope_index, 0, 0);
    basename_len = strlen(out->S->basename);
    if (out->opts->cgen_reader) {
        if (fb_open_output_file(out, out->S->basename, basename_len, "_reader.h")) {
            ret = -1;
            goto done;
        }
        if ((ret = fb_gen_c_reader(out))) {
            goto done;
        }
        fb_close_output_file(out);
    }
    if (out->opts->cgen_builder) {
        if (fb_open_output_file(out, out->S->basename, basename_len, "_builder.h")) {
            ret = -1;
            goto done;
        }
        if ((ret = fb_gen_c_builder(out))) {
                    goto done;
        }
        fb_close_output_file(out);
    }
    if (out->opts->cgen_verifier) {
        if (fb_open_output_file(out, out->S->basename, basename_len, "_verifier.h")) {
            ret = -1;
            goto done;
        }
        if ((ret = fb_gen_c_verifier(out))) {
            goto done;
        }
        fb_close_output_file(out);
    }
    if (out->opts->cgen_json_parser) {
        if (fb_open_output_file(out, out->S->basename, basename_len, "_json_parser.h")) {
            ret = -1;
            goto done;
        }
        if ((ret = fb_gen_c_json_parser(out))) {
            goto done;
        }
        fb_close_output_file(out);
    }
    if (out->opts->cgen_json_printer) {
        if (fb_open_output_file(out, out->S->basename, basename_len, "_json_printer.h")) {
            ret = -1;
            goto done;
        }
        if ((ret = fb_gen_c_json_printer(out))) {
            goto done;
        }
        fb_close_output_file(out);
    }
done:
    return ret;
}