Coverage Report

Created: 2026-04-12 06:40

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
83.5k
static std::string build_repetition(const std::string & item_rule, int min_items, int max_items, const std::string & separator_rule = "") {
18
83.5k
    auto has_max = max_items != std::numeric_limits<int>::max();
19
20
83.5k
    if (max_items == 0) {
21
1.25k
        return "";
22
1.25k
    }
23
82.3k
    if (min_items == 0 && max_items == 1) {
24
20.5k
        return item_rule + "?";
25
20.5k
    }
26
27
61.7k
    if (separator_rule.empty()) {
28
57.2k
        if (min_items == 1 && !has_max) {
29
9.61k
            return item_rule + "+";
30
9.61k
        }
31
47.6k
        if (min_items == 0 && !has_max) {
32
6.51k
            return item_rule + "*";
33
6.51k
        }
34
41.1k
        return item_rule + "{" + std::to_string(min_items) + "," + (has_max ? std::to_string(max_items) : "") + "}";
35
47.6k
    }
36
37
4.51k
    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.51k
    if (min_items == 0) {
39
2.99k
        result = "(" + result + ")?";
40
2.99k
    }
41
4.51k
    return result;
42
61.7k
}
43
44
15.2k
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
15.2k
    auto has_min = min_value != std::numeric_limits<int64_t>::min();
46
15.2k
    auto has_max = max_value != std::numeric_limits<int64_t>::max();
47
48
108k
    auto digit_range = [&](char from, char to) {
49
108k
        out << "[";
50
108k
        if (from == to) {
51
52.2k
            out << from;
52
56.3k
        } else {
53
56.3k
            out << from << "-" << to;
54
56.3k
        }
55
108k
        out << "]";
56
108k
    };
57
60.9k
    auto more_digits = [&](int min_digits, int max_digits) {
58
60.9k
        out << "[0-9]";
59
60.9k
        if (min_digits == max_digits && min_digits == 1) {
60
7.15k
            return;
61
7.15k
        }
62
53.7k
        out << "{";
63
53.7k
        out << min_digits;
64
53.7k
        if (max_digits != min_digits) {
65
19.4k
            out << ",";
66
19.4k
            if (max_digits != std::numeric_limits<int>::max()) {
67
19.4k
                out << max_digits;
68
19.4k
            }
69
19.4k
        }
70
53.7k
        out << "}";
71
53.7k
    };
72
15.2k
    std::function<void(const std::string_view &, const std::string_view &)> uniform_range =
73
48.4k
        [&](const std::string_view & from, const std::string_view & to) {
74
48.4k
            size_t i = 0;
75
49.6k
            while (i < from.length() && i < to.length() && from[i] == to[i]) {
76
1.17k
                i++;
77
1.17k
            }
78
48.4k
            if (i > 0) {
79
1.00k
                out << "\"" << from.substr(0, i) << "\"";
80
1.00k
            }
81
48.4k
            if (i < from.length() && i < to.length()) {
82
47.9k
                if (i > 0) {
83
665
                    out << " ";
84
665
                }
85
47.9k
                auto sub_len = from.length() - i - 1;
86
47.9k
                if (sub_len > 0) {
87
40.4k
                    auto from_sub = from.substr(i + 1);
88
40.4k
                    auto to_sub = to.substr(i + 1);
89
40.4k
                    auto sub_zeros = string_repeat("0", sub_len);
90
40.4k
                    auto sub_nines = string_repeat("9", sub_len);
91
92
40.4k
                    auto to_reached = false;
93
40.4k
                    out << "(";
94
40.4k
                    if (from_sub == sub_zeros) {
95
39.1k
                        digit_range(from[i], to[i] - 1);
96
39.1k
                        out << " ";
97
39.1k
                        more_digits(sub_len, sub_len);
98
39.1k
                    } else {
99
1.29k
                        out << "[" << from[i] << "] ";
100
1.29k
                        out << "(";
101
1.29k
                        uniform_range(from_sub, sub_nines);
102
1.29k
                        out << ")";
103
1.29k
                        if (from[i] < to[i] - 1) {
104
1.10k
                            out << " | ";
105
1.10k
                            if (to_sub == sub_nines) {
106
1.02k
                                digit_range(from[i] + 1, to[i]);
107
1.02k
                                to_reached = true;
108
1.02k
                            } else {
109
87
                                digit_range(from[i] + 1, to[i] - 1);
110
87
                            }
111
1.10k
                            out << " ";
112
1.10k
                            more_digits(sub_len, sub_len);
113
1.10k
                        }
114
1.29k
                    }
115
40.4k
                    if (!to_reached) {
116
39.4k
                        out << " | ";
117
39.4k
                        digit_range(to[i], to[i]);
118
39.4k
                        out << " ";
119
39.4k
                        uniform_range(sub_zeros, to_sub);
120
39.4k
                    }
121
40.4k
                    out << ")";
122
40.4k
                } else {
123
7.51k
                    out << "[" << from[i] << "-" << to[i] << "]";
124
7.51k
                }
125
47.9k
            }
126
48.4k
        };
