-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathscmindent.rkt
executable file
·203 lines (186 loc) · 8.3 KB
/
scmindent.rkt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
#! /usr/bin/env racket
#lang racket/base
;Dorai Sitaram
;Oct 8, 1999
;last change 2022-07-05
;This script takes lines of Scheme or Lisp code from its
;stdin and produces an indented version thereof on its
;stdout.
(define *lisp-keywords* '())
(define (set-lisp-indent-number sym num-of-subforms-to-be-indented-wide)
(let* ((x (symbol->string sym))
(c (assf (lambda (a) (string-ci=? x a)) *lisp-keywords*)))
(unless c
(set! c (cons x (box 0)))
(set! *lisp-keywords* (cons c *lisp-keywords*)))
(set-box! (cdr c) num-of-subforms-to-be-indented-wide)))
(define (read-home-lispwords)
(let ([init-file (or (getenv "LISPWORDS")
(build-path (find-system-path 'home-dir) ".lispwords"))])
(when (file-exists? init-file)
(call-with-input-file init-file
(lambda (i)
(let loop ()
(let ([w (read i)])
(unless (eof-object? w)
(let ([a w])
(when (pair? w) (set! a (car w)))
(cond [(not (pair? w)) (set-lisp-indent-number a 0)]
[(number? a)
(for-each (lambda (x) (set-lisp-indent-number x a)) (cdr w))]
[(list? a)
(let ([n (cadr w)])
(for-each (lambda (x) (set-lisp-indent-number x n)) a))]
[else
(set-lisp-indent-number a (cadr w))]))
(loop)))))))))
(define (past-next-atom s i n)
(let loop ((i i))
(if (>= i n) n
(let ((c (string-ref s i)))
(cond ((char=? c #\\) (loop (+ i 2)))
((memv c '(#\space #\tab #\( #\) #\[ #\] #\" #\' #\` #\, #\;))
i)
(else (loop (+ i 1))))))))
(define (get-lisp-indent-number s)
(let ((c (assf (lambda (a) (string-ci=? s a)) *lisp-keywords*)))
(cond (c (unbox (cdr c)))
((and (>= (string-length s) 3)
(string-ci=? (substring s 0 3) "def")) 0)
(else -1))))
(define (literal-token? s)
(let ((x (let ((i (open-input-string s)))
(begin0 (read i) (close-input-port i)))))
(or (char? x) (number? x) (string? x))))
(define (calc-subindent s i n)
(let* ((j (past-next-atom s i n))
(lisp-indent-num -1)
(delta-indent
(if (= j i) 0
(let ((w (substring s i j)))
(if (and (>= i 2)
(memv (string-ref s (- i 2)) '(#\' #\`)))
0
(begin
(set! lisp-indent-num (get-lisp-indent-number w))
(case lisp-indent-num
((-2) 0)
((-1) (if (< j n) (+ (- j i) 1) 1))
(else 1))))))))
(values delta-indent lisp-indent-num j)))
(define (num-leading-spaces s)
(let ((n (string-length s)))
(let loop ((i 0) (j 0))
(if (>= i n) 0
(case (string-ref s i)
((#\space) (loop (+ i 1) (+ j 1)))
((#\tab) (loop (+ i 1) (+ j 8)))
(else j))))))
(define (string-trim-blanks s)
(let ((n (string-length s)))
(let ((j (let loop ((j 0))
(if (or (>= j n)
(not (char-whitespace? (string-ref s j))))
j
(loop (+ j 1))))))
(if (>= j n) ""
(let ((k (let loop ((k (- n 1)))
(if (or (< k 0)
(not (char-whitespace? (string-ref s k))))
(+ k 1)
(loop (- k 1))))))
(substring s j k))))))
(define-struct lparen
(spaces-before lisp-indent-num num-finished-subforms)
#:mutable)
(define (indent-lines)
(let ((default-left-i -1) (left-i 0) (paren-stack '()) (inside-string? #f))
(let line-loop ()
(let ((curr-line (read-line)))
(unless (eof-object? curr-line)
(let* ((leading-spaces (num-leading-spaces curr-line))
(curr-left-i
(cond (inside-string? leading-spaces)
((null? paren-stack)
(when (= left-i 0)
(when (= default-left-i -1)
(set! default-left-i leading-spaces))
(set! left-i default-left-i))
left-i)
(else (let* ((lp (car paren-stack))
(lin (lparen-lisp-indent-num lp))
(nfs (lparen-num-finished-subforms lp))
(extra-w 0))
(when (< nfs lin)
(set! extra-w 2))
(+ (lparen-spaces-before lp) extra-w))))))
(set! curr-line (string-trim-blanks curr-line))
(unless (string=? curr-line "")
(do ((i 0 (+ i 1)))
((= i curr-left-i))
(write-char #\space))
(display curr-line))
(newline)
;
(let ((n (string-length curr-line))
(escape? #f)
(token-interstice? #f))
(let ((incr-finished-subforms (lambda ()
(unless token-interstice?
(cond ((and (pair? paren-stack)
(car paren-stack)) =>
(lambda (lp)
(let ((nfs (lparen-num-finished-subforms lp)))
(set-lparen-num-finished-subforms!
lp (+ nfs 1))))))
(set! token-interstice? #t)))))
(let loop ((i 0))
(unless (>= i n)
(let ((c (string-ref curr-line i)))
(cond (escape? (set! escape? #f) (loop (+ i 1)))
((char=? c #\\)
(set! token-interstice? #f)
(set! escape? #t) (loop (+ i 1)))
(inside-string?
(when (char=? c #\")
(set! inside-string? #f)
(incr-finished-subforms))
(loop (+ i 1)))
((char=? c #\;)
(incr-finished-subforms)
'break-loop)
((char=? c #\")
(incr-finished-subforms)
(set! inside-string? #t)
(loop (+ i 1)))
((memv c '(#\space #\tab))
(incr-finished-subforms)
(loop (+ i 1)))
((memv c '(#\( #\[))
(incr-finished-subforms)
(let-values (((delta-indent lisp-indent-num j)
(calc-subindent curr-line (+ i 1) n)))
(set! paren-stack
(cons (make-lparen (+ 1 i curr-left-i delta-indent)
lisp-indent-num
-1)
paren-stack))
(set! token-interstice? #t)
(let ((inext (+ i 1)))
(when (> j inext)
(set! inext j)
(set! token-interstice? #f))
(loop inext))))
((memv c '(#\) #\]))
(set! token-interstice? #f)
(cond ((pair? paren-stack)
(set! paren-stack (cdr paren-stack)))
(else (set! left-i 0)))
(loop (+ i 1)))
(else (set! token-interstice? #f)
(loop (+ i 1)))))))
(incr-finished-subforms))))
(line-loop))))))
(read-home-lispwords)
(indent-lines)
;eof