X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=formats%2Fctf-text%2Ftypes%2Fenum.c;h=11529dd9bb9cf001dc87ecb460199f044bcc0bd8;hb=08c82b90d94a6dfee1f3da4ec06864c6045c07f7;hp=33009da788a5a4dd6577649c40024e5126d14047;hpb=c5e74408f9786219f6b44400dcf2098ab9cc78fb;p=babeltrace.git diff --git a/formats/ctf-text/types/enum.c b/formats/ctf-text/types/enum.c index 33009da7..11529dd9 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 @@ -28,26 +30,51 @@ int ctf_text_enum_write(struct stream_pos *ppos, struct definition *definition) enum_definition->integer; struct ctf_text_stream_pos *pos = ctf_text_pos(ppos); GArray *qs; - int i, ret; + int ret; + int field_nr_saved; + + if (!print_field(definition)) + return 0; if (pos->dummy) return 0; - print_pos_tabs(pos); + + if (pos->field_nr++ != 0) + fprintf(pos->fp, ","); + fprintf(pos->fp, " "); + if (pos->print_names) + fprintf(pos->fp, "%s = ", + 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); - print_pos_tabs(pos); - 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); - fprintf(pos->fp, "%s\n", str); + if (qs) { + int i; + + for (i = 0; i < qs->len; i++) { + GQuark q = g_array_index(qs, GQuark, i); + const char *str = g_quark_to_string(q); + + 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--; - print_pos_tabs(pos); - fprintf(pos->fp, ")"); + fprintf(pos->fp, " )"); + pos->field_nr = field_nr_saved; return ret; }