127
128
15.2k
    if (has_min && has_max) {
129
1.77k
        if (min_value < 0 && max_value < 0) {
130
217
            out << "\"-\" (";
131
217
            build_min_max_int(-max_value, -min_value, out, decimals_left, /* top_level= */ true);
132
217
            out << ")";
133
217
            return;
134
217
        }
135
136
1.55k
        if (min_value < 0) {
137
34
            out << "\"-\" (";
138
34
            build_min_max_int(0, -min_value, out, decimals_left, /* top_level= */ true);
139
34
            out << ") | ";
140
34
            min_value = 0;
141
34
        }
142
143
1.55k
        auto min_s = std::to_string(min_value);
144
1.55k
        auto max_s = std::to_string(max_value);
145
1.55k
        auto min_digits = min_s.length();
146
1.55k
        auto max_digits = max_s.length();
147
148
7.77k
        for (auto digits = min_digits; digits < max_digits; digits++) {
149
6.21k
            uniform_range(min_s, string_repeat("9", digits));
150
6.21k
            min_s = "1" + string_repeat("0", digits);
151
6.21k
            out << " | ";
152
6.21k
        }
153
1.55k
        uniform_range(min_s, max_s);
154
1.55k
        return;
155
1.77k
    }
156
157
13.4k
    auto less_decimals = std::max(decimals_left - 1, 1);
158
159
13.4k
    if (has_min) {
160
12.0k
        if (min_value < 0) {
161
221
            out << "\"-\" (";
162
221
            build_min_max_int(std::numeric_limits<int64_t>::min(), -min_value, out, decimals_left, /* top_level= */ false);
163
221
            out << ") | [0] | [1-9] ";
164
221
            more_digits(0, decimals_left - 1);
165
11.8k
        } else if (min_value == 0) {
166
878
            if (top_level) {
167
507
                out << "[0] | [1-9] ";
168
507
                more_digits(0, less_decimals);
169
507
            } else {
170
371
                more_digits(1, decimals_left);
171
371
            }
172
10.9k
        } else if (min_value <= 9) {
173
855
            char c = '0' + min_value;
174
855
            auto range_start = top_level ? '1' : '0';
175
855
            if (c > range_start) {
176
828
                digit_range(range_start, c - 1);
177
828
                out << " ";
178
828
                more_digits(1, less_decimals);
179
828
                out << " | ";
180
828
            }
181
855
            digit_range(c, '9');
182
855
            out << " ";
183
855
            more_digits(0, less_decimals);
184
10.0k
        } else {
185
10.0k
            auto min_s = std::to_string(min_value);
186
10.0k
            auto len = min_s.length();
187
10.0k
            auto c = min_s[0];
188
189
10.0k
            if (c > '1') {
190
8.46k
                digit_range(top_level ? '1' : '0', c - 1);
191
8.46k
                out << " ";
192
8.46k
                more_digits(len, less_decimals);
193
8.46k
                out << " | ";
194
8.46k
            }
195
10.0k
            digit_range(c, c);
196
10.0k
            out << " (";
197
10.0k
            build_min_max_int(std::stoll(min_s.substr(1)), std::numeric_limits<int64_t>::max(), out, less_decimals, /* top_level= */ false);
198
10.0k
            out << ")";
199
10.0k
            if (c < '9') {
200
8.67k
                out << " | ";
201
8.67k
                digit_range(c + 1, '9');
202
8.67k
                out << " ";
203
8.67k
                more_digits(len - 1, less_decimals);
204
8.67k
            }
205
10.0k
        }
206
12.0k
        return;
207
12.0k
    }
208
209
1.43k
    if (has_max) {
210
1.43k
        if (max_value >= 0) {
211
995
            if (top_level) {
212
775
                out << "\"-\" [1-9] ";
213
775
                more_digits(0, less_decimals);
214
775
                out << " | ";
215
775
            }
216
995
            build_min_max_int(0, max_value, out, decimals_left, /* top_level= */ true);
217
995
        } else {
218
438
            out << "\"-\" (";
219
438
            build_min_max_int(-max_value, std::numeric_limits<int64_t>::max(), out, decimals_left, /* top_level= */ false);
220
438
            out << ")";
221
438
        }
222
1.43k
        return;
223
1.43k
    }
224
225
5
    throw std::runtime_error("At least one of min_value or max_value must be set");
226
1.43k
}
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
444k
static bool is_reserved_name(const std::string & name) {
260
444k
    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
444k
    return RESERVED_NAMES.find(name) != RESERVED_NAMES.end();
272
444k
}
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
238k
static std::string replacePattern(const std::string & input, const std::regex & regex, const std::function<std::string(const std::smatch  &)> & replacement) {
285
238k
    std::smatch match;
286
238k
    std::string result;
287
288
238k
    std::string::const_iterator searchStart(input.cbegin());
289
238k
    std::string::const_iterator searchEnd(input.cend());
290
291
728k
    while (std::regex_search(searchStart, searchEnd, match, regex)) {
292
489k
        result.append(searchStart, searchStart + match.position());
293
489k
        result.append(replacement(match));
294
489k
        searchStart = match.suffix().first;
295
489k
    }
296
297
238k
    result.append(searchStart, searchEnd);
298
299
238k
    return result;
300
238k
}
301
302
238k
static std::string format_literal(const std::string & literal) {
303
489k
    std::string escaped = replacePattern(literal, GRAMMAR_LITERAL_ESCAPE_RE, [&](const std::smatch & match) {
304
489k
        char c = match.str()[0];
305
489k
        return GRAMMAR_LITERAL_ESCAPES.at(c);
306
489k
    });
307
238k
    return "\"" + escaped + "\"";
308
238k
}
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
1.06M
    std::string _add_rule(const std::string & name, const std::string & rule) {
325
1.06M
        std::string esc_name = regex_replace(name, INVALID_RULE_CHARS_RE, "-");
326
1.06M
        if (_rules.find(esc_name) == _rules.end() || _rules[esc_name] == rule) {
327
1.03M
            _rules[esc_name] = rule;
328
1.03M
            return esc_name;
329
1.03M
        }
330
25.0k
        int i = 0;
331
69.0k
        while (_rules.find(esc_name + std::to_string(i)) != _rules.end() && _rules[esc_name + std::to_string(i)] != rule) {
332
43.9k
            i++;
333
43.9k
        }
334
25.0k
        std::string key = esc_name + std::to_string(i);
335
25.0k
        _rules[key] = rule;
336
25.0k
        return key;
337
1.06M
    }
