registry.scheme.org/generate.scm

232 lines
7.0 KiB
Scheme
Raw Normal View History

(import (scheme base) (scheme char) (scheme file)
(scheme read) (scheme write))
(import (srfi 132))
2020-08-05 03:03:43 -04:00
(define (read-all)
(let loop ((xs '()))
(let ((x (read)))
(if (eof-object? x) (reverse xs) (loop (cons x xs))))))
(define (group head xs)
(define (eject gs g) (if (null? g) gs (cons (reverse g) gs)))
(let loop ((xs xs) (gs '()) (g '()))
(cond ((null? xs)
(reverse (eject gs g)))
((and (pair? (car xs)) (equal? head (caar xs)))
(loop (cdr xs) (eject gs g) (list (car xs))))
(else
(loop (cdr xs) gs (cons (car xs) g))))))
(define (group-file head filename)
(group head (with-input-from-file filename read-all)))
(define (assoc? key alist)
(let ((x (assoc key alist)))
(cond ((not x) #f)
((and (list? x) (= 2 (length x))) (cadr x))
(else (error "Nope")))))
2020-08-05 03:03:43 -04:00
(define (assoc1 key alist)
(let ((x (assoc key alist)))
(if (and (list? x) (= 2 (length x))) (cadr x) (error "Nope"))))
(define (display-sxml x)
(define (display* . xs) (for-each display xs))
(define (display-char char)
(let* ((cc (char->integer char))
(ok? (case char ((#\& #\< #\> #\") #f) (else (<= #x20 cc #x7e)))))
(if ok? (display char) (display* "&#" cc ";"))))
2020-08-05 03:03:43 -04:00
(define (display-attribute attribute)
(display* " " (car attribute) "=\"")
(string-for-each display-char (cadr attribute))
(display "\""))
2020-08-05 03:03:43 -04:00
(cond ((pair? x)
(display* "<" (car x))
(let ((body (cond ((and (pair? (cdr x))
(pair? (cadr x))
(eq? '@ (car (cadr x))))
(for-each display-attribute (cdr (cadr x)))
(cddr x))
(else (cdr x)))))
(display ">")
(for-each display-sxml body)
(display* "</" (car x) ">")))
((string? x)
(string-for-each display-char x))
(else (error "Bad:" x))))
;;
(define (sort-by-id entries)
(list-sort (lambda (a b)
(string<? (symbol->string (assoc1 'id a))
(symbol->string (assoc1 'id b))))
entries))
(define (classify class entries)
(map (lambda (entry) `((class ,class) ,@entry))
entries))
(define (tabulate column-headings rows)
`(table (tr ,@(map (lambda (heading) `(th ,heading))
column-headings))
,@(map (lambda (row)
(let ((class (car row))
(tds (map (lambda (column heading)
`(td (@ (class
,(string-append
"p-"
(string-downcase heading))))
,column))
(cdr row)
column-headings)))
`(tr (@ (class ,(if class
(string-append "h-x-entry" " " class)
"h-x-entry")))
,@tds)))
rows)))
2020-08-05 03:03:43 -04:00
2020-08-05 05:57:31 -04:00
(define (the-usual entry)
(cons (assoc? 'class entry)
`((code ,(symbol->string (assoc1 'id entry)))
,(assoc1 'description entry))))
(define (registry registry-title registry-id intro table)
`(section
(@ (class "h-x-registry")
(data-p-id ,registry-id))
(h2 (@ (class "p-title"))
,registry-title)
(p "Registry ID: " (code (@ (class "p-id")) ,registry-id))
,intro
,table))
2020-08-05 03:03:43 -04:00
;;
(define (scheme-id)
(registry
"Scheme implementations"
"scheme-id"
'(p "Scheme IDs for use in "
(code "features") ", " (code "cond-expand") ", and many other places.")
(tabulate
'("ID" "Name" "Contact")
(map (lambda (entry)
(append (the-usual entry) (list (assoc1 'contact entry))))
(sort-by-id (group-file 'id "scheme-id.scm"))))))
(define (operating-system)
(registry
"Operating systems"
"operating-system"
'(p)
(tabulate
'("ID" "Description")
(map the-usual (sort-by-id (group-file 'id "operating-system.scm"))))))
(define (machine)
(registry
"Machines"
"machine"
'(p)
(tabulate
'("ID" "Description")
(map the-usual (sort-by-id (group-file 'id "machine.scm"))))))
(define (splice-implementations)
2020-08-05 05:51:41 -04:00
(classify "red" (group-file 'id "scheme-id.scm")))
(define (splice-operating-systems)
(classify "green" (group-file 'id "operating-system.scm")))
(define (splice-machines)
(classify "blue" (group-file 'id "machine.scm")))
(define (feature)
(registry
"Feature identifiers"
"features"
'(p)
(tabulate
'("ID" "Description")
(map the-usual (sort-by-id (append (group-file 'id "features.scm")
(splice-implementations)
(splice-operating-systems)
(splice-machines)))))))
(define (library-name)
(registry
"Library name prefixes"
"library-name"
'(p)
(tabulate
'("ID" "Description")
(map the-usual (sort-by-id
(append (group-file 'id "library-name.scm")
(splice-implementations)))))))
(define (reader-directive)
(registry
"Reader directives"
"reader-directive"
'(p)
(tabulate
'("ID" "Description" "Prefixes")
(map (lambda (entry)
(append (the-usual entry)
(list `(code ,(assoc1 'prefixes entry)))))
(sort-by-id (group-file 'id "reader-directive.scm"))))))
(define (foreign-status-set)
(registry
"Foreign status sets"
"foreign-status-set"
'(p)
(tabulate
'("ID" "Description")
(map the-usual
(sort-by-id (group-file 'id "foreign-status-set.scm"))))))
(define (foreign-status-property)
(registry
"Foreign status properties"
"foreign-status-property"
'(p)
(tabulate
'("ID" "Description" "Type")
(map (lambda (entry)
(append (the-usual entry) (list (assoc1 'type entry))))
(group-file 'id "foreign-status-property.scm")))))
2020-08-05 03:03:43 -04:00
(define (display-page)
(display "<!doctype html>")
2020-08-05 03:03:43 -04:00
(display-sxml
`(html
2020-08-05 06:03:51 -04:00
(@ (lang "en"))
2020-08-05 03:03:43 -04:00
(head
(title "Scheme Registry")
(style ""
"body { font-family: sans-serif; background-color: beige; }"
"body { max-width: 40em; }"
"table { border-collapse: collapse; }"
2020-08-05 03:03:43 -04:00
"table, th, td { border: 1px solid black; }"
"th, td { vertical-align: top; padding: 2px; }"
"code { white-space: nowrap; }"
"tr.red td { background-color: sandybrown; }"
"tr.green td { background-color: lightgreen; }"
"tr.blue td { background-color: lightblue; }"
))
2020-08-05 03:03:43 -04:00
(body
(h1 "Scheme Registry")
2020-08-05 03:03:43 -04:00
(p "The Scheme registry collects identifiers.")
,(scheme-id)
,(operating-system)
,(machine)
,(feature)
,(library-name)
,(reader-directive)
,(foreign-status-set)
,(foreign-status-property)))))
2020-08-05 03:03:43 -04:00
(with-output-to-file "index.html" display-page)