* validate.h
[bpt/guile.git] / libguile / read.c
1 /* Copyright (C) 1995,1996,1997,1999,2000,2001 Free Software Foundation, Inc.
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
15 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
16 * Boston, MA 02111-1307 USA
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.
40 * If you do not wish that, delete this exception notice. */
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
45 \f
46
47 #include <stdio.h>
48 #include "libguile/_scm.h"
49 #include "libguile/chars.h"
50 #include "libguile/eval.h"
51 #include "libguile/unif.h"
52 #include "libguile/keywords.h"
53 #include "libguile/alist.h"
54 #include "libguile/srcprop.h"
55 #include "libguile/hashtab.h"
56 #include "libguile/hash.h"
57 #include "libguile/ports.h"
58 #include "libguile/root.h"
59 #include "libguile/strings.h"
60 #include "libguile/vectors.h"
61
62 #include "libguile/validate.h"
63 #include "libguile/read.h"
64
65 \f
66
67 SCM_SYMBOL (scm_keyword_prefix, "prefix");
68
69 scm_option_t scm_read_opts[] = {
70 { SCM_OPTION_BOOLEAN, "copy", 0,
71 "Copy source code expressions." },
72 { SCM_OPTION_BOOLEAN, "positions", 0,
73 "Record positions of source code expressions." },
74 { SCM_OPTION_BOOLEAN, "case-insensitive", 0,
75 "Convert symbols to lower case."},
76 { SCM_OPTION_SCM, "keywords", SCM_UNPACK (SCM_BOOL_F),
77 "Style of keyword recognition: #f or 'prefix"}
78 };
79
80 SCM_DEFINE (scm_read_options, "read-options-interface", 0, 1, 0,
81 (SCM setting),
82 "Option interface for the read options. Instead of using\n"
83 "this procedure directly, use the procedures @code{read-enable},\n"
84 "@code{read-disable}, @code{read-set!} and @var{read-options}.")
85 #define FUNC_NAME s_scm_read_options
86 {
87 SCM ans = scm_options (setting,
88 scm_read_opts,
89 SCM_N_READ_OPTIONS,
90 FUNC_NAME);
91 if (SCM_COPY_SOURCE_P)
92 SCM_RECORD_POSITIONS_P = 1;
93 return ans;
94 }
95 #undef FUNC_NAME
96
97 /* An association list mapping extra hash characters to procedures. */
98 static SCM *scm_read_hash_procedures;
99
100 SCM_DEFINE (scm_read, "read", 0, 1, 0,
101 (SCM port),
102 "Read an s-expression from the input port @var{port}, or from\n"
103 "the current input port if @var{port} is not specified.\n"
104 "Any whitespace before the next token is discarded.")
105 #define FUNC_NAME s_scm_read
106 {
107 int c;
108 SCM tok_buf, copy;
109
110 if (SCM_UNBNDP (port))
111 port = scm_cur_inp;
112 SCM_VALIDATE_OPINPORT (1,port);
113
114 c = scm_flush_ws (port, (char *) NULL);
115 if (EOF == c)
116 return SCM_EOF_VAL;
117 scm_ungetc (c, port);
118
119 tok_buf = scm_allocate_string (30);
120 return scm_lreadr (&tok_buf, port, &copy);
121 }
122 #undef FUNC_NAME
123
124
125
126 char *
127 scm_grow_tok_buf (SCM *tok_buf)
128 {
129 size_t oldlen = SCM_STRING_LENGTH (*tok_buf);
130 SCM newstr = scm_allocate_string (2 * oldlen);
131 size_t i;
132
133 for (i = 0; i != oldlen; ++i)
134 SCM_STRING_CHARS (newstr) [i] = SCM_STRING_CHARS (*tok_buf) [i];
135
136 *tok_buf = newstr;
137 return SCM_STRING_CHARS (newstr);
138 }
139
140
141
142 int
143 scm_flush_ws (SCM port, const char *eoferr)
144 {
145 register int c;
146 while (1)
147 switch (c = scm_getc (port))
148 {
149 case EOF:
150 goteof:
151 if (eoferr)
152 {
153 if (!SCM_FALSEP (SCM_FILENAME (port)))
154 scm_misc_error (eoferr,
155 "end of file in ~A",
156 SCM_LIST1 (SCM_FILENAME (port)));
157 else
158 scm_misc_error (eoferr, "end of file", SCM_EOL);
159 }
160 return c;
161 case ';':
162 lp:
163 switch (c = scm_getc (port))
164 {
165 case EOF:
166 goto goteof;
167 default:
168 goto lp;
169 case SCM_LINE_INCREMENTORS:
170 break;
171 }
172 break;
173 case SCM_LINE_INCREMENTORS:
174 case SCM_SINGLE_SPACES:
175 case '\t':
176 break;
177 default:
178 return c;
179 }
180 }
181
182
183
184 int
185 scm_casei_streq (char *s1, char *s2)
186 {
187 while (*s1 && *s2)
188 if (scm_downcase((int)*s1) != scm_downcase((int)*s2))
189 return 0;
190 else
191 {
192 ++s1;
193 ++s2;
194 }
195 return !(*s1 || *s2);
196 }
197
198
199 /* recsexpr is used when recording expressions
200 * constructed by read:sharp.
201 */
202 #ifndef DEBUG_EXTENSIONS
203 #define recsexpr(obj, line, column, filename) (obj)
204 #else
205 static SCM
206 recsexpr (SCM obj, long line, int column, SCM filename)
207 {
208 if (!SCM_CONSP(obj)) {
209 return obj;
210 } else {
211 SCM tmp = obj, copy;
212 /* If this sexpr is visible in the read:sharp source, we want to
213 keep that information, so only record non-constant cons cells
214 which haven't previously been read by the reader. */
215 if (SCM_FALSEP (scm_whash_lookup (scm_source_whash, obj)))
216 {
217 if (SCM_COPY_SOURCE_P)
218 {
219 copy = scm_cons (recsexpr (SCM_CAR (obj), line, column, filename),
220 SCM_UNDEFINED);
221 while ((tmp = SCM_CDR (tmp)) && SCM_CONSP (tmp))
222 {
223 SCM_SETCDR (copy, scm_cons (recsexpr (SCM_CAR (tmp),
224 line,
225 column,
226 filename),
227 SCM_UNDEFINED));
228 copy = SCM_CDR (copy);
229 }
230 SCM_SETCDR (copy, tmp);
231 }
232 else
233 {
234 recsexpr (SCM_CAR (obj), line, column, filename);
235 while ((tmp = SCM_CDR (tmp)) && SCM_CONSP (tmp))
236 recsexpr (SCM_CAR (tmp), line, column, filename);
237 copy = SCM_UNDEFINED;
238 }
239 scm_whash_insert (scm_source_whash,
240 obj,
241 scm_make_srcprops (line,
242 column,
243 filename,
244 copy,
245 SCM_EOL));
246 }
247 return obj;
248 }
249 }
250 #endif
251
252 /* Consume an SCSH-style block comment. Assume that we've already
253 read the initial `#!', and eat characters until we get a
254 newline/exclamation-point/sharp-sign/newline sequence. */
255
256 static void
257 skip_scsh_block_comment (SCM port)
258 #define FUNC_NAME "skip_scsh_block_comment"
259 {
260 /* Is this portable? Dear God, spare me from the non-eight-bit
261 characters. But is it tasteful? */
262 long history = 0;
263
264 for (;;)
265 {
266 int c = scm_getc (port);
267
268 if (c == EOF)
269 SCM_MISC_ERROR ("unterminated `#! ... !#' comment", SCM_EOL);
270 history = ((history << 8) | (c & 0xff)) & 0xffffffff;
271
272 /* Were the last four characters read "\n!#\n"? */
273 if (history == (('\n' << 24) | ('!' << 16) | ('#' << 8) | '\n'))
274 return;
275 }
276 }
277 #undef FUNC_NAME
278
279
280 static SCM scm_get_hash_procedure(int c);
281
282 static char s_list[]="list";
283
284 SCM
285 scm_lreadr (SCM *tok_buf,SCM port,SCM *copy)
286 #define FUNC_NAME "scm_lreadr"
287 {
288 int c;
289 size_t j;
290 SCM p;
291
292 tryagain:
293 c = scm_flush_ws (port, s_scm_read);
294 tryagain_no_flush_ws:
295 switch (c)
296 {
297 case EOF:
298 return SCM_EOF_VAL;
299
300 case '(':
301 return SCM_RECORD_POSITIONS_P
302 ? scm_lreadrecparen (tok_buf, port, s_list, copy)
303 : scm_lreadparen (tok_buf, port, s_list, copy);
304 case ')':
305 SCM_MISC_ERROR ("unexpected \")\"", SCM_EOL);
306 goto tryagain;
307
308 case '\'':
309 p = scm_sym_quote;
310 goto recquote;
311 case '`':
312 p = scm_sym_quasiquote;
313 goto recquote;
314 case ',':
315 c = scm_getc (port);
316 if ('@' == c)
317 p = scm_sym_uq_splicing;
318 else
319 {
320 scm_ungetc (c, port);
321 p = scm_sym_unquote;
322 }
323 recquote:
324 p = scm_cons2 (p,
325 scm_lreadr (tok_buf, port, copy),
326 SCM_EOL);
327 if (SCM_RECORD_POSITIONS_P)
328 scm_whash_insert (scm_source_whash,
329 p,
330 scm_make_srcprops (SCM_LINUM (port),
331 SCM_COL (port) - 1,
332 SCM_FILENAME (port),
333 SCM_COPY_SOURCE_P
334 ? (*copy = scm_cons2 (SCM_CAR (p),
335 SCM_CAR (SCM_CDR (p)),
336 SCM_EOL))
337 : SCM_UNDEFINED,
338 SCM_EOL));
339 return p;
340 case '#':
341 c = scm_getc (port);
342 switch (c)
343 {
344 case '(':
345 p = scm_lreadparen (tok_buf, port, "vector", copy);
346 return SCM_NULLP (p) ? scm_nullvect : scm_vector (p);
347
348 case 't':
349 case 'T':
350 return SCM_BOOL_T;
351 case 'f':
352 case 'F':
353 return SCM_BOOL_F;
354
355 case 'b':
356 case 'B':
357 case 'o':
358 case 'O':
359 case 'd':
360 case 'D':
361 case 'x':
362 case 'X':
363 case 'i':
364 case 'I':
365 case 'e':
366 case 'E':
367 scm_ungetc (c, port);
368 c = '#';
369 goto num;
370
371 case '!':
372 /* start of a shell script. Parse as a block comment,
373 terminated by !#, just like SCSH. */
374 skip_scsh_block_comment (port);
375 /* EOF is not an error here */
376 c = scm_flush_ws (port, (char *)NULL);
377 goto tryagain_no_flush_ws;
378
379 #ifdef HAVE_ARRAYS
380 case '*':
381 j = scm_read_token (c, tok_buf, port, 0);
382 p = scm_istr2bve (SCM_STRING_CHARS (*tok_buf) + 1, (long) (j - 1));
383 if (SCM_NFALSEP (p))
384 return p;
385 else
386 goto unkshrp;
387 #endif
388
389 case '{':
390 j = scm_read_token (c, tok_buf, port, 1);
391 return scm_mem2symbol (SCM_STRING_CHARS (*tok_buf), j);
392
393 case '\\':
394 c = scm_getc (port);
395 j = scm_read_token (c, tok_buf, port, 0);
396 if (j == 1)
397 return SCM_MAKE_CHAR (c);
398 if (c >= '0' && c < '8')
399 {
400 p = scm_istr2int (SCM_STRING_CHARS (*tok_buf), (long) j, 8);
401 if (SCM_NFALSEP (p))
402 return SCM_MAKE_CHAR (SCM_INUM (p));
403 }
404 for (c = 0; c < scm_n_charnames; c++)
405 if (scm_charnames[c]
406 && (scm_casei_streq (scm_charnames[c], SCM_STRING_CHARS (*tok_buf))))
407 return SCM_MAKE_CHAR (scm_charnums[c]);
408 SCM_MISC_ERROR ("unknown # object", SCM_EOL);
409
410 /* #:SYMBOL is a syntax for keywords supported in all contexts. */
411 case ':':
412 j = scm_read_token ('-', tok_buf, port, 0);
413 p = scm_mem2symbol (SCM_STRING_CHARS (*tok_buf), j);
414 return scm_make_keyword_from_dash_symbol (p);
415
416 default:
417 callshrp:
418 {
419 SCM sharp = scm_get_hash_procedure (c);
420
421 if (SCM_NIMP (sharp))
422 {
423 int line = SCM_LINUM (port);
424 int column = SCM_COL (port) - 2;
425 SCM got;
426
427 got = scm_apply (sharp,
428 SCM_MAKE_CHAR (c),
429 scm_acons (port, SCM_EOL, SCM_EOL));
430 if (SCM_EQ_P (got, SCM_UNSPECIFIED))
431 goto unkshrp;
432 if (SCM_RECORD_POSITIONS_P)
433 return *copy = recsexpr (got, line, column,
434 SCM_FILENAME (port));
435 else
436 return got;
437 }
438 }
439 unkshrp:
440 scm_misc_error (s_scm_read, "Unknown # object: ~S",
441 SCM_LIST1 (SCM_MAKE_CHAR (c)));
442 }
443
444 case '"':
445 j = 0;
446 while ('"' != (c = scm_getc (port)))
447 {
448 if (c == EOF)
449 SCM_MISC_ERROR ("end of file in string constant", SCM_EOL);
450
451 while (j + 2 >= SCM_STRING_LENGTH (*tok_buf))
452 scm_grow_tok_buf (tok_buf);
453
454 if (c == '\\')
455 switch (c = scm_getc (port))
456 {
457 case '\n':
458 continue;
459 case '0':
460 c = '\0';
461 break;
462 case 'f':
463 c = '\f';
464 break;
465 case 'n':
466 c = '\n';
467 break;
468 case 'r':
469 c = '\r';
470 break;
471 case 't':
472 c = '\t';
473 break;
474 case 'a':
475 c = '\007';
476 break;
477 case 'v':
478 c = '\v';
479 break;
480 }
481 SCM_STRING_CHARS (*tok_buf)[j] = c;
482 ++j;
483 }
484 if (j == 0)
485 return scm_nullstr;
486 SCM_STRING_CHARS (*tok_buf)[j] = 0;
487 {
488 SCM str;
489 str = scm_makfromstr (SCM_STRING_CHARS (*tok_buf), j, 0);
490 return str;
491 }
492
493 case'0':case '1':case '2':case '3':case '4':
494 case '5':case '6':case '7':case '8':case '9':
495 case '.':
496 case '-':
497 case '+':
498 num:
499 j = scm_read_token (c, tok_buf, port, 0);
500 p = scm_istring2number (SCM_STRING_CHARS (*tok_buf), (long) j, 10L);
501 if (SCM_NFALSEP (p))
502 return p;
503 if (c == '#')
504 {
505 if ((j == 2) && (scm_getc (port) == '('))
506 {
507 scm_ungetc ('(', port);
508 c = SCM_STRING_CHARS (*tok_buf)[1];
509 goto callshrp;
510 }
511 SCM_MISC_ERROR ("unknown # object", SCM_EOL);
512 }
513 goto tok;
514
515 case ':':
516 if (SCM_EQ_P (SCM_PACK (SCM_KEYWORD_STYLE), scm_keyword_prefix))
517 {
518 j = scm_read_token ('-', tok_buf, port, 0);
519 p = scm_mem2symbol (SCM_STRING_CHARS (*tok_buf), j);
520 return scm_make_keyword_from_dash_symbol (p);
521 }
522 /* fallthrough */
523 default:
524 j = scm_read_token (c, tok_buf, port, 0);
525 /* fallthrough */
526
527 tok:
528 return scm_mem2symbol (SCM_STRING_CHARS (*tok_buf), j);
529 }
530 }
531 #undef FUNC_NAME
532
533
534 #ifdef _UNICOS
535 _Pragma ("noopt"); /* # pragma _CRI noopt */
536 #endif
537
538 size_t
539 scm_read_token (int ic, SCM *tok_buf, SCM port, int weird)
540 {
541 register size_t j;
542 register int c;
543 register char *p;
544
545 c = (SCM_CASE_INSENSITIVE_P ? scm_downcase(ic) : ic);
546 p = SCM_STRING_CHARS (*tok_buf);
547
548 if (weird)
549 j = 0;
550 else
551 {
552 j = 0;
553 while (j + 2 >= SCM_STRING_LENGTH (*tok_buf))
554 p = scm_grow_tok_buf (tok_buf);
555 p[j] = c;
556 ++j;
557 }
558
559 while (1)
560 {
561 while (j + 2 >= SCM_STRING_LENGTH (*tok_buf))
562 p = scm_grow_tok_buf (tok_buf);
563 c = scm_getc (port);
564 switch (c)
565 {
566 case '(':
567 case ')':
568 case '"':
569 case ';':
570 case SCM_WHITE_SPACES:
571 case SCM_LINE_INCREMENTORS:
572 if (weird)
573 goto default_case;
574
575 scm_ungetc (c, port);
576 case EOF:
577 eof_case:
578 p[j] = 0;
579 return j;
580 case '\\':
581 if (!weird)
582 goto default_case;
583 else
584 {
585 c = scm_getc (port);
586 if (c == EOF)
587 goto eof_case;
588 else
589 goto default_case;
590 }
591 case '}':
592 if (!weird)
593 goto default_case;
594
595 c = scm_getc (port);
596 if (c == '#')
597 {
598 p[j] = 0;
599 return j;
600 }
601 else
602 {
603 scm_ungetc (c, port);
604 c = '}';
605 goto default_case;
606 }
607
608 default:
609 default_case:
610 {
611 c = (SCM_CASE_INSENSITIVE_P ? scm_downcase(c) : c);
612 p[j] = c;
613 ++j;
614 }
615
616 }
617 }
618 }
619
620 #ifdef _UNICOS
621 _Pragma ("opt"); /* # pragma _CRI opt */
622 #endif
623
624 SCM
625 scm_lreadparen (SCM *tok_buf, SCM port, char *name, SCM *copy)
626 #define FUNC_NAME "scm_lreadparen"
627 {
628 SCM tmp;
629 SCM tl;
630 SCM ans;
631 int c;
632
633 c = scm_flush_ws (port, name);
634 if (')' == c)
635 return SCM_EOL;
636 scm_ungetc (c, port);
637 if (SCM_EQ_P (scm_sym_dot, (tmp = scm_lreadr (tok_buf, port, copy))))
638 {
639 ans = scm_lreadr (tok_buf, port, copy);
640 closeit:
641 if (')' != (c = scm_flush_ws (port, name)))
642 SCM_MISC_ERROR ("missing close paren", SCM_EOL);
643 return ans;
644 }
645 ans = tl = scm_cons (tmp, SCM_EOL);
646 while (')' != (c = scm_flush_ws (port, name)))
647 {
648 scm_ungetc (c, port);
649 if (SCM_EQ_P (scm_sym_dot, (tmp = scm_lreadr (tok_buf, port, copy))))
650 {
651 SCM_SETCDR (tl, scm_lreadr (tok_buf, port, copy));
652 goto closeit;
653 }
654 SCM_SETCDR (tl, scm_cons (tmp, SCM_EOL));
655 tl = SCM_CDR (tl);
656 }
657 return ans;
658 }
659 #undef FUNC_NAME
660
661
662 SCM
663 scm_lreadrecparen (SCM *tok_buf, SCM port, char *name, SCM *copy)
664 #define FUNC_NAME "scm_lreadrecparen"
665 {
666 register int c;
667 register SCM tmp;
668 register SCM tl, tl2 = SCM_EOL;
669 SCM ans, ans2 = SCM_EOL;
670 /* Need to capture line and column numbers here. */
671 int line = SCM_LINUM (port);
672 int column = SCM_COL (port) - 1;
673
674 c = scm_flush_ws (port, name);
675 if (')' == c)
676 return SCM_EOL;
677 scm_ungetc (c, port);
678 if (SCM_EQ_P (scm_sym_dot, (tmp = scm_lreadr (tok_buf, port, copy))))
679 {
680 ans = scm_lreadr (tok_buf, port, copy);
681 if (')' != (c = scm_flush_ws (port, name)))
682 SCM_MISC_ERROR ("missing close paren", SCM_EOL);
683 return ans;
684 }
685 /* Build the head of the list structure. */
686 ans = tl = scm_cons (tmp, SCM_EOL);
687 if (SCM_COPY_SOURCE_P)
688 ans2 = tl2 = scm_cons (SCM_CONSP (tmp)
689 ? *copy
690 : tmp,
691 SCM_EOL);
692 while (')' != (c = scm_flush_ws (port, name)))
693 {
694 SCM new_tail;
695
696 scm_ungetc (c, port);
697 if (SCM_EQ_P (scm_sym_dot, (tmp = scm_lreadr (tok_buf, port, copy))))
698 {
699 SCM_SETCDR (tl, tmp = scm_lreadr (tok_buf, port, copy));
700 if (SCM_COPY_SOURCE_P)
701 SCM_SETCDR (tl2, scm_cons (SCM_CONSP (tmp)
702 ? *copy
703 : tmp,
704 SCM_EOL));
705 if (')' != (c = scm_flush_ws (port, name)))
706 SCM_MISC_ERROR ("missing close paren", SCM_EOL);
707 goto exit;
708 }
709
710 new_tail = scm_cons (tmp, SCM_EOL);
711 SCM_SETCDR (tl, new_tail);
712 tl = new_tail;
713
714 if (SCM_COPY_SOURCE_P)
715 {
716 SCM new_tail2 = scm_cons (SCM_CONSP (tmp) ? *copy : tmp, SCM_EOL);
717 SCM_SETCDR (tl2, new_tail2);
718 tl2 = new_tail2;
719 }
720 }
721 exit:
722 scm_whash_insert (scm_source_whash,
723 ans,
724 scm_make_srcprops (line,
725 column,
726 SCM_FILENAME (port),
727 SCM_COPY_SOURCE_P
728 ? *copy = ans2
729 : SCM_UNDEFINED,
730 SCM_EOL));
731 return ans;
732 }
733 #undef FUNC_NAME
734
735
736 \f
737
738 /* Manipulate the read-hash-procedures alist. This could be written in
739 Scheme, but maybe it will also be used by C code during initialisation. */
740 SCM_DEFINE (scm_read_hash_extend, "read-hash-extend", 2, 0, 0,
741 (SCM chr, SCM proc),
742 "Install the procedure @var{proc} for reading expressions\n"
743 "starting with the character sequence @code{#} and @var{chr}.\n"
744 "@var{proc} will be called with two arguments: the character\n"
745 "@var{chr} and the port to read further data from. The object\n"
746 "returned will be the return value of @code{read}.")
747 #define FUNC_NAME s_scm_read_hash_extend
748 {
749 SCM this;
750 SCM prev;
751
752 SCM_VALIDATE_CHAR (1,chr);
753 SCM_ASSERT (SCM_FALSEP (proc) || SCM_NIMP(proc), proc, SCM_ARG2,
754 FUNC_NAME);
755
756 /* Check if chr is already in the alist. */
757 this = *scm_read_hash_procedures;
758 prev = SCM_BOOL_F;
759 while (1)
760 {
761 if (SCM_NULLP (this))
762 {
763 /* not found, so add it to the beginning. */
764 if (SCM_NFALSEP (proc))
765 {
766 *scm_read_hash_procedures =
767 scm_cons (scm_cons (chr, proc), *scm_read_hash_procedures);
768 }
769 break;
770 }
771 if (SCM_EQ_P (chr, SCM_CAAR (this)))
772 {
773 /* already in the alist. */
774 if (SCM_FALSEP (proc))
775 {
776 /* remove it. */
777 if (SCM_FALSEP (prev))
778 {
779 *scm_read_hash_procedures =
780 SCM_CDR (*scm_read_hash_procedures);
781 }
782 else
783 scm_set_cdr_x (prev, SCM_CDR (this));
784 }
785 else
786 {
787 /* replace it. */
788 scm_set_cdr_x (SCM_CAR (this), proc);
789 }
790 break;
791 }
792 prev = this;
793 this = SCM_CDR (this);
794 }
795
796 return SCM_UNSPECIFIED;
797 }
798 #undef FUNC_NAME
799
800 /* Recover the read-hash procedure corresponding to char c. */
801 static SCM
802 scm_get_hash_procedure (int c)
803 {
804 SCM rest = *scm_read_hash_procedures;
805
806 while (1)
807 {
808 if (SCM_NULLP (rest))
809 return SCM_BOOL_F;
810
811 if (SCM_CHAR (SCM_CAAR (rest)) == c)
812 return SCM_CDAR (rest);
813
814 rest = SCM_CDR (rest);
815 }
816 }
817
818 void
819 scm_init_read ()
820 {
821 scm_read_hash_procedures =
822 SCM_VARIABLE_LOC (scm_c_define ("read-hash-procedures", SCM_EOL));
823
824 scm_init_opts (scm_read_options, scm_read_opts, SCM_N_READ_OPTIONS);
825 #ifndef SCM_MAGIC_SNARFER
826 #include "libguile/read.x"
827 #endif
828 }
829
830 /*
831 Local Variables:
832 c-file-style: "gnu"
833 End:
834 */