4 * Copyright (C) 2009 Red Hat Inc.
7 * Luiz Capitulino <lcapitulino@redhat.com>
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.
13 #include "qemu/osdep.h"
14 #include "qapi/qmp/qstring.h"
17 * qstring_new(): Create a new empty QString
19 * Return strong reference.
21 QString
*qstring_new(void)
23 return qstring_from_str("");
27 * qstring_get_length(): Get the length of a QString
29 size_t qstring_get_length(const QString
*qstring
)
31 return qstring
->length
;
35 * qstring_from_substr(): Create a new QString from a C string substring
37 * Return string reference
39 QString
*qstring_from_substr(const char *str
, size_t start
, size_t end
)
45 qstring
= g_malloc(sizeof(*qstring
));
46 qobject_init(QOBJECT(qstring
), QTYPE_QSTRING
);
48 qstring
->length
= end
- start
;
49 qstring
->capacity
= qstring
->length
;
51 assert(qstring
->capacity
< SIZE_MAX
);
52 qstring
->string
= g_malloc(qstring
->capacity
+ 1);
53 memcpy(qstring
->string
, str
+ start
, qstring
->length
);
54 qstring
->string
[qstring
->length
] = 0;
60 * qstring_from_str(): Create a new QString from a regular C string
62 * Return strong reference.
64 QString
*qstring_from_str(const char *str
)
66 return qstring_from_substr(str
, 0, strlen(str
));
69 static void capacity_increase(QString
*qstring
, size_t len
)
71 if (qstring
->capacity
< (qstring
->length
+ len
)) {
72 assert(len
<= SIZE_MAX
- qstring
->capacity
);
73 qstring
->capacity
+= len
;
74 assert(qstring
->capacity
<= SIZE_MAX
/ 2);
75 qstring
->capacity
*= 2; /* use exponential growth */
77 qstring
->string
= g_realloc(qstring
->string
, qstring
->capacity
+ 1);
81 /* qstring_append(): Append a C string to a QString
83 void qstring_append(QString
*qstring
, const char *str
)
85 size_t len
= strlen(str
);
87 capacity_increase(qstring
, len
);
88 memcpy(qstring
->string
+ qstring
->length
, str
, len
);
89 qstring
->length
+= len
;
90 qstring
->string
[qstring
->length
] = 0;
93 void qstring_append_int(QString
*qstring
, int64_t value
)
97 snprintf(num
, sizeof(num
), "%" PRId64
, value
);
98 qstring_append(qstring
, num
);
102 * qstring_append_chr(): Append a C char to a QString
104 void qstring_append_chr(QString
*qstring
, int c
)
106 capacity_increase(qstring
, 1);
107 qstring
->string
[qstring
->length
++] = c
;
108 qstring
->string
[qstring
->length
] = 0;
112 * qstring_get_str(): Return a pointer to the stored string
114 * NOTE: Should be used with caution, if the object is deallocated
115 * this pointer becomes invalid.
117 const char *qstring_get_str(const QString
*qstring
)
119 return qstring
->string
;
123 * qstring_get_try_str(): Return a pointer to the stored string
125 * NOTE: will return NULL if qstring is not provided.
127 const char *qstring_get_try_str(const QString
*qstring
)
129 return qstring
? qstring_get_str(qstring
) : NULL
;
133 * qobject_get_try_str(): Return a pointer to the corresponding string
135 * NOTE: the string will only be returned if the object is valid, and
136 * its type is QString, otherwise NULL is returned.
138 const char *qobject_get_try_str(const QObject
*qstring
)
140 return qstring_get_try_str(qobject_to(QString
, qstring
));
144 * qstring_is_equal(): Test whether the two QStrings are equal
146 bool qstring_is_equal(const QObject
*x
, const QObject
*y
)
148 return !strcmp(qobject_to(QString
, x
)->string
,
149 qobject_to(QString
, y
)->string
);
153 * qstring_free(): Free the memory allocated by a QString object
155 * Return: if @return_str, return the underlying string, to be
156 * g_free(), otherwise NULL is returned.
158 char *qstring_free(QString
*qstring
, bool return_str
)
163 rv
= qstring
->string
;
165 g_free(qstring
->string
);
174 * qstring_destroy_obj(): Free all memory allocated by a QString
177 void qstring_destroy_obj(QObject
*obj
)
180 qstring_free(qobject_to(QString
, obj
), FALSE
);