mirror of
https://github.com/yaml/libyaml.git
synced 2026-01-29 04:24:11 +00:00
Each nesting level increases the stack and the number of previous starting events that the parser has to check. The default maximum is 1000 and can be set via yaml_set_max_nest_level() I also added new options to run-parser and run-parser-test-suite: * --max-level: you can now try out this feature on the command line * --show-error: By default, run-parser doesn't show errors. The new option helps with debugging
89 lines
2.0 KiB
C
89 lines
2.0 KiB
C
#include <yaml.h>
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
#ifdef NDEBUG
|
|
#undef NDEBUG
|
|
#endif
|
|
#include <assert.h>
|
|
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
int number;
|
|
int start = 0;
|
|
int i = 0;
|
|
char *filename;
|
|
char *output;
|
|
int max_level;
|
|
int show_error = 0;
|
|
|
|
if (argc < 2) {
|
|
printf("Usage: %s file1.yaml ...\n", argv[0]);
|
|
return 0;
|
|
}
|
|
for (i = 1; i < argc; i++) {
|
|
if (strncmp(argv[i], "--max-level", 11) == 0) {
|
|
i++;
|
|
max_level = strtol(argv[i], &output, 10);
|
|
yaml_set_max_nest_level(max_level);
|
|
start = i+1;
|
|
}
|
|
else if (strncmp(argv[i], "--show-error", 12) == 0) {
|
|
show_error = 1;
|
|
start = i+1;
|
|
}
|
|
}
|
|
|
|
for (number = start; number < argc; number ++)
|
|
{
|
|
FILE *file;
|
|
yaml_parser_t parser;
|
|
yaml_event_t event;
|
|
int done = 0;
|
|
int count = 0;
|
|
int error = 0;
|
|
|
|
filename = argv[number];
|
|
printf("[%d] Parsing '%s': ", number, filename);
|
|
fflush(stdout);
|
|
|
|
file = fopen(filename, "rb");
|
|
assert(file);
|
|
|
|
assert(yaml_parser_initialize(&parser));
|
|
|
|
yaml_parser_set_input_file(&parser, file);
|
|
|
|
while (!done)
|
|
{
|
|
if (!yaml_parser_parse(&parser, &event)) {
|
|
error = 1;
|
|
if (show_error) {
|
|
fprintf(stderr, "Parse error: %s\nLine: %lu Column: %lu\n",
|
|
parser.problem,
|
|
(unsigned long)parser.problem_mark.line + 1,
|
|
(unsigned long)parser.problem_mark.column + 1);
|
|
}
|
|
break;
|
|
}
|
|
|
|
done = (event.type == YAML_STREAM_END_EVENT);
|
|
|
|
yaml_event_delete(&event);
|
|
|
|
count ++;
|
|
}
|
|
|
|
yaml_parser_delete(&parser);
|
|
|
|
assert(!fclose(file));
|
|
|
|
printf("%s (%d events)\n", (error ? "FAILURE" : "SUCCESS"), count);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|