2 * Copyright (C) 2012 Oleg Moskalenko <mom040267@gmail.com>
3 * Copyright (C) 2012 Gabor Kovesdan <gabor@FreeBSD.org>
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 #include <sys/cdefs.h>
29 __FBSDID("$FreeBSD$");
31 #include <sys/types.h>
41 isdigit_clocale(wchar_t c
)
44 return (c
>= L
'0' && c
<= L
'9');
48 isalpha_clocale(wchar_t c
)
51 return ((c
>= L
'a' && c
<= L
'z') || (c
>= L
'A' && c
<= L
'Z'));
55 isalnum_clocale(wchar_t c
)
58 return ((c
>= L
'a' && c
<= L
'z') || (c
>= L
'A' && c
<= L
'Z') ||
59 (c
>= L
'0' && c
<= L
'9'));
63 * Find string suffix of format: (\.[A-Za-z~][A-Za-z0-9~]*)*$
64 * Set length of string before suffix.
67 find_suffix(bwstring_iterator si
, bwstring_iterator se
, size_t *len
)
71 bool expect_alpha
, sfx
;
78 while ((si
< se
) && (c
= bws_get_iter_value(si
))) {
81 if (!isalpha_clocale(c
) && (c
!= L
'~'))
83 } else if (c
== L
'.') {
89 } else if (!isalnum_clocale(c
) && (c
!= L
'~'))
92 si
= bws_iterator_inc(si
, 1);
96 /* This code must be here to make the implementation compatible
97 * with WORDING of GNU sort documentation.
98 * But the GNU sort implementation is not following its own
99 * documentation. GNU sort allows empty file extensions
100 * (just dot with nothing after); but the regular expression in
101 * their documentation does not allow empty file extensions.
102 * We chose to make our implementation compatible with GNU sort
103 * implementation. If they will ever fix their bug, this code
104 * must be uncommented. Or they may choose to fix the info page,
105 * then the code stays commented.
116 cmp_chars(wchar_t c1
, wchar_t c2
)
127 if (isdigit_clocale(c1
) || !c1
)
128 return ((isdigit_clocale(c2
) || !c2
) ? 0 : -1);
130 if (isdigit_clocale(c2
) || !c2
)
133 if (isalpha_clocale(c1
))
134 return ((isalpha_clocale(c2
)) ? ((int) c1
- (int) c2
) : -1);
136 if (isalpha_clocale(c2
))
139 return ((int) c1
- (int) c2
);
143 cmpversions(bwstring_iterator si1
, bwstring_iterator se1
,
144 bwstring_iterator si2
, bwstring_iterator se2
)
148 while ((si1
< se1
) || (si2
< se2
)) {
151 while (((si1
< se1
) &&
152 !isdigit_clocale(bws_get_iter_value(si1
))) ||
153 ((si2
< se2
) && !isdigit_clocale(bws_get_iter_value(si2
)))) {
156 c1
= (si1
< se1
) ? bws_get_iter_value(si1
) : 0;
157 c2
= (si2
< se2
) ? bws_get_iter_value(si2
) : 0;
159 cmp
= cmp_chars(c1
, c2
);
164 si1
= bws_iterator_inc(si1
, 1);
166 si2
= bws_iterator_inc(si2
, 1);
169 while (bws_get_iter_value(si1
) == L
'0')
170 si1
= bws_iterator_inc(si1
, 1);
172 while (bws_get_iter_value(si2
) == L
'0')
173 si2
= bws_iterator_inc(si2
, 1);
175 while (isdigit_clocale(bws_get_iter_value(si1
)) &&
176 isdigit_clocale(bws_get_iter_value(si2
))) {
178 diff
= ((int)bws_get_iter_value(si1
) -
179 (int)bws_get_iter_value(si2
));
180 si1
= bws_iterator_inc(si1
, 1);
181 si2
= bws_iterator_inc(si2
, 1);
184 if (isdigit_clocale(bws_get_iter_value(si1
)))
187 if (isdigit_clocale(bws_get_iter_value(si2
)))
198 * Compare two version strings
201 vcmp(struct bwstring
*s1
, struct bwstring
*s2
)
203 bwstring_iterator si1
, si2
;
205 size_t len1
, len2
, slen1
, slen2
;
206 int cmp_bytes
, cmp_res
;
211 cmp_bytes
= bwscmp(s1
, s2
, 0);
215 len1
= slen1
= BWSLEN(s1
);
216 len2
= slen2
= BWSLEN(s2
);
226 c1
= bws_get_iter_value(si1
);
227 c2
= bws_get_iter_value(si2
);
229 if (c1
== L
'.' && (slen1
== 1))
232 if (c2
== L
'.' && (slen2
== 1))
235 if (slen1
== 2 && c1
== L
'.' &&
236 bws_get_iter_value(bws_iterator_inc(si1
, 1)) == L
'.')
238 if (slen2
== 2 && c2
== L
'.' &&
239 bws_get_iter_value(bws_iterator_inc(si2
, 1)) == L
'.')
242 if (c1
== L
'.' && c2
!= L
'.')
244 if (c1
!= L
'.' && c2
== L
'.')
247 if (c1
== L
'.' && c2
== L
'.') {
248 si1
= bws_iterator_inc(si1
, 1);
249 si2
= bws_iterator_inc(si2
, 1);
252 find_suffix(si1
, bws_end(s1
), &len1
);
253 find_suffix(si2
, bws_end(s2
), &len2
);
255 if ((len1
== len2
) && (bws_iterator_cmp(si1
, si2
, len1
) == 0))
258 cmp_res
= cmpversions(si1
, bws_iterator_inc(si1
, len1
), si2
,
259 bws_iterator_inc(si2
, len2
));