]> git.wh0rd.org - fontconfig.git/blame - src/fcstr.c
[fcstr,fcxml] Don't copy FcStrBuf contents when we would free it soon
[fontconfig.git] / src / fcstr.c
CommitLineData
24330d27 1/*
317b8492 2 * fontconfig/src/fcstr.c
24330d27 3 *
46b51147 4 * Copyright © 2000 Keith Packard
24330d27
KP
5 *
6 * Permission to use, copy, modify, distribute, and sell this software and its
7 * documentation for any purpose is hereby granted without fee, provided that
8 * the above copyright notice appear in all copies and that both that
9 * copyright notice and this permission notice appear in supporting
10 * documentation, and that the name of Keith Packard not be used in
11 * advertising or publicity pertaining to distribution of the software without
12 * specific, written prior permission. Keith Packard makes no
13 * representations about the suitability of this software for any purpose. It
14 * is provided "as is" without express or implied warranty.
15 *
16 * KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
18 * EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
19 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
20 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
21 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
22 * PERFORMANCE OF THIS SOFTWARE.
23 */
24
f045376c 25#include "fcint.h"
24330d27
KP
26#include <stdlib.h>
27#include <ctype.h>
28#include <string.h>
1de7a4cc
HWN
29#ifdef _WIN32
30#include <windows.h>
31#endif
24330d27 32
ccb3e93b
KP
33FcChar8 *
34FcStrCopy (const FcChar8 *s)
24330d27 35{
31b7e6d7
PL
36 int len;
37 FcChar8 *r;
24330d27
KP
38
39 if (!s)
40 return 0;
31b7e6d7
PL
41 len = strlen ((char *) s) + 1;
42 r = (FcChar8 *) malloc (len);
24330d27
KP
43 if (!r)
44 return 0;
31b7e6d7
PL
45 FcMemAlloc (FC_MEM_STRING, len);
46 memcpy (r, s, len);
24330d27
KP
47 return r;
48}
49
ccb3e93b
KP
50FcChar8 *
51FcStrPlus (const FcChar8 *s1, const FcChar8 *s2)
24330d27 52{
ccb3e93b
KP
53 int l = strlen ((char *)s1) + strlen ((char *) s2) + 1;
54 FcChar8 *s = malloc (l);
24330d27
KP
55
56 if (!s)
57 return 0;
58 FcMemAlloc (FC_MEM_STRING, l);
ccb3e93b
KP
59 strcpy ((char *) s, (char *) s1);
60 strcat ((char *) s, (char *) s2);
24330d27
KP
61 return s;
62}
63
64void
ccb3e93b 65FcStrFree (FcChar8 *s)
24330d27 66{
ccb3e93b 67 FcMemFree (FC_MEM_STRING, strlen ((char *) s) + 1);
24330d27
KP
68 free (s);
69}
70
192296d8
KP
71
72#include "../fc-case/fccase.h"
73
74#define FcCaseFoldUpperCount(cf) \
75 ((cf)->method == FC_CASE_FOLD_FULL ? 1 : (cf)->count)
76
77#define FC_STR_CANON_BUF_LEN 1024
78
79typedef struct _FcCaseWalker {
80 const FcChar8 *read;
81 const FcChar8 *src;
192296d8
KP
82 FcChar8 utf8[FC_MAX_CASE_FOLD_CHARS + 1];
83} FcCaseWalker;
84
85static void
86FcStrCaseWalkerInit (const FcChar8 *src, FcCaseWalker *w)
87{
88 w->src = src;
89 w->read = 0;
192296d8
KP
90}
91
92static FcChar8
93FcStrCaseWalkerLong (FcCaseWalker *w, FcChar8 r)
94{
95 FcChar32 ucs4;
96 int slen;
adac22f2 97 int len = strlen((char*)w->src);
192296d8 98
adac22f2 99 slen = FcUtf8ToUcs4 (w->src - 1, &ucs4, len + 1);
192296d8
KP
100 if (slen <= 0)
101 return r;
102 if (FC_MIN_FOLD_CHAR <= ucs4 && ucs4 <= FC_MAX_FOLD_CHAR)
103 {
104 int min = 0;
105 int max = FC_NUM_CASE_FOLD;
106
107 while (min <= max)
108 {
109 int mid = (min + max) >> 1;
110 FcChar32 low = fcCaseFold[mid].upper;
111 FcChar32 high = low + FcCaseFoldUpperCount (&fcCaseFold[mid]);
112
113 if (high <= ucs4)
114 min = mid + 1;
115 else if (ucs4 < low)
116 max = mid - 1;
117 else
118 {
119 const FcCaseFold *fold = &fcCaseFold[mid];
120 int dlen;
121
122 switch (fold->method) {
123 case FC_CASE_FOLD_EVEN_ODD:
124 if ((ucs4 & 1) != (fold->upper & 1))
125 return r;
126 /* fall through ... */
127 default:
128 dlen = FcUcs4ToUtf8 (ucs4 + fold->offset, w->utf8);
129 break;
130 case FC_CASE_FOLD_FULL:
131 dlen = fold->count;
132 memcpy (w->utf8, fcCaseFoldChars + fold->offset, dlen);
133 break;
134 }
135
136 /* consume rest of src utf-8 bytes */
137 w->src += slen - 1;
192296d8
KP
138
139 /* read from temp buffer */
140 w->utf8[dlen] = '\0';
141 w->read = w->utf8;
142 return *w->read++;
143 }
144 }
145 }
146 return r;
147}
148
149static FcChar8
150FcStrCaseWalkerNext (FcCaseWalker *w)
151{
152 FcChar8 r;
153
154 if (w->read)
155 {
156 if ((r = *w->read++))
157 return r;
158 w->read = 0;
159 }
160 r = *w->src++;
192296d8
KP
161
162 if ((r & 0xc0) == 0xc0)
163 return FcStrCaseWalkerLong (w, r);
164 if ('A' <= r && r <= 'Z')
165 r = r - 'A' + 'a';
166 return r;
167}
168
169static FcChar8
170FcStrCaseWalkerNextIgnoreBlanks (FcCaseWalker *w)
171{
172 FcChar8 r;
173
174 if (w->read)
175 {
176 if ((r = *w->read++))
177 return r;
178 w->read = 0;
179 }
180 do
181 {
182 r = *w->src++;
192296d8
KP
183 } while (r == ' ');
184
185 if ((r & 0xc0) == 0xc0)
186 return FcStrCaseWalkerLong (w, r);
187 if ('A' <= r && r <= 'Z')
188 r = r - 'A' + 'a';
189 return r;
190}
191
479f551f
KP
192FcChar8 *
193FcStrDowncase (const FcChar8 *s)
194{
195 FcCaseWalker w;
196 int len = 0;
197 FcChar8 *dst, *d;
198
199 FcStrCaseWalkerInit (s, &w);
200 while (FcStrCaseWalkerNext (&w))
201 len++;
202 d = dst = malloc (len + 1);
203 if (!d)
204 return 0;
205 FcMemAlloc (FC_MEM_STRING, len + 1);
206 FcStrCaseWalkerInit (s, &w);
207 while ((*d++ = FcStrCaseWalkerNext (&w)));
208 return dst;
209}
210
24330d27 211int
ccb3e93b 212FcStrCmpIgnoreCase (const FcChar8 *s1, const FcChar8 *s2)
24330d27 213{
192296d8
KP
214 FcCaseWalker w1, w2;
215 FcChar8 c1, c2;
216
217 if (s1 == s2) return 0;
218
219 FcStrCaseWalkerInit (s1, &w1);
220 FcStrCaseWalkerInit (s2, &w2);
24330d27
KP
221
222 for (;;)
223 {
192296d8
KP
224 c1 = FcStrCaseWalkerNext (&w1);
225 c2 = FcStrCaseWalkerNext (&w2);
226 if (!c1 || (c1 != c2))
24330d27 227 break;
82f4243f
KP
228 }
229 return (int) c1 - (int) c2;
230}
231
232int
233FcStrCmpIgnoreBlanksAndCase (const FcChar8 *s1, const FcChar8 *s2)
234{
192296d8
KP
235 FcCaseWalker w1, w2;
236 FcChar8 c1, c2;
237
238 if (s1 == s2) return 0;
239
240 FcStrCaseWalkerInit (s1, &w1);
241 FcStrCaseWalkerInit (s2, &w2);
82f4243f
KP
242
243 for (;;)
244 {
192296d8
KP
245 c1 = FcStrCaseWalkerNextIgnoreBlanks (&w1);
246 c2 = FcStrCaseWalkerNextIgnoreBlanks (&w2);
247 if (!c1 || (c1 != c2))
24330d27
KP
248 break;
249 }
bc9469ba 250 return (int) c1 - (int) c2;
24330d27
KP
251}
252
179c3995
KP
253int
254FcStrCmp (const FcChar8 *s1, const FcChar8 *s2)
255{
256 FcChar8 c1, c2;
257
258 if (s1 == s2)
259 return 0;
260 for (;;)
261 {
262 c1 = *s1++;
263 c2 = *s2++;
d93fb00e 264 if (!c1 || c1 != c2)
179c3995
KP
265 break;
266 }
bc9469ba 267 return (int) c1 - (int) c2;
179c3995
KP
268}
269
192296d8
KP
270/*
271 * Return a hash value for a string
272 */
273
274FcChar32
275FcStrHashIgnoreCase (const FcChar8 *s)
276{
277 FcChar32 h = 0;
278 FcCaseWalker w;
279 FcChar8 c;
280
281 FcStrCaseWalkerInit (s, &w);
282 while ((c = FcStrCaseWalkerNext (&w)))
283 h = ((h << 3) ^ (h >> 3)) ^ c;
284 return h;
285}
286
11fec41c
KP
287/*
288 * Is the head of s1 equal to s2?
289 */
290
291static FcBool
292FcStrIsAtIgnoreBlanksAndCase (const FcChar8 *s1, const FcChar8 *s2)
293{
192296d8
KP
294 FcCaseWalker w1, w2;
295 FcChar8 c1, c2;
296
297 FcStrCaseWalkerInit (s1, &w1);
298 FcStrCaseWalkerInit (s2, &w2);
11fec41c
KP
299
300 for (;;)
301 {
192296d8
KP
302 c1 = FcStrCaseWalkerNextIgnoreBlanks (&w1);
303 c2 = FcStrCaseWalkerNextIgnoreBlanks (&w2);
304 if (!c1 || (c1 != c2))
11fec41c
KP
305 break;
306 }
307 return c1 == c2 || !c2;
308}
309
310/*
311 * Does s1 contain an instance of s2 (ignoring blanks and case)?
312 */
313
314const FcChar8 *
315FcStrContainsIgnoreBlanksAndCase (const FcChar8 *s1, const FcChar8 *s2)
316{
317 while (*s1)
318 {
319 if (FcStrIsAtIgnoreBlanksAndCase (s1, s2))
320 return s1;
321 s1++;
322 }
323 return 0;
324}
325
4ee9ca67
KP
326static FcBool
327FcCharIsPunct (const FcChar8 c)
328{
329 if (c < '0')
330 return FcTrue;
331 if (c <= '9')
332 return FcFalse;
333 if (c < 'A')
334 return FcTrue;
335 if (c <= 'Z')
336 return FcFalse;
337 if (c < 'a')
338 return FcTrue;
339 if (c <= 'z')
340 return FcFalse;
341 if (c <= '~')
342 return FcTrue;
343 return FcFalse;
344}
345
11fec41c
KP
346/*
347 * Is the head of s1 equal to s2?
348 */
349
350static FcBool
351FcStrIsAtIgnoreCase (const FcChar8 *s1, const FcChar8 *s2)
352{
192296d8
KP
353 FcCaseWalker w1, w2;
354 FcChar8 c1, c2;
355
356 FcStrCaseWalkerInit (s1, &w1);
357 FcStrCaseWalkerInit (s2, &w2);
11fec41c
KP
358
359 for (;;)
360 {
192296d8
KP
361 c1 = FcStrCaseWalkerNext (&w1);
362 c2 = FcStrCaseWalkerNext (&w2);
363 if (!c1 || (c1 != c2))
11fec41c
KP
364 break;
365 }
366 return c1 == c2 || !c2;
367}
368
369/*
fc990b2e 370 * Does s1 contain an instance of s2 (ignoring blanks and case)?
11fec41c
KP
371 */
372
373const FcChar8 *
374FcStrContainsIgnoreCase (const FcChar8 *s1, const FcChar8 *s2)
375{
376 while (*s1)
377 {
378 if (FcStrIsAtIgnoreCase (s1, s2))
379 return s1;
380 s1++;
381 }
382 return 0;
383}
384
4ee9ca67
KP
385/*
386 * Does s1 contain an instance of s2 on a word boundary (ignoring case)?
387 */
388
389const FcChar8 *
390FcStrContainsWord (const FcChar8 *s1, const FcChar8 *s2)
391{
392 FcBool wordStart = FcTrue;
393 int s1len = strlen ((char *) s1);
394 int s2len = strlen ((char *) s2);
395
396 while (s1len >= s2len)
397 {
398 if (wordStart &&
399 FcStrIsAtIgnoreCase (s1, s2) &&
400 (s1len == s2len || FcCharIsPunct (s1[s2len])))
401 {
402 return s1;
403 }
404 wordStart = FcFalse;
405 if (FcCharIsPunct (*s1))
406 wordStart = FcTrue;
407 s1++;
408 s1len--;
409 }
410 return 0;
411}
412
d4d1e8bc
JS
413const FcChar8 *
414FcStrStrIgnoreCase (const FcChar8 *s1, const FcChar8 *s2)
415{
192296d8
KP
416 FcCaseWalker w1, w2;
417 FcChar8 c1, c2;
418 const FcChar8 *cur;
d4d1e8bc
JS
419
420 if (!s1 || !s2)
421 return 0;
422
423 if (s1 == s2)
424 return s1;
192296d8
KP
425
426 FcStrCaseWalkerInit (s1, &w1);
427 FcStrCaseWalkerInit (s2, &w2);
428
429 c2 = FcStrCaseWalkerNext (&w2);
430
431 for (;;)
d4d1e8bc 432 {
192296d8
KP
433 cur = w1.src;
434 c1 = FcStrCaseWalkerNext (&w1);
435 if (!c1)
d4d1e8bc 436 break;
192296d8
KP
437 if (c1 == c2)
438 {
439 FcCaseWalker w1t = w1;
440 FcCaseWalker w2t = w2;
441 FcChar8 c1t, c2t;
d4d1e8bc 442
192296d8
KP
443 for (;;)
444 {
445 c1t = FcStrCaseWalkerNext (&w1t);
446 c2t = FcStrCaseWalkerNext (&w2t);
d4d1e8bc 447
192296d8
KP
448 if (!c2t)
449 return cur;
450 if (c2t != c1t)
451 break;
452 }
d4d1e8bc 453 }
d4d1e8bc 454 }
d4d1e8bc
JS
455 return 0;
456}
457
458const FcChar8 *
459FcStrStr (const FcChar8 *s1, const FcChar8 *s2)
460{
461 FcChar8 c1, c2;
462 const FcChar8 * p = s1;
463 const FcChar8 * b = s2;
464
465 if (!s1 || !s2)
466 return 0;
467
468 if (s1 == s2)
469 return s1;
470
471again:
472 c2 = *s2++;
473
474 if (!c2)
475 return 0;
476
477 for (;;)
478 {
479 p = s1;
480 c1 = *s1++;
481 if (!c1 || c1 == c2)
482 break;
483 }
484
485 if (c1 != c2)
486 return 0;
487
488 for (;;)
489 {
490 c1 = *s1;
491 c2 = *s2;
492 if (c1 && c2 && c1 != c2)
493 {
494 s1 = p + 1;
495 s2 = b;
496 goto again;
497 }
498 if (!c2)
499 return p;
500 if (!c1)
501 return 0;
502 ++ s1;
503 ++ s2;
504 }
b023dbd3 505 /* never reached. */
d4d1e8bc
JS
506}
507
24330d27 508int
0f9a306e
KP
509FcUtf8ToUcs4 (const FcChar8 *src_orig,
510 FcChar32 *dst,
511 int len)
24330d27 512{
0f9a306e
KP
513 const FcChar8 *src = src_orig;
514 FcChar8 s;
515 int extra;
516 FcChar32 result;
24330d27
KP
517
518 if (len == 0)
519 return 0;
520
521 s = *src++;
522 len--;
523
524 if (!(s & 0x80))
525 {
526 result = s;
527 extra = 0;
528 }
529 else if (!(s & 0x40))
530 {
531 return -1;
532 }
533 else if (!(s & 0x20))
534 {
535 result = s & 0x1f;
536 extra = 1;
537 }
538 else if (!(s & 0x10))
539 {
540 result = s & 0xf;
541 extra = 2;
542 }
543 else if (!(s & 0x08))
544 {
545 result = s & 0x07;
546 extra = 3;
547 }
548 else if (!(s & 0x04))
549 {
550 result = s & 0x03;
551 extra = 4;
552 }
553 else if ( ! (s & 0x02))
554 {
555 result = s & 0x01;
556 extra = 5;
557 }
558 else
559 {
560 return -1;
561 }
562 if (extra > len)
563 return -1;
564
565 while (extra--)
566 {
567 result <<= 6;
568 s = *src++;
569
570 if ((s & 0xc0) != 0x80)
571 return -1;
572
573 result |= s & 0x3f;
574 }
575 *dst = result;
576 return src - src_orig;
577}
578
579FcBool
0f9a306e
KP
580FcUtf8Len (const FcChar8 *string,
581 int len,
582 int *nchar,
583 int *wchar)
24330d27
KP
584{
585 int n;
586 int clen;
587 FcChar32 c;
588 FcChar32 max;
589
590 n = 0;
591 max = 0;
592 while (len)
593 {
594 clen = FcUtf8ToUcs4 (string, &c, len);
595 if (clen <= 0) /* malformed UTF8 string */
596 return FcFalse;
597 if (c > max)
598 max = c;
599 string += clen;
600 len -= clen;
601 n++;
602 }
603 *nchar = n;
604 if (max >= 0x10000)
605 *wchar = 4;
606 else if (max > 0x100)
607 *wchar = 2;
608 else
609 *wchar = 1;
610 return FcTrue;
611}
c2e7c611 612
69937bd9
KP
613int
614FcUcs4ToUtf8 (FcChar32 ucs4,
615 FcChar8 dest[FC_UTF8_MAX_LEN])
616{
617 int bits;
618 FcChar8 *d = dest;
619
620 if (ucs4 < 0x80) { *d++= ucs4; bits= -6; }
621 else if (ucs4 < 0x800) { *d++= ((ucs4 >> 6) & 0x1F) | 0xC0; bits= 0; }
622 else if (ucs4 < 0x10000) { *d++= ((ucs4 >> 12) & 0x0F) | 0xE0; bits= 6; }
623 else if (ucs4 < 0x200000) { *d++= ((ucs4 >> 18) & 0x07) | 0xF0; bits= 12; }
624 else if (ucs4 < 0x4000000) { *d++= ((ucs4 >> 24) & 0x03) | 0xF8; bits= 18; }
625 else if (ucs4 < 0x80000000) { *d++= ((ucs4 >> 30) & 0x01) | 0xFC; bits= 24; }
626 else return 0;
627
628 for ( ; bits >= 0; bits-= 6) {
629 *d++= ((ucs4 >> bits) & 0x3F) | 0x80;
630 }
631 return d - dest;
632}
633
634#define GetUtf16(src,endian) \
635 ((FcChar16) ((src)[endian == FcEndianBig ? 0 : 1] << 8) | \
636 (FcChar16) ((src)[endian == FcEndianBig ? 1 : 0]))
637
638int
0f9a306e
KP
639FcUtf16ToUcs4 (const FcChar8 *src_orig,
640 FcEndian endian,
641 FcChar32 *dst,
642 int len) /* in bytes */
69937bd9 643{
0f9a306e
KP
644 const FcChar8 *src = src_orig;
645 FcChar16 a, b;
646 FcChar32 result;
69937bd9
KP
647
648 if (len < 2)
649 return 0;
650
651 a = GetUtf16 (src, endian); src += 2; len -= 2;
652
653 /*
654 * Check for surrogate
655 */
656 if ((a & 0xfc00) == 0xd800)
657 {
658 if (len < 2)
659 return 0;
660 b = GetUtf16 (src, endian); src += 2; len -= 2;
661 /*
662 * Check for invalid surrogate sequence
663 */
664 if ((b & 0xfc00) != 0xdc00)
665 return 0;
666 result = ((((FcChar32) a & 0x3ff) << 10) |
45fb31aa 667 ((FcChar32) b & 0x3ff)) + 0x10000;
69937bd9
KP
668 }
669 else
670 result = a;
671 *dst = result;
672 return src - src_orig;
673}
674
675FcBool
0f9a306e
KP
676FcUtf16Len (const FcChar8 *string,
677 FcEndian endian,
678 int len, /* in bytes */
679 int *nchar,
680 int *wchar)
69937bd9
KP
681{
682 int n;
683 int clen;
684 FcChar32 c;
685 FcChar32 max;
686
687 n = 0;
688 max = 0;
689 while (len)
690 {
691 clen = FcUtf16ToUcs4 (string, endian, &c, len);
692 if (clen <= 0) /* malformed UTF8 string */
693 return FcFalse;
694 if (c > max)
695 max = c;
696 string += clen;
697 len -= clen;
698 n++;
699 }
700 *nchar = n;
701 if (max >= 0x10000)
702 *wchar = 4;
703 else if (max > 0x100)
704 *wchar = 2;
705 else
706 *wchar = 1;
707 return FcTrue;
708}
709
c2e7c611
KP
710void
711FcStrBufInit (FcStrBuf *buf, FcChar8 *init, int size)
712{
7d35c11b
BE
713 if (init)
714 {
715 buf->buf = init;
716 buf->size = size;
717 } else
718 {
719 buf->buf = buf->static_buf;
720 buf->size = sizeof (buf->static_buf);
721 }
c2e7c611
KP
722 buf->allocated = FcFalse;
723 buf->failed = FcFalse;
724 buf->len = 0;
c2e7c611
KP
725}
726
727void
728FcStrBufDestroy (FcStrBuf *buf)
729{
730 if (buf->allocated)
731 {
9dac3c59 732 FcMemFree (FC_MEM_STRBUF, buf->size);
c2e7c611
KP
733 free (buf->buf);
734 FcStrBufInit (buf, 0, 0);
735 }
736}
737
738FcChar8 *
739FcStrBufDone (FcStrBuf *buf)
740{
741 FcChar8 *ret;
742
dccbbe83
BE
743 if (buf->failed)
744 ret = NULL;
745 else
746 ret = malloc (buf->len + 1);
c2e7c611
KP
747 if (ret)
748 {
9dac3c59 749 FcMemAlloc (FC_MEM_STRING, buf->len + 1);
c2e7c611
KP
750 memcpy (ret, buf->buf, buf->len);
751 ret[buf->len] = '\0';
752 }
753 FcStrBufDestroy (buf);
754 return ret;
755}
756
3ed70071
BE
757FcChar8 *
758FcStrBufDoneStatic (FcStrBuf *buf)
759{
760 FcChar8 *ret;
761
762 FcStrBufChar (buf, '\0');
763
764 if (buf->failed)
765 return NULL;
766
767 return buf->buf;
768}
769
c2e7c611
KP
770FcBool
771FcStrBufChar (FcStrBuf *buf, FcChar8 c)
772{
773 if (buf->len == buf->size)
774 {
775 FcChar8 *new;
776 int size;
777
dccbbe83
BE
778 if (buf->failed)
779 return FcFalse;
780
c2e7c611
KP
781 if (buf->allocated)
782 {
783 size = buf->size * 2;
784 new = realloc (buf->buf, size);
785 }
786 else
787 {
0037aad5 788 size = buf->size + 64;
c2e7c611
KP
789 new = malloc (size);
790 if (new)
791 {
792 buf->allocated = FcTrue;
793 memcpy (new, buf->buf, buf->len);
794 }
795 }
796 if (!new)
797 {
798 buf->failed = FcTrue;
799 return FcFalse;
800 }
9dac3c59
KP
801 if (buf->size)
802 FcMemFree (FC_MEM_STRBUF, buf->size);
803 FcMemAlloc (FC_MEM_STRBUF, size);
c2e7c611
KP
804 buf->size = size;
805 buf->buf = new;
806 }
807 buf->buf[buf->len++] = c;
808 return FcTrue;
809}
810
811FcBool
812FcStrBufString (FcStrBuf *buf, const FcChar8 *s)
813{
814 FcChar8 c;
815 while ((c = *s++))
816 if (!FcStrBufChar (buf, c))
817 return FcFalse;
818 return FcTrue;
819}
820
821FcBool
822FcStrBufData (FcStrBuf *buf, const FcChar8 *s, int len)
823{
824 while (len-- > 0)
825 if (!FcStrBufChar (buf, *s++))
826 return FcFalse;
827 return FcTrue;
828}
829
ff3f1f98
KP
830FcBool
831FcStrUsesHome (const FcChar8 *s)
832{
833 return *s == '~';
834}
835
179c3995
KP
836FcChar8 *
837FcStrCopyFilename (const FcChar8 *s)
838{
839 FcChar8 *new;
840
841 if (*s == '~')
842 {
ff3f1f98 843 FcChar8 *home = FcConfigHome ();
9b511b29 844 FcChar8 *full;
dda27aa9 845 int size;
179c3995
KP
846 if (!home)
847 return 0;
dda27aa9 848 size = strlen ((char *) home) + strlen ((char *) s);
9b511b29 849 full = (FcChar8 *) malloc (size);
e3b771a6 850 if (!full)
179c3995 851 return 0;
9b511b29
KP
852 strcpy ((char *) full, (char *) home);
853 strcat ((char *) full, (char *) s + 1);
854 new = FcStrCanonFilename (full);
855 free (full);
179c3995
KP
856 }
857 else
9b511b29 858 new = FcStrCanonFilename (s);
179c3995
KP
859 return new;
860}
861
daeed6e0
TL
862FcChar8 *
863FcStrLastSlash (const FcChar8 *path)
864{
865 FcChar8 *slash;
866
867 slash = (FcChar8 *) strrchr ((const char *) path, '/');
868#ifdef _WIN32
869 {
870 FcChar8 *backslash;
871
872 backslash = (FcChar8 *) strrchr ((const char *) path, '\\');
873 if (!slash || (backslash && backslash > slash))
874 slash = backslash;
875 }
876#endif
877
878 return slash;
879}
880
179c3995
KP
881FcChar8 *
882FcStrDirname (const FcChar8 *file)
883{
884 FcChar8 *slash;
885 FcChar8 *dir;
886
daeed6e0 887 slash = FcStrLastSlash (file);
179c3995
KP
888 if (!slash)
889 return FcStrCopy ((FcChar8 *) ".");
890 dir = malloc ((slash - file) + 1);
891 if (!dir)
892 return 0;
893 FcMemAlloc (FC_MEM_STRING, (slash - file) + 1);
894 strncpy ((char *) dir, (const char *) file, slash - file);
895 dir[slash - file] = '\0';
896 return dir;
897}
898
899FcChar8 *
900FcStrBasename (const FcChar8 *file)
901{
902 FcChar8 *slash;
903
daeed6e0 904 slash = FcStrLastSlash (file);
179c3995
KP
905 if (!slash)
906 return FcStrCopy (file);
907 return FcStrCopy (slash + 1);
908}
909
b5803016 910static FcChar8 *
1de7a4cc 911FcStrCanonAbsoluteFilename (const FcChar8 *s)
0d9e31c8
KP
912{
913 FcChar8 *file;
914 FcChar8 *f;
915 const FcChar8 *slash;
9b511b29 916 int size;
1de7a4cc 917
9b511b29
KP
918 size = strlen ((char *) s) + 1;
919 file = malloc (size);
0d9e31c8
KP
920 if (!file)
921 return NULL;
9b511b29 922 FcMemAlloc (FC_MEM_STRING, size);
0d9e31c8
KP
923 slash = NULL;
924 f = file;
925 for (;;) {
926 if (*s == '/' || *s == '\0')
927 {
928 if (slash)
929 {
930 switch (s - slash) {
1bcf4ae5
BE
931 case 1:
932 f -= 1; /* squash // and trim final / from file */
933 break;
0d9e31c8
KP
934 case 2:
935 if (!strncmp ((char *) slash, "/.", 2))
936 {
937 f -= 2; /* trim /. from file */
938 }
939 break;
940 case 3:
941 if (!strncmp ((char *) slash, "/..", 3))
942 {
943 f -= 3; /* trim /.. from file */
944 while (f > file) {
945 if (*--f == '/')
946 break;
947 }
948 }
949 break;
950 }
951 }
952 slash = s;
953 }
954 if (!(*f++ = *s++))
955 break;
956 }
957 return file;
958}
1de7a4cc
HWN
959
960#ifdef _WIN32
961/*
962 * Convert '\\' to '/' , remove double '/'
963 */
964static void
965FcConvertDosPath (char *str)
966{
967 size_t len = strlen (str);
968 char *p = str;
969 char *dest = str;
970 char *end = str + len;
971 char last = 0;
f9feb587
BE
972
973 if (*p == '\\')
974 {
975 *p = '/';
976 p++;
977 dest++;
978 }
1de7a4cc
HWN
979 while (p < end)
980 {
981 if (*p == '\\')
982 *p = '/';
983
984 if (*p != '/'
985 || last != '/')
986 {
987 *dest++ = *p;
988 }
989
990 last = *p;
991 p++;
992 }
993
994 *dest = 0;
995}
996#endif
997
998FcChar8 *
999FcStrCanonFilename (const FcChar8 *s)
1000{
1001#ifdef _WIN32
1002 FcChar8 full[FC_MAX_FILE_LEN + 2];
1de7a4cc 1003 int size = GetFullPathName (s, sizeof (full) -1,
e62058ab 1004 full, NULL);
1de7a4cc
HWN
1005
1006 if (size == 0)
1007 perror ("GetFullPathName");
1008
1009 FcConvertDosPath (full);
1010 return FcStrCanonAbsoluteFilename (full);
1011#else
1012 if (s[0] == '/')
1013 return FcStrCanonAbsoluteFilename (s);
1014 else
1015 {
1016 FcChar8 *full;
1017 FcChar8 *file;
1018
1019 FcChar8 cwd[FC_MAX_FILE_LEN + 2];
1020 if (getcwd ((char *) cwd, FC_MAX_FILE_LEN) == NULL)
1021 return NULL;
1022 strcat ((char *) cwd, "/");
1023 full = FcStrPlus (cwd, s);
1024 file = FcStrCanonAbsoluteFilename (full);
1025 FcStrFree (full);
1026 return file;
1027 }
1028#endif
1029}
1030
0d9e31c8 1031
179c3995
KP
1032FcStrSet *
1033FcStrSetCreate (void)
1034{
1035 FcStrSet *set = malloc (sizeof (FcStrSet));
1036 if (!set)
1037 return 0;
1038 FcMemAlloc (FC_MEM_STRSET, sizeof (FcStrSet));
1039 set->ref = 1;
1040 set->num = 0;
1041 set->size = 0;
4262e0b3 1042 set->strs = 0;
179c3995
KP
1043 return set;
1044}
1045
1046static FcBool
1047_FcStrSetAppend (FcStrSet *set, FcChar8 *s)
1048{
1049 if (FcStrSetMember (set, s))
1050 {
1051 FcStrFree (s);
1052 return FcTrue;
1053 }
4262e0b3 1054 if (set->num == set->size)
179c3995
KP
1055 {
1056 FcChar8 **strs = malloc ((set->size + 2) * sizeof (FcChar8 *));
1057
1058 if (!strs)
1059 return FcFalse;
1060 FcMemAlloc (FC_MEM_STRSET, (set->size + 2) * sizeof (FcChar8 *));
4262e0b3
PL
1061 if (set->num)
1062 memcpy (strs, set->strs, set->num * sizeof (FcChar8 *));
1063 if (set->strs)
13a14cbf
KP
1064 {
1065 FcMemFree (FC_MEM_STRSET, (set->size + 1) * sizeof (FcChar8 *));
4262e0b3 1066 free (set->strs);
13a14cbf
KP
1067 }
1068 set->size = set->size + 1;
4262e0b3
PL
1069 set->strs = strs;
1070 }
1071 set->strs[set->num++] = s;
1072 set->strs[set->num] = 0;
179c3995
KP
1073 return FcTrue;
1074}
1075
1076FcBool
1077FcStrSetMember (FcStrSet *set, const FcChar8 *s)
1078{
1079 int i;
1080
1081 for (i = 0; i < set->num; i++)
4262e0b3 1082 if (!FcStrCmp (set->strs[i], s))
179c3995
KP
1083 return FcTrue;
1084 return FcFalse;
1085}
1086
d8d73958
KP
1087FcBool
1088FcStrSetEqual (FcStrSet *sa, FcStrSet *sb)
1089{
1090 int i;
1091 if (sa->num != sb->num)
1092 return FcFalse;
1093 for (i = 0; i < sa->num; i++)
4262e0b3 1094 if (!FcStrSetMember (sb, sa->strs[i]))
d8d73958
KP
1095 return FcFalse;
1096 return FcTrue;
1097}
1098
179c3995
KP
1099FcBool
1100FcStrSetAdd (FcStrSet *set, const FcChar8 *s)
1101{
1102 FcChar8 *new = FcStrCopy (s);
1103 if (!new)
1104 return FcFalse;
1105 if (!_FcStrSetAppend (set, new))
1106 {
1107 FcStrFree (new);
1108 return FcFalse;
1109 }
1110 return FcTrue;
1111}
1112
1113FcBool
1114FcStrSetAddFilename (FcStrSet *set, const FcChar8 *s)
1115{
1116 FcChar8 *new = FcStrCopyFilename (s);
1117 if (!new)
1118 return FcFalse;
1119 if (!_FcStrSetAppend (set, new))
1120 {
1121 FcStrFree (new);
1122 return FcFalse;
1123 }
1124 return FcTrue;
1125}
1126
1127FcBool
1128FcStrSetDel (FcStrSet *set, const FcChar8 *s)
1129{
1130 int i;
1131
1132 for (i = 0; i < set->num; i++)
4262e0b3 1133 if (!FcStrCmp (set->strs[i], s))
179c3995 1134 {
4262e0b3 1135 FcStrFree (set->strs[i]);
179c3995
KP
1136 /*
1137 * copy remaining string pointers and trailing
1138 * NULL
1139 */
4262e0b3 1140 memmove (&set->strs[i], &set->strs[i+1],
179c3995
KP
1141 (set->num - i) * sizeof (FcChar8 *));
1142 set->num--;
1143 return FcTrue;
1144 }
1145 return FcFalse;
1146}
1147
1148void
1149FcStrSetDestroy (FcStrSet *set)
1150{
1151 if (--set->ref == 0)
1152 {
1153 int i;
1154
4262e0b3
PL
1155 for (i = 0; i < set->num; i++)
1156 FcStrFree (set->strs[i]);
4262e0b3 1157 if (set->strs)
13a14cbf
KP
1158 {
1159 FcMemFree (FC_MEM_STRSET, (set->size + 1) * sizeof (FcChar8 *));
4262e0b3 1160 free (set->strs);
13a14cbf 1161 }
4262e0b3 1162 FcMemFree (FC_MEM_STRSET, sizeof (FcStrSet));
179c3995
KP
1163 free (set);
1164 }
1165}
1166
1167FcStrList *
1168FcStrListCreate (FcStrSet *set)
1169{
1170 FcStrList *list;
1171
1172 list = malloc (sizeof (FcStrList));
1173 if (!list)
1174 return 0;
1175 FcMemAlloc (FC_MEM_STRLIST, sizeof (FcStrList));
1176 list->set = set;
1177 set->ref++;
1178 list->n = 0;
1179 return list;
1180}
1181
1182FcChar8 *
1183FcStrListNext (FcStrList *list)
1184{
1185 if (list->n >= list->set->num)
1186 return 0;
4262e0b3 1187 return list->set->strs[list->n++];
179c3995
KP
1188}
1189
1190void
1191FcStrListDone (FcStrList *list)
1192{
1193 FcStrSetDestroy (list->set);
1194 FcMemFree (FC_MEM_STRLIST, sizeof (FcStrList));
1195 free (list);
1196}
7ce19673 1197
23816bf9
KP
1198#define __fcstr__
1199#include "fcaliastail.h"
1200#undef __fcstr__