*** empty log message ***
[bpt/guile.git] / libguile / strorder.c
CommitLineData
f2c9fcb0 1/* Copyright (C) 1995, 1996, 1999, 2000 Free Software Foundation, Inc.
0f2d19dd
JB
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2, or (at your option)
6 * any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this software; see the file COPYING. If not, write to
82892bed
JB
15 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
16 * Boston, MA 02111-1307 USA
0f2d19dd
JB
17 *
18 * As a special exception, the Free Software Foundation gives permission
19 * for additional uses of the text contained in its release of GUILE.
20 *
21 * The exception is that, if you link the GUILE library with other files
22 * to produce an executable, this does not by itself cause the
23 * resulting executable to be covered by the GNU General Public License.
24 * Your use of that executable is in no way restricted on account of
25 * linking the GUILE library code into it.
26 *
27 * This exception does not however invalidate any other reasons why
28 * the executable file might be covered by the GNU General Public License.
29 *
30 * This exception applies only to the code released by the
31 * Free Software Foundation under the name GUILE. If you copy
32 * code from other Free Software Foundation releases into a copy of
33 * GUILE, as the General Public License permits, the exception does
34 * not apply to the code that you add in this way. To avoid misleading
35 * anyone as to the status of such modified files, you must delete
36 * this exception notice from them.
37 *
38 * If you write modifications of your own for GUILE, it is your choice
39 * whether to permit this exception to apply to your modifications.
82892bed 40 * If you do not wish that, delete this exception notice. */
6e8d25a6 41
0f2d19dd
JB
42\f
43
a0599745
MD
44#include "libguile/_scm.h"
45#include "libguile/chars.h"
a002f1a2
DH
46#include "libguile/strings.h"
47#include "libguile/symbols.h"
0f2d19dd 48
a0599745
MD
49#include "libguile/validate.h"
50#include "libguile/strorder.h"
0f2d19dd
JB
51\f
52
c3ee7520 53SCM_DEFINE1 (scm_string_equal_p, "string=?", scm_tc7_rpsubr,
6e8d25a6 54 (SCM s1, SCM s2),
1e6808ea
MG
55 "Lexicographic equality predicate; return @code{#t} if the two\n"
56 "strings are the same length and contain the same characters in\n"
57 "the same positions, otherwise return @code{#f}.\n"
58 "\n"
59 "The procedure @code{string-ci=?} treats upper and lower case\n"
60 "letters as though they were the same character, but\n"
61 "@code{string=?} treats upper and lower case as distinct\n"
62 "characters.")
6e8d25a6 63#define FUNC_NAME s_scm_string_equal_p
0f2d19dd 64{
1be6b49c 65 size_t length;
0f2d19dd 66
e9bfab50
DH
67 SCM_VALIDATE_STRING (1, s1);
68 SCM_VALIDATE_STRING (2, s2);
69
70 length = SCM_STRING_LENGTH (s2);
71 if (SCM_STRING_LENGTH (s1) == length)
0f2d19dd 72 {
34f0f2b8
DH
73 unsigned char *c1 = SCM_STRING_UCHARS (s1) + length - 1;
74 unsigned char *c2 = SCM_STRING_UCHARS (s2) + length - 1;
1be6b49c 75 size_t i;
e9bfab50
DH
76
77 /* comparing from back to front typically finds mismatches faster */
78 for (i = 0; i != length; ++i, --c1, --c2)
79 if (*c1 != *c2)
80 return SCM_BOOL_F;
81
82 return SCM_BOOL_T;
0f2d19dd 83 }
e9bfab50
DH
84 else
85 {
0f2d19dd 86 return SCM_BOOL_F;
e9bfab50 87 }
0f2d19dd 88}
6e8d25a6 89#undef FUNC_NAME
0f2d19dd 90
e9bfab50 91
c3ee7520 92SCM_DEFINE1 (scm_string_ci_equal_p, "string-ci=?", scm_tc7_rpsubr,
6e8d25a6 93 (SCM s1, SCM s2),
1e6808ea
MG
94 "Case-insensitive string equality predicate; return @code{#t} if\n"
95 "the two strings are the same length and their component\n"
96 "characters match (ignoring case) at each position; otherwise\n"
97 "return @code{#f}.")
6e8d25a6 98#define FUNC_NAME s_scm_string_ci_equal_p
0f2d19dd 99{
1be6b49c 100 size_t length;
6e8d25a6 101
e9bfab50
DH
102 SCM_VALIDATE_STRING (1, s1);
103 SCM_VALIDATE_STRING (2, s2);
104
105 length = SCM_STRING_LENGTH (s2);
106 if (SCM_STRING_LENGTH (s1) == length)
0f2d19dd 107 {
34f0f2b8
DH
108 unsigned char *c1 = SCM_STRING_UCHARS (s1) + length - 1;
109 unsigned char *c2 = SCM_STRING_UCHARS (s2) + length - 1;
1be6b49c 110 size_t i;
e9bfab50
DH
111
112 /* comparing from back to front typically finds mismatches faster */
113 for (i = 0; i != length; ++i, --c1, --c2)
114 if (scm_upcase (*c1) != scm_upcase (*c2))
115 return SCM_BOOL_F;
116
117 return SCM_BOOL_T;
0f2d19dd 118 }
e9bfab50
DH
119 else
120 {
0f2d19dd 121 return SCM_BOOL_F;
e9bfab50 122 }
0f2d19dd 123}
6e8d25a6 124#undef FUNC_NAME
0f2d19dd 125
e9bfab50 126
3ba5a6c2
DH
127/* Helper function for the lexicographic ordering predicates.
128 * No argument checking is performed. */
129static SCM
130string_less_p (SCM s1, SCM s2)
0f2d19dd 131{
1be6b49c 132 size_t i, length1, length2, lengthm;
e9bfab50
DH
133 unsigned char *c1, *c2;
134
e9bfab50
DH
135 length1 = SCM_STRING_LENGTH (s1);
136 length2 = SCM_STRING_LENGTH (s2);
137 lengthm = min (length1, length2);
34f0f2b8
DH
138 c1 = SCM_STRING_UCHARS (s1);
139 c2 = SCM_STRING_UCHARS (s2);
0f2d19dd 140
e9bfab50
DH
141 for (i = 0; i != lengthm; ++i, ++c1, ++c2) {
142 int c = *c1 - *c2;
143 if (c < 0) return SCM_BOOL_T;
144 if (c > 0) return SCM_BOOL_F;
0f2d19dd 145 }
e9bfab50
DH
146
147 return SCM_BOOL (length1 < length2);
0f2d19dd 148}
3ba5a6c2
DH
149
150
151SCM_DEFINE1 (scm_string_less_p, "string<?", scm_tc7_rpsubr,
152 (SCM s1, SCM s2),
1e6808ea
MG
153 "Lexicographic ordering predicate; return @code{#t} if @var{s1}\n"
154 "is lexicographically less than @var{s2}.")
3ba5a6c2
DH
155#define FUNC_NAME s_scm_string_less_p
156{
157 SCM_VALIDATE_STRING (1, s1);
158 SCM_VALIDATE_STRING (2, s2);
159
160 return string_less_p (s1, s2);
161}
6e8d25a6 162#undef FUNC_NAME
0f2d19dd 163
e9bfab50 164
c3ee7520 165SCM_DEFINE1 (scm_string_leq_p, "string<=?", scm_tc7_rpsubr,
6e8d25a6 166 (SCM s1, SCM s2),
1e6808ea
MG
167 "Lexicographic ordering predicate; return @code{#t} if @var{s1}\n"
168 "is lexicographically less than or equal to @var{s2}.")
6e8d25a6 169#define FUNC_NAME s_scm_string_leq_p
0f2d19dd 170{
3ba5a6c2
DH
171 SCM_VALIDATE_STRING (1, s1);
172 SCM_VALIDATE_STRING (2, s2);
173
174 return SCM_BOOL_NOT (string_less_p (s2, s1));
0f2d19dd 175}
6e8d25a6 176#undef FUNC_NAME
0f2d19dd 177
e9bfab50 178
c3ee7520 179SCM_DEFINE1 (scm_string_gr_p, "string>?", scm_tc7_rpsubr,
6e8d25a6 180 (SCM s1, SCM s2),
1e6808ea
MG
181 "Lexicographic ordering predicate; return @code{#t} if @var{s1}\n"
182 "is lexicographically greater than @var{s2}.")
6e8d25a6 183#define FUNC_NAME s_scm_string_gr_p
0f2d19dd 184{
3ba5a6c2
DH
185 SCM_VALIDATE_STRING (1, s1);
186 SCM_VALIDATE_STRING (2, s2);
187
188 return string_less_p (s2, s1);
0f2d19dd 189}
6e8d25a6 190#undef FUNC_NAME
0f2d19dd 191
e9bfab50 192
c3ee7520 193SCM_DEFINE1 (scm_string_geq_p, "string>=?", scm_tc7_rpsubr,
6e8d25a6 194 (SCM s1, SCM s2),
1e6808ea
MG
195 "Lexicographic ordering predicate; return @code{#t} if @var{s1}\n"
196 "is lexicographically greater than or equal to @var{s2}.")
6e8d25a6 197#define FUNC_NAME s_scm_string_geq_p
0f2d19dd 198{
3ba5a6c2
DH
199 SCM_VALIDATE_STRING (1, s1);
200 SCM_VALIDATE_STRING (2, s2);
201
202 return SCM_BOOL_NOT (string_less_p (s1, s2));
0f2d19dd 203}
6e8d25a6 204#undef FUNC_NAME
0f2d19dd 205
e9bfab50 206
3ba5a6c2
DH
207/* Helper function for the case insensitive lexicographic ordering
208 * predicates. No argument checking is performed. */
209static SCM
210string_ci_less_p (SCM s1, SCM s2)
0f2d19dd 211{
1be6b49c 212 size_t i, length1, length2, lengthm;
e9bfab50
DH
213 unsigned char *c1, *c2;
214
e9bfab50
DH
215 length1 = SCM_STRING_LENGTH (s1);
216 length2 = SCM_STRING_LENGTH (s2);
217 lengthm = min (length1, length2);
34f0f2b8
DH
218 c1 = SCM_STRING_UCHARS (s1);
219 c2 = SCM_STRING_UCHARS (s2);
e9bfab50
DH
220
221 for (i = 0; i != lengthm; ++i, ++c1, ++c2) {
222 int c = scm_upcase (*c1) - scm_upcase (*c2);
223 if (c < 0) return SCM_BOOL_T;
224 if (c > 0) return SCM_BOOL_F;
0f2d19dd 225 }
e9bfab50
DH
226
227 return SCM_BOOL (length1 < length2);
0f2d19dd 228}
3ba5a6c2
DH
229
230
231SCM_DEFINE1 (scm_string_ci_less_p, "string-ci<?", scm_tc7_rpsubr,
232 (SCM s1, SCM s2),
1e6808ea
MG
233 "Case insensitive lexicographic ordering predicate; return\n"
234 "@code{#t} if @var{s1} is lexicographically less than @var{s2}\n"
235 "regardless of case.")
3ba5a6c2
DH
236#define FUNC_NAME s_scm_string_ci_less_p
237{
238 SCM_VALIDATE_STRING (1, s1);
239 SCM_VALIDATE_STRING (2, s2);
240
241 return string_ci_less_p (s1, s2);
242}
6e8d25a6 243#undef FUNC_NAME
0f2d19dd 244
e9bfab50 245
c3ee7520 246SCM_DEFINE1 (scm_string_ci_leq_p, "string-ci<=?", scm_tc7_rpsubr,
6e8d25a6 247 (SCM s1, SCM s2),
1e6808ea
MG
248 "Case insensitive lexicographic ordering predicate; return\n"
249 "@code{#t} if @var{s1} is lexicographically less than or equal\n"
250 "to @var{s2} regardless of case.")
6e8d25a6 251#define FUNC_NAME s_scm_string_ci_leq_p
0f2d19dd 252{
3ba5a6c2
DH
253 SCM_VALIDATE_STRING (1, s1);
254 SCM_VALIDATE_STRING (2, s2);
255
256 return SCM_BOOL_NOT (string_ci_less_p (s2, s1));
0f2d19dd 257}
6e8d25a6 258#undef FUNC_NAME
0f2d19dd 259
e9bfab50 260
c3ee7520 261SCM_DEFINE1 (scm_string_ci_gr_p, "string-ci>?", scm_tc7_rpsubr,
6e8d25a6 262 (SCM s1, SCM s2),
1e6808ea
MG
263 "Case insensitive lexicographic ordering predicate; return\n"
264 "@code{#t} if @var{s1} is lexicographically greater than\n"
265 "@var{s2} regardless of case.")
6e8d25a6 266#define FUNC_NAME s_scm_string_ci_gr_p
0f2d19dd 267{
3ba5a6c2
DH
268 SCM_VALIDATE_STRING (1, s1);
269 SCM_VALIDATE_STRING (2, s2);
270
271 return string_ci_less_p (s2, s1);
0f2d19dd 272}
6e8d25a6 273#undef FUNC_NAME
0f2d19dd 274
e9bfab50 275
c3ee7520 276SCM_DEFINE1 (scm_string_ci_geq_p, "string-ci>=?", scm_tc7_rpsubr,
6e8d25a6 277 (SCM s1, SCM s2),
1e6808ea
MG
278 "Case insensitive lexicographic ordering predicate; return\n"
279 "@code{#t} if @var{s1} is lexicographically greater than or\n"
280 "equal to @var{s2} regardless of case.")
6e8d25a6 281#define FUNC_NAME s_scm_string_ci_geq_p
0f2d19dd 282{
3ba5a6c2
DH
283 SCM_VALIDATE_STRING (1, s1);
284 SCM_VALIDATE_STRING (2, s2);
285
286 return SCM_BOOL_NOT (string_ci_less_p (s1, s2));
0f2d19dd 287}
6e8d25a6 288#undef FUNC_NAME
0f2d19dd
JB
289
290\f
1cc91f1b 291
0f2d19dd
JB
292void
293scm_init_strorder ()
0f2d19dd 294{
a0599745 295#include "libguile/strorder.x"
0f2d19dd
JB
296}
297
89e00824
ML
298
299/*
300 Local Variables:
301 c-file-style: "gnu"
302 End:
303*/