Coverage Report

Created: 2026-06-13 06:24

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/llama.cpp/common/json-schema-to-grammar.cpp
Line
Count
Source
1
#include "json-schema-to-grammar.h"
2
#include "common.h"
3
4
#include <nlohmann/json.hpp>
5
6
#include <algorithm>
7
#include <map>
8
#include <regex>
9
#include <sstream>
10
#include <string>
11
#include <unordered_map>
12
#include <unordered_set>
13
#include <vector>
14
15
using json = nlohmann::ordered_json;
16
17
47.9k
static std::string build_repetition(const std::string & item_rule, int min_items, int max_items, const std::string & separator_rule = "") {
18
47.9k
    auto has_max = max_items != std::numeric_limits<int>::max();
19
20
47.9k
    if (max_items == 0) {
21
698
        return "";
22
698
    }
23
47.2k
    if (min_items == 0 && max_items == 1) {
24
25.6k
        return item_rule + "?";
25
25.6k
    }
26
27
21.6k
    if (separator_rule.empty()) {
28
17.1k
        if (min_items == 1 && !has_max) {
29
784
            return item_rule + "+";
30
784
        }
31
16.4k
        if (min_items == 0 && !has_max) {
32
2.96k
            return item_rule + "*";
33
2.96k
        }
34
13.4k
        return item_rule + "{" + std::to_string(min_items) + "," + (has_max ? std::to_string(max_items) : "") + "}";
35
16.4k
    }
36
37
4.41k
    auto result = item_rule + " " + build_repetition("(" + separator_rule + " " + item_rule + ")", min_items == 0 ? 0 : min_items - 1, has_max ? max_items - 1 : max_items);
38
4.41k
    if (min_items == 0) {
39
2.92k
        result = "(" + result + ")?";
40
2.92k
    }
41
4.41k
    return result;
42
21.6k
}
43
44
17.3k
static void build_min_max_int(int64_t min_value, int64_t max_value, std::stringstream & out, int decimals_left = 16, bool top_level = true) {
45
17.3k
    auto has_min = min_value != std::numeric_limits<int64_t>::min();
46
17.3k
    auto has_max = max_value != std::numeric_limits<int64_t>::max();
47
48
152k
    auto digit_range = [&](char from, char to) {
49
152k
        out << "[";
50
152k
        if (from == to) {
51
73.5k
            out << from;
52
79.1k
        } else {
53
79.1k
            out << from << "-" << to;
54
79.1k
        }
55
152k
        out << "]";
56
152k
    };
57
83.9k
    auto more_digits = [&](int min_digits, int max_digits) {
58
83.9k
        out << "[0-9]";
59
83.9k
        if (min_digits == max_digits && min_digits == 1) {
60
9.66k
            return;
61
9.66k
        }
62
74.3k
        out << "{";
63
74.3k
        out << min_digits;
64
74.3k
        if (max_digits != min_digits) {
65
22.0k
            out << ",";
66
22.0k
            if (max_digits != std::numeric_limits<int>::max()) {
67
22.0k
                out << max_digits;
68
22.0k
            }
69
22.0k
        }
70
74.3k
        out << "}";
71
74.3k
    };
72
17.3k
    std::function<void(const std::string_view &, const std::string_view &)> uniform_range =
73
70.2k
        [&](const std::string_view & from, const std::string_view & to) {
74
70.2k
            size_t i = 0;
75
72.2k
            while (i < from.length() && i < to.length() && from[i] == to[i]) {
76
1.96k
                i++;
77
1.96k
            }
78
70.2k
            if (i > 0) {
79
1.79k
                out << "\"" << from.substr(0, i) << "\"";
80
1.79k
            }
81
70.2k
            if (i < from.length() && i < to.length()) {
82
69.6k
                if (i > 0) {
83
1.47k
                    out << " ";
84
1.47k
                }
85
69.6k
                auto sub_len = from.length() - i - 1;
86
69.6k
                if (sub_len > 0) {
87
59.9k
                    auto from_sub = from.substr(i + 1);
88
59.9k
                    auto to_sub = to.substr(i + 1);
89
59.9k
                    auto sub_zeros = string_repeat("0", sub_len);
90
59.9k
                    auto sub_nines = string_repeat("9", sub_len);
91
92
59.9k
                    auto to_reached = false;
93
59.9k
                    out << "(";
94
59.9k
                    if (from_sub == sub_zeros) {
95
58.0k
                        digit_range(from[i], to[i] - 1);
96
58.0k
                        out << " ";
97
58.0k
                        more_digits(sub_len, sub_len);
98
58.0k
                    } else {
99
1.90k
                        out << "[" << from[i] << "] ";
100
1.90k
                        out << "(";
101
1.90k
                        uniform_range(from_sub, sub_nines);
102
1.90k
                        out << ")";
103
1.90k
                        if (from[i] < to[i] - 1) {
104
1.60k
                            out << " | ";
105
1.60k
                            if (to_sub == sub_nines) {
106
1.47k
                                digit_range(from[i] + 1, to[i]);
107
1.47k
                                to_reached = true;
108
1.47k
                            } else {
109
125
                                digit_range(from[i] + 1, to[i] - 1);
110
125
                            }
111
1.60k
                            out << " ";
112
1.60k
                            more_digits(sub_len, sub_len);
113
1.60k
                        }
114
1.90k
                    }
115
59.9k
                    if (!to_reached) {
116
58.4k
                        out << " | ";
117
58.4k
                        digit_range(to[i], to[i]);
118
58.4k
                        out << " ";
119
58.4k
                        uniform_range(sub_zeros, to_sub);
120
58.4k
                    }
121
59.9k
                    out << ")";
122
59.9k
                } else {
123
9.72k
                    out << "[" << from[i] << "-" << to[i] << "]";
124
9.72k
                }
125
69.6k
            }
126
70.2k
        };
127
128
17.3k
    if (has_min && has_max) {
129
1.76k
        if (min_value < 0 && max_value < 0) {
130
308
            out << "\"-\" (";
131
308
            build_min_max_int(-max_value, -min_value, out, decimals_left, /* top_level= */ true);
132
308
            out << ")";
133
308
            return;
134
308
        }
135
136
1.46k
        if (min_value < 0) {
137
69
            out << "\"-\" (";
138
69
            build_min_max_int(0, -min_value, out, decimals_left, /* top_level= */ true);
139
69
            out << ") | ";
140
69
            min_value = 0;
141
69
        }
142
143
1.46k
        auto min_s = std::to_string(min_value);
144
1.46k
        auto max_s = std::to_string(max_value);
145
1.46k
        auto min_digits = min_s.length();
146
1.46k
        auto max_digits = max_s.length();
147
148
9.87k
        for (auto digits = min_digits; digits < max_digits; digits++) {
149
8.41k
            uniform_range(min_s, string_repeat("9", digits));
150
8.41k
            min_s = "1" + string_repeat("0", digits);
151
8.41k
            out << " | ";
152
8.41k
        }
153
1.46k
        uniform_range(min_s, max_s);
154
1.46k
        return;
155
1.76k
    }
156
157
15.5k
    auto less_decimals = std::max(decimals_left - 1, 1);
158
159
15.5k
    if (has_min) {
160
14.5k
        if (min_value < 0) {
161
338
            out << "\"-\" (";
162
338
            build_min_max_int(std::numeric_limits<int64_t>::min(), -min_value, out, decimals_left, /* top_level= */ false);
163
338
            out << ") | [0] | [1-9] ";
164
338
            more_digits(0, decimals_left - 1);
165
14.1k
        } else if (min_value == 0) {
166
799
            if (top_level) {
167
454
                out << "[0] | [1-9] ";
168
454
                more_digits(0, less_decimals);
169
454
            } else {
170
345
                more_digits(1, decimals_left);
171
345
            }
172
13.3k
        } else if (min_value <= 9) {
173
1.75k
            char c = '0' + min_value;
174
1.75k
            auto range_start = top_level ? '1' : '0';
175
1.75k
            if (c > range_start) {
176
1.44k
                digit_range(range_start, c - 1);
177
1.44k
                out << " ";
178
1.44k
                more_digits(1, less_decimals);
179
1.44k
                out << " | ";
180
1.44k
            }
181
1.75k
            digit_range(c, '9');
182
1.75k
            out << " ";
183
1.75k
            more_digits(0, less_decimals);
184
11.6k
        } else {
185
11.6k
            auto min_s = std::to_string(min_value);
186
11.6k
            auto len = min_s.length();
187
11.6k
            auto c = min_s[0];
188
189
11.6k
            if (c > '1') {
190
9.44k
                digit_range(top_level ? '1' : '0', c - 1);
191
9.44k
                out << " ";
192
9.44k
                more_digits(len, less_decimals);
193
9.44k
                out << " | ";
194
9.44k
            }
195
11.6k
            digit_range(c, c);
196
11.6k
            out << " (";
197
11.6k
            build_min_max_int(std::stoll(min_s.substr(1)), std::numeric_limits<int64_t>::max(), out, less_decimals, /* top_level= */ false);
198
11.6k
            out << ")";
199
11.6k
            if (c < '9') {
200
10.1k
                out << " | ";
201
10.1k
                digit_range(c + 1, '9');
202
10.1k
                out << " ";
203
10.1k
                more_digits(len - 1, less_decimals);
204
10.1k
            }
205
11.6k
        }
206
14.5k
        return;
207
14.5k
    }
208
209
1.08k
    if (has_max) {
210
1.07k
        if (max_value >= 0) {
211
691
            if (top_level) {
212
354
                out << "\"-\" [1-9] ";
213
354
                more_digits(0, less_decimals);
214
354
                out << " | ";
215
354
            }
216
691
            build_min_max_int(0, max_value, out, decimals_left, /* top_level= */ true);
217
691
        } else {
218
385
            out << "\"-\" (";
219
385
            build_min_max_int(-max_value, std::numeric_limits<int64_t>::max(), out, decimals_left, /* top_level= */ false);
220
385
            out << ")";
221
385
        }
222
1.07k
        return;
223
1.07k
    }
224
225
5
    throw std::runtime_error("At least one of min_value or max_value must be set");
226
1.08k
}
227
228
const std::string SPACE_RULE = "| \" \" | \"\\n\"{1,2} [ \\t]{0,20}";
229
230
struct BuiltinRule {
231
    std::string content;
232
    std::vector<std::string> deps;
233
};
234
235
static std::unordered_map<std::string, BuiltinRule> PRIMITIVE_RULES = {
236
    {"boolean", {"(\"true\" | \"false\") space", {}}},
237
    {"decimal-part", {"[0-9]{1,16}", {}}},
238
    {"integral-part", {"[0] | [1-9] [0-9]{0,15}", {}}},
239
    {"number", {"(\"-\"? integral-part) (\".\" decimal-part)? ([eE] [-+]? integral-part)? space", {"integral-part", "decimal-part"}}},
240
    {"integer", {"(\"-\"? integral-part) space", {"integral-part"}}},
241
    {"value", {"object | array | string | number | boolean | null", {"object", "array", "string", "number", "boolean", "null"}}},
242
    {"object", {"\"{\" space ( string \":\" space value (\",\" space string \":\" space value)* )? \"}\" space", {"string", "value"}}},
243
    {"array", {"\"[\" space ( value (\",\" space value)* )? \"]\" space", {"value"}}},
244
    {"uuid", {"\"\\\"\" [0-9a-fA-F]{8} \"-\" [0-9a-fA-F]{4} \"-\" [0-9a-fA-F]{4} \"-\" [0-9a-fA-F]{4} \"-\" [0-9a-fA-F]{12} \"\\\"\" space", {}}},
245
    {"char",   {"[^\"\\\\\\x7F\\x00-\\x1F] | [\\\\] ([\"\\\\bfnrt] | \"u\" [0-9a-fA-F]{4})", {}}},
246
    {"string", {"\"\\\"\" char* \"\\\"\" space", {"char"}}},
247
    {"null", {"\"null\" space", {}}},
248
};
249
250
static std::unordered_map<std::string, BuiltinRule> STRING_FORMAT_RULES = {
251
    {"date", {"[0-9]{4} \"-\" ( \"0\" [1-9] | \"1\" [0-2] ) \"-\" ( \"0\" [1-9] | [1-2] [0-9] | \"3\" [0-1] )", {}}},
252
    {"time", {"([01] [0-9] | \"2\" [0-3]) \":\" [0-5] [0-9] \":\" [0-5] [0-9] ( \".\" [0-9]{3} )? ( \"Z\" | ( \"+\" | \"-\" ) ( [01] [0-9] | \"2\" [0-3] ) \":\" [0-5] [0-9] )", {}}},
253
    {"date-time", {"date \"T\" time", {"date", "time"}}},
254
    {"date-string", {"\"\\\"\" date \"\\\"\" space", {"date"}}},
255
    {"time-string", {"\"\\\"\" time \"\\\"\" space", {"time"}}},
256
    {"date-time-string", {"\"\\\"\" date-time \"\\\"\" space", {"date-time"}}}
257
};
258
259
603k
static bool is_reserved_name(const std::string & name) {
260
603k
    static const std::unordered_set<std::string> RESERVED_NAMES = [] {
261
1
        std::unordered_set<std::string> s;
262
1
        s.insert("root");
263
12
        for (const auto & p : PRIMITIVE_RULES) {
264
12
            s.insert(p.first);
265
12
        }
266
6
        for (const auto & p : STRING_FORMAT_RULES) {
267
6
            s.insert(p.first);
268
6
        }
269
1
        return s;
270
1
    }();
271
603k
    return RESERVED_NAMES.find(name) != RESERVED_NAMES.end();
272
603k
}
273
274
static std::regex INVALID_RULE_CHARS_RE("[^a-zA-Z0-9-]+");
275
static std::regex GRAMMAR_LITERAL_ESCAPE_RE("[\r\n\"\\\\]");
276
static std::regex GRAMMAR_RANGE_LITERAL_ESCAPE_RE("[\r\n\"\\]\\-\\\\]");
277
static std::unordered_map<char, std::string> GRAMMAR_LITERAL_ESCAPES = {
278
    {'\r', "\\r"}, {'\n', "\\n"}, {'"', "\\\""}, {'-', "\\-"}, {']', "\\]"}, {'\\', "\\\\"}
279
};
280
281
static std::unordered_set<char> NON_LITERAL_SET = {'|', '.', '(', ')', '[', ']', '{', '}', '*', '+', '?'};
282
static std::unordered_set<char> ESCAPED_IN_REGEXPS_BUT_NOT_IN_LITERALS = {'^', '$', '.', '[', ']', '(', ')', '|', '{', '}', '*', '+', '?'};
283
284
239k
static std::string replacePattern(const std::string & input, const std::regex & regex, const std::function<std::string(const std::smatch  &)> & replacement) {
285
239k
    std::smatch match;
286
239k
    std::string result;
287
288
239k
    std::string::const_iterator searchStart(input.cbegin());
289
239k
    std::string::const_iterator searchEnd(input.cend());
290
291
716k
    while (std::regex_search(searchStart, searchEnd, match, regex)) {
292
476k
        result.append(searchStart, searchStart + match.position());
293
476k
        result.append(replacement(match));
294
476k
        searchStart = match.suffix().first;
295
476k
    }
296
297
239k
    result.append(searchStart, searchEnd);
298
299
239k
    return result;
300
239k
}
301
302
239k
static std::string format_literal(const std::string & literal) {
303
476k
    std::string escaped = replacePattern(literal, GRAMMAR_LITERAL_ESCAPE_RE, [&](const std::smatch & match) {
304
476k
        char c = match.str()[0];
305
476k
        return GRAMMAR_LITERAL_ESCAPES.at(c);
306
476k
    });
307
239k
    return "\"" + escaped + "\"";
308
239k
}
309
310
0
std::string gbnf_format_literal(const std::string & literal) { return format_literal(literal); }
311
312
class common_schema_converter {
313
private:
314
    friend class common_schema_info;
315
    friend std::string build_grammar(const std::function<void(const common_grammar_builder &)> & cb, const common_grammar_options & options);
316
    std::function<json(const std::string &)> _fetch_json;
317
    bool _dotall;
318
    std::map<std::string, std::string> _rules;
319
    std::unordered_map<std::string, json> _refs;
320
    std::unordered_set<std::string> _refs_being_resolved;
321
    std::vector<std::string> _errors;
322
    std::vector<std::string> _warnings;
323
324
2.67M
    std::string _add_rule(const std::string & name, const std::string & rule) {
325
2.67M
        std::string esc_name = regex_replace(name, INVALID_RULE_CHARS_RE, "-");
326
2.67M
        if (_rules.find(esc_name) == _rules.end() || _rules[esc_name] == rule) {
327
2.64M
            _rules[esc_name] = rule;
328
2.64M
            return esc_name;
329
2.64M
        }
330
28.5k
        int i = 0;
331
76.2k
        while (_rules.find(esc_name + std::to_string(i)) != _rules.end() && _rules[esc_name + std::to_string(i)] != rule) {
332
47.7k
            i++;
333
47.7k
        }
334
28.5k
        std::string key = esc_name + std::to_string(i);
335
28.5k
        _rules[key] = rule;
336
28.5k
        return key;
337
2.67M
    }
338
339
7.71k
    std::string _generate_union_rule(const std::string & name, const std::vector<json> & alt_schemas) {
340
7.71k
        std::vector<std::string> rules;
341
7.71k
        rules.reserve(alt_schemas.size());
342
184k
        for (size_t i = 0; i < alt_schemas.size(); i++) {
343
176k
            rules.push_back(visit(alt_schemas[i], name + (name.empty() ? "alternative-" : "-") + std::to_string(i)));
344
176k
        }
345
7.71k
        return string_join(rules, " | ");
346
7.71k
    }
347
348
5.61k
    std::string _visit_pattern(const std::string & pattern, const std::string & name) {
349
5.61k
        if (!(pattern.front() == '^' && pattern.back() == '$')) {
350
1.71k
            _errors.push_back("Pattern must start with '^' and end with '$'");
351
1.71k
            return "";
352
1.71k
        }
353
3.90k
        std::string sub_pattern = pattern.substr(1, pattern.length() - 2);
354
3.90k
        std::unordered_map<std::string, std::string> sub_rule_ids;
355
356
3.90k
        size_t i = 0;
357
3.90k
        size_t length = sub_pattern.length();
358
359
3.90k
        using literal_or_rule = std::pair<std::string, bool>;
360
2.23M
        auto to_rule = [&](const literal_or_rule & ls) {
361
2.23M
            auto is_literal = ls.second;
362
2.23M
            auto s = ls.first;
363
2.23M
            return is_literal ? "\"" + s + "\"" : s;
364
2.23M
        };
365
95.3k
        std::function<literal_or_rule()> transform = [&]() -> literal_or_rule {
366
95.3k
            size_t start = i;
367
95.3k
            std::vector<literal_or_rule> seq;
368
369
1.59M
            auto get_dot = [&]() {
370
1.59M
                std::string rule;
371
1.59M
                if (_dotall) {
372
0
                    rule = "[\\U00000000-\\U0010FFFF]";
373
1.59M
                } else {
374
1.59M
                    rule = "[^\\x0A\\x0D]";
375
1.59M
                }
376
1.59M
                return _add_rule("dot", rule);
377
1.59M
            };
378
379
            // Joins the sequence, merging consecutive literals together.
380
95.3k
            auto join_seq = [&]() {
381
94.1k
                std::vector<literal_or_rule> ret;
382
383
94.1k
                std::string literal;
384
1.95M
                auto flush_literal = [&]() {
385
1.95M
                    if (literal.empty()) {
386
1.68M
                        return false;
387
1.68M
                    }
388
271k
                    ret.emplace_back(literal, true);
389
271k
                    literal.clear();
390
271k
                    return true;
391
1.95M
                };
392
393
2.15M
                for (const auto & item : seq) {
394
2.15M
                    auto is_literal = item.second;
395
2.15M
                    if (is_literal) {
396
291k
                        literal += item.first;
397
1.86M
                    } else {
398
1.86M
                        flush_literal();
399
1.86M
                        ret.push_back(item);
400
1.86M
                    }
401
2.15M
                }
402
94.1k
                flush_literal();
403
404
94.1k
                std::vector<std::string> results;
405
94.1k
                results.reserve(ret.size());
406
2.13M
                for (const auto & item : ret) {
407
2.13M
                    results.push_back(to_rule(item));
408
2.13M
                }
409
94.1k
                return std::make_pair(string_join(results, " "), false);
410
94.1k
            };
411
412
2.30M
            while (i < length) {
413
2.21M
                char c = sub_pattern[i];
414
2.21M
                if (c == '.') {
415
1.59M
                    seq.emplace_back(get_dot(), false);
416
1.59M
                    i++;
417
1.59M
                } else if (c == '(') {
418
94.6k
                    i++;
419
94.6k
                    if (i < length && sub_pattern[i] == '?') {
420
4.00k
                        if (i + 1 < length && sub_pattern[i + 1] == ':') {
421
842
                            i += 2; // skip "?:" for non-capturing group, treat as regular group
422
3.16k
                        } else {
423
                            // lookahead/lookbehind (?=, ?!, ?<=, ?<!) - not supported
424
3.16k
                            _warnings.push_back("Unsupported pattern syntax");
425
                            // skip to matching ')' to avoid UB on empty seq
426
3.16k
                            int depth = 1;
427
95.3k
                            while (i < length && depth > 0) {
428
92.2k
                                if (sub_pattern[i] == '\\' && i + 1 < length) {
429
236
                                    i += 2; // skip escaped character
430
91.9k
                                } else {
431
91.9k
                                    if (sub_pattern[i] == '(') depth++;
432
89.6k
                                    else if (sub_pattern[i] == ')') depth--;
433
91.9k
                                    i++;
434
91.9k
                                }
435
92.2k
                            }
436
3.16k
                            continue;
437
3.16k
                        }
438
4.00k
                    }
439
91.4k
                    seq.emplace_back("(" + to_rule(transform()) + ")", false);
440
526k
                } else if (c == ')') {
441
11.0k
                    i++;
442
11.0k
                    if (start > 0 && sub_pattern[start - 1] != '(' && (start < 2 || sub_pattern[start - 2] != '?' || sub_pattern[start - 1] != ':')) {
443
0
                        _errors.push_back("Unbalanced parentheses");
444
0
                    }
445
11.0k
                    return join_seq();
446
515k
                } else if (c == '[') {
447
10.2k
                    std::string square_brackets = std::string(1, c);
448
10.2k
                    i++;
449
1.51M
                    while (i < length && sub_pattern[i] != ']') {
450
1.50M
                        if (sub_pattern[i] == '\\') {
451
43.7k
                            square_brackets += sub_pattern.substr(i, 2);
452
43.7k
                            i += 2;
453
1.45M
                        } else {
454
1.45M
                            square_brackets += sub_pattern[i];
455
1.45M
                            i++;
456
1.45M
                        }
457
1.50M
                    }
458
10.2k
                    if (i >= length) {
459
833
                        _errors.push_back("Unbalanced square brackets");
460
833
                    }
461
10.2k
                    square_brackets += ']';
462
10.2k
                    i++;
463
10.2k
                    seq.emplace_back(square_brackets, false);
464
504k
                } else if (c == '|') {
465
137k
                    seq.emplace_back("|", false);
466
137k
                    i++;
467
367k
                } else if (c == '*' || c == '+' || c == '?') {
468
6.76k
                    seq.back() = std::make_pair(to_rule(seq.back()) + c, false);
469
6.76k
                    i++;
470
360k
                } else if (c == '{') {
471
36.6k
                    std::string curly_brackets = std::string(1, c);
472
36.6k
                    i++;
473
4.78M
                    while (i < length && sub_pattern[i] != '}') {
474
4.74M
                        curly_brackets += sub_pattern[i];
475
4.74M
                        i++;
476
4.74M
                    }
477
36.6k
                    if (i >= length) {
478
1.08k
                        _errors.push_back("Unbalanced curly brackets");
479
1.08k
                    }
480
36.6k
                    curly_brackets += '}';
481
36.6k
                    i++;
482
36.6k
                    auto nums = string_split(curly_brackets.substr(1, curly_brackets.length() - 2), ",");
483
36.6k
                    int min_times = 0;
484
36.6k
                    int max_times = std::numeric_limits<int>::max();
485
36.6k
                    try {
486
36.6k
                        if (nums.size() == 1) {
487
6.85k
                            min_times = max_times = std::stoi(nums[0]);
488
29.7k
                        } else if (nums.size() != 2) {
489
941
                            _errors.push_back("Wrong number of values in curly brackets");
490
28.8k
                        } else {
491
28.8k
                            if (!nums[0].empty()) {
492
27.0k
                                min_times = std::stoi(nums[0]);
493
27.0k
                            }
494
28.8k
                            if (!nums[1].empty()) {
495
27.5k
                                max_times = std::stoi(nums[1]);
496
27.5k
                            }
497
28.8k
                        }
498
36.6k
                    } catch (const std::invalid_argument & e) {
499
977
                        _errors.push_back("Invalid number in curly brackets");
500
977
                        return std::make_pair("", false);
501
977
                    }
502
35.6k
                    auto &last = seq.back();
503
35.6k
                    auto &sub = last.first;
504
35.6k
                    auto sub_is_literal = last.second;
505
506
35.6k
                    if (!sub_is_literal) {
507
8.40k
                        std::string & sub_id = sub_rule_ids[sub];
508
8.40k
                        if (sub_id.empty()) {
509
4.67k
                            sub_id = _add_rule(name + "-" + std::to_string(sub_rule_ids.size()), sub);
510
4.67k
                        }
511
8.40k
                        sub = sub_id;
512
8.40k
                    }
513
35.6k
                    seq.back().first = build_repetition(
514
35.6k
                        sub_is_literal ? "\"" + sub + "\"" : sub,
515
35.6k
                        min_times,
516
35.6k
                        max_times,
517
35.6k
                        ""
518
35.6k
                    );
519
35.6k
                    seq.back().second = false;
520
323k
                } else {
521
323k
                    std::string literal;
522
50.6M
                    auto is_non_literal = [&](char c) {
523
50.6M
                        return NON_LITERAL_SET.find(c) != NON_LITERAL_SET.end();
524
50.6M
                    };
525
25.7M
                    while (i < length) {
526
25.7M
                        if (sub_pattern[i] == '\\' && i < length - 1) {
527
61.2k
                            char next = sub_pattern[i + 1];
528
61.2k
                            if (ESCAPED_IN_REGEXPS_BUT_NOT_IN_LITERALS.find(next) != ESCAPED_IN_REGEXPS_BUT_NOT_IN_LITERALS.end()) {
529
512
                                i++;
530
512
                                literal += sub_pattern[i];
531
512
                                i++;
532
60.7k
                            } else {
533
60.7k
                                literal += sub_pattern.substr(i, 2);
534
60.7k
                                i += 2;
535
60.7k
                            }
536
25.6M
                        } else if (sub_pattern[i] == '"') {
537
388
                            literal += "\\\"";
538
388
                            i++;
539
25.6M
                        } else if (!is_non_literal(sub_pattern[i]) &&
540
25.3M
                                (i == length - 1 || literal.empty() || sub_pattern[i + 1] == '.' || !is_non_literal(sub_pattern[i + 1]))) {
541
25.3M
                            literal += sub_pattern[i];
542
25.3M
                            i++;
543
25.3M
                        } else {
544
322k
                            break;
545
322k
                        }
546
25.7M
                    }
547
323k
                    if (!literal.empty()) {
548
323k
                        seq.emplace_back(literal, true);
549
323k
                    }
550
323k
                }
551
2.21M
            }
552
83.3k
            return join_seq();
553
95.3k
        };
554
3.90k
        return _add_rule(name, "\"\\\"\" (" + to_rule(transform()) + ") \"\\\"\" space");
555
5.61k
    }
556
557
    /*
558
        Returns a rule that matches a JSON string that is none of the provided strings
559
560
        not_strings({"a"})
561
            -> ["] ( [a] char+ | [^"a] char* )? ["] space
562
        not_strings({"and", "also"})
563
            -> ["] ( [a] ([l] ([s] ([o] char+ | [^"o] char*) | [^"s] char*) | [n] ([d] char+ | [^"d] char*) | [^"ln] char*) | [^"a] char* )? ["] space
564
    */
565
0
    std::string _not_strings(const std::vector<std::string> & strings) {
566
567
0
        struct TrieNode {
568
0
            std::map<char, TrieNode> children;
569
0
            bool is_end_of_string;
570
571
0
            TrieNode() : is_end_of_string(false) {}
572
573
0
            void insert(const std::string & string) {
574
0
                auto *node = this;
575
0
                for (char c : string) {
576
0
                    node = &node->children[c];
577
0
                }
578
0
                node->is_end_of_string = true;
579
0
            }
580
0
        };
581
582
0
        TrieNode trie;
583
0
        for (const auto & s : strings) {
584
0
            trie.insert(s);
585
0
        }
586
587
0
        std::string char_rule = _add_primitive("char", PRIMITIVE_RULES.at("char"));
588
0
        std::ostringstream out;
589
0
        out << "[\"] ( ";
590
0
        std::function<void(const TrieNode &)> visit = [&](const TrieNode & node) {
591
0
            std::ostringstream rejects;
592
0
            auto first = true;
593
0
            for (const auto & kv : node.children) {
594
0
                rejects << kv.first;
595
0
                if (first) {
596
0
                    first = false;
597
0
                } else {
598
0
                    out << " | ";
599
0
                }
600
0
                out << "[" << kv.first << "]";
601
0
                if (!kv.second.children.empty()) {
602
0
                    out << " (";
603
0
                    visit(kv.second);
604
0
                    out << ")";
605
0
                } else if (kv.second.is_end_of_string) {
606
0
                    out << " " << char_rule << "+";
607
0
                }
608
0
            }
609
0
            if (!node.children.empty()) {
610
0
                if (!first) {
611
0
                    out << " | ";
612
0
                }
613
0
                out << "[^\"" << rejects.str() << "] " << char_rule << "*";
614
0
            }
615
0
        };
616
0
        visit(trie);
617
618
0
        out << " )";
619
0
        if (!trie.is_end_of_string) {
620
0
            out << "?";
621
0
        }
622
0
        out << " [\"] space";
623
0
        return out.str();
624
0
    }
625
626
48.1k
    std::string _resolve_ref(const std::string & ref) {
627
48.1k
        auto it = ref.find('#');
628
48.1k
        std::string ref_fragment = it != std::string::npos ? ref.substr(it + 1) : ref;
629
48.1k
        static const std::regex nonalphanumeric_regex(R"([^a-zA-Z0-9-]+)");
630
48.1k
        std::string ref_name = "ref" + std::regex_replace(ref_fragment, nonalphanumeric_regex, "-");
631
48.1k
        if (_rules.find(ref_name) == _rules.end() && _refs_being_resolved.find(ref) == _refs_being_resolved.end()) {
632
11.6k
            _refs_being_resolved.insert(ref);
633
11.6k
            json resolved = _refs[ref];
634
11.6k
            ref_name = visit(resolved, ref_name);
635
11.6k
            _refs_being_resolved.erase(ref);
636
11.6k
        }
637
48.1k
        return ref_name;
638
48.1k
    }
639
640
    std::string _build_object_rule(
641
        const std::vector<std::pair<std::string, json>> & properties,
642
        const std::unordered_set<std::string> & required,
643
        const std::string & name,
644
        const json & additional_properties)
645
6.29k
    {
646
6.29k
        std::vector<std::string> required_props;
647
6.29k
        std::vector<std::string> optional_props;
648
6.29k
        std::unordered_map<std::string, std::string> prop_kv_rule_names;
649
6.29k
        std::vector<std::string> prop_names;
650
217k
        for (const auto & kv : properties) {
651
217k
            const auto &prop_name = kv.first;
652
217k
            const auto &prop_schema = kv.second;
653
654
217k
            std::string prop_rule_name = visit(prop_schema, name + (name.empty() ? "" : "-") + prop_name);
655
217k
            prop_kv_rule_names[prop_name] = _add_rule(
656
217k
                name + (name.empty() ? "" : "-") + prop_name + "-kv",
657
217k
                format_literal(json(prop_name).dump()) + " space \":\" space " + prop_rule_name
658
217k
            );
659
217k
            if (required.find(prop_name) != required.end()) {
660
191k
                required_props.push_back(prop_name);
661
191k
            } else {
662
25.5k
                optional_props.push_back(prop_name);
663
25.5k
            }
664
217k
            prop_names.push_back(prop_name);
665
217k
        }
666
6.29k
        if ((additional_properties.is_boolean() && additional_properties.get<bool>()) || additional_properties.is_object()) {
667
479
            std::string sub_name = name + (name.empty() ? "" : "-") + "additional";
668
479
            std::string value_rule =
669
479
                additional_properties.is_object() ? visit(additional_properties, sub_name + "-value")
670
479
                : _add_primitive("value", PRIMITIVE_RULES.at("value"));
671
672
479
            auto key_rule =
673
479
                prop_names.empty() ? _add_primitive("string", PRIMITIVE_RULES.at("string"))
674
479
                : _add_rule(sub_name + "-k", _not_strings(prop_names));
675
479
            std::string kv_rule = _add_rule(sub_name + "-kv", key_rule + " \":\" space " + value_rule);
676
479
            prop_kv_rule_names["*"] = kv_rule;
677
479
            optional_props.push_back("*");
678
479
        }
679
680
6.29k
        std::string rule = "\"{\" space ";
681
197k
        for (size_t i = 0; i < required_props.size(); i++) {
682
191k
            if (i > 0) {
683
190k
                rule += " \",\" space ";
684
190k
            }
685
191k
            rule += prop_kv_rule_names[required_props[i]];
686
191k
        }
687
688
6.29k
        if (!optional_props.empty()) {
689
4.11k
            rule += " (";
690
4.11k
            if (!required_props.empty()) {
691
28
                rule += " \",\" space ( ";
692
28
            }
693
694
727k
            std::function<std::string(const std::vector<std::string> &, bool)> get_recursive_refs = [&](const std::vector<std::string> & ks, bool first_is_optional) {
695
727k
                std::string res;
696
727k
                if (ks.empty()) {
697
0
                    return res;
698
0
                }
699
727k
                const std::string& k = ks[0];
700
727k
                std::string kv_rule_name = prop_kv_rule_names[k];
701
727k
                std::string comma_ref = "( \",\" space " + kv_rule_name + " )";
702
727k
                if (first_is_optional) {
703
702k
                    res = comma_ref + (k == "*" ? "*" : "?");
704
702k
                } else {
705
24.4k
                    res = kv_rule_name + (k == "*" ? " " + comma_ref + "*" : "");
706
24.4k
                }
707
727k
                if (ks.size() > 1) {
708
702k
                    res += " " + _add_rule(
709
702k
                        name + (name.empty() ? "" : "-") + k + "-rest",
710
702k
                        get_recursive_refs(std::vector<std::string>(ks.begin() + 1, ks.end()), true)
711
702k
                    );
712
702k
                }
713
727k
                return res;
714
727k
            };
715
716
28.5k
            for (size_t i = 0; i < optional_props.size(); i++) {
717
24.4k
                if (i > 0) {
718
20.3k
                    rule += " | ";
719
20.3k
                }
720
24.4k
                rule += get_recursive_refs(std::vector<std::string>(optional_props.begin() + i, optional_props.end()), false);
721
24.4k
            }
722
4.11k
            if (!required_props.empty()) {
723
28
                rule += " )";
724
28
            }
725
4.11k
            rule += " )?";
726
4.11k
        }
727
728
6.29k
        rule += " \"}\" space";
729
730
6.29k
        return rule;
731
6.29k
    }
732
733
46.5k
    std::string _add_primitive(const std::string & name, const BuiltinRule & rule) {
734
46.5k
        auto n = _add_rule(name, rule.content);
735
114k
        for (const auto & dep : rule.deps) {
736
114k
            BuiltinRule dep_rule;
737
114k
            auto it = PRIMITIVE_RULES.find(dep);
738
114k
            if (it == PRIMITIVE_RULES.end()) {
739
0
                it = STRING_FORMAT_RULES.find(dep);
740
0
                if (it == STRING_FORMAT_RULES.end()) {
741
0
                    _errors.push_back("Rule " + dep + " not known");
742
0
                    continue;
743
0
                }
744
0
            }
745
114k
            if (_rules.find(dep) == _rules.end()) {
746
22.0k
                _add_primitive(dep, it->second);
747
22.0k
            }
748
114k
        }
749
46.5k
        return n;
750
46.5k
    }
751
752
public:
753
    common_schema_converter(
754
        const std::function<json(const std::string &)> & fetch_json,
755
        bool dotall)
756
8.54k
          : _fetch_json(fetch_json), _dotall(dotall)
757
8.54k
    {
758
8.54k
        _rules["space"] = SPACE_RULE;
759
8.54k
    }
760
761
11.7k
    void resolve_refs(json & schema, const std::string & url) {
762
        /*
763
        * Resolves all $ref fields in the given schema, fetching any remote schemas,
764
        * replacing each $ref with absolute reference URL and populates _refs with the
765
        * respective referenced (sub)schema dictionaries.
766
        */
767
4.61M
        std::function<void(json &)> visit_refs = [&](json & n) {
768
4.61M
            if (n.is_array()) {
769
4.54M
                for (auto & x : n) {
770
4.54M
                    visit_refs(x);
771
4.54M
                }
772
4.60M
            } else if (n.is_object()) {
773
68.3k
                if (n.contains("$ref")) {
774
26.9k
                    std::string ref = n["$ref"];
775
26.9k
                    if (_refs.find(ref) == _refs.end()) {
776
23.1k
                        json target;
777
23.1k
                        if (ref.find("https://") == 0) {
778
6.35k
                            std::string base_url = ref.substr(0, ref.find('#'));
779
6.35k
                            auto it = _refs.find(base_url);
780
6.35k
                            if (it != _refs.end()) {
781
3.13k
                                target = it->second;
782
3.22k
                            } else {
783
                                // Fetch the referenced schema and resolve its refs
784
3.22k
                                auto referenced = _fetch_json(ref);
785
3.22k
                                resolve_refs(referenced, base_url);
786
3.22k
                                _refs[base_url] = referenced;
787
3.22k
                            }
788
6.35k
                            if (ref.find('#') == std::string::npos || ref.substr(ref.find('#') + 1).empty()) {
789
3.76k
                                return;
790
3.76k
                            }
791
16.7k
                        } else if (ref.find("#/") == 0) {
792
8.21k
                            target = schema;
793
8.21k
                            n["$ref"] = url + ref;
794
8.21k
                            ref = url + ref;
795
8.53k
                        } else {
796
8.53k
                            _errors.push_back("Unsupported ref: " + ref);
797
8.53k
                            return;
798
8.53k
                        }
799
10.8k
                        std::string pointer = ref.substr(ref.find('#') + 1);
800
10.8k
                        std::vector<std::string> tokens = string_split(pointer, "/");
801
17.2k
                        for (size_t i = 1; i < tokens.size(); ++i) {
802
13.9k
                            const std::string& sel = tokens[i];
803
13.9k
                            if (target.is_object() && target.contains(sel)) {
804
4.06k
                                target = target[sel];
805
9.90k
                            } else if (target.is_array()) {
806
4.50k
                                size_t sel_index;
807
4.50k
                                try {
808
4.50k
                                    sel_index = std::stoull(sel);
809
4.50k
                                } catch (const std::invalid_argument & e) {
810
1.26k
                                    sel_index = target.size();
811
1.26k
                                }
812
4.50k
                                if (sel_index >= target.size()) {
813
2.09k
                                    _errors.push_back("Error resolving ref " + ref + ": " + sel + " not in " + target.dump());
814
2.09k
                                    return;
815
2.09k
                                }
816
2.40k
                                target = target[sel_index];
817
5.40k
                            } else {
818
5.40k
                                _errors.push_back("Error resolving ref " + ref + ": " + sel + " not in " + target.dump());
819
5.40k
                                return;
820
5.40k
                            }
821
13.9k
                        }
822
3.30k
                        _refs[ref] = target;
823
3.30k
                    }
824
41.3k
                } else {
825
60.6k
                    for (const auto & kv : n.items()) {
826
60.6k
                        visit_refs(kv.value());
827
60.6k
                    }
828
41.3k
                }
829
68.3k
            }
830
4.61M
        };
831
832
11.7k
        visit_refs(schema);
833
11.7k
    }
834
835
22.1k
    static std::string _generate_constant_rule(const json & value) {
836
22.1k
        return format_literal(value.dump());
837
22.1k
    }
838
839
603k
    std::string visit(const json & schema, const std::string & name) {
840
603k
        json schema_type = schema.contains("type") ? schema["type"] : json();
841
603k
        std::string schema_format = schema.contains("format") ? schema["format"].get<std::string>() : "";
842
603k
        std::string rule_name = is_reserved_name(name) ? name + "-" : name.empty() ? "root" : name;
843
844
603k
        if (schema.contains("$ref")) {
845
48.1k
            return _add_rule(rule_name, _resolve_ref(schema["$ref"]));
846
48.1k
        }
847
555k
        if (schema.contains("oneOf") || schema.contains("anyOf")) {
848
1.24k
            std::vector<json> alt_schemas = schema.contains("oneOf") ? schema["oneOf"].get<std::vector<json>>() : schema["anyOf"].get<std::vector<json>>();
849
1.24k
            return _add_rule(rule_name, _generate_union_rule(name, alt_schemas));
850
1.24k
        }
851
554k
        if (schema_type.is_array()) {
852
6.51k
            std::vector<json> schema_types;
853
74.2k
            for (const auto & t : schema_type) {
854
74.2k
                json schema_copy(schema);
855
74.2k
                schema_copy["type"] = t;
856
74.2k
                schema_types.push_back(schema_copy);
857
74.2k
            }
858
6.51k
            return _add_rule(rule_name, _generate_union_rule(name, schema_types));
859
6.51k
        }
860
547k
        if (schema.contains("const")) {
861
2.46k
            return _add_rule(rule_name, _generate_constant_rule(schema["const"]) + " space");
862
2.46k
        }
863
545k
        if (schema.contains("enum")) {
864
3.29k
            std::vector<std::string> enum_values;
865
12.2k
            for (const auto & v : schema["enum"]) {
866
12.2k
                enum_values.push_back(_generate_constant_rule(v));
867
12.2k
            }
868
3.29k
            return _add_rule(rule_name, "(" + string_join(enum_values, " | ") + ") space");
869
3.29k
        }
870
541k
        if ((schema_type.is_null() || schema_type == "object")
871
484k
                && (schema.contains("properties") ||
872
480k
                    (schema.contains("additionalProperties") && schema["additionalProperties"] != true))) {
873
4.42k
            std::unordered_set<std::string> required;
874
4.42k
            if (schema.contains("required") && schema["required"].is_array()) {
875
23.3k
                for (const auto & item : schema["required"]) {
876
23.3k
                    if (item.is_string()) {
877
12.4k
                        required.insert(item.get<std::string>());
878
12.4k
                    }
879
23.3k
                }
880
783
            }
881
4.42k
            std::vector<std::pair<std::string, json>> properties;
882
4.42k
            if (schema.contains("properties")) {
883
24.9k
                for (const auto & prop : schema["properties"].items()) {
884
24.9k
                    properties.emplace_back(prop.key(), prop.value());
885
24.9k
                }
886
3.75k
            }
887
4.42k
            return _add_rule(rule_name,
888
4.42k
                _build_object_rule(
889
4.42k
                    properties, required, name,
890
4.42k
                    schema.contains("additionalProperties") ? schema["additionalProperties"] : json()));
891
4.42k
        }
892
537k
        if ((schema_type.is_null() || schema_type == "object" || schema_type == "string") && schema.contains("allOf")) {
893
1.90k
            std::unordered_set<std::string> required;
894
1.90k
            std::vector<std::pair<std::string, json>> properties;
895
1.90k
            std::map<std::string, size_t> enum_values;
896
1.90k
            const std::string& hybrid_name = name;
897
40.6k
            std::function<void(const json &, bool)> add_component = [&](const json & comp_schema, bool is_required) {
898
40.6k
                if (comp_schema.contains("$ref")) {
899
6.23k
                    add_component(_refs[comp_schema["$ref"]], is_required);
900
34.3k
                } else if (comp_schema.contains("properties")) {
901
192k
                    for (const auto & prop : comp_schema["properties"].items()) {
902
192k
                        properties.emplace_back(prop.key(), prop.value());
903
192k
                        if (is_required) {
904
191k
                            required.insert(prop.key());
905
191k
                        }
906
192k
                    }
907
31.9k
                } else if (comp_schema.contains("enum")) {
908
7.48k
                    for (const auto & v : comp_schema["enum"]) {
909
7.48k
                        const auto rule = _generate_constant_rule(v);
910
7.48k
                        if (enum_values.find(rule) == enum_values.end()) {
911
2.44k
                            enum_values[rule] = 0;
912
2.44k
                        }
913
7.48k
                        enum_values[rule] += 1;
914
7.48k
                    }
915
29.5k
                } else {
916
                  // todo warning
917
29.5k
                }
918
40.6k
            };
919
29.5k
            for (const auto & t : schema["allOf"]) {
920
29.5k
                if (t.contains("anyOf")) {
921
5.91k
                    for (const auto & tt : t["anyOf"]) {
922
5.91k
                        add_component(tt, false);
923
5.91k
                    }
924
28.4k
                } else {
925
28.4k
                    add_component(t, true);
926
28.4k
                }
927
29.5k
            }
928
1.90k
            if (!enum_values.empty()) {
929
198
                std::vector<std::string> enum_intersection;
930
2.44k
                for (const auto & p : enum_values) {
931
2.44k
                    if (p.second == schema["allOf"].size()) {
932
68
                        enum_intersection.push_back(p.first);
933
68
                    }
934
2.44k
                }
935
198
                if (!enum_intersection.empty()) {
936
35
                    return _add_rule(rule_name, "(" + string_join(enum_intersection, " | ") + ") space");
937
35
                }
938
198
            }
939
1.87k
            return _add_rule(rule_name, _build_object_rule(properties, required, hybrid_name, json()));
940
1.90k
        }
941
535k
        if ((schema_type.is_null() || schema_type == "array") && (schema.contains("items") || schema.contains("prefixItems"))) {
942
11.1k
            json items = schema.contains("items") ? schema["items"] : schema["prefixItems"];
943
11.1k
            if (items.is_array()) {
944
3.37k
                std::string rule = "\"[\" space ";
945
184k
                for (size_t i = 0; i < items.size(); i++) {
946
180k
                    if (i > 0) {
947
177k
                        rule += " \",\" space ";
948
177k
                    }
949
180k
                    rule += visit(items[i], name + (name.empty() ? "" : "-") + "tuple-" + std::to_string(i));
950
180k
                }
951
3.37k
                rule += " \"]\" space";
952
3.37k
                return _add_rule(rule_name, rule);
953
3.37k
            }
954
7.81k
            std::string item_rule_name = visit(items, name + (name.empty() ? "" : "-") + "item");
955
7.81k
            int min_items = schema.contains("minItems") ? schema["minItems"].get<int>() : 0;
956
7.81k
            json max_items_json = schema.contains("maxItems") ? schema["maxItems"] : json();
957
7.81k
            int max_items = max_items_json.is_number_integer() ? max_items_json.get<int>() : std::numeric_limits<int>::max();
958
959
7.81k
            return _add_rule(rule_name, "\"[\" space " + build_repetition(item_rule_name, min_items, max_items, "\",\" space") + " \"]\" space");
960
11.1k
        }
961
524k
        if ((schema_type.is_null() || schema_type == "string") && schema.contains("pattern")) {
962
5.62k
            return _visit_pattern(schema["pattern"], rule_name);
963
5.62k
        }
964
518k
        if ((schema_type.is_null() || schema_type == "string") && std::regex_match(schema_format, std::regex("^uuid[1-5]?$"))) {
965
1
            return _add_primitive(rule_name == "root" ? "root" : schema_format, PRIMITIVE_RULES.at("uuid"));
966
1
        }
967
518k
        if ((schema_type.is_null() || schema_type == "string") && STRING_FORMAT_RULES.find(schema_format + "-string") != STRING_FORMAT_RULES.end()) {
968
0
            auto prim_name = schema_format + "-string";
969
0
            return _add_rule(rule_name, _add_primitive(prim_name, STRING_FORMAT_RULES.at(prim_name)));
970
0
        }
971
518k
        if (schema_type == "string" && (schema.contains("minLength") || schema.contains("maxLength"))) {
972
334
            std::string char_rule = _add_primitive("char", PRIMITIVE_RULES.at("char"));
973
334
            int min_len = schema.contains("minLength") ? schema["minLength"].get<int>() : 0;
974
334
            int max_len = schema.contains("maxLength") ? schema["maxLength"].get<int>() : std::numeric_limits<int>::max();
975
334
            return _add_rule(rule_name, "\"\\\"\" " + build_repetition(char_rule, min_len, max_len) + " \"\\\"\" space");
976
334
        }
977
518k
        if (schema_type == "integer" && (schema.contains("minimum") || schema.contains("exclusiveMinimum") || schema.contains("maximum") || schema.contains("exclusiveMaximum"))) {
978
3.95k
            int64_t min_value = std::numeric_limits<int64_t>::min();
979
3.95k
            int64_t max_value = std::numeric_limits<int64_t>::max();
980
3.95k
            if (schema.contains("minimum")) {
981
3.14k
                min_value = schema["minimum"].get<int64_t>();
982
3.14k
            } else if (schema.contains("exclusiveMinimum")) {
983
82
                min_value = schema["exclusiveMinimum"].get<int64_t>() + 1;
984
82
            }
985
3.95k
            if (schema.contains("maximum")) {
986
1.39k
                max_value = schema["maximum"].get<int64_t>();
987
2.56k
            } else if (schema.contains("exclusiveMaximum")) {
988
51
                max_value = schema["exclusiveMaximum"].get<int64_t>() - 1;
989
51
            }
990
3.95k
            std::stringstream out;
991
3.95k
            out << "(";
992
3.95k
            build_min_max_int(min_value, max_value, out);
993
3.95k
            out << ") space";
994
3.95k
            return _add_rule(rule_name, out.str());
995
3.95k
        }
996
514k
        if (schema.empty() || schema_type == "object") {
997
10.1k
            return _add_rule(rule_name, _add_primitive("object", PRIMITIVE_RULES.at("object")));
998
10.1k
        }
999
504k
        if (schema_type.is_null() && schema.is_object()) {
1000
            // No type constraint and no recognized structural keywords (e.g. {"description": "..."}).
1001
            // Per JSON Schema semantics this is equivalent to {} and accepts any value.
1002
11.7k
            return _add_rule(rule_name, _add_primitive("value", PRIMITIVE_RULES.at("value")));
1003
11.7k
        }
1004
492k
        if (!schema_type.is_string() || PRIMITIVE_RULES.find(schema_type.get<std::string>()) == PRIMITIVE_RULES.end()) {
1005
490k
            _errors.push_back("Unrecognized schema: " + schema.dump());
1006
490k
            return "";
1007
490k
        }
1008
        // TODO: support minimum, maximum, exclusiveMinimum, exclusiveMaximum at least for zero
1009
1.84k
        return _add_primitive(rule_name == "root" ? "root" : schema_type.get<std::string>(), PRIMITIVE_RULES.at(schema_type.get<std::string>()));
1010
492k
    }
1011
1012
8.41k
    void check_errors() {
1013
8.41k
        if (!_errors.empty()) {
1014
6.67k
            throw std::invalid_argument("JSON schema conversion failed:\n" + string_join(_errors, "\n"));
1015
6.67k
        }
1016
1.73k
        if (!_warnings.empty()) {
1017
116
            fprintf(stderr, "WARNING: JSON schema conversion was incomplete: %s\n", string_join(_warnings, "; ").c_str());
1018
116
        }
1019
1.73k
    }
1020
1021
1.73k
    std::string format_grammar() {
1022
1.73k
        std::stringstream ss;
1023
20.7k
        for (const auto & kv : _rules) {
1024
20.7k
            ss << kv.first << " ::= " << kv.second << '\n';
1025
20.7k
        }
1026
1.73k
        return ss.str();
1027
1.73k
    }
1028
};
1029
1030
// common_schema_info implementation (pimpl)
1031
1032
common_schema_info::common_schema_info()
1033
0
    : impl_(std::make_unique<common_schema_converter>(
1034
0
        [](const std::string &) { return json(); },
1035
0
        false)) {}