338
339
7.76k
    std::string _generate_union_rule(const std::string & name, const std::vector<json> & alt_schemas) {
340
7.76k
        std::vector<std::string> rules;
341
7.76k
        rules.reserve(alt_schemas.size());
342
160k
        for (size_t i = 0; i < alt_schemas.size(); i++) {
343
153k
            rules.push_back(visit(alt_schemas[i], name + (name.empty() ? "alternative-" : "-") + std::to_string(i)));
344
153k
        }
345
7.76k
        return string_join(rules, " | ");
346
7.76k
    }
347
348
5.53k
    std::string _visit_pattern(const std::string & pattern, const std::string & name) {
349
5.53k
        if (!(pattern.front() == '^' && pattern.back() == '$')) {
350
1.33k
            _errors.push_back("Pattern must start with '^' and end with '$'");
351
1.33k
            return "";
352
1.33k
        }
353
4.20k
        std::string sub_pattern = pattern.substr(1, pattern.length() - 2);
354
4.20k
        std::unordered_map<std::string, std::string> sub_rule_ids;
355
356
4.20k
        size_t i = 0;
357
4.20k
        size_t length = sub_pattern.length();
358
359
4.20k
        using literal_or_rule = std::pair<std::string, bool>;
360
769k
        auto to_rule = [&](const literal_or_rule & ls) {
361
769k
            auto is_literal = ls.second;
362
769k
            auto s = ls.first;
363
769k
            return is_literal ? "\"" + s + "\"" : s;
364
769k
        };
365
88.3k
        std::function<literal_or_rule()> transform = [&]() -> literal_or_rule {
366
88.3k
            size_t start = i;
367
88.3k
            std::vector<literal_or_rule> seq;
368
369
252k
            auto get_dot = [&]() {
370
252k
                std::string rule;
371
252k
                if (_dotall) {
372
0
                    rule = "[\\U00000000-\\U0010FFFF]";
373
252k
                } else {
374
252k
                    rule = "[^\\x0A\\x0D]";
375
252k
                }
376
252k
                return _add_rule("dot", rule);
377
252k
            };
378
379
            // Joins the sequence, merging consecutive literals together.
380
88.3k
            auto join_seq = [&]() {
381
86.9k
                std::vector<literal_or_rule> ret;
382
383
86.9k
                std::string literal;
384
626k
                auto flush_literal = [&]() {
385
626k
                    if (literal.empty()) {
386
494k
                        return false;
387
494k
                    }
388
132k
                    ret.emplace_back(literal, true);
389
132k
                    literal.clear();
390
132k
                    return true;
391
626k
                };
392
393
684k
                for (const auto & item : seq) {
394
684k
                    auto is_literal = item.second;
395
684k
                    if (is_literal) {
396
145k
                        literal += item.first;
397
539k
                    } else {
398
539k
                        flush_literal();
399
539k
                        ret.push_back(item);
400
539k
                    }
401
684k
                }
402
86.9k
                flush_literal();
403
404
86.9k
                std::vector<std::string> results;
405
86.9k
                results.reserve(ret.size());
406
671k
                for (const auto & item : ret) {
407
671k
                    results.push_back(to_rule(item));
408
671k
                }
409
86.9k
                return std::make_pair(string_join(results, " "), false);
410
86.9k
            };
411
412
860k
            while (i < length) {
413
780k
                char c = sub_pattern[i];
414
780k
                if (c == '.') {
415
252k
                    seq.emplace_back(get_dot(), false);
416
252k
                    i++;
417
527k
                } else if (c == '(') {
418
84.1k
                    i++;
419
84.1k
                    if (i < length && sub_pattern[i] == '?') {
420
101
                        if (i + 1 < length && sub_pattern[i + 1] == ':') {
421
28
                            i += 2; // skip "?:" for non-capturing group, treat as regular group
422
73
                        } else {
423
                            // lookahead/lookbehind (?=, ?!, ?<=, ?<!) - not supported
424
73
                            _warnings.push_back("Unsupported pattern syntax");
425
                            // skip to matching ')' to avoid UB on empty seq
426
73
                            int depth = 1;
427
6.64k
                            while (i < length && depth > 0) {
428
6.57k
                                if (sub_pattern[i] == '\\' && i + 1 < length) {
429
40
                                    i += 2; // skip escaped character
430
6.53k
                                } else {
431
6.53k
                                    if (sub_pattern[i] == '(') depth++;
432
6.03k
                                    else if (sub_pattern[i] == ')') depth--;
433
6.53k
                                    i++;
434
6.53k
                                }
435
6.57k
                            }
436
73
                            continue;
437
73
                        }
438
101
                    }
439
84.1k
                    seq.emplace_back("(" + to_rule(transform()) + ")", false);
440
443k
                } else if (c == ')') {
441
6.49k
                    i++;
442
6.49k
                    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
6.49k
                    return join_seq();
446
437k
                } else if (c == '[') {
447
14.7k
                    std::string square_brackets = std::string(1, c);
448
14.7k
                    i++;
449
1.24M
                    while (i < length && sub_pattern[i] != ']') {
450
1.22M
                        if (sub_pattern[i] == '\\') {
451
47.0k
                            square_brackets += sub_pattern.substr(i, 2);
452
47.0k
                            i += 2;
453
1.17M
                        } else {
454
1.17M
                            square_brackets += sub_pattern[i];
455
1.17M
                            i++;
456
1.17M
                        }
457
1.22M
                    }
458
14.7k
                    if (i >= length) {
459
1.26k
                        _errors.push_back("Unbalanced square brackets");
460
1.26k
                    }
461
14.7k
                    square_brackets += ']';
462
14.7k
                    i++;
463
14.7k
                    seq.emplace_back(square_brackets, false);
464
422k
                } else if (c == '|') {
465
137k
                    seq.emplace_back("|", false);
466
137k
                    i++;
467
284k
                } else if (c == '*' || c == '+' || c == '?') {
468
9.85k
                    seq.back() = std::make_pair(to_rule(seq.back()) + c, false);
469
9.85k
                    i++;
470
275k
                } else if (c == '{') {
471
72.3k
                    std::string curly_brackets = std::string(1, c);
472
72.3k
                    i++;
473
5.41M
                    while (i < length && sub_pattern[i] != '}') {
474
5.34M
                        curly_brackets += sub_pattern[i];
475
5.34M
                        i++;
476
5.34M
                    }
477
72.3k
                    if (i >= length) {
478
1.02k
                        _errors.push_back("Unbalanced curly brackets");
479
1.02k
                    }
480
72.3k
                    curly_brackets += '}';
481
72.3k
                    i++;
482
72.3k
                    auto nums = string_split(curly_brackets.substr(1, curly_brackets.length() - 2), ",");
483
72.3k
                    int min_times = 0;
484
72.3k
                    int max_times = std::numeric_limits<int>::max();
485
72.3k
                    try {
486
72.3k
                        if (nums.size() == 1) {
487
9.93k
                            min_times = max_times = std::stoi(nums[0]);
488
62.4k
                        } else if (nums.size() != 2) {
489
3.39k
                            _errors.push_back("Wrong number of values in curly brackets");
490
59.0k
                        } else {
491
59.0k
                            if (!nums[0].empty()) {
492
43.4k
                                min_times = std::stoi(nums[0]);
493
43.4k
                            }
494
59.0k
                            if (!nums[1].empty()) {
495
46.4k
                                max_times = std::stoi(nums[1]);
496
46.4k
                            }
497
59.0k
                        }
498
72.3k
                    } catch (const std::invalid_argument & e) {
499
959
                        _errors.push_back("Invalid number in curly brackets");
500
959
                        return std::make_pair("", false);
501
959
                    }
502
71.3k
                    auto &last = seq.back();
503
71.3k
                    auto &sub = last.first;
504
71.3k
                    auto sub_is_literal = last.second;
505
506
71.3k
                    if (!sub_is_literal) {
507
19.2k
                        std::string & sub_id = sub_rule_ids[sub];
508
19.2k
                        if (sub_id.empty()) {
509
6.24k
                            sub_id = _add_rule(name + "-" + std::to_string(sub_rule_ids.size()), sub);
510
6.24k
                        }
511
19.2k
                        sub = sub_id;
512
19.2k
                    }
513
71.3k
                    seq.back().first = build_repetition(
514
71.3k
                        sub_is_literal ? "\"" + sub + "\"" : sub,
515
71.3k
                        min_times,
516
71.3k
                        max_times,
517
71.3k
                        ""
518
71.3k
                    );
519
71.3k
                    seq.back().second = false;
520
202k
                } else {
521
202k
                    std::string literal;
522
43.6M
                    auto is_non_literal = [&](char c) {
523
43.6M
                        return NON_LITERAL_SET.find(c) != NON_LITERAL_SET.end();
524
43.6M
                    };
525
22.1M
                    while (i < length) {
526
22.1M
                        if (sub_pattern[i] == '\\' && i < length - 1) {
527
50.7k
                            char next = sub_pattern[i + 1];
528
50.7k
                            if (ESCAPED_IN_REGEXPS_BUT_NOT_IN_LITERALS.find(next) != ESCAPED_IN_REGEXPS_BUT_NOT_IN_LITERALS.end()) {
529
373
                                i++;
530
373
                                literal += sub_pattern[i];
531
373
                                i++;
532
50.3k
                            } else {
533
50.3k
                                literal += sub_pattern.substr(i, 2);
534
50.3k
                                i += 2;
535
50.3k
                            }
536
22.0M
                        } else if (sub_pattern[i] == '"') {
537
706
                            literal += "\\\"";
538
706
                            i++;
539
22.0M
                        } else if (!is_non_literal(sub_pattern[i]) &&
540
21.8M
                                (i == length - 1 || literal.empty() || sub_pattern[i + 1] == '.' || !is_non_literal(sub_pattern[i + 1]))) {
541
21.8M
                            literal += sub_pattern[i];
542
21.8M
                            i++;
543
21.8M
                        } else {
544
201k
                            break;
545
201k
                        }
546
22.1M
                    }
547
202k
                    if (!literal.empty()) {
548
202k
                        seq.emplace_back(literal, true);
549
202k
                    }
550
202k
                }
551
780k
            }
552
80.8k
            return join_seq();
553
88.3k
        };
554
4.20k
        return _add_rule(name, "\"\\\"\" (" + to_rule(transform()) + ") \"\\\"\" space");
555
5.53k
    }
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
9.35k
    std::string _resolve_ref(const std::string & ref) {
627
9.35k
        auto it = ref.find('#');
628
9.35k
        std::string ref_fragment = it != std::string::npos ? ref.substr(it + 1) : ref;
629
9.35k
        static const std::regex nonalphanumeric_regex(R"([^a-zA-Z0-9-]+)");
630
9.35k
        std::string ref_name = "ref" + std::regex_replace(ref_fragment, nonalphanumeric_regex, "-");
631
9.35k
        if (_rules.find(ref_name) == _rules.end() && _refs_being_resolved.find(ref) == _refs_being_resolved.end()) {
632
3.51k
            _refs_being_resolved.insert(ref);
633
3.51k
            json resolved = _refs[ref];
634
3.51k
            ref_name = visit(resolved, ref_name);
635
3.51k
            _refs_being_resolved.erase(ref);
636
3.51k
        }
637
9.35k
        return ref_name;
638
9.35k
    }
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
5.71k
    {
646
5.71k
        std::vector<std::string> required_props;
647
5.71k
        std::vector<std::string> optional_props;
648
5.71k
        std::unordered_map<std::string, std::string> prop_kv_rule_names;
649
5.71k
        std::vector<std::string> prop_names;
650
223k
        for (const auto & kv : properties) {
651
223k
            const auto &prop_name = kv.first;
652
223k
            const auto &prop_schema = kv.second;
653
654
223k
            std::string prop_rule_name = visit(prop_schema, name + (name.empty() ? "" : "-") + prop_name);
655
223k
            prop_kv_rule_names[prop_name] = _add_rule(
656
223k
                name + (name.empty() ? "" : "-") + prop_name + "-kv",
657
223k
                format_literal(json(prop_name).dump()) + " space \":\" space " + prop_rule_name
658
223k
            );
659
223k
            if (required.find(prop_name) != required.end()) {
660
199k
                required_props.push_back(prop_name);
661
199k
            } else {
662
24.1k
                optional_props.push_back(prop_name);
663
24.1k
            }
664
223k
            prop_names.push_back(prop_name);
665
223k
        }
666
5.71k
        if ((additional_properties.is_boolean() && additional_properties.get<bool>()) || additional_properties.is_object()) {
667
459
            std::string sub_name = name + (name.empty() ? "" : "-") + "additional";
668
459
            std::string value_rule =
669
459
                additional_properties.is_object() ? visit(additional_properties, sub_name + "-value")
670
459
                : _add_primitive("value", PRIMITIVE_RULES.at("value"));
671
672
459
            auto key_rule =
673
459
                prop_names.empty() ? _add_primitive("string", PRIMITIVE_RULES.at("string"))
674
459
                : _add_rule(sub_name + "-k", _not_strings(prop_names));
675
459
            std::string kv_rule = _add_rule(sub_name + "-kv", key_rule + " \":\" space " + value_rule);
676
459
            prop_kv_rule_names["*"] = kv_rule;
677
459
            optional_props.push_back("*");
678
459
        }
679
680
5.71k
        std::string rule = "\"{\" space ";
681
204k
        for (size_t i = 0; i < required_props.size(); i++) {
682
199k
            if (i > 0) {
683
198k
                rule += " \",\" space ";
684
198k
            }
685
199k
            rule += prop_kv_rule_names[required_props[i]];
686
199k
        }
687
688
5.71k
        if (!optional_props.empty()) {
689
3.63k
            rule += " (";
690
3.63k
            if (!required_props.empty()) {
691
28
                rule += " \",\" space ( ";
692
28
            }
693
694
517k
            std::function<std::string(const std::vector<std::string> &, bool)> get_recursive_refs = [&](const std::vector<std::string> & ks, bool first_is_optional) {
695
517k
                std::string res;
696
517k
                if (ks.empty()) {
697
0
                    return res;
698
0
                }
699
517k
                const std::string& k = ks[0];
700
517k
                std::string kv_rule_name = prop_kv_rule_names[k];
701
517k
                std::string comma_ref = "( \",\" space " + kv_rule_name + " )";
702
517k
                if (first_is_optional) {
703
493k
                    res = comma_ref + (k == "*" ? "*" : "?");
704
493k
                } else {
705
23.0k
                    res = kv_rule_name + (k == "*" ? " " + comma_ref + "*" : "");
706
23.0k
                }
707
517k
                if (ks.size() > 1) {
708
493k
                    res += " " + _add_rule(
709
493k
                        name + (name.empty() ? "" : "-") + k + "-rest",
710
493k
                        get_recursive_refs(std::vector<std::string>(ks.begin() + 1, ks.end()), true)
711
493k
                    );
712
493k
                }
713
517k
                return res;
714
517k
            };
715
716
26.7k
            for (size_t i = 0; i < optional_props.size(); i++) {
717
23.0k
                if (i > 0) {
718
19.4k
                    rule += " | ";
719
19.4k
                }
720
23.0k
                rule += get_recursive_refs(std::vector<std::string>(optional_props.begin() + i, optional_props.end()), false);
721
23.0k
            }
722
3.63k
            if (!required_props.empty()) {
723
28
                rule += " )";
724
28
            }
725
3.63k
            rule += " )?";
726
3.63k
        }
727
728
5.71k
        rule += " \"}\" space";
729
730
5.71k
        return rule;
731
5.71k
    }
