Relicense BabelTrace library to MIT (BSD-style)
[babeltrace.git] / formats / ctf / types / string.c
CommitLineData
6dc2ca62
MD
1/*
2 * Common Trace Format
3 *
4 * Strings read/write functions.
5 *
ccd7e1c8 6 * Copyright 2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6dc2ca62 7 *
ccd7e1c8
MD
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
de0ba614 14 *
ccd7e1c8
MD
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
6dc2ca62
MD
17 */
18
d79865b9 19#include <babeltrace/ctf/types.h>
a3dbc794 20#include <limits.h> /* C99 limits */
6dc2ca62
MD
21#include <string.h>
22
bed864a7
MD
23void ctf_string_copy(struct stream_pos *dest, struct stream_pos *src,
24 const struct type_class_string *string_class)
6dc2ca62 25{
bed864a7
MD
26 size_t len;
27 unsigned char *destaddr, *srcaddr;
6dc2ca62 28
bed864a7
MD
29 align_pos(src, string_class->p.alignment);
30 srcaddr = get_pos_addr(src);
31 len = strlen(srcaddr) + 1;
a52d7f6a 32 if (dest->dummy)
6dc2ca62 33 goto end;
bed864a7
MD
34 align_pos(dest, string_class->p.alignment);
35 destaddr = get_pos_addr(dest);
a52d7f6a
MD
36 strcpy(destaddr, srcaddr);
37end:
bed864a7 38 move_pos(dest, len);
a52d7f6a
MD
39 move_pos(src, len);
40}
41
42void ctf_string_read(unsigned char **dest, struct stream_pos *src,
43 const struct type_class_string *string_class)
44{
45 size_t len;
46 unsigned char *srcaddr;
47
48 align_pos(src, string_class->p.alignment);
49 srcaddr = get_pos_addr(src);
50 len = strlen(srcaddr) + 1;
51 if (dest->dummy)
52 goto end;
53 *dest = g_realloc(*dest, len);
54 strcpy(dest, srcaddr);
6dc2ca62 55end:
bed864a7 56 move_pos(src, len);
6dc2ca62 57}
a52d7f6a
MD
58
59void ctf_string_write(struct stream_pos *dest, const unsigned char *src,
60 const struct type_class_string *string_class)
61{
62 size_t len;
63 unsigned char *destaddr;
64
65 align_pos(dest, string_class->p.alignment);
66 len = strlen(src) + 1;
67 if (dest->dummy)
68 goto end;
69 destaddr = get_pos_addr(dest);
70 strcpy(destaddr, src);
71end:
72 move_pos(dest, len);
73}
74
75void ctf_string_free_temp(unsigned char *string)
76{
77 g_free(string);
78}
This page took 0.026242 seconds and 4 git commands to generate.