1036
1037
0
common_schema_info::~common_schema_info() = default;
1038
1039
0
common_schema_info::common_schema_info(common_schema_info &&) noexcept = default;
1040
0
common_schema_info & common_schema_info::operator=(common_schema_info &&) noexcept = default;
1041
1042
0
void common_schema_info::resolve_refs(nlohmann::ordered_json & schema) {
1043
0
    impl_->resolve_refs(schema, "");
1044
0
}
1045
1046
// Determines if a JSON schema can resolve to a string type through any path.
1047
// Some models emit raw string values rather than JSON-encoded strings for string parameters.
1048
// If any branch of the schema (via oneOf, anyOf, $ref, etc.) permits a string, this returns
1049
// true, allowing callers to handle the value as a raw string for simplicity.
1050
0
bool common_schema_info::resolves_to_string(const nlohmann::ordered_json & schema) {
1051
0
    std::unordered_set<std::string> visited_refs;
1052
1053
0
    std::function<bool(const json &)> check = [&](const json & s) -> bool {
1054
0
        if (!s.is_object()) {
1055
0
            return false;
1056
0
        }
1057
1058
        // Handle $ref
1059
0
        if (s.contains("$ref")) {
1060
0
            const std::string & ref = s["$ref"];
1061
0
            if (visited_refs.find(ref) != visited_refs.end()) {
1062
                // Circular reference, assume not a string to be safe
1063
0
                return false;
1064
0
            }
1065
0
            visited_refs.insert(ref);
1066
0
            auto it = impl_->_refs.find(ref);
1067
0
            if (it != impl_->_refs.end()) {
1068
0
                return check(it->second);
1069
0
            }
1070
0
            return false;
1071
0
        }
1072
1073
        // Check type field
1074
0
        if (s.contains("type")) {
1075
0
            const json & schema_type = s["type"];
1076
0
            if (schema_type.is_string()) {
1077
0
                if (schema_type == "string") {
1078
0
                    return true;
1079
0
                }
1080
0
            } else if (schema_type.is_array()) {
1081
                // Type can be an array like ["string", "null"]
1082
0
                for (const auto & t : schema_type) {
1083
0
                    if (t == "string") {
1084
0
                        return true;
1085
0
                    }
1086
0
                }
1087
0
            }
1088
0
        }
1089
1090
        // Check oneOf/anyOf - if any alternative can be a string
1091
0
        if (s.contains("oneOf")) {
1092
0
            for (const auto & alt : s["oneOf"]) {
1093
0
                if (check(alt)) {
1094
0
                    return true;
1095
0
                }
1096
0
            }
1097
0
        }
1098
0
        if (s.contains("anyOf")) {
1099
0
            for (const auto & alt : s["anyOf"]) {
1100
0
                if (check(alt)) {
1101
0
                    return true;
1102
0
                }
1103
0
            }
1104
0
        }
1105
1106
        // Check allOf - all components must be compatible with string type
1107
0
        if (s.contains("allOf")) {
1108
0
            bool all_string = true;
1109
0
            for (const auto & component : s["allOf"]) {
1110
0
                if (!check(component)) {
1111
0
                    all_string = false;
1112
0
                    break;
1113
0
                }
1114
0
            }
1115
0
            if (all_string) {
1116
0
                return true;
1117
0
            }
1118
0
        }
1119
1120
        // Check const - if the constant value is a string
1121
0
        if (s.contains("const")) {
1122
0
            if (s["const"].is_string()) {
1123
0
                return true;
1124
0
            }
1125
0
        }
1126
1127
        // Check enum - if any enum value is a string
1128
0
        if (s.contains("enum")) {
1129
0
            for (const auto & val : s["enum"]) {
1130
0
                if (val.is_string()) {
1131
0
                    return true;
1132
0
                }
1133
0
            }
1134
0
        }
1135
1136
        // String-specific keywords imply string type
1137
0
        if (s.contains("pattern") || s.contains("minLength") || s.contains("maxLength")) {
1138
0
            return true;
1139
0
        }
1140
1141
        // Check format - many formats imply string
1142
0
        if (s.contains("format")) {
1143
0
            const std::string & fmt = s["format"];
1144
0
            if (fmt == "date" || fmt == "time" || fmt == "date-time" ||
1145
0
                fmt == "uri" || fmt == "email" || fmt == "hostname" ||
1146
0
                fmt == "ipv4" || fmt == "ipv6" || fmt == "uuid" ||
1147
0
                fmt.find("uuid") == 0) {
1148
0
                return true;
1149
0
            }
1150
0
        }
1151
1152
0
        return false;
1153
0
    };
1154
1155
0
    return check(schema);
1156
0
}
1157
1158
8.54k
std::string json_schema_to_grammar(const json & schema, bool force_gbnf) {
1159
#ifdef LLAMA_USE_LLGUIDANCE
1160
    if (!force_gbnf) {
1161
        return "%llguidance {}\nstart: %json " + schema.dump();
1162
    }
1163
#else
1164
8.54k
    (void)force_gbnf;
1165
8.54k
#endif // LLAMA_USE_LLGUIDANCE
1166
8.54k
    return build_grammar([&](const common_grammar_builder & callbacks) {
1167
8.54k
        auto copy = schema;
1168
8.54k
        callbacks.resolve_refs(copy);
1169
8.54k
        callbacks.add_schema("", copy);
1170
8.54k
    });
1171
8.54k
}
1172
1173
8.54k
std::string build_grammar(const std::function<void(const common_grammar_builder &)> & cb, const common_grammar_options & options) {
1174
8.54k
    common_schema_converter converter([&](const std::string &) { return json(); }, options.dotall);
1175
8.54k
    common_grammar_builder builder {
1176
8.54k
        /* .add_rule = */ [&](const std::string & name, const std::string & rule) {
1177
0
            return converter._add_rule(name, rule);
1178
0
        },
1179
8.54k
        /* .add_schema = */ [&](const std::string & name, const nlohmann::ordered_json & schema) {
1180
8.52k
            return converter.visit(schema, name == "root" ? "" : name);
1181
8.52k
        },
1182
8.54k
        /* .resolve_refs = */ [&](nlohmann::ordered_json & schema) {
1183
8.54k
            converter.resolve_refs(schema, "");
1184
8.54k
        }
1185
8.54k
    };
1186
8.54k
    cb(builder);
1187
8.54k
    converter.check_errors();
1188
8.54k
    return converter.format_grammar();
1189
8.54k
}