Babeltrace wrapper update
[babeltrace.git] / formats / ctf / metadata / ctf-parser-test.c
index d2d4031e649ea49037236cae5feeb66d783dc0d5..72c45885dc939f62c1622fd0aea08e6ad7895d77 100644 (file)
@@ -1,25 +1,75 @@
+/*
+ * ctf-parser-test.c
+ *
+ * Common Trace Format Parser Test
+ *
+ * Copyright 2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
+ *
+ * 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 <stdlib.h>
 #include <stdio.h>
 #include <glib.h>
+#include <errno.h>
+#include <babeltrace/endian.h>
+#include <babeltrace/babeltrace-internal.h>
+#include <babeltrace/ctf/metadata.h>
 #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;
+} 
This page took 0.024811 seconds and 4 git commands to generate.