732
733
32.9k
    std::string _add_primitive(const std::string & name, const BuiltinRule & rule) {
734
32.9k
        auto n = _add_rule(name, rule.content);
735
59.5k
        for (const auto & dep : rule.deps) {
736
59.5k
            BuiltinRule dep_rule;
737
59.5k
            auto it = PRIMITIVE_RULES.find(dep);
738
59.5k
            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
59.5k
            if (_rules.find(dep) == _rules.end()) {
746
18.4k
                _add_primitive(dep, it->second);
747
18.4k
            }
748
59.5k
        }
749
32.9k
        return n;
750
32.9k
    }
751
752
public:
753
    common_schema_converter(
754
        const std::function<json(const std::string &)> & fetch_json,
755
        bool dotall)
756
7.60k
          : _fetch_json(fetch_json), _dotall(dotall)
757
7.60k
    {
758
7.60k
        _rules["space"] = SPACE_RULE;
759
7.60k
    }
760
761
10.8k
    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
3.53M
        std::function<void(json &)> visit_refs = [&](json & n) {
768
3.53M
            if (n.is_array()) {
769
3.46M
                for (auto & x : n) {
770
3.46M
                    visit_refs(x);
771
3.46M
                }
772
3.52M
            } else if (n.is_object()) {
773
61.5k
                if (n.contains("$ref")) {
774
20.9k
                    std::string ref = n["$ref"];
775
20.9k
                    if (_refs.find(ref) == _refs.end()) {
776
18.7k
                        json target;
777
18.7k
                        if (ref.find("https://") == 0) {
778
6.54k
                            std::string base_url = ref.substr(0, ref.find('#'));
779
6.54k
                            auto it = _refs.find(base_url);
780
6.54k
                            if (it != _refs.end()) {
781
3.33k
                                target = it->second;
782
3.33k
                            } else {
783
                                // Fetch the referenced schema and resolve its refs
784
3.21k
                                auto referenced = _fetch_json(ref);
785
3.21k
                                resolve_refs(referenced, base_url);
786
3.21k
                                _refs[base_url] = referenced;
787
3.21k
                            }
788
6.54k
                            if (ref.find('#') == std::string::npos || ref.substr(ref.find('#') + 1).empty()) {
789
4.06k
                                return;
790
4.06k
                            }
791
12.2k
                        } else if (ref.find("#/") == 0) {
792
3.52k
                            target = schema;
793
3.52k
                            n["$ref"] = url + ref;
794
3.52k
                            ref = url + ref;
795
8.71k
                        } else {
796
8.71k
                            _errors.push_back("Unsupported ref: " + ref);
797
8.71k
                            return;
798
8.71k
                        }
799
6.01k
                        std::string pointer = ref.substr(ref.find('#') + 1);
800
6.01k
                        std::vector<std::string> tokens = string_split(pointer, "/");
801
7.70k
                        for (size_t i = 1; i < tokens.size(); ++i) {
802
6.12k
                            const std::string& sel = tokens[i];
803
6.12k
                            if (target.is_object() && target.contains(sel)) {
804
1.16k
                                target = target[sel];
805
4.96k
                            } else if (target.is_array()) {
806
1.61k
                                size_t sel_index;
807
1.61k
                                try {
808
1.61k
                                    sel_index = std::stoull(sel);
809
1.61k
                                } catch (const std::invalid_argument & e) {
810
997
                                    sel_index = target.size();
811
997
                                }
812
1.61k
                                if (sel_index >= target.size()) {
813
1.09k
                                    _errors.push_back("Error resolving ref " + ref + ": " + sel + " not in " + target.dump());
814
1.09k
                                    return;
815
1.09k
                                }
816
517
                                target = target[sel_index];
817
3.34k
                            } else {
818
3.34k
                                _errors.push_back("Error resolving ref " + ref + ": " + sel + " not in " + target.dump());
819
3.34k
                                return;
820
3.34k
                            }
821
6.12k
                        }
822
1.57k
                        _refs[ref] = target;
823
1.57k
                    }
824
40.6k
                } else {
825
58.8k
                    for (const auto & kv : n.items()) {
826
58.8k
                        visit_refs(kv.value());
827
58.8k
                    }
828
40.6k
                }
829
61.5k
            }
830
3.53M
        };
