5af764eba1d8ddee31492b03815d362530589a5d
[gnulib.git] / lib / uninorm / u-normcoll.h
1 /* Locale dependent, normalization insensitive comparison of Unicode strings.
2    Copyright (C) 2009 Free Software Foundation, Inc.
3    Written by Bruno Haible <bruno@clisp.org>, 2009.
4
5    This program is free software: you can redistribute it and/or modify it
6    under the terms of the GNU Lesser General Public License as published
7    by the Free Software Foundation; either version 3 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
14
15    You should have received a copy of the GNU Lesser General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
17
18 int
19 FUNC (const UNIT *s1, size_t n1, const UNIT *s2, size_t n2,
20       uninorm_t nf, int *result)
21 {
22   char buf1[2048];
23   char buf2[2048];
24   char *transformed1;
25   size_t transformed1_length;
26   char *transformed2;
27   size_t transformed2_length;
28   int cmp;
29
30   /* Normalize and transform S1.  */
31   transformed1_length = sizeof (buf1);
32   transformed1 = U_NORMXFRM (s1, n1, nf, buf1, &transformed1_length);
33   if (transformed1 == NULL)
34     return errno;
35
36   /* Normalize and transform S2.  */
37   transformed2_length = sizeof (buf2);
38   transformed2 = U_NORMXFRM (s2, n2, nf, buf2, &transformed2_length);
39   if (transformed2 == NULL)
40     {
41       int saved_errno = errno;
42       if (transformed1 != buf1)
43         free (transformed1);
44       return saved_errno;
45     }
46
47   /* Compare the transformed strings.  */
48   cmp = memcmp2 (transformed1, transformed1_length,
49                  transformed2, transformed2_length);
50   if (cmp < 0)
51     cmp = -1;
52   else if (cmp > 0)
53     cmp = 1;
54
55   if (transformed2 != buf2)
56     free (transformed2);
57   if (transformed1 != buf1)
58     free (transformed1);
59   *result = cmp;
60   return 0;
61 }