X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=formats%2Fctf%2Fmetadata%2Fctf-parser-test.c;h=72c45885dc939f62c1622fd0aea08e6ad7895d77;hp=d2d4031e649ea49037236cae5feeb66d783dc0d5;hb=43e34335c78d923564d369e9af46b634ce9ad55f;hpb=34d3acc4fc9f020b0e2616a29a339b5c546a05c1 diff --git a/formats/ctf/metadata/ctf-parser-test.c b/formats/ctf/metadata/ctf-parser-test.c index d2d4031e..72c45885 100644 --- a/formats/ctf/metadata/ctf-parser-test.c +++ b/formats/ctf/metadata/ctf-parser-test.c @@ -1,25 +1,75 @@ +/* + * ctf-parser-test.c + * + * Common Trace Format Parser Test + * + * Copyright 2010 - Mathieu Desnoyers + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + */ + #include #include #include +#include +#include +#include +#include #include "ctf-scanner.h" #include "ctf-parser.h" #include "ctf-ast.h" -extern int yydebug; +int babeltrace_verbose, babeltrace_debug; int main(int argc, char **argv) { struct ctf_scanner *scanner; + struct ctf_trace *trace; + int ret = 0; - yydebug = 1; + babeltrace_debug = 1; + babeltrace_verbose = 1; scanner = ctf_scanner_alloc(stdin); if (!scanner) { fprintf(stderr, "Error allocating scanner\n"); - return -1; + return -ENOMEM; + } + ret = ctf_scanner_append_ast(scanner); + if (ret) { + fprintf(stderr, "Error creating AST\n"); + goto end; } - ctf_scanner_append_ast(scanner); - ctf_scanner_free(scanner); - return 0; -} + ret = ctf_visitor_print_xml(stderr, 0, &scanner->ast->root); + if (ret) { + fprintf(stderr, "Error visiting AST for XML output\n"); + goto end; + } + ret = ctf_visitor_semantic_check(stderr, 0, &scanner->ast->root); + if (ret) { + fprintf(stderr, "Error in CTF semantic validation %d\n", ret); + goto end; + } + trace = malloc(sizeof(*trace)); + memset(trace, 0, sizeof(*trace)); + ret = ctf_visitor_construct_metadata(stderr, 0, &scanner->ast->root, + trace, BYTE_ORDER); + if (ret) { + fprintf(stderr, "Error in CTF metadata constructor %d\n", ret); + goto free_trace; + } +free_trace: + free(trace); +end: + ctf_scanner_free(scanner); + return ret; +}