X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=formats%2Fctf-text%2Ftypes%2Fenum.c;h=b973d494b195dcd67d65931979b3d28dc06996a7;hp=381491a4dc81e68560ac6c1467c4b107b339d6af;hb=30827463276bab779a0965e8adf271c451c2a28a;hpb=fd3382e8659903b36971efb933e5770e802b45d5 diff --git a/formats/ctf-text/types/enum.c b/formats/ctf-text/types/enum.c index 381491a4..b973d494 100644 --- a/formats/ctf-text/types/enum.c +++ b/formats/ctf-text/types/enum.c @@ -3,7 +3,9 @@ * * Enumeration mapping strings (quarks) from/to integers. * - * Copyright 2010, 2011 - Mathieu Desnoyers + * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation + * + * Author: 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 @@ -29,6 +31,10 @@ int ctf_text_enum_write(struct stream_pos *ppos, struct definition *definition) struct ctf_text_stream_pos *pos = ctf_text_pos(ppos); GArray *qs; int i, ret; + int field_nr_saved; + + if (!print_field(definition)) + return 0; if (pos->dummy) return 0; @@ -38,26 +44,35 @@ int ctf_text_enum_write(struct stream_pos *ppos, struct definition *definition) fprintf(pos->fp, " "); if (pos->print_names) fprintf(pos->fp, "%s = ", - g_quark_to_string(definition->name)); + rem_(g_quark_to_string(definition->name))); + field_nr_saved = pos->field_nr; + pos->field_nr = 0; fprintf(pos->fp, "("); pos->depth++; - ret = generic_rw(ppos, &integer_definition->p); - fprintf(pos->fp, " :"); - qs = enum_definition->value; - assert(qs); - for (i = 0; i < qs->len; i++) { - GQuark q = g_array_index(qs, GQuark, i); - const char *str = g_quark_to_string(q); + if (qs) { + for (i = 0; i < qs->len; i++) { + GQuark q = g_array_index(qs, GQuark, i); + const char *str = g_quark_to_string(q); - if (i != 0) - fprintf(pos->fp, ","); - fprintf(pos->fp, " "); - fprintf(pos->fp, "%s\n", str); + assert(str); + if (pos->field_nr++ != 0) + fprintf(pos->fp, ","); + fprintf(pos->fp, " "); + fprintf(pos->fp, "%s", str); + } + } else { + fprintf(pos->fp, " "); } + + pos->field_nr = 0; + fprintf(pos->fp, " :"); + ret = generic_rw(ppos, &integer_definition->p); + pos->depth--; fprintf(pos->fp, " )"); + pos->field_nr = field_nr_saved; return ret; }