forked from mario-goulart/salmonella
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsalmonella-cmd.scm
328 lines (280 loc) · 12.5 KB
/
salmonella-cmd.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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
(use setup-api) ;; for installation-prefix
(use salmonella salmonella-log-parser)
(include "salmonella-version.scm")
(include "salmonella-common.scm")
(define salmonella-log-version 2)
(define default-verbosity 2)
(define *instance-id* #f) ;; for when salmonella is called by salmonella-epidemy
(define (progress-indicator action egg verbosity #!optional egg-count total)
(case verbosity
((0) "")
((1) (when (eq? action 'fetch)
(print "=== " egg
" "
(if *instance-id*
(sprintf "(instance ~a, ~a of ~a)"
*instance-id*
egg-count
total)
(sprintf "(~a of ~a)"
egg-count
total)))))
(else
(let ((running (case action
((fetch) (print "==== " egg " (" egg-count " of " total ") ====")
" Fetching")
((install) " Installing")
((check-version) " Checking version")
((test) " Testing")
((meta-data) " Reading .meta")
((check-dependencies) " Checking dependencies")
((check-category) " Checking category")
((check-license) " Checking license")
((check-author) " Checking author")
((check-doc) " Checking documentation")
(else (error 'salmonella-progress-indicator
"Invalid action"
action)))))
(display (string-pad-right running 50 #\.))
(flush-output)))))
(define (status-reporter report verbosity)
(case verbosity
((0 1) "")
(else
(let ((status (report-status report))
(action (report-action report)))
(print
(case status
((0 #t) "[ ok ]")
((-1) "[ -- ]")
(else "[fail]"))
" "
(if (or (eq? action 'check-version)
(and (eq? action 'test)
(= status -1)))
""
(conc (prettify-time
(inexact->exact (report-duration report))))))))))
(define (show-statistics log-file verbosity)
(when (> verbosity 1)
(let ((log (read-log-file log-file)))
(print #<#EOF
***************************************************************************
=== Summary
Total eggs: #(count-total-eggs log)
==== Installation
Ok: #(count-install-ok log)
Failed: #(count-install-fail log)
==== Tests
Ok: #(count-test-ok log)
Failed: #(count-test-fail log)
No tests: #(count-no-test log)
==== Documentation
Documented: #(count-documented log)
Undocumented: #(count-undocumented log)
==== Total run time
#(prettify-time (inexact->exact (total-time log)))
EOF
))))
(define (check-chicken-home chicken-installation-prefix this-egg?)
;; Return a warning message if (chicken-home) contains Scheme files
;; or #f otherwise.
(and (not chicken-installation-prefix)
(let* ((share-dir (make-pathname (list (installation-prefix)
"share")
"chicken"))
(scheme-files (glob (make-pathname share-dir "*.scm"))))
(and (not (null? scheme-files))
(string-append
"======================[ W A R N I N G ]======================\n"
"=== Scheme files have been found in " share-dir ", \n"
"=== which is in CHICKEN's include path. Those files may \n"
"=== influence the test results:\n"
(if (null? scheme-files)
""
"===\n")
(string-intersperse
(map (lambda (file-path)
(let* ((file (pathname-strip-directory file-path))
(egg (case (string->symbol file)
((setup-helper.scm) "setup-helper")
((inline-type-checks.scm) "check-errors")
(else #f))))
(sprintf "=== * ~a~a\n"
file
(if egg
(sprintf " (~a egg)" egg)
""))))
scheme-files)
"")
(if (and this-egg? (not (null? scheme-files)))
(string-append
"===\n"
"=== If your egg depends on eggs that install these files,\n"
"=== check if you have added them to you egg's dependencies list.\n")
"")
"==============================================================\n"
)))))
(let* ((args (command-line-arguments)))
(when (or (member "-h" args)
(member "--help" args))
(usage exit-code: 0))
(when (member "--version" args)
(print salmonella-version)
(exit 0))
(let* ((this-egg? (and (null? (remove (lambda (arg)
(string-prefix? "--" arg))
args))
(not (null? (glob "*.setup")))))
(chicken-installation-prefix
(cmd-line-arg '--chicken-installation-prefix args))
(log-file (or (cmd-line-arg '--log-file args) "salmonella.log"))
(chicken-install-args
(cmd-line-arg '--chicken-install-args args))
(eggs-source-dir
(cmd-line-arg '--eggs-source-dir args))
(eggs-doc-dir
(cmd-line-arg '--eggs-doc-dir args))
(skip-eggs (let ((skip (cmd-line-arg '--skip-eggs args)))
(if skip
(map string->symbol (string-split skip ","))
'())))
(keep-repo? (and (member "--keep-repo" args) #t))
(clear-chicken-home? (and (member "--clear-chicken-home" args) #t))
(repo-dir (and-let* ((path (cmd-line-arg '--repo-dir args)))
(if (absolute-pathname? path)
path
(normalize-pathname
(make-pathname (current-directory) path)))))
(tmp-dir (or repo-dir (mktempdir)))
(verbosity (or (and-let* ((verbosity (cmd-line-arg '--verbosity args)))
(or (string->number verbosity) default-verbosity))
default-verbosity))
(salmonella (make-salmonella
tmp-dir
eggs-source-dir: eggs-source-dir
eggs-doc-dir: eggs-doc-dir
chicken-installation-prefix: chicken-installation-prefix
clear-chicken-home?: clear-chicken-home?
chicken-install-args:
(and chicken-install-args
(lambda (repo)
(list
(or (irregex-replace "<repo>" chicken-install-args repo)
chicken-install-args))))
this-egg?: this-egg?))
(eggs (if this-egg?
(let ((setup (glob "*.setup")))
(cond ((null? setup)
(die "Could not find a .setup file. Aborting."))
((null? (cdr setup))
(map (compose string->symbol pathname-file) setup))
(else
(die "Found more than one .setup file. Aborting."))))
(remove (lambda (egg)
(memq egg skip-eggs))
(map string->symbol
(remove (lambda (arg)
(string-prefix? "--" arg))
args)))))
(total-eggs (length eggs)))
(when (null? eggs)
(delete-path tmp-dir)
(print "Nothing to do.")
(exit))
;; Remove the temporary directory if interrupted
(set-signal-handler! signal/int
(lambda (signal)
(delete-path tmp-dir)
(exit)))
(when (> verbosity 1)
(print (salmonella 'env-info)))
;; for salmonella-epidemy
(set! *instance-id* (cmd-line-arg '--instance-id args))
;; Remove old log
(delete-file* log-file)
;; Log start
(log! (make-report #f 'start 0 (salmonella 'env-info) (current-seconds))
log-file)
;; Log version
(log! (make-report #f 'log-version 0 salmonella-log-version 0)
log-file)
;; Log skipped eggs
(for-each (lambda (egg)
(log! (make-report egg 'skip 0 "" 0) log-file))
skip-eggs)
;; Maybe show warning about existing Scheme files in chicken-home
(let ((msg (check-chicken-home chicken-installation-prefix this-egg?)))
(when msg
(with-output-to-port (current-error-port)
(cut print msg))))
;; Handle all eggs
(for-each
(lambda (egg egg-count)
(unless keep-repo? (salmonella 'clear-repo!))
(salmonella 'init-repo!)
;; Fetch egg
(progress-indicator 'fetch egg verbosity egg-count total-eggs)
(let ((fetch-log (salmonella 'fetch egg)))
(log! fetch-log log-file)
(status-reporter fetch-log verbosity)
(when (zero? (report-status fetch-log))
;; Meta data
(progress-indicator 'meta-data egg verbosity)
(let ((meta-log (salmonella 'meta-data egg)))
(log! meta-log log-file)
(status-reporter meta-log verbosity)
(when (report-status meta-log)
(let ((meta-data (report-message meta-log)))
;; Warnings (only logged when indicate problems)
;; Check dependencies
(progress-indicator 'check-dependencies egg verbosity)
(let ((deps-log (salmonella 'check-dependencies egg meta-data)))
(unless (report-status deps-log)
(log! deps-log log-file))
(status-reporter deps-log verbosity))
;; Check category
(progress-indicator 'check-category egg verbosity)
(let ((categ-log (salmonella 'check-category egg meta-data)))
(unless (report-status categ-log)
(log! categ-log log-file))
(status-reporter categ-log verbosity))
;; Check license
(progress-indicator 'check-license egg verbosity)
(let ((license-log (salmonella 'check-license egg meta-data)))
(unless (report-status license-log)
(log! license-log log-file))
(status-reporter license-log verbosity))
;; Check author
(progress-indicator 'check-author egg verbosity)
(let ((author-log (salmonella 'check-author egg meta-data)))
(unless (report-status author-log)
(log! author-log log-file))
(status-reporter author-log verbosity))
;; Install egg
(progress-indicator 'install egg verbosity)
(let ((install-log (salmonella 'install egg)))
(log! install-log log-file)
(status-reporter install-log verbosity)
(when (zero? (report-status install-log))
;; Check version
(let ((check-version-log (salmonella 'check-version egg)))
(progress-indicator 'check-version egg verbosity)
(log! check-version-log log-file)
(status-reporter check-version-log verbosity))
;; Test egg
(progress-indicator 'test egg verbosity)
(let ((test-log (salmonella 'test egg)))
(log! test-log log-file)
(status-reporter test-log verbosity)))))))))
;; Check doc
(progress-indicator 'check-doc egg verbosity)
(let ((doc-log (salmonella 'check-doc egg)))
(log! doc-log log-file)
(status-reporter doc-log verbosity)))
eggs
(iota total-eggs 1))
(log! (make-report #f 'end 0 "" (current-seconds)) log-file)
(unless this-egg?
(show-statistics log-file verbosity))
(unless keep-repo? (delete-path tmp-dir))))