831
832
10.8k
        visit_refs(schema);
833
10.8k
    }
834
835
15.2k
    static std::string _generate_constant_rule(const json & value) {
836
15.2k
        return format_literal(value.dump());
837
15.2k
    }
838
839
444k
    std::string visit(const json & schema, const std::string & name) {
840
444k
        json schema_type = schema.contains("type") ? schema["type"] : json();
841
444k
        std::string schema_format = schema.contains("format") ? schema["format"].get<std::string>() : "";
842
444k
        std::string rule_name = is_reserved_name(name) ? name + "-" : name.empty() ? "root" : name;
843
844
444k
        if (schema.contains("$ref")) {
845
9.35k
            return _add_rule(rule_name, _resolve_ref(schema["$ref"]));
846
9.35k
        }
847
435k
        if (schema.contains("oneOf") || schema.contains("anyOf")) {
848
1.26k
            std::vector<json> alt_schemas = schema.contains("oneOf") ? schema["oneOf"].get<std::vector<json>>() : schema["anyOf"].get<std::vector<json>>();
849
1.26k
            return _add_rule(rule_name, _generate_union_rule(name, alt_schemas));
850
1.26k
        }
851
434k
        if (schema_type.is_array()) {
852
6.53k
            std::vector<json> schema_types;
853
67.2k
            for (const auto & t : schema_type) {
854
67.2k
                json schema_copy(schema);
855
67.2k
                schema_copy["type"] = t;
856
67.2k
                schema_types.push_back(schema_copy);
857
67.2k
            }
858
6.53k
            return _add_rule(rule_name, _generate_union_rule(name, schema_types));
859
6.53k
        }
860
427k
        if (schema.contains("const")) {
861
506
            return _add_rule(rule_name, _generate_constant_rule(schema["const"]) + " space");
862
506
        }
863
427k
        if (schema.contains("enum")) {
864
3.00k
            std::vector<std::string> enum_values;
865
6.95k
            for (const auto & v : schema["enum"]) {
866
6.95k
                enum_values.push_back(_generate_constant_rule(v));
867
6.95k
            }
868
3.00k
            return _add_rule(rule_name, "(" + string_join(enum_values, " | ") + ") space");
869
3.00k
        }
870
424k
        if ((schema_type.is_null() || schema_type == "object")
871
370k
                && (schema.contains("properties") ||
872
367k
                    (schema.contains("additionalProperties") && schema["additionalProperties"] != true))) {
873
3.90k
            std::unordered_set<std::string> required;
874
3.90k
            if (schema.contains("required") && schema["required"].is_array()) {
875
12.3k
                for (const auto & item : schema["required"]) {
876
12.3k
                    if (item.is_string()) {
877
6.77k
                        required.insert(item.get<std::string>());
878
6.77k
                    }
879
12.3k
                }
880
262
            }
881
3.90k
            std::vector<std::pair<std::string, json>> properties;
882
3.90k
            if (schema.contains("properties")) {
883
23.5k
                for (const auto & prop : schema["properties"].items()) {
884
23.5k
                    properties.emplace_back(prop.key(), prop.value());
885
23.5k
                }
886
3.26k
            }
887
3.90k
            return _add_rule(rule_name,
888
3.90k
                _build_object_rule(
889
3.90k
                    properties, required, name,
890
3.90k
                    schema.contains("additionalProperties") ? schema["additionalProperties"] : json()));
891
3.90k
        }
892
420k
        if ((schema_type.is_null() || schema_type == "object" || schema_type == "string") && schema.contains("allOf")) {
893
1.83k
            std::unordered_set<std::string> required;
894
1.83k
            std::vector<std::pair<std::string, json>> properties;
895
1.83k
            std::map<std::string, size_t> enum_values;
896
1.83k
            const std::string& hybrid_name = name;
897
37.6k
            std::function<void(const json &, bool)> add_component = [&](const json & comp_schema, bool is_required) {
898
37.6k
                if (comp_schema.contains("$ref")) {
899
6.97k
                    add_component(_refs[comp_schema["$ref"]], is_required);
900
30.6k
                } else if (comp_schema.contains("properties")) {
901
199k
                    for (const auto & prop : comp_schema["properties"].items()) {
902
199k
                        properties.emplace_back(prop.key(), prop.value());
903
199k
                        if (is_required) {
904
199k
                            required.insert(prop.key());
905
199k
                        }
906
199k
                    }
907
28.6k
                } else if (comp_schema.contains("enum")) {
908
7.79k
                    for (const auto & v : comp_schema["enum"]) {
909
7.79k
                        const auto rule = _generate_constant_rule(v);
910
7.79k
                        if (enum_values.find(rule) == enum_values.end()) {
911
2.30k
                            enum_values[rule] = 0;
912
2.30k
                        }
913
7.79k
                        enum_values[rule] += 1;
914
7.79k
                    }
915
25.2k
                } else {
916
                  // todo warning
917
25.2k
                }
918
37.6k
            };
919
29.8k
            for (const auto & t : schema["allOf"]) {
920
29.8k
                if (t.contains("anyOf")) {
921
1.05k
                    for (const auto & tt : t["anyOf"]) {
922
1.05k
                        add_component(tt, false);
923
1.05k
                    }
924
29.6k
                } else {
925
29.6k
                    add_component(t, true);
926
29.6k
                }
927
29.8k
            }
928
1.83k
            if (!enum_values.empty()) {
929
186
                std::vector<std::string> enum_intersection;
930
2.30k
                for (const auto & p : enum_values) {
931
2.30k
                    if (p.second == schema["allOf"].size()) {
932
50
                        enum_intersection.push_back(p.first);
933
50
                    }
934
2.30k
                }
935
186
                if (!enum_intersection.empty()) {
936
22
                    return _add_rule(rule_name, "(" + string_join(enum_intersection, " | ") + ") space");
937
22
                }
938
186
            }
939
1.80k
            return _add_rule(rule_name, _build_object_rule(properties, required, hybrid_name, json()));
940
1.83k
        }
941
418k
        if ((schema_type.is_null() || schema_type == "array") && (schema.contains("items") || schema.contains("prefixItems"))) {
942
8.97k
            json items = schema.contains("items") ? schema["items"] : schema["prefixItems"];
943
8.97k
            if (items.is_array()) {
944
1.20k
                std::string rule = "\"[\" space ";
945
50.1k
                for (size_t i = 0; i < items.size(); i++) {
946
48.9k
                    if (i > 0) {
947
47.7k
                        rule += " \",\" space ";
948
47.7k
                    }
949
48.9k
                    rule += visit(items[i], name + (name.empty() ? "" : "-") + "tuple-" + std::to_string(i));
950
48.9k
                }
951
1.20k
                rule += " \"]\" space";
952
1.20k
                return _add_rule(rule_name, rule);
953
1.20k
            }
954
7.76k
            std::string item_rule_name = visit(items, name + (name.empty() ? "" : "-") + "item");
955
7.76k
            int min_items = schema.contains("minItems") ? schema["minItems"].get<int>() : 0;
956
7.76k
            json max_items_json = schema.contains("maxItems") ? schema["maxItems"] : json();
957
7.76k
            int max_items = max_items_json.is_number_integer() ? max_items_json.get<int>() : std::numeric_limits<int>::max();
958
959
7.76k
            return _add_rule(rule_name, "\"[\" space " + build_repetition(item_rule_name, min_items, max_items, "\",\" space") + " \"]\" space");
960
8.97k
        }
961
409k
        if ((schema_type.is_null() || schema_type == "string") && schema.contains("pattern")) {
962
5.54k
            return _visit_pattern(schema["pattern"], rule_name);
963
5.54k
        }
964
403k
        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
403k
        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
403k
        if (schema_type == "string" && (schema.contains("minLength") || schema.contains("maxLength"))) {
972
195
            std::string char_rule = _add_primitive("char", PRIMITIVE_RULES.at("char"));
973
195
            int min_len = schema.contains("minLength") ? schema["minLength"].get<int>() : 0;
974
195
            int max_len = schema.contains("maxLength") ? schema["maxLength"].get<int>() : std::numeric_limits<int>::max();
975
195
            return _add_rule(rule_name, "\"\\\"\" " + build_repetition(char_rule, min_len, max_len) + " \"\\\"\" space");
976
195
        }
977
403k
        if (schema_type == "integer" && (schema.contains("minimum") || schema.contains("exclusiveMinimum") || schema.contains("maximum") || schema.contains("exclusiveMaximum"))) {
978
3.26k
            int64_t min_value = std::numeric_limits<int64_t>::min();
979
3.26k
            int64_t max_value = std::numeric_limits<int64_t>::max();
980
3.26k
            if (schema.contains("minimum")) {
981
2.00k
                min_value = schema["minimum"].get<int64_t>();
982
2.00k
            } else if (schema.contains("exclusiveMinimum")) {
983
41
                min_value = schema["exclusiveMinimum"].get<int64_t>() + 1;
984
41
            }
985
3.26k
            if (schema.contains("maximum")) {
986
1.70k
                max_value = schema["maximum"].get<int64_t>();
987
1.70k
            } else if (schema.contains("exclusiveMaximum")) {
988
35
                max_value = schema["exclusiveMaximum"].get<int64_t>() - 1;
989
35
            }
990
3.26k
            std::stringstream out;
991
3.26k
            out << "(";
992
3.26k
            build_min_max_int(min_value, max_value, out);
993
3.26k
            out << ") space";
994
3.26k
            return _add_rule(rule_name, out.str());
995
3.26k
        }
996
400k
        if (schema.empty() || schema_type == "object") {
997
8.30k
            return _add_rule(rule_name, _add_primitive("object", PRIMITIVE_RULES.at("object")));
998
8.30k
        }
999
392k
        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
3.93k
            return _add_rule(rule_name, _add_primitive("value", PRIMITIVE_RULES.at("value")));
1003
3.93k
        }
