Sequence: add missing handling of integer encoding
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Tue, 17 May 2011 16:33:32 +0000 (12:33 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Tue, 17 May 2011 16:33:32 +0000 (12:33 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
formats/ctf-text/types/integer.c
formats/ctf-text/types/sequence.c

index 1337eca3ab13df44bb89e7ee5903d381dd743a88..457ea804e5133ca1e32488e857b2ad6b0369da9e 100644 (file)
@@ -40,8 +40,9 @@ int ctf_text_integer_write(struct stream_pos *ppos, struct definition *definitio
                fprintf(pos->fp, "%s = ",
                        g_quark_to_string(definition->name));
 
-       if (integer_declaration->encoding == CTF_STRING_ASCII
-           || integer_declaration->encoding == CTF_STRING_UTF8) {
+       if (pos->string
+           && (integer_declaration->encoding == CTF_STRING_ASCII
+             || integer_declaration->encoding == CTF_STRING_UTF8)) {
 
                if (!integer_declaration->signedness) {
                        g_string_append_c(pos->string,
index 7b5d3c946a7ff514d44c66acbb10de15317a49b1..8922fdaf06e31400d27a0dc8e93c86f2a1d5863a 100644 (file)
 int ctf_text_sequence_write(struct stream_pos *ppos, struct definition *definition)
 {
        struct ctf_text_stream_pos *pos = ctf_text_pos(ppos);
+       struct definition_sequence *sequence_definition =
+               container_of(definition, struct definition_sequence, p);
+       struct declaration_sequence *sequence_declaration =
+               sequence_definition->declaration;
+       struct declaration *elem = sequence_declaration->elem;
        int field_nr_saved;
        int ret;
 
@@ -32,6 +37,28 @@ int ctf_text_sequence_write(struct stream_pos *ppos, struct definition *definiti
                if (pos->print_names)
                        fprintf(pos->fp, "%s = ",
                                g_quark_to_string(definition->name));
+       }
+
+       if (elem->id == CTF_TYPE_INTEGER) {
+               struct declaration_integer *integer_declaration =
+                       container_of(elem, struct declaration_integer, p);
+
+               if (integer_declaration->encoding == CTF_STRING_UTF8
+                     || integer_declaration->encoding == CTF_STRING_ASCII) {
+
+                       if (!(integer_declaration->len == CHAR_BIT
+                           && integer_declaration->p.alignment == CHAR_BIT)) {
+                               pos->string = sequence_definition->string;
+                               g_string_assign(sequence_definition->string, "");
+                               ret = sequence_rw(ppos, definition);
+                               pos->string = NULL;
+                       }
+                       fprintf(pos->fp, "\"%s\"", sequence_definition->string->str);
+                       return ret;
+               }
+       }
+
+       if (!pos->dummy) {
                fprintf(pos->fp, "[");
                pos->depth++;
        }
This page took 0.025048 seconds and 4 git commands to generate.