2 * vim:ts=4:sw=4:expandtab
4 * i3 - an improved dynamic tiling window manager
5 * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
7 * string.c: Define an i3String type to automagically handle UTF-8/UCS-2
8 * conversions. Some font backends need UCS-2 (X core fonts),
9 * others want UTF-8 (Pango).
31 * Build an i3String from an UTF-8 encoded string.
32 * Returns the newly-allocated i3String.
35 i3String *i3string_from_utf8(const char *from_utf8) {
36 i3String *str = scalloc(1, sizeof(i3String));
39 str->utf8 = sstrdup(from_utf8);
41 /* Compute and store the length */
42 str->num_bytes = strlen(str->utf8);
48 * Build an i3String from an UTF-8 encoded string in Pango markup.
51 i3String *i3string_from_markup(const char *from_markup) {
52 i3String *str = i3string_from_utf8(from_markup);
54 /* Set the markup flag */
55 str->is_markup = true;
61 * Build an i3String from an UTF-8 encoded string with fixed length.
62 * To be used when no proper NUL-terminaison is available.
63 * Returns the newly-allocated i3String.
66 i3String *i3string_from_utf8_with_length(const char *from_utf8, size_t num_bytes) {
67 i3String *str = scalloc(1, sizeof(i3String));
69 /* Copy the actual text to our i3String */
70 str->utf8 = scalloc(num_bytes + 1, 1);
71 strncpy(str->utf8, from_utf8, num_bytes);
72 str->utf8[num_bytes] = '\0';
74 /* Store the length */
75 str->num_bytes = num_bytes;
81 * Build an i3String from an UTF-8 encoded string in Pango markup with fixed
85 i3String *i3string_from_markup_with_length(const char *from_markup, size_t num_bytes) {
86 i3String *str = i3string_from_utf8_with_length(from_markup, num_bytes);
88 /* set the markup flag */
89 str->is_markup = true;
95 * Build an i3String from an UCS-2 encoded string.
96 * Returns the newly-allocated i3String.
99 i3String *i3string_from_ucs2(const xcb_char2b_t *from_ucs2, size_t num_glyphs) {
100 i3String *str = scalloc(1, sizeof(i3String));
102 /* Copy the actual text to our i3String */
103 str->ucs2 = scalloc(num_glyphs, sizeof(xcb_char2b_t));
104 memcpy(str->ucs2, from_ucs2, num_glyphs * sizeof(xcb_char2b_t));
106 /* Store the length */
107 str->num_glyphs = num_glyphs;
116 * Copies the given i3string.
117 * Note that this will not free the source string.
119 i3String *i3string_copy(i3String *str) {
120 i3String *copy = i3string_from_utf8(i3string_as_utf8(str));
121 copy->is_markup = str->is_markup;
129 void i3string_free(i3String *str) {
137 static void i3string_ensure_utf8(i3String *str) {
138 if (str->utf8 != NULL)
140 if ((str->utf8 = convert_ucs2_to_utf8(str->ucs2, str->num_glyphs)) != NULL)
141 str->num_bytes = strlen(str->utf8);
144 static void i3string_ensure_ucs2(i3String *str) {
145 if (str->ucs2 != NULL)
147 str->ucs2 = convert_utf8_to_ucs2(str->utf8, &str->num_glyphs);
151 * Returns the UTF-8 encoded version of the i3String.
154 const char *i3string_as_utf8(i3String *str) {
155 i3string_ensure_utf8(str);
160 * Returns the UCS-2 encoded version of the i3String.
163 const xcb_char2b_t *i3string_as_ucs2(i3String *str) {
164 i3string_ensure_ucs2(str);
169 * Returns the number of bytes (UTF-8 encoded) in an i3String.
172 size_t i3string_get_num_bytes(i3String *str) {
173 i3string_ensure_utf8(str);
174 return str->num_bytes;
178 * Whether the given i3String is in Pango markup.
180 bool i3string_is_markup(i3String *str) {
181 return str->is_markup;
185 * Set whether the i3String should use Pango markup.
187 void i3string_set_markup(i3String *str, bool is_markup) {
188 str->is_markup = is_markup;
192 * Escape pango markup characters in the given string.
194 i3String *i3string_escape_markup(i3String *str) {
196 const char *text = i3string_as_utf8(str);
197 char *escaped = g_markup_escape_text(text, -1);
198 i3String *result = i3string_from_utf8(escaped);
207 * Returns the number of glyphs in an i3String.
210 size_t i3string_get_num_glyphs(i3String *str) {
211 i3string_ensure_ucs2(str);
212 return str->num_glyphs;