]> Git Repo - qemu.git/blame - qobject/qstring.c
exec.c: Use correct AddressSpace in watch_mem_read and watch_mem_write
[qemu.git] / qobject / qstring.c
CommitLineData
66f70487 1/*
41836a9f 2 * QString Module
66f70487
LC
3 *
4 * Copyright (C) 2009 Red Hat Inc.
5 *
6 * Authors:
7 * Luiz Capitulino <[email protected]>
8 *
41836a9f
LC
9 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10 * See the COPYING.LIB file in the top-level directory.
66f70487 11 */
41836a9f 12
7b1b5d19
PB
13#include "qapi/qmp/qobject.h"
14#include "qapi/qmp/qstring.h"
66f70487
LC
15#include "qemu-common.h"
16
d30ec846
AL
17/**
18 * qstring_new(): Create a new empty QString
19 *
20 * Return strong reference.
21 */
22QString *qstring_new(void)
23{
24 return qstring_from_str("");
25}
26
54d49ac9
LC
27/**
28 * qstring_get_length(): Get the length of a QString
29 */
30size_t qstring_get_length(const QString *qstring)
31{
32 return qstring->length;
33}
34
66f70487 35/**
4b5c5766 36 * qstring_from_substr(): Create a new QString from a C string substring
66f70487 37 *
4b5c5766 38 * Return string reference
66f70487 39 */
4b5c5766 40QString *qstring_from_substr(const char *str, int start, int end)
66f70487
LC
41{
42 QString *qstring;
43
7267c094 44 qstring = g_malloc(sizeof(*qstring));
55e1819c 45 qobject_init(QOBJECT(qstring), QTYPE_QSTRING);
d30ec846 46
4b5c5766 47 qstring->length = end - start + 1;
d30ec846
AL
48 qstring->capacity = qstring->length;
49
7267c094 50 qstring->string = g_malloc(qstring->capacity + 1);
4b5c5766 51 memcpy(qstring->string, str + start, qstring->length);
d30ec846
AL
52 qstring->string[qstring->length] = 0;
53
66f70487
LC
54
55 return qstring;
56}
57
4b5c5766
LC
58/**
59 * qstring_from_str(): Create a new QString from a regular C string
60 *
61 * Return strong reference.
62 */
63QString *qstring_from_str(const char *str)
64{
65 return qstring_from_substr(str, 0, strlen(str) - 1);
66}
67
6fe9565c 68static void capacity_increase(QString *qstring, size_t len)
d30ec846 69{
d30ec846
AL
70 if (qstring->capacity < (qstring->length + len)) {
71 qstring->capacity += len;
72 qstring->capacity *= 2; /* use exponential growth */
73
7267c094 74 qstring->string = g_realloc(qstring->string, qstring->capacity + 1);
d30ec846 75 }
6fe9565c
LC
76}
77
78/* qstring_append(): Append a C string to a QString
79 */
80void qstring_append(QString *qstring, const char *str)
81{
82 size_t len = strlen(str);
d30ec846 83
6fe9565c 84 capacity_increase(qstring, len);
d30ec846
AL
85 memcpy(qstring->string + qstring->length, str, len);
86 qstring->length += len;
87 qstring->string[qstring->length] = 0;
88}
89
764c1cae
LC
90void qstring_append_int(QString *qstring, int64_t value)
91{
92 char num[32];
93
94 snprintf(num, sizeof(num), "%" PRId64, value);
95 qstring_append(qstring, num);
96}
97
6fe9565c
LC
98/**
99 * qstring_append_chr(): Append a C char to a QString
100 */
101void qstring_append_chr(QString *qstring, int c)
102{
103 capacity_increase(qstring, 1);
104 qstring->string[qstring->length++] = c;
105 qstring->string[qstring->length] = 0;
106}
107
66f70487
LC
108/**
109 * qobject_to_qstring(): Convert a QObject to a QString
110 */
111QString *qobject_to_qstring(const QObject *obj)
112{
7f027843 113 if (!obj || qobject_type(obj) != QTYPE_QSTRING) {
66f70487 114 return NULL;
7f027843 115 }
66f70487
LC
116 return container_of(obj, QString, base);
117}
118
119/**
120 * qstring_get_str(): Return a pointer to the stored string
121 *
122 * NOTE: Should be used with caution, if the object is deallocated
123 * this pointer becomes invalid.
124 */
125const char *qstring_get_str(const QString *qstring)
126{
127 return qstring->string;
128}
129
130/**
131 * qstring_destroy_obj(): Free all memory allocated by a QString
132 * object
133 */
55e1819c 134void qstring_destroy_obj(QObject *obj)
66f70487
LC
135{
136 QString *qs;
137
138 assert(obj != NULL);
139 qs = qobject_to_qstring(obj);
7267c094
AL
140 g_free(qs->string);
141 g_free(qs);
66f70487 142}
This page took 0.536359 seconds and 4 git commands to generate.