1004
388k
        if (!schema_type.is_string() || PRIMITIVE_RULES.find(schema_type.get<std::string>()) == PRIMITIVE_RULES.end()) {
1005
386k
            _errors.push_back("Unrecognized schema: " + schema.dump());
1006
386k
            return "";
1007
386k
        }
1008
        // TODO: support minimum, maximum, exclusiveMinimum, exclusiveMaximum at least for zero
1009
1.63k
        return _add_primitive(rule_name == "root" ? "root" : schema_type.get<std::string>(), PRIMITIVE_RULES.at(schema_type.get<std::string>()));
1010
388k
    }
1011
1012
7.47k
    void check_errors() {
1013
7.47k
        if (!_errors.empty()) {
1014
5.96k
            throw std::invalid_argument("JSON schema conversion failed:\n" + string_join(_errors, "\n"));
1015
5.96k
        }
1016
1.50k
        if (!_warnings.empty()) {
1017
37
            fprintf(stderr, "WARNING: JSON schema conversion was incomplete: %s\n", string_join(_warnings, "; ").c_str());
1018
37
        }
1019
1.50k
    }
1020
1021
1.50k
    std::string format_grammar() {
1022
1.50k
        std::stringstream ss;
1023
17.4k
        for (const auto & kv : _rules) {
1024
17.4k
            ss << kv.first << " ::= " << kv.second << '\n';
1025
17.4k
        }
1026
1.50k
        return ss.str();
1027
1.50k
    }
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
7.60k
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
7.60k
    (void)force_gbnf;
