X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=types%2Finteger.c;h=20e7688d80ebb17fe91a36eff3280776c109982b;hb=e6b4b4f489f66decb680245a13e9e53abfe62ede;hp=808a4893680d3dc302a62d93f9b400299da9cffd;hpb=8673030f3cb8d157a30e79af524fd5cca253025e;p=babeltrace.git diff --git a/types/integer.c b/types/integer.c index 808a4893..20e7688d 100644 --- a/types/integer.c +++ b/types/integer.c @@ -16,6 +16,14 @@ * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. */ #include @@ -77,7 +85,7 @@ struct definition * int ret; integer = g_new(struct definition_integer, 1); - declaration_ref(&integer_declaration->p); + bt_declaration_ref(&integer_declaration->p); integer->p.declaration = declaration; integer->declaration = integer_declaration; integer->p.ref = 1; @@ -103,7 +111,7 @@ void _integer_definition_free(struct definition *definition) struct definition_integer *integer = container_of(definition, struct definition_integer, p); - declaration_unref(integer->p.declaration); + bt_declaration_unref(integer->p.declaration); g_free(integer); } @@ -129,6 +137,17 @@ int get_int_base(const struct definition *field) return integer_declaration->base; } +size_t get_int_len(const struct definition *field) +{ + struct definition_integer *integer_definition; + const struct declaration_integer *integer_declaration; + + integer_definition = container_of(field, struct definition_integer, p); + integer_declaration = integer_definition->declaration; + + return integer_declaration->len; +} + int get_int_byte_order(const struct definition *field) { struct definition_integer *integer_definition; @@ -162,7 +181,8 @@ uint64_t get_unsigned_int(const struct definition *field) if (!integer_declaration->signedness) { return integer_definition->value._unsigned; } - fprintf(stderr, "[warning] Extracting unsigned value in a signed int\n"); + fprintf(stderr, "[warning] Extracting unsigned value from a signed int (%s)\n", + g_quark_to_string(field->name)); return (uint64_t)integer_definition->value._signed; } @@ -177,6 +197,7 @@ int64_t get_signed_int(const struct definition *field) if (integer_declaration->signedness) { return integer_definition->value._signed; } - fprintf(stderr, "[warning] Extracting signed value in an unsigned int\n"); + fprintf(stderr, "[warning] Extracting signed value from an unsigned int (%s)\n", + g_quark_to_string(field->name)); return (int64_t)integer_definition->value._unsigned; }