4 * Strings read/write functions.
6 * Copyright 2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
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:
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
19 #include <babeltrace/babeltrace.h>
20 #include <babeltrace/ctf/types.h>
21 #include <limits.h> /* C99 limits */
24 int ctf_string_read(struct stream_pos
*ppos
, struct definition
*definition
)
26 struct definition_string
*string_definition
=
27 container_of(definition
, struct definition_string
, p
);
28 const struct declaration_string
*string_declaration
=
29 string_definition
->declaration
;
30 struct ctf_stream_pos
*pos
= ctf_pos(ppos
);
35 ctf_align_pos(pos
, string_declaration
->p
.alignment
);
37 srcaddr
= ctf_get_pos_addr(pos
);
38 if (pos
->offset
== EOF
)
41 max_len
= pos
->packet_size
- pos
->offset
- 1;
44 len
= strnlen(srcaddr
, max_len
) + 1; /* Add \0 */
45 /* Truncated string, unexpected. Trace probably corrupted. */
46 if (srcaddr
[len
- 1] != '\0')
49 if (string_definition
->alloc_len
< len
) {
50 string_definition
->value
=
51 g_realloc(string_definition
->value
, len
);
52 string_definition
->alloc_len
= len
;
54 printf_debug("CTF string read %s\n", srcaddr
);
55 memcpy(string_definition
->value
, srcaddr
, len
);
56 string_definition
->len
= len
;
57 ctf_move_pos(pos
, len
* CHAR_BIT
);
61 int ctf_string_write(struct stream_pos
*ppos
,
62 struct definition
*definition
)
64 struct definition_string
*string_definition
=
65 container_of(definition
, struct definition_string
, p
);
66 const struct declaration_string
*string_declaration
=
67 string_definition
->declaration
;
68 struct ctf_stream_pos
*pos
= ctf_pos(ppos
);
72 ctf_align_pos(pos
, string_declaration
->p
.alignment
);
73 assert(string_definition
->value
!= NULL
);
74 len
= string_definition
->len
;
76 if (!ctf_pos_access_ok(pos
, len
))
81 destaddr
= ctf_get_pos_addr(pos
);
82 memcpy(destaddr
, string_definition
->value
, len
);
84 ctf_move_pos(pos
, len
* CHAR_BIT
);
This page took 0.030045 seconds and 4 git commands to generate.