Build fix
[babeltrace.git] / formats / ctf / types / string.c
... / ...
CommitLineData
1/*
2 * Common Trace Format
3 *
4 * Strings read/write functions.
5 *
6 * Copyright 2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 *
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:
14 *
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17 */
18
19#include <babeltrace/ctf/types.h>
20#include <limits.h> /* C99 limits */
21#include <string.h>
22
23void ctf_string_copy(struct stream_pos *dest, struct stream_pos *src,
24 const struct type_class_string *string_class)
25{
26 size_t len;
27 unsigned char *destaddr, *srcaddr;
28
29 align_pos(src, string_class->p.alignment);
30 srcaddr = get_pos_addr(src);
31 len = strlen(srcaddr) + 1;
32 if (dest->dummy)
33 goto end;
34 align_pos(dest, string_class->p.alignment);
35 destaddr = get_pos_addr(dest);
36 strcpy(destaddr, srcaddr);
37end:
38 move_pos(dest, len);
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 *dest = g_realloc(*dest, len);
52 strcpy(*dest, srcaddr);
53end:
54 move_pos(src, len);
55}
56
57void ctf_string_write(struct stream_pos *dest, const unsigned char *src,
58 const struct type_class_string *string_class)
59{
60 size_t len;
61 unsigned char *destaddr;
62
63 align_pos(dest, string_class->p.alignment);
64 len = strlen(src) + 1;
65 if (dest->dummy)
66 goto end;
67 destaddr = get_pos_addr(dest);
68 strcpy(destaddr, src);
69end:
70 move_pos(dest, len);
71}
72
73void ctf_string_free_temp(unsigned char *string)
74{
75 g_free(string);
76}
This page took 0.022607 seconds and 4 git commands to generate.