X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=formats%2Fctf%2Ftypes%2Fenum.c;h=153c82bd1f7e406770439f24634354211626a72f;hb=8f390b0366dfa57a51cde50f28895a051d5550c1;hp=37859f03a5afb040cc90abfeab9ebbd674a9ce0e;hpb=7fe001942cc8ece60d945cbfbd1d135ff548dc7d;p=babeltrace.git diff --git a/formats/ctf/types/enum.c b/formats/ctf/types/enum.c index 37859f03..153c82bd 100644 --- a/formats/ctf/types/enum.c +++ b/formats/ctf/types/enum.c @@ -3,60 +3,55 @@ * * Enumeration mapping strings (quarks) from/to integers. * - * Copyright (c) 2010 Mathieu Desnoyers + * Copyright 2010, 2011 - Mathieu Desnoyers * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. + * 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: * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. */ #include #include #include -GQuark ctf_enum_read(struct stream_pos *pos, - const struct type_class_enum *src) +void ctf_enum_read(struct stream_pos *ppos, struct definition *definition) { - struct type_class_integer *int_class = &src->p; - - if (!int_class->signedness) { - uint64_t v; - - v = ctf_uint_read(pos, int_class); - return enum_uint_to_quark(src, v); - } else { - int64_t v; - - v = fsrc->ctf_int_read(pos, int_class); - return enum_int_to_quark(src, v); - } + struct definition_enum *enum_definition = + container_of(definition, struct definition_enum, p); + const struct declaration_enum *enum_declaration = + enum_definition->declaration; + struct definition_integer *integer_definition = + enum_definition->integer; + const struct declaration_integer *integer_declaration = + integer_definition->declaration; + GArray *qs; + + ctf_integer_read(ppos, &integer_definition->p); + if (!integer_declaration->signedness) + qs = enum_uint_to_quark_set(enum_declaration, + integer_definition->value._unsigned); + else + qs = enum_int_to_quark_set(enum_declaration, + integer_definition->value._signed); + assert(qs); + /* unref previous quark set */ + if (enum_definition->value) + g_array_unref(enum_definition->value); + enum_definition->value = qs; } -size_t ctf_enum_write(struct stream_pos *pos, - const struct type_class_enum *dest, - GQuark q) +void ctf_enum_write(struct stream_pos *pos, struct definition *definition) { - struct type_class_integer *int_class = &dest->p; - - if (!int_class->signedness) { - uint64_t v; - - v = enum_quark_to_uint(dest, q); - return ctf_uint_write(pos, int_class, v); - } else { - int64_t v; + struct definition_enum *enum_definition = + container_of(definition, struct definition_enum, p); + struct definition_integer *integer_definition = + enum_definition->integer; - v = enum_quark_to_int(dest, q); - return ctf_int_write(pos, int_class, v); - } + ctf_integer_write(pos, &integer_definition->p); }