1165
7.60k
#endif // LLAMA_USE_LLGUIDANCE
1166
7.60k
    return build_grammar([&](const common_grammar_builder & callbacks) {
1167
7.60k
        auto copy = schema;
1168
7.60k
        callbacks.resolve_refs(copy);
1169
7.60k
        callbacks.add_schema("", copy);
1170
7.60k
    });
1171
7.60k
}
1172
1173
7.60k
std::string build_grammar(const std::function<void(const common_grammar_builder &)> & cb, const common_grammar_options & options) {
1174
7.60k
    common_schema_converter converter([&](const std::string &) { return json(); }, options.dotall);
1175
7.60k
    common_grammar_builder builder {
1176
7.60k
        /* .add_rule = */ [&](const std::string & name, const std::string & rule) {
1177
0
            return converter._add_rule(name, rule);
1178
0
        },
1179
7.60k
        /* .add_schema = */ [&](const std::string & name, const nlohmann::ordered_json & schema) {
1180
7.59k
            return converter.visit(schema, name == "root" ? "" : name);
1181
7.59k
        },
1182
7.60k
        /* .resolve_refs = */ [&](nlohmann::ordered_json & schema) {
1183
7.60k
            converter.resolve_refs(schema, "");
1184
7.60k
        }
1185
7.60k
    };
1186
7.60k
    cb(builder);
1187
7.60k
    converter.check_errors();
1188
7.60k
    return converter.format_grammar();
1189
7.60k
}