Much sketching must occur, apparently.
Chris Pressey
10 years ago
0 | ; Much sketching must occur. | |
1 | ||
0 | 2 | (define read-chars |
1 | 3 | (lambda (port acc) |
2 | 4 | (let* ((c (read-char port))) |
14 | 16 | (or (equal? char #\space) |
15 | 17 | (equal? char #\newline) |
16 | 18 | (equal? char #\tab)))) |
19 | ||
20 | (define newline? | |
21 | (lambda (char) | |
22 | (equal? char #\newline))) | |
23 | ||
24 | (define consume-one | |
25 | (lambda (pred chars) | |
26 | (if (null? chars) chars) | |
27 | (if (pred (car chars) (cdr chars)) | |
28 | chars))) | |
17 | 29 | |
18 | 30 | (define extract-whitespace |
19 | 31 | (lambda (chars acc) |
33 | 45 | (list (reverse acc) chars) |
34 | 46 | (extract-word rest (cons char acc))))))) |
35 | 47 | |
48 | ; ----- untagged lists ----- | |
49 | ||
50 | ; (#\a #\b ...) -- a list of chars representing a text (or portion thereof) | |
51 | ||
52 | ; ----- tagged-list style ----- ; | |
53 | ||
54 | ; (lines ...) -- a list of strings, where each string is a line | |
55 | ; (words ...) -- a list of strings, where each string is a word | |
56 | ||
36 | 57 | (define extract-words |
37 | 58 | (lambda (chars acc) |
38 | (if (null? chars) (reverse acc) | |
59 | (if (null? chars) (cons 'words (reverse acc)) | |
39 | 60 | (let* ((result (extract-word chars '())) |
40 | 61 | (word (list->string (car result))) |
41 | 62 | (rest (cadr result)) |
42 | 63 | (result2 (extract-whitespace rest '())) |
43 | 64 | (word2 (list->string (car result2))) |
44 | 65 | (rest2 (cadr result2))) |
45 | (extract-words rest2 (cons word acc)))))) | |
66 | (extract-words rest2 (cons word2 (cons word acc))))))) | |
67 | ||
68 | (define extract-line | |
69 | (lambda (chars acc) | |
70 | (if (null? chars) (list (reverse acc) chars) | |
71 | (let* ((char (car chars)) | |
72 | (rest (cdr chars))) | |
73 | (if (newline? char) | |
74 | (list (reverse acc) rest) | |
75 | (extract-line rest (cons char acc))))))) | |
76 | ||
77 | (define extract-lines | |
78 | (lambda (chars acc) | |
79 | (if (null? chars) (cons 'lines (reverse acc)) | |
80 | (let* ((result (extract-line chars '())) | |
81 | (line (list->string (car result))) | |
82 | (rest (cadr result))) | |
83 | (extract-lines rest (cons line acc)))))) | |
84 |