Fix XML output in ctf-parser-test
[babeltrace.git] / formats / ctf / metadata / ctf-visitor-xml.c
index d1c0751c51e3c8c548144c087cd1834c05d6fa52..49fa992817906dfd66d93d14b33b1de3794f9a42 100644 (file)
@@ -24,6 +24,7 @@
 #include <glib.h>
 #include <inttypes.h>
 #include <errno.h>
+#include <babeltrace/babeltrace.h>
 #include <babeltrace/list.h>
 #include "ctf-scanner.h"
 #include "ctf-parser.h"
@@ -75,15 +76,15 @@ int ctf_visitor_print_unary_expression(FILE *fd, int depth, struct ctf_node *nod
                break;
        case UNARY_SIGNED_CONSTANT:
                print_tabs(fd, depth);
-               fprintf(fd, "<unary_expression value=");
+               fprintf(fd, "<unary_expression value=\"");
                fprintf(fd, "%" PRId64, node->u.unary_expression.u.signed_constant);
-               fprintf(fd, " />\n");
+               fprintf(fd, "\" />\n");
                break;
        case UNARY_UNSIGNED_CONSTANT:
                print_tabs(fd, depth);
-               fprintf(fd, "<unary_expression value=");
+               fprintf(fd, "<unary_expression value=\"");
                fprintf(fd, "%" PRIu64, node->u.unary_expression.u.signed_constant);
-               fprintf(fd, " />\n");
+               fprintf(fd, "\" />\n");
                break;
        case UNARY_SBRAC:
                print_tabs(fd, depth);
@@ -136,6 +137,7 @@ int ctf_visitor_print_type_specifier_list(FILE *fd, int depth, struct ctf_node *
 static
 int ctf_visitor_print_type_specifier(FILE *fd, int depth, struct ctf_node *node)
 {
+       int ret;
        print_tabs(fd, depth);
 
        switch (node->u.type_specifier.type) {
@@ -153,7 +155,7 @@ int ctf_visitor_print_type_specifier(FILE *fd, int depth, struct ctf_node *node)
        case TYPESPEC_IMAGINARY:
        case TYPESPEC_CONST:
        case TYPESPEC_ID_TYPE:
-               fprintf(fd, "<type_specifier \"");
+               fprintf(fd, "<type_specifier type=\"");
                break;
        case TYPESPEC_FLOATING_POINT:
        case TYPESPEC_INTEGER:
@@ -220,7 +222,10 @@ int ctf_visitor_print_type_specifier(FILE *fd, int depth, struct ctf_node *node)
        case TYPESPEC_STRUCT:
        case TYPESPEC_VARIANT:
        case TYPESPEC_ENUM:
-               return ctf_visitor_print_xml(fd, depth, node->u.type_specifier.node);
+               ret = ctf_visitor_print_xml(fd, depth, node->u.type_specifier.node);
+               if (ret)
+                       return ret;
+               break;
        case TYPESPEC_UNKNOWN:
        default:
                fprintf(stderr, "[error] %s: unknown type specifier %d\n", __func__,
@@ -251,9 +256,9 @@ int ctf_visitor_print_type_specifier(FILE *fd, int depth, struct ctf_node *node)
        case TYPESPEC_STRUCT:
        case TYPESPEC_VARIANT:
        case TYPESPEC_ENUM:
+               depth--;
                print_tabs(fd, depth);
                fprintf(fd, "</type_specifier>\n");
-               depth--;
                break;
        case TYPESPEC_UNKNOWN:
        default:
@@ -292,7 +297,7 @@ int ctf_visitor_print_type_declarator(FILE *fd, int depth, struct ctf_node *node
        case TYPEDEC_ID:
                if (node->u.type_declarator.u.id) {
                        print_tabs(fd, depth);
-                       fprintf(fd, "<id \"");
+                       fprintf(fd, "<id name=\"");
                        fprintf(fd, "%s", node->u.type_declarator.u.id);
                        fprintf(fd, "\" />\n");
                }
@@ -308,12 +313,15 @@ int ctf_visitor_print_type_declarator(FILE *fd, int depth, struct ctf_node *node
                        print_tabs(fd, depth);
                        fprintf(fd, "</type_declarator>\n");
                }
-               if (node->u.type_declarator.u.nested.length) {
+               if (!cds_list_empty(&node->u.type_declarator.u.nested.length)) {
                        print_tabs(fd, depth);
                        fprintf(fd, "<length>\n");
-                       ret = ctf_visitor_print_xml(fd, depth + 1, node->u.type_declarator.u.nested.length);
-                       if (ret)
-                               return ret;
+                       cds_list_for_each_entry(iter, &node->u.type_declarator.u.nested.length,
+                                               siblings) {
+                               ret = ctf_visitor_print_xml(fd, depth + 1, iter);
+                               if (ret)
+                                       return ret;
+                       }
                        print_tabs(fd, depth);
                        fprintf(fd, "</length>\n");
                }
@@ -609,12 +617,9 @@ int ctf_visitor_print_xml(FILE *fd, int depth, struct ctf_node *node)
                if (node->u._enum.container_type) {
                        print_tabs(fd, depth);
                        fprintf(fd, "<container_type>\n");
-               }
-
-               ret = ctf_visitor_print_xml(fd, depth + 1, node->u._enum.container_type);
-               if (ret)
-                       return ret;
-               if (node->u._enum.container_type) {
+                       ret = ctf_visitor_print_xml(fd, depth + 1, node->u._enum.container_type);
+                       if (ret)
+                               return ret;
                        print_tabs(fd, depth);
                        fprintf(fd, "</container_type>\n");
                }
@@ -679,6 +684,17 @@ int ctf_visitor_print_xml(FILE *fd, int depth, struct ctf_node *node)
                }
                print_tabs(fd, depth);
                fprintf(fd, "</struct>\n");
+               if (!cds_list_empty(&node->u._struct.min_align)) {
+                       print_tabs(fd, depth);
+                       fprintf(fd, "<align>\n");
+                       cds_list_for_each_entry(iter, &node->u._struct.min_align, siblings) {
+                               ret = ctf_visitor_print_xml(fd, depth + 1, iter);
+                               if (ret)
+                                       return ret;
+                       }
+                       print_tabs(fd, depth);
+                       fprintf(fd, "</align>\n");
+               }
                break;
 
        case NODE_UNKNOWN:
This page took 0.025532 seconds and 4 git commands to generate.