X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=formats%2Fctf%2Ftypes%2Fstring.c;h=6a478abfd202072f3a022b068ff49db40c607d61;hb=8f390b0366dfa57a51cde50f28895a051d5550c1;hp=95a81a30e76cd46929c7e16fb899625e0050f0ee;hpb=47e0f2e23aef98a584bf964754ab1e29c2897cfb;p=babeltrace.git diff --git a/formats/ctf/types/string.c b/formats/ctf/types/string.c index 95a81a30..6a478abf 100644 --- a/formats/ctf/types/string.c +++ b/formats/ctf/types/string.c @@ -16,60 +16,53 @@ * all copies or substantial portions of the Software. */ +#include #include #include /* C99 limits */ #include -void ctf_string_copy(struct stream_pos *dest, struct stream_pos *src, - const struct type_class_string *string_class) -{ - size_t len; - char *destaddr, *srcaddr; - - align_pos(src, string_class->p.alignment); - srcaddr = get_pos_addr(src); - len = strlen(srcaddr) + 1; - if (dest->dummy) - goto end; - align_pos(dest, string_class->p.alignment); - destaddr = get_pos_addr(dest); - strcpy(destaddr, srcaddr); -end: - move_pos(dest, len); - move_pos(src, len); -} - -void ctf_string_read(char **dest, struct stream_pos *src, - const struct type_class_string *string_class) +void ctf_string_read(struct stream_pos *ppos, struct definition *definition) { + struct definition_string *string_definition = + container_of(definition, struct definition_string, p); + const struct declaration_string *string_declaration = + string_definition->declaration; + struct ctf_stream_pos *pos = ctf_pos(ppos); size_t len; char *srcaddr; - align_pos(src, string_class->p.alignment); - srcaddr = get_pos_addr(src); + ctf_align_pos(pos, string_declaration->p.alignment); + srcaddr = ctf_get_pos_addr(pos); len = strlen(srcaddr) + 1; - *dest = g_realloc(*dest, len); - strcpy(*dest, srcaddr); - move_pos(src, len); + if (string_definition->alloc_len < len) { + string_definition->value = + g_realloc(string_definition->value, len); + string_definition->alloc_len = len; + } + printf_debug("CTF string read %s\n", srcaddr); + memcpy(string_definition->value, srcaddr, len); + string_definition->len = len; + ctf_move_pos(pos, len * CHAR_BIT); } -void ctf_string_write(struct stream_pos *dest, const char *src, - const struct type_class_string *string_class) +void ctf_string_write(struct stream_pos *ppos, + struct definition *definition) { + struct definition_string *string_definition = + container_of(definition, struct definition_string, p); + const struct declaration_string *string_declaration = + string_definition->declaration; + struct ctf_stream_pos *pos = ctf_pos(ppos); size_t len; char *destaddr; - align_pos(dest, string_class->p.alignment); - len = strlen(src) + 1; - if (dest->dummy) + ctf_align_pos(pos, string_declaration->p.alignment); + assert(string_definition->value != NULL); + len = string_definition->len; + if (pos->dummy) goto end; - destaddr = get_pos_addr(dest); - strcpy(destaddr, src); + destaddr = ctf_get_pos_addr(pos); + memcpy(destaddr, string_definition->value, len); end: - move_pos(dest, len); -} - -void ctf_string_free_temp(char *string) -{ - g_free(string); + ctf_move_pos(pos, len * CHAR_BIT); }