* Ooops: Forgot to credit Neil for the bug report.
[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
c3ee7520 127SCM_DEFINE1 (scm_string_less_p, "string<?", scm_tc7_rpsubr,
6e8d25a6 128 (SCM s1, SCM s2),
5ffe9968
GB
129 "Lexicographic ordering predicate; returns @t{#t} if @var{s1}\n"
130 "is lexicographically less than @var{s2}. (r5rs)")
6e8d25a6 131#define FUNC_NAME s_scm_string_less_p
0f2d19dd 132{
e9bfab50
DH
133 scm_sizet i, length1, length2, lengthm;
134 unsigned char *c1, *c2;
135
136 SCM_VALIDATE_STRING (1, s1);
137 SCM_VALIDATE_STRING (2, s2);
138
139 length1 = SCM_STRING_LENGTH (s1);
140 length2 = SCM_STRING_LENGTH (s2);
141 lengthm = min (length1, length2);
34f0f2b8
DH
142 c1 = SCM_STRING_UCHARS (s1);
143 c2 = SCM_STRING_UCHARS (s2);
0f2d19dd 144
e9bfab50
DH
145 for (i = 0; i != lengthm; ++i, ++c1, ++c2) {
146 int c = *c1 - *c2;
147 if (c < 0) return SCM_BOOL_T;
148 if (c > 0) return SCM_BOOL_F;
0f2d19dd 149 }
e9bfab50
DH
150
151 return SCM_BOOL (length1 < length2);
0f2d19dd 152}
6e8d25a6 153#undef FUNC_NAME
0f2d19dd 154
e9bfab50 155
c3ee7520 156SCM_DEFINE1 (scm_string_leq_p, "string<=?", scm_tc7_rpsubr,
6e8d25a6 157 (SCM s1, SCM s2),
5ffe9968
GB
158 "Lexicographic ordering predicate; returns @t{#t} if @var{s1}\n"
159 "is lexicographically less than or equal to @var{s2}. (r5rs)")
6e8d25a6 160#define FUNC_NAME s_scm_string_leq_p
0f2d19dd
JB
161{
162 return SCM_BOOL_NOT (scm_string_less_p (s2, s1));
163}
6e8d25a6 164#undef FUNC_NAME
0f2d19dd 165
e9bfab50 166
c3ee7520 167SCM_DEFINE1 (scm_string_gr_p, "string>?", scm_tc7_rpsubr,
6e8d25a6 168 (SCM s1, SCM s2),
5ffe9968
GB
169 "Lexicographic ordering predicate; returns @t{#t} if @var{s1}\n"
170 "is lexicographically greater than @var{s2}. (r5rs)")
6e8d25a6 171#define FUNC_NAME s_scm_string_gr_p
0f2d19dd
JB
172{
173 return scm_string_less_p (s2, s1);
174}
6e8d25a6 175#undef FUNC_NAME
0f2d19dd 176
e9bfab50 177
c3ee7520 178SCM_DEFINE1 (scm_string_geq_p, "string>=?", scm_tc7_rpsubr,
6e8d25a6 179 (SCM s1, SCM s2),
5ffe9968
GB
180 "Lexicographic ordering predicate; returns @t{#t} if @var{s1}\n"
181 "is lexicographically greater than or equal to @var{s2}. (r5rs)")
6e8d25a6 182#define FUNC_NAME s_scm_string_geq_p
0f2d19dd
JB
183{
184 return SCM_BOOL_NOT (scm_string_less_p (s1, s2));
185}
6e8d25a6 186#undef FUNC_NAME
0f2d19dd 187
e9bfab50 188
c3ee7520 189SCM_DEFINE1 (scm_string_ci_less_p, "string-ci<?", scm_tc7_rpsubr,
6e8d25a6 190 (SCM s1, SCM s2),
5ffe9968
GB
191 "Case insensitive lexicographic ordering predicate; \n"
192 "returns @t{#t} if @var{s1} is lexicographically less than\n"
193 "@var{s2} regardless of case. (r5rs)")
6e8d25a6 194#define FUNC_NAME s_scm_string_ci_less_p
0f2d19dd 195{
e9bfab50
DH
196 scm_sizet i, length1, length2, lengthm;
197 unsigned char *c1, *c2;
198
199 SCM_VALIDATE_STRING (1, s1);
200 SCM_VALIDATE_STRING (2, s2);
201
202 length1 = SCM_STRING_LENGTH (s1);
203 length2 = SCM_STRING_LENGTH (s2);
204 lengthm = min (length1, length2);
34f0f2b8
DH
205 c1 = SCM_STRING_UCHARS (s1);
206 c2 = SCM_STRING_UCHARS (s2);
e9bfab50
DH
207
208 for (i = 0; i != lengthm; ++i, ++c1, ++c2) {
209 int c = scm_upcase (*c1) - scm_upcase (*c2);
210 if (c < 0) return SCM_BOOL_T;
211 if (c > 0) return SCM_BOOL_F;
0f2d19dd 212 }
e9bfab50
DH
213
214 return SCM_BOOL (length1 < length2);
0f2d19dd 215}
6e8d25a6 216#undef FUNC_NAME
0f2d19dd 217
e9bfab50 218
c3ee7520 219SCM_DEFINE1 (scm_string_ci_leq_p, "string-ci<=?", scm_tc7_rpsubr,
6e8d25a6 220 (SCM s1, SCM s2),
5ffe9968
GB
221 "Case insensitive lexicographic ordering predicate; \n"
222 "returns @t{#t} if @var{s1} is lexicographically less than\n"
223 "or equal to @var{s2} regardless of case. (r5rs)")
6e8d25a6 224#define FUNC_NAME s_scm_string_ci_leq_p
0f2d19dd
JB
225{
226 return SCM_BOOL_NOT (scm_string_ci_less_p (s2, s1));
227}
6e8d25a6 228#undef FUNC_NAME
0f2d19dd 229
e9bfab50 230
c3ee7520 231SCM_DEFINE1 (scm_string_ci_gr_p, "string-ci>?", scm_tc7_rpsubr,
6e8d25a6 232 (SCM s1, SCM s2),
5ffe9968
GB
233 "Case insensitive lexicographic ordering predicate; \n"
234 "returns @t{#t} if @var{s1} is lexicographically greater than\n"
235 "@var{s2} regardless of case. (r5rs)")
6e8d25a6 236#define FUNC_NAME s_scm_string_ci_gr_p
0f2d19dd
JB
237{
238 return scm_string_ci_less_p (s2, s1);
239}
6e8d25a6 240#undef FUNC_NAME
0f2d19dd 241
e9bfab50 242
c3ee7520 243SCM_DEFINE1 (scm_string_ci_geq_p, "string-ci>=?", scm_tc7_rpsubr,
6e8d25a6 244 (SCM s1, SCM s2),
5ffe9968
GB
245 "Case insensitive lexicographic ordering predicate; \n"
246 "returns @t{#t} if @var{s1} is lexicographically greater than\n"
247 "or equal to @var{s2} regardless of case. (r5rs)")
6e8d25a6 248#define FUNC_NAME s_scm_string_ci_geq_p
0f2d19dd
JB
249{
250 return SCM_BOOL_NOT (scm_string_ci_less_p (s1, s2));
251}
6e8d25a6 252#undef FUNC_NAME
0f2d19dd
JB
253
254\f
1cc91f1b 255
0f2d19dd
JB
256void
257scm_init_strorder ()
0f2d19dd 258{
8dc9439f 259#ifndef SCM_MAGIC_SNARFER
a0599745 260#include "libguile/strorder.x"
8dc9439f 261#endif
0f2d19dd
JB
262}
263
89e00824
ML
264
265/*
266 Local Variables:
267 c-file-style: "gnu"
268 End:
269*/