-
Notifications
You must be signed in to change notification settings - Fork 0
/
chicken-status.scm
269 lines (243 loc) · 9.93 KB
/
chicken-status.scm
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
;;;; chicken-status.scm
;
; Copyright (c) 2008-2021, The CHICKEN Team
; All rights reserved.
;
; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
; conditions are met:
;
; Redistributions of source code must retain the above copyright notice, this list of conditions and the following
; disclaimer.
; Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
; disclaimer in the documentation and/or other materials provided with the distribution.
; Neither the name of the author nor the names of its contributors may be used to endorse or promote
; products derived from this software without specific prior written permission.
;
; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS
; OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
; AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
; CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
; SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
; THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
; OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
; POSSIBILITY OF SUCH DAMAGE.
(module main ()
(import (scheme)
(chicken base)
(chicken condition)
(chicken file)
(chicken fixnum)
(chicken foreign)
(chicken format)
(chicken irregex)
(chicken port)
(chicken pathname)
(chicken platform)
(chicken pretty-print)
(chicken process-context)
(chicken sort)
(only (chicken string) ->string))
(include "mini-srfi-1.scm")
(include "egg-environment.scm")
(include "egg-information.scm")
(define host-extensions #t)
(define target-extensions #t)
(define get-terminal-width
(let ((default-width 79)) ; Standard default terminal width
(lambda ()
(let ((cop (current-output-port)))
(if (terminal-port? cop)
(let ((w (handle-exceptions exn 0 (nth-value 1 (terminal-size cop)))))
(if (zero? w)
default-width
(min default-width w)))
default-width)))))
(define list-width (quotient (- (get-terminal-width) 2) 2))
(define (repo-path)
(if (and cross-chicken (not host-extensions))
(##sys#split-path (destination-repository 'target))
(repository-path)))
(define (grep rx lst)
(filter (cut irregex-search rx <>) lst))
(define (read-info egg #!optional (dir (repo-path)) (ext +egg-info-extension+))
(let ((f (chicken.load#find-file (make-pathname #f egg ext) dir)))
(and f (load-egg-info f))))
(define (filter-egg-names eggs patterns mtch)
(let* ((names (cond ((null? patterns) eggs)
(mtch
(concatenate
(map (lambda (pat)
(grep (irregex (glob->sre pat)) eggs))
patterns)))
(else
(filter
(lambda (egg)
(any (cut string=? <> egg) patterns))
eggs)))))
(delete-duplicates names string=?)))
(define (gather-eggs)
(delete-duplicates
(append-map
(lambda (dir)
(map pathname-file
(glob (make-pathname dir "*" +egg-info-extension+))))
(repo-path))
equal?))
(define (format-string str cols #!optional right (padc #\space))
(let* ((len (string-length str))
(pad (make-string (fxmax 0 (fx- cols len)) padc)) )
(if right
(string-append pad str)
(string-append str pad) ) ) )
(define (list-installed-eggs eggs #!optional (dir (repo-path))
(ext +egg-info-extension+))
(for-each (cut list-egg-info <> dir ext)
(sort eggs string<?)))
(define (list-egg-info egg dir ext)
(let ((version
(or (let ((info (read-info egg dir ext)))
(and info (get-egg-property info 'version)))
(let ((file (chicken.load#find-file +version-file+ dir)))
(and file (with-input-from-file file read)))
"unknown")))
(print (format-string (string-append egg " ")
list-width #f #\.)
(format-string (string-append " version: "
(->string version))
list-width #t #\.))))
(define (list-cached-eggs pats mtch)
(when (directory-exists? cache-directory)
(for-each
(lambda (egg)
(list-egg-info egg (make-pathname cache-directory egg) +egg-extension+))
(sort (filter-egg-names (directory cache-directory) pats mtch) string<?))))
(define (gather-components lst mode)
(append-map (cut gather-components-rec <> mode) lst))
(define (gather-components-rec info mode)
(case (car info)
((host)
(if host-extensions (gather-components (cdr info) 'host) '()))
((target)
(if target-extensions (gather-components (cdr info) 'target) '()))
((extension) (list (list 'extension mode (cadr info))))
((data) (list (list 'data mode (cadr info))))
((generated-source-file) (list (list 'generated-source-file mode (cadr info))))
((c-include) (list (list 'c-include mode (cadr info))))
((scheme-include) (list (list 'scheme-include mode (cadr info))))
((program) (list (list 'program mode (cadr info))))))
(define (list-installed-components eggs)
(let ((w (quotient (- (get-terminal-width) 2) 2)))
(for-each
(lambda (egg)
(let* ((info (read-info egg))
(version (get-egg-property info 'version))
(comps (get-egg-property* info 'components)))
(if version
(print (format-string (string-append egg " ") w #f #\.)
(format-string (string-append " version: "
(->string version))
w #t #\.))
(print egg))
(when comps
(let ((lst (gather-components comps #f)))
(for-each
(lambda (comp)
(print " " (format-string (->string (car comp)) 32)
" " (format-string (->string (caddr comp)) 32)
(case (cadr comp)
((host) " (host)")
((target) " (target)")
(else ""))))
lst)))))
eggs)))
(define (list-installed-files eggs)
(for-each
print
(sort
(append-map
(lambda (egg)
(get-egg-property* (read-info egg) 'installed-files))
eggs)
string<?)))
(define (dump-installed-versions eggs)
(for-each
(lambda (egg)
(let ((version (get-egg-property (read-info egg) 'version)))
(pp (cons (string->symbol egg)
(if version (list version) '())))))
eggs))
(define (usage code)
(print #<<EOF
usage: chicken-status [OPTION ...] [NAME ...]
-h -help show this message
-version show version and exit
-c -components list installed components
-cached list eggs in cache
-f -files list installed files
-list dump installed extensions and their versions in "override" format
-match treat NAME as glob pattern
-host when cross-compiling, only show host extensions
-target when cross-compiling, only show target extensions
EOF
);|
(exit code))
(define short-options '(#\h #\f #\c #\a))
(define (main args)
(let ((files #f)
(comps #f)
(dump #f)
(cached #f)
(mtch #f))
(let loop ((args args) (pats '()))
(if (null? args)
(cond ((and comps (or dump files))
(with-output-to-port (current-error-port)
(cut print "-components cannot be used with -list."))
(exit 1))
(cached (list-cached-eggs pats mtch))
(else
((cond (dump dump-installed-versions)
(files list-installed-files)
(comps list-installed-components)
(else list-installed-eggs))
(filter-egg-names (gather-eggs) pats mtch))))
(let ((arg (car args)))
(cond ((member arg '("-help" "-h" "--help"))
(usage 0))
((string=? arg "-host")
(set! target-extensions #f)
(loop (cdr args) pats))
((string=? arg "-target")
(set! host-extensions #f)
(loop (cdr args) pats))
((string=? arg "-match")
(set! mtch #t)
(loop (cdr args) pats))
((string=? arg "-cached")
(set! cached #t)
(loop (cdr args) pats))
((string=? arg "-list")
(set! dump #t)
(loop (cdr args) pats))
((or (string=? arg "-f") (string=? arg "-files"))
(set! files #t)
(loop (cdr args) pats))
((or (string=? arg "-c") (string=? arg "-components"))
(set! comps #t)
(loop (cdr args) pats))
((string=? arg "-version")
(print (chicken-version))
(exit 0))
((and (positive? (string-length arg))
(char=? #\- (string-ref arg 0)))
(if (> (string-length arg) 2)
(let ((sos (string->list (substring arg 1))))
(if (every (cut memq <> short-options) sos)
(loop (append (map (cut string #\- <>) sos)
(cdr args)) pats)
(usage 1)))
(usage 1)))
(else (loop (cdr args) (cons arg pats)))))))))
(main (command-line-arguments))
)