* Eliminated use of SCM_ASSERT to check for range errors.
[bpt/guile.git] / libguile / strings.c
CommitLineData
bd9e24b3 1/* Copyright (C) 1995,1996,1998,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. */
1bbd0b84
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 */
44
0f2d19dd
JB
45\f
46
47#include <stdio.h>
faf2c9d7
MD
48#include <string.h>
49
a0599745
MD
50#include "libguile/_scm.h"
51#include "libguile/chars.h"
0f2d19dd 52
a0599745
MD
53#include "libguile/strings.h"
54#include "libguile/validate.h"
0f2d19dd
JB
55\f
56
57/* {Strings}
58 */
59
3b3b36dd 60SCM_DEFINE (scm_string_p, "string?", 1, 0, 0,
6fa73e72
GB
61 (SCM obj),
62 "Returns #t iff OBJ is a string, else returns #f.")
1bbd0b84 63#define FUNC_NAME s_scm_string_p
0f2d19dd 64{
6fa73e72 65 return SCM_BOOL(SCM_STRINGP (obj));
0f2d19dd 66}
1bbd0b84 67#undef FUNC_NAME
0f2d19dd 68
3b3b36dd 69SCM_DEFINE (scm_read_only_string_p, "read-only-string?", 1, 0, 0,
1bbd0b84 70 (SCM x),
7866a09b 71 "Return true if OBJ can be read as a string,\n\n"
b380b885
MD
72 "This illustrates the difference between @code{string?} and\n"
73 "@code{read-only-string?}:\n\n"
74 "@example\n"
75 "(string? \"a string\") @result{} #t\n"
76 "(string? 'a-symbol) @result{} #f\n\n"
77 "(read-only-string? \"a string\") @result{} #t\n"
78 "(read-only-string? 'a-symbol) @result{} #t\n"
79 "@end example")
1bbd0b84 80#define FUNC_NAME s_scm_read_only_string_p
0f2d19dd 81{
1bbd0b84 82 return SCM_BOOL(SCM_ROSTRINGP (x));
0f2d19dd 83}
1bbd0b84 84#undef FUNC_NAME
0f2d19dd 85
bd9e24b3 86SCM_REGISTER_PROC (s_scm_list_to_string, "list->string", 1, 0, 0, scm_string);
1bbd0b84 87
3b3b36dd 88SCM_DEFINE (scm_string, "string", 0, 0, 1,
6fa73e72
GB
89 (SCM chrs),
90 "Returns a newly allocated string composed of the arguments, CHRS.")
1bbd0b84 91#define FUNC_NAME s_scm_string
0f2d19dd 92{
bd9e24b3
GH
93 SCM result;
94
0f2d19dd 95 {
bd9e24b3
GH
96 long i = scm_ilength (chrs);
97
98 SCM_ASSERT (i >= 0, chrs, SCM_ARGn, FUNC_NAME);
99 result = scm_makstr (i, 0);
0f2d19dd 100 }
bd9e24b3
GH
101
102 {
103 unsigned char *data = SCM_UCHARS (result);
104
105 while (SCM_NNULLP (chrs))
106 {
107 SCM elt = SCM_CAR (chrs);
108
7866a09b
GB
109 SCM_VALIDATE_CHAR (SCM_ARGn, elt);
110 *data++ = SCM_CHAR (elt);
bd9e24b3
GH
111 chrs = SCM_CDR (chrs);
112 }
113 }
114 return result;
0f2d19dd 115}
1bbd0b84 116#undef FUNC_NAME
0f2d19dd 117
0f2d19dd 118SCM
1bbd0b84 119scm_makstr (long len, int slots)
0f2d19dd
JB
120{
121 SCM s;
fee7ef83
DH
122 scm_bits_t * mem;
123
0f2d19dd
JB
124 SCM_NEWCELL (s);
125 --slots;
126 SCM_REDEFER_INTS;
fee7ef83
DH
127 mem = (scm_bits_t *) scm_must_malloc (sizeof (scm_bits_t) * (slots + 1)
128 + len + 1, "scm_makstr");
0f2d19dd
JB
129 if (slots >= 0)
130 {
131 int x;
fee7ef83 132 mem[slots] = (scm_bits_t) mem;
0f2d19dd 133 for (x = 0; x < slots; ++x)
fee7ef83 134 mem[x] = SCM_UNPACK (SCM_BOOL_F);
0f2d19dd
JB
135 }
136 SCM_SETCHARS (s, (char *) (mem + slots + 1));
137 SCM_SETLENGTH (s, len, scm_tc7_string);
138 SCM_REALLOW_INTS;
139 SCM_CHARS (s)[len] = 0;
140 return s;
141}
142
143/* converts C scm_array of strings to SCM scm_list of strings. */
144/* If argc < 0, a null terminated scm_array is assumed. */
1cc91f1b 145
0f2d19dd 146SCM
1bbd0b84 147scm_makfromstrs (int argc, char **argv)
0f2d19dd
JB
148{
149 int i = argc;
150 SCM lst = SCM_EOL;
151 if (0 > i)
152 for (i = 0; argv[i]; i++);
153 while (i--)
154 lst = scm_cons (scm_makfromstr (argv[i], (scm_sizet) strlen (argv[i]), 0), lst);
155 return lst;
156}
157
158
ee149d03
JB
159/* This function must only be applied to memory obtained via malloc,
160 since the GC is going to apply `free' to it when the string is
161 dropped.
162
163 Also, s[len] must be `\0', since we promise that strings are
164 null-terminated. Perhaps we could handle non-null-terminated
165 strings by claiming they're shared substrings of a string we just
166 made up. */
0f2d19dd 167SCM
ee149d03 168scm_take_str (char *s, int len)
0f2d19dd
JB
169{
170 SCM answer;
171 SCM_NEWCELL (answer);
172 SCM_DEFER_INTS;
ee149d03
JB
173 SCM_SETLENGTH (answer, len, scm_tc7_string);
174 scm_done_malloc (len + 1);
175 SCM_SETCHARS (answer, s);
0f2d19dd
JB
176 SCM_ALLOW_INTS;
177 return answer;
178}
179
ee149d03
JB
180/* `s' must be a malloc'd string. See scm_take_str. */
181SCM
182scm_take0str (char *s)
183{
184 return scm_take_str (s, strlen (s));
185}
186
0f2d19dd 187SCM
1bbd0b84 188scm_makfromstr (const char *src, scm_sizet len, int slots)
0f2d19dd 189{
bd9e24b3
GH
190 SCM s = scm_makstr (len, slots);
191 char *dst = SCM_CHARS (s);
192
0f2d19dd
JB
193 while (len--)
194 *dst++ = *src++;
195 return s;
196}
197
0f2d19dd 198SCM
1bbd0b84 199scm_makfrom0str (const char *src)
0f2d19dd
JB
200{
201 if (!src) return SCM_BOOL_F;
202 return scm_makfromstr (src, (scm_sizet) strlen (src), 0);
203}
204
1cc91f1b 205
0f2d19dd 206SCM
1bbd0b84 207scm_makfrom0str_opt (const char *src)
0f2d19dd
JB
208{
209 return scm_makfrom0str (src);
210}
211
212
213
214
3b3b36dd 215SCM_DEFINE (scm_make_string, "make-string", 1, 1, 0,
6fa73e72
GB
216 (SCM k, SCM chr),
217 "Returns a newly allocated string of\n"
218 "length K. If CHR is given, then all elements of the string\n"
219 "are initialized to CHR, otherwise the contents of the\n"
b450f070 220 "STRING are unspecified.\n")
1bbd0b84 221#define FUNC_NAME s_scm_make_string
0f2d19dd
JB
222{
223 SCM res;
0f2d19dd 224 register long i;
3b3b36dd 225 SCM_VALIDATE_INUM_MIN_COPY (1,k,0,i);
0f2d19dd 226 res = scm_makstr (i, 0);
6c951427 227 if (!SCM_UNBNDP (chr))
0f2d19dd 228 {
7866a09b 229 SCM_VALIDATE_CHAR (2,chr);
6c951427
GH
230 {
231 unsigned char *dst = SCM_UCHARS (res);
7866a09b 232 char c = SCM_CHAR (chr);
6c951427
GH
233
234 memset (dst, c, i);
235 }
0f2d19dd
JB
236 }
237 return res;
238}
1bbd0b84 239#undef FUNC_NAME
0f2d19dd 240
3b3b36dd 241SCM_DEFINE (scm_string_length, "string-length", 1, 0, 0,
6fa73e72
GB
242 (SCM string),
243 "Returns the number of characters in STRING")
1bbd0b84 244#define FUNC_NAME s_scm_string_length
0f2d19dd 245{
6fa73e72
GB
246 SCM_VALIDATE_ROSTRING (1,string);
247 return SCM_MAKINUM (SCM_ROLENGTH (string));
0f2d19dd 248}
1bbd0b84 249#undef FUNC_NAME
0f2d19dd 250
bd9e24b3 251SCM_DEFINE (scm_string_ref, "string-ref", 2, 0, 0,
6fa73e72
GB
252 (SCM str, SCM k),
253 "Returns character K of STR using zero-origin indexing.\n"
254 "K must be a valid index of STR.")
1bbd0b84 255#define FUNC_NAME s_scm_string_ref
0f2d19dd 256{
bd9e24b3
GH
257 int idx;
258
259 SCM_VALIDATE_ROSTRING (1, str);
260 SCM_VALIDATE_INUM_COPY (2, k, idx);
261 SCM_ASSERT_RANGE (2, k, idx >= 0 && idx < SCM_ROLENGTH (str));
7866a09b 262 return SCM_MAKE_CHAR (SCM_ROUCHARS (str)[idx]);
0f2d19dd 263}
1bbd0b84 264#undef FUNC_NAME
0f2d19dd 265
3b3b36dd 266SCM_DEFINE (scm_string_set_x, "string-set!", 3, 0, 0,
6fa73e72
GB
267 (SCM str, SCM k, SCM chr),
268 "Stores CHR in element K of STRING and returns an unspecified value.\n"
269 "K must be a valid index of STR.")
1bbd0b84 270#define FUNC_NAME s_scm_string_set_x
0f2d19dd 271{
3b3b36dd
GB
272 SCM_VALIDATE_RWSTRING (1,str);
273 SCM_VALIDATE_INUM_RANGE (2,k,0,SCM_LENGTH(str));
7866a09b
GB
274 SCM_VALIDATE_CHAR (3,chr);
275 SCM_UCHARS (str)[SCM_INUM (k)] = SCM_CHAR (chr);
0f2d19dd
JB
276 return SCM_UNSPECIFIED;
277}
1bbd0b84 278#undef FUNC_NAME
0f2d19dd
JB
279
280
3b3b36dd 281SCM_DEFINE (scm_substring, "substring", 2, 1, 0,
1bbd0b84 282 (SCM str, SCM start, SCM end),
6fa73e72
GB
283 "Returns a newly allocated string formed from the characters\n"
284 "of STR beginning with index START (inclusive) and ending with\n"
285 "index END (exclusive).\n"
286 "STR must be a string, START and END must be exact integers satisfying:\n\n"
287 "0 <= START <= END <= (string-length STR).")
1bbd0b84 288#define FUNC_NAME s_scm_substring
0f2d19dd 289{
685c0d71
DH
290 long int from;
291 long int to;
292
3b3b36dd 293 SCM_VALIDATE_ROSTRING (1,str);
685c0d71 294 SCM_VALIDATE_INUM (2, start);
3b3b36dd 295 SCM_VALIDATE_INUM_DEF (3,end,SCM_ROLENGTH(str));
685c0d71
DH
296
297 from = SCM_INUM (start);
298 SCM_ASSERT_RANGE (2, start, 0 <= from && from <= SCM_ROLENGTH (str));
299 to = SCM_INUM (end);
300 SCM_ASSERT_RANGE (3, end, from <= to && to <= SCM_ROLENGTH (str));
301
302 return scm_makfromstr (&SCM_ROCHARS (str)[from], (scm_sizet) (to - from), 0);
0f2d19dd 303}
1bbd0b84 304#undef FUNC_NAME
0f2d19dd 305
685c0d71 306
3b3b36dd 307SCM_DEFINE (scm_string_append, "string-append", 0, 0, 1,
6fa73e72
GB
308 (SCM args),
309 "Returns a newly allocated string whose characters form the\n"
310 "concatenation of the given strings, ARGS.")
1bbd0b84 311#define FUNC_NAME s_scm_string_append
0f2d19dd
JB
312{
313 SCM res;
314 register long i = 0;
315 register SCM l, s;
a65b9c80 316 register unsigned char *data;
af45e3b0
DH
317
318 SCM_VALIDATE_REST_ARGUMENT (args);
319 for (l = args; !SCM_NULLP (l); l = SCM_CDR (l)) {
0f2d19dd 320 s = SCM_CAR (l);
3b3b36dd 321 SCM_VALIDATE_ROSTRING (SCM_ARGn,s);
0f2d19dd 322 i += SCM_ROLENGTH (s);
0f2d19dd 323 }
0f2d19dd 324 res = scm_makstr (i, 0);
a65b9c80 325 data = SCM_UCHARS (res);
0f2d19dd
JB
326 for (l = args;SCM_NIMP (l);l = SCM_CDR (l)) {
327 s = SCM_CAR (l);
a65b9c80 328 for (i = 0;i<SCM_ROLENGTH (s);i++) *data++ = SCM_ROUCHARS (s)[i];
0f2d19dd
JB
329 }
330 return res;
331}
1bbd0b84 332#undef FUNC_NAME
0f2d19dd 333
3b3b36dd 334SCM_DEFINE (scm_make_shared_substring, "make-shared-substring", 1, 2, 0,
1bbd0b84 335 (SCM str, SCM frm, SCM to),
b380b885
MD
336 "Return a shared substring of @var{str}. The semantics are the same as\n"
337 "for the @code{substring} function: the shared substring returned\n"
338 "includes all of the text from @var{str} between indexes @var{start}\n"
339 "(inclusive) and @var{end} (exclusive). If @var{end} is omitted, it\n"
340 "defaults to the end of @var{str}. The shared substring returned by\n"
341 "@code{make-shared-substring} occupies the same storage space as\n"
342 "@var{str}.")
1bbd0b84 343#define FUNC_NAME s_scm_make_shared_substring
0f2d19dd
JB
344{
345 long f;
346 long t;
347 SCM answer;
348 SCM len_str;
349
3b3b36dd
GB
350 SCM_VALIDATE_ROSTRING (1,str);
351 SCM_VALIDATE_INUM_DEF_COPY (2,frm,0,f);
352 SCM_VALIDATE_INUM_DEF_COPY (3,to,SCM_ROLENGTH(str),t);
0f2d19dd 353
5bff3127
GB
354 SCM_ASSERT_RANGE (2,frm,(f >= 0));
355 SCM_ASSERT_RANGE (3,to, (f <= t) && (t <= SCM_ROLENGTH (str)));
0f2d19dd
JB
356
357 SCM_NEWCELL (answer);
358 SCM_NEWCELL (len_str);
359
360 SCM_DEFER_INTS;
361 if (SCM_SUBSTRP (str))
362 {
363 long offset;
364 offset = SCM_INUM (SCM_SUBSTR_OFFSET (str));
365 f += offset;
366 t += offset;
367 SCM_SETCAR (len_str, SCM_MAKINUM (f));
368 SCM_SETCDR (len_str, SCM_SUBSTR_STR (str));
369 SCM_SETCDR (answer, len_str);
370 SCM_SETLENGTH (answer, t - f, scm_tc7_substring);
371 }
372 else
373 {
374 SCM_SETCAR (len_str, SCM_MAKINUM (f));
375 SCM_SETCDR (len_str, str);
376 SCM_SETCDR (answer, len_str);
377 SCM_SETLENGTH (answer, t - f, scm_tc7_substring);
378 }
379 SCM_ALLOW_INTS;
380 return answer;
381}
1bbd0b84 382#undef FUNC_NAME
1cc91f1b 383
0f2d19dd
JB
384void
385scm_init_strings ()
0f2d19dd 386{
a0599745 387#include "libguile/strings.x"
0f2d19dd
JB
388}
389
89e00824
ML
390
391/*
392 Local Variables:
393 c-file-style: "gnu"
394 End:
395*/