* extracted the tests from exceptions.test into eval.test and syntax.test.
[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
GB
41
42/* Software engineering face-lift by Greg J. Badros, 11-Dec-1999,
43 gjb@cs.washington.edu, http://www.cs.washington.edu/homes/gjb */
0f2d19dd
JB
44\f
45
46#include <stdio.h>
a0599745
MD
47#include "libguile/_scm.h"
48#include "libguile/chars.h"
a002f1a2
DH
49#include "libguile/strings.h"
50#include "libguile/symbols.h"
0f2d19dd 51
a0599745
MD
52#include "libguile/validate.h"
53#include "libguile/strorder.h"
0f2d19dd
JB
54\f
55
c3ee7520 56SCM_DEFINE1 (scm_string_equal_p, "string=?", scm_tc7_rpsubr,
6e8d25a6 57 (SCM s1, SCM s2),
5ffe9968
GB
58 "Lexicographic equality predicate; \n"
59 "Returns @t{#t} if the two strings are the same length and contain the same\n"
60 "characters in the same positions, otherwise returns @t{#f}. (r5rs)\n\n"
61 "@samp{String-ci=?} treats\n"
62 "upper and lower case letters as though they were the same character, but\n"
63 "@samp{string=?} treats upper and lower case as distinct characters.")
6e8d25a6 64#define FUNC_NAME s_scm_string_equal_p
0f2d19dd 65{
e9bfab50 66 scm_sizet length;
0f2d19dd 67
e9bfab50
DH
68 SCM_VALIDATE_STRING (1, s1);
69 SCM_VALIDATE_STRING (2, s2);
70
71 length = SCM_STRING_LENGTH (s2);
72 if (SCM_STRING_LENGTH (s1) == length)
0f2d19dd 73 {
34f0f2b8
DH
74 unsigned char *c1 = SCM_STRING_UCHARS (s1) + length - 1;
75 unsigned char *c2 = SCM_STRING_UCHARS (s2) + length - 1;
e9bfab50
DH
76 scm_sizet i;
77
78 /* comparing from back to front typically finds mismatches faster */
79 for (i = 0; i != length; ++i, --c1, --c2)
80 if (*c1 != *c2)
81 return SCM_BOOL_F;
82
83 return SCM_BOOL_T;
0f2d19dd 84 }
e9bfab50
DH
85 else
86 {
0f2d19dd 87 return SCM_BOOL_F;
e9bfab50 88 }
0f2d19dd 89}
6e8d25a6 90#undef FUNC_NAME
0f2d19dd 91
e9bfab50 92
c3ee7520 93SCM_DEFINE1 (scm_string_ci_equal_p, "string-ci=?", scm_tc7_rpsubr,
6e8d25a6 94 (SCM s1, SCM s2),
5ffe9968
GB
95 "Case-insensitive string equality predicate; returns @t{#t} if\n"
96 "the two strings are the same length and their component characters\n"
97 "match (ignoring case) at each position; otherwise returns @t{#f}. (r5rs)")
6e8d25a6 98#define FUNC_NAME s_scm_string_ci_equal_p
0f2d19dd 99{
e9bfab50 100 scm_sizet 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;
e9bfab50
DH
110 scm_sizet i;
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{
e9bfab50
DH
132 scm_sizet i, length1, length2, lengthm;
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),
153 "Lexicographic ordering predicate; returns @t{#t} if @var{s1}\n"
154 "is lexicographically less than @var{s2}. (r5rs)")
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),
5ffe9968
GB
167 "Lexicographic ordering predicate; returns @t{#t} if @var{s1}\n"
168 "is lexicographically less than or equal to @var{s2}. (r5rs)")
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),
5ffe9968
GB
181 "Lexicographic ordering predicate; returns @t{#t} if @var{s1}\n"
182 "is lexicographically greater than @var{s2}. (r5rs)")
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),
5ffe9968
GB
195 "Lexicographic ordering predicate; returns @t{#t} if @var{s1}\n"
196 "is lexicographically greater than or equal to @var{s2}. (r5rs)")
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{
e9bfab50
DH
212 scm_sizet i, length1, length2, lengthm;
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),
233 "Case insensitive lexicographic ordering predicate; \n"
234 "returns @t{#t} if @var{s1} is lexicographically less than\n"
235 "@var{s2} regardless of case. (r5rs)")
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),
5ffe9968
GB
248 "Case insensitive lexicographic ordering predicate; \n"
249 "returns @t{#t} if @var{s1} is lexicographically less than\n"
250 "or equal to @var{s2} regardless of case. (r5rs)")
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),
5ffe9968
GB
263 "Case insensitive lexicographic ordering predicate; \n"
264 "returns @t{#t} if @var{s1} is lexicographically greater than\n"
265 "@var{s2} regardless of case. (r5rs)")
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),
5ffe9968
GB
278 "Case insensitive lexicographic ordering predicate; \n"
279 "returns @t{#t} if @var{s1} is lexicographically greater than\n"
280 "or equal to @var{s2} regardless of case. (r5rs)")
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{
8dc9439f 295#ifndef SCM_MAGIC_SNARFER
a0599745 296#include "libguile/strorder.x"
8dc9439f 297#endif
0f2d19dd
JB
298}
299
89e00824
ML
300
301/*
302 Local Variables:
303 c-file-style: "gnu"
304 End:
305*/