-
Notifications
You must be signed in to change notification settings - Fork 21
/
view.lisp
553 lines (506 loc) · 21.7 KB
/
view.lisp
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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
;;;; view.lisp --- view functions
;;;
;;; The SOFTWARE-EVOLUTION-VIEW (SE-VIEW) library provides a live
;;; status view which is continually updated during the course of an
;;; evolutionary run. Currently the interface is maintained on STDOUT
;;; of the process running the SE library. This view includes
;;; information on the progress and timing of the evolutionary run, the
;;; mutations used over the course of the run and their efficacy, and a
;;; summary of the `note' output printed during the run.
;;;
;;; To use SE-VIEW simply include it into your package, and then call
;;; `start-view' to begin maintain a status view on STDOUT. The
;;; following global variables of the SE-VIEW package may be used to
;;; customize the appearance of the view output.
;;;
;;; * *VIEW-RUN-NAME* controls the title of the run
;;; * *VIEW-LENGTH* controls the maximum width of the printed view
;;; * *VIEW-DELAY* control the refresh rate of the view in seconds
;;; * *VIEW-MUTATION-HEADER-P* show headers of mutation view columns
;;; * *VIEW-MAX-MUTATIONS* number of top mutations to show
;;; * *VIEW-MAX-NOTE-LINES* number of notes lines to display
;;; * *VIEW-BEST-GENOME-LINES* show lines of the best genome
;;;
;;; @texi{view}
(defpackage :software-evolution-library/view
(:nicknames :sel/view)
(:use
:gt/full
:diff
:cl-interpol
:software-evolution-library
:software-evolution-library/terminal
:software-evolution-library/utility/debug)
(:shadow :diff)
(:shadowing-import-from :arrow-macros :-<>> :-<> :<>) ; FIXME: Remove.
(:export :*view-stream*
:*view-length*
:*view-delay*
:*view-running*
:*view-application-name*
:*view-application-version*
:*view-run-name*
:*view-mutation-header-p*
:*view-max-mutations*
:*view-max-note-lines*
:*view-max-best-lines*
:*view-max-best-offset*
:*view-functions*
:+golden-ratio+
:label-line-print
:best-print
;; View functions.
:timing-view-function
:population-label-view-function
:fitness-view-function
:genome-view-function
:mutation-label-view-function
:mutation-view-function
:best-label-view-function
:best-view-function
:notes-label-view-function
:notes-view-function
;; Interface functions.
:with-delayed-invocation
:view-truncate
:view-start
:view-controller-start))
(in-package :software-evolution-library/view)
(eval-when (:compile-toplevel :load-toplevel :execute)
(defreadtable view-readtable (:merge :curry-compose-reader-macros :interpol-syntax)))
(in-readtable view-readtable)
(defvar *view-length*
(handler-case (nth-value 2 (term-size))
(ioctl (e) (declare (ignore e)) 72))
"Dynamically bind to use modify.")
(defvar *view-delay* 2
"Seconds to wait between updating the view.")
(defvar *view-running* nil
"Set to nil to terminate the view thread.")
(defvar *view-application-name* "SEL"
"Name of the application using the view.")
(defvar *view-application-version* +software-evolution-library-version+
"Version string of the application using the view.")
(defvar *view-run-name* nil
"Set the name of the current run.
For example a description of the evolution target.")
(defvar *view-mutation-header-p* t
"Show headers of mutation stats.")
(defvar *view-max-mutations* 0
"Maximum number of mutations to show.")
(defvar *view-max-note-lines* 12
"Maximum number of lines of notes to show.")
(defvar *view-cached-note-lines* nil
"Holds cached note lines for continued display.")
(defvar *view-max-best-lines* 0
"Number of lines of the best candidate to show.")
(defvar *view-max-best-offset* 0
"Offset into the lines of the best candidate to show.")
(defun view-truncate (line &optional (less 2))
(if (length> line (- *view-length* less))
(subseq line 0 (- *view-length* less))
line))
(define-constant +golden-ratio+ 21/34)
;;; View functions.
(defun label-line-print (&key (value "") (values)
(color +color-RST+) (colors)
(balance (- 1 +golden-ratio+))
(filler-color +color-GRA+) (filler +b-h+)
(left +b-lt+) (right +b-rt+)
(inhibit-newline))
(let* ((values (or values (list value)))
(colors (or colors (list color)))
(remainder-length
(- *view-length* (+ 2 (reduce #'+ (mapcar #'length values)))))
(left-l (floor (* remainder-length balance)))
(right-l (ceiling (* remainder-length (- 1 balance)))))
(assert (and (>= left-l 0) (>= right-l 0))
(left-l right-l)
"Padding on one side is negative (~a,~a)" left-l right-l)
(unless inhibit-newline (format *view-stream* "~&"))
(with-color-printing filler-color
(with-line-printing
(format *view-stream* "~a" (concatenate 'string
(string left)
(make-string left-l
:initial-element filler)))))
(mapc (lambda (value color)
(with-color-printing color (format *view-stream* value)))
values colors)
(with-color-printing filler-color
(with-line-printing
(format *view-stream* "~a" (concatenate 'string
(make-string right-l
:initial-element filler)
(string right)))))))
(defun runtime-print ()
(if *start-time*
(label-line-print
:balance 0
:colors (list +color-GRA+ +color-RST+
+color-GRA+ +color-RST+
+color-GRA+ +color-RST+)
:values
(remove nil
(list
" runtime: "
(multiple-value-bind
(days remainder) (floor (/ (elapsed-time) 86400))
(multiple-value-bind
(hours remainder) (floor (/ (* remainder 86400) 3600))
(multiple-value-bind
(minutes remainder) (floor (/ (* remainder 3600) 60))
(format nil "~dd ~dh ~2,'0dm ~2,'0ds" days hours minutes
(floor (* remainder 60))))))
" evals: "
(format nil "~f" *fitness-evals*)
(when (and *fitness-evals* (cdadr *mutation-improvements*))
" last-improv: ")
(when (and *fitness-evals* (cdadr *mutation-improvements*))
(format nil "~d"
(- *fitness-evals*
(cdadr *mutation-improvements*))))))
:filler #\Space :left +b-v+ :right +b-v+)
(label-line-print
:balance 0
:value "No run started."
:color +color-GRA+
:filler #\Space :left +b-v+ :right +b-v+)))
(defun fitness-data-print (best med &optional union uniq)
(label-line-print
:balance 0
:colors (append
(list +color-PIN+ +color-GRA+ +color-RST+ +color-GRA+ +color-RST+)
(list +color-GRA+ +color-RST+ +color-GRA+ +color-RST+))
:values (append
(list
" fitness"
" best: " best
" med: " med)
(when (and uniq union)
(list
" union: " union
" uniq: " uniq)))
:filler #\Space :left +b-v+ :right +b-v+))
(defun genome-data-print (min med max)
(label-line-print
:balance 0
:colors (list +color-PIN+
+color-GRA+ +color-RST+
+color-GRA+ +color-RST+
+color-GRA+ +color-RST+)
:values (list " length" " min: " min " med: " med " max: " max)
:filler #\Space :left +b-v+ :right +b-v+))
(defun mutation-stats-print (stats)
(let ((longest (extremum (mapcar [#'length #'symbol-name #'car] stats) #'>))
(keys '(:better :same :worse :dead)))
(when *view-mutation-header-p*
(label-line-print
:balance 0
:colors (mapcar (constantly +color-PIN+) (append (list 1 2 3) keys))
:values (append (cons (format nil " ~V@a " longest "MUTATION")
(mapcar (lambda (key) (format nil " ~6@a" key)) keys))
(list " /" " total"))
:filler #\Space :left +b-v+ :right +b-v+))
(mapc (lambda (mut)
(label-line-print
:balance 0
:colors
(append (cons +color-GRA+
(mapcar (constantly +color-RST+) keys))
(list +color-GRA+ +color-RST+))
:values
(append (list (format nil " ~V@a:" longest (car mut)))
(mapcar (lambda (key)
(format nil " ~6d"
(or (aget key (cdr mut)) 0)))
keys)
(list " / "
(format nil "~d"
(reduce #'+ (mapcar #'cdr (cdr mut))))))
:filler #\Space :left +b-v+ :right +b-v+))
(append stats
(list
(cons :total
(mapcar (lambda (key)
(cons key
(nest (reduce #'+)
(remove nil)
(mapcar [{aget key} #'cdr]
stats))))
(list :better :dead :same :worse))))))))
(defun notes-print (lines)
(mapc (lambda (line)
(label-line-print :value line :color +color-GRA+ :balance 0
:filler #\Space :left +b-v+ :right +b-v+))
lines))
(defun best-print (lines)
(mapc (lambda (line)
(label-line-print :value line :color +color-RST+ :balance 0
:filler #\Space :left +b-v+ :right +b-v+))
lines))
(eval-when (:compile-toplevel :load-toplevel :execute)
(defun subtree-starting-with (token tree &key (test #'equalp))
(if (funcall test token (car tree)) tree
(car (remove nil (mapcar {subtree-starting-with token}
(remove-if-not #'listp tree)))))))
(eval-when (:compile-toplevel :load-toplevel :execute)
(defun replace-subtree-starting-with (token replace tree &key (test #'equalp))
(mapcar (lambda (subtree)
(if (and (listp subtree) (car subtree))
(if (funcall test token (car subtree))
replace
(replace-subtree-starting-with token replace subtree))
subtree))
tree)))
(defmacro with-delayed-invocation (spec &rest body)
"Take a form with a function marked as DELAYED.
Argument SPEC should be a list holding a function name, and optionally
a form to evaluate to determine if the invocation should be
run (otherwise an empty function is returned). Rewrite into a form
which calculates all arguments and returns a lambda calling the
delayed function on the arguments."
(let* ((function (first spec))
(conditional (second spec))
(syms-and-args (mapcar (lambda (arg) (list (gensym) arg))
(cdr (subtree-starting-with function body)))))
(assert syms-and-args (function body)
"Couldn't find instance of ~a in ~a" function body)
(let ((body (replace-subtree-starting-with
function
`(let ,syms-and-args
(lambda () (,function ,@(mapcar #'car syms-and-args))))
`(progn ,@body))))
(if conditional
`(if ,conditional ,body (lambda ()))
body))))
;;; View functions
;;;
;;; TODO: Determine how to setup this list with functions s.t. they
;;; are evaluated *first* to populate arguments (previously done
;;; as arguments to view were evaluated) and then second to
;;; actually do the display.
;;;
;;; Each of these functions should be a function which is
;;; evaluated to return a function to do the printing.
(defun timing-view-function ()
(lambda ()
(label-line-print :value " timing " :color +color-CYA+
:balance (/ (- 1 +golden-ratio+) 2)
:left +b-lt+ :right +b-rt+)
(runtime-print)))
(defun population-label-view-function ()
(lambda ()
(when (and *population* (every #'fitness *population*))
(label-line-print :value " population " :color +color-CYA+
:balance (/ (- 1 +golden-ratio+) 2)
:left +b-vr+ :right +b-vl+))))
(defun filter-population-by-fitness-type (population
&key
(type (if (numberp
(fitness
(first population)))
:scalar
:vector)))
"Filter POPULATION so that all members have TYPE (:VECTOR or :SCALAR) fitness.
If TYPE is not specified, use the fitness type of the first member of
the population."
(remove-if-not (ecase type
(:scalar #'numberp)
(:vector #'vectorp))
population :key #'fitness))
(defun fitness-view-function ()
;; Fitness data information (pre-calculated).
(with-delayed-invocation (fitness-data-print
(and *population* (every #'fitness *population*)))
(let* ((vectorp (not (numberp (fitness (car *population*)))))
;; only include variants that have the right type (numeric or vector)
(fit-population (filter-population-by-fitness-type
*population*
:type (if vectorp :vector :scalar)))
(fits (mapcar (if vectorp
[{reduce #'+} #'fitness]
#'fitness)
fit-population)))
(fitness-data-print
(format nil "~6f" (extremum fits *fitness-predicate*))
(format nil "~6f" (median fits))
(when vectorp
(format nil "~6f"
(nest (reduce #'+)
(apply #'mapcar [{apply #'min} #'list])
(mapcar [{coerce _ 'list} #'fitness]
fit-population))))
(when vectorp
(format nil "~d"
(/ (length (remove-duplicates
(mapcar #'fitness fit-population)
:test #'equalp))
(length fit-population))))))))
(defun genome-view-function ()
;; Genomic data informaion (pre-calculated).
(with-delayed-invocation (genome-data-print *population*)
(let ((lengths
(without-compiler-notes
(mapcar [#'length #'lines] *population*))))
(genome-data-print (format nil "~d" (apply #'min lengths))
(format nil "~d" (median lengths))
(format nil "~d" (apply #'max lengths))))))
(defun mutation-label-view-function ()
(lambda ()
(when (and (> *view-max-mutations* 0)
(> (hash-table-count *mutation-stats*) 0))
(label-line-print :value " mutations " :color +color-CYA+
:balance (/ (- 1 +golden-ratio+) 2)
:left +b-vr+ :right +b-vl+))))
(defun mutation-view-function ()
(with-delayed-invocation
(mutation-stats-print
(and (> *view-max-mutations* 0)
(> (hash-table-count *mutation-stats*) 0)))
(mutation-stats-print
(take *view-max-mutations*
(sort (summarize-mutation-stats) #'>
:key (lambda (mut)
(/ (or (aget :better (cdr mut)) 0)
(reduce #'+ (mapcar
#'cdr (cdr mut))))))))))
(defun best-label-view-function ()
(lambda ()
(when (and (> *view-max-best-lines* 0)
*population*
(every #'fitness *population*))
(label-line-print :value " best " :color +color-CYA+
:balance (/ (- 1 +golden-ratio+) 2)
:left +b-vr+ :right +b-vl+))))
(defun best-view-function ()
(with-delayed-invocation (best-print (and (> *view-max-best-lines* 0)
*population*
(every #'fitness *population*)))
(best-print (-<>> (filter-population-by-fitness-type *population*)
(extremum <> #'fitness-better-p :key #'fitness)
(genome-string)
(split-sequence #\Newline)
(mapcar #'view-truncate)
((lambda (lines) ; Allow scrolling through the best lines.
(drop (max (min *view-max-best-offset*
(1- (- (length lines)
*view-max-best-lines*)))
0)
lines)))
(append <> (make-list *view-max-best-lines*
:initial-element ""))
(take *view-max-best-lines*)))))
(defun notes-label-view-function ()
(lambda ()
(when (> *view-max-note-lines* 0)
(label-line-print :value " notes " :color +color-CYA+
:balance (/ (- 1 +golden-ratio+) 2)
:left +b-vr+ :right +b-vl+))))
(defun notes-view-function ()
(with-delayed-invocation (notes-print (> *view-max-note-lines* 0))
(notes-print
(setf *view-cached-note-lines*
(-<>> *note-out*
(find-if #'string-output-stream-p)
(get-output-stream-string)
(split-sequence #\Newline <>
:remove-empty-subseqs t)
(mapcar
(lambda (line)
(multiple-value-bind (start end)
(scan "^;;\\d\\d\\d\\d.\\d\\d.\\d\\d." line)
(if start
(subseq line end)
line))))
(mapcar #'view-truncate)
(reverse)
(append <> *view-cached-note-lines*)
(take *view-max-note-lines*))))))
(defvar *view-functions*
'(timing-view-function
population-label-view-function
fitness-view-function
genome-view-function
mutation-label-view-function
mutation-view-function
best-label-view-function
best-view-function
notes-label-view-function
notes-view-function)
"List of the functions called to populate the view.
View functions return functions which print view information. All
functions in this list should return functions to do the printing.
The reason for this two stage call-return-call process is to allow
expensive operations to be performed *before* the view is being
updated so that the returned printing functions execute quickly
avoiding flickering in the terminal display. The
`with-delayed-invocation' macro helps with the caching of computation
and returning of quickly-executing printing functions.")
;;; Interface functions
(defun view-status ()
(clear-terminal)
(hide-cursor)
(label-line-print
:values (append (list (format nil " ~a " *view-application-name*)
*view-application-version*)
(when *view-run-name*
(list (format nil " (~a)" *view-run-name*))))
:colors (list +color-YEL+ +color-CYA+ +color-LGN+)
:balance 1/2
:inhibit-newline t
:filler #\Space :left #\Space :right #\Space)
;; Double-evaluate the view functions first to return the printing
;; functions, then to quickly call the printing functions.
(nest (mapcar #'funcall)
(mapcar #'funcall *view-functions*))
(label-line-print :left +b-lb+ :right +b-rb+)
(force-output *view-stream*))
(defun view-start ()
"Start a viewing thread regularly updating `view-status'.
Optional argument DELAY controls the rate at which the view refreshes."
(setf *view-running* t)
(unless
(or (zerop *view-max-note-lines*) ; If we want to show notes,
(some #'string-output-stream-p *note-out*)) ; and need string stream.
(push (make-string-output-stream) *note-out*))
(make-thread
(lambda ()
(let ((*view-stream* *standard-output*))
(iter
(while *view-running*)
(view-status)
(sleep *view-delay*))))
:name "view"))
(defun view-help ()
(clear-terminal)
(label-line-print :value "TODO: HELP" :left +b-lb+ :right +b-rb+))
;;; Control functions
(defun handle-user-input (command-char)
;; TODO: limits on changes to offset
;; TODO: horizontal scrolling
;; TODO: help on ?
;; TODO: signals for refresh, for more responsive commands
(case command-char
(#\k (decf *view-max-best-offset*))
(#\j (incf *view-max-best-offset*))
(#\u (decf *view-max-best-offset* *view-max-best-lines*))
((#\Space #\n #\d) (incf *view-max-best-offset* *view-max-best-lines*))
(#\g (setf *view-max-best-offset* 0))
(#\G (let ((best (extremum *population* #'fitness-better-p :key #'fitness)))
(setf *view-max-best-offset*
(max 0 (- (length (split-sequence #\Newline
(genome-string best)))
*view-max-best-lines*)))))
(#\? (view-help))
(otherwise (note 3 "Unknown command char ~S" command-char)))
;; Return nil on q or Q to terminate.
(not (or (equal command-char #\q)
(equal command-char #\Q))))
(defun view-controller-start ()
(make-terminal-raw)
(make-thread
(lambda ()
(iter (for command-char = (read-char))
(while (handle-user-input command-char)))
:name "view-controller")))