|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define (foo/bar braz) |
|
(if braz 'foo 'bar)) |
|
|
|
|
|
|
|
#! |
|
foo/bar |
|
@deffn procedure foo/bar braz |
|
This procedure foos, or bars, depending on the argument @var{braz}. |
|
@c Author: Martin Grabmueller |
|
@end deffn |
|
!# |
|
|
|
|
|
#! |
|
Procedure: foo/bar braz |
|
This procedure foos, or bars, depending on the argument @var{braz}. |
|
|
|
^L |
|
!# |
|
|
|
|
|
|
|
|
|
|
|
(define doc-snarf-version "0.0.2") |
|
|
|
|
|
|
|
(define-module (scripts doc-snarf) |
|
:use-module (ice-9 getopt-long) |
|
:use-module (ice-9 regex) |
|
:use-module (ice-9 string-fun) |
|
:use-module (ice-9 rdelim) |
|
:export (doc-snarf)) |
|
|
|
(define %summary "Snarf out documentation from a file.") |
|
|
|
(define command-synopsis |
|
'((version (single-char #\v) (value #f)) |
|
(help (single-char #\h) (value #f)) |
|
(output (single-char #\o) (value #t)) |
|
(texinfo (single-char #\t) (value #f)) |
|
(lang (single-char #\l) (value #t)))) |
|
|
|
|
|
|
|
(define (display-version) |
|
(display "doc-snarf ") (display doc-snarf-version) (newline)) |
|
|
|
|
|
|
|
(define (display-help) |
|
(display "Usage: doc-snarf [options...] inputfile\n") |
|
(display " --help, -h Show this usage information\n") |
|
(display " --version, -v Show version information\n") |
|
(display |
|
" --output=FILE, -o Specify output file [default=stdout]\n") |
|
(display " --texinfo, -t Format output as texinfo\n") |
|
(display " --lang=[c,scheme], -l Specify the input language\n")) |
|
|
|
|
|
|
|
(define (doc-snarf . args) |
|
(let ((options (getopt-long (cons "doc-snarf" args) command-synopsis))) |
|
(let ((help-wanted (option-ref options 'help #f)) |
|
(version-wanted (option-ref options 'version #f)) |
|
(texinfo-wanted (option-ref options 'texinfo #f)) |
|
(lang (string->symbol |
|
(string-downcase (option-ref options 'lang "scheme"))))) |
|
(cond |
|
(version-wanted (display-version)) |
|
(help-wanted (display-help)) |
|
(else |
|
(let ((input (option-ref options '() #f)) |
|
(output (option-ref options 'output #f))) |
|
(if |
|
|
|
|
|
(pair? input) |
|
(snarf-file (car input) output texinfo-wanted lang) |
|
(display-help)))))))) |
|
|
|
(define main doc-snarf) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define supported-languages |
|
'((c |
|
"^/\\*(.*)" |
|
"^ \\*/" |
|
"^ \\* (.*)" |
|
"^ \\*-(.*)" |
|
"NOTHING AT THIS TIME!!!" |
|
#f |
|
) |
|
(scheme |
|
"^;; (.*)" |
|
"^;;\\." |
|
"^;; (.*)" |
|
"^;;-(.*)" |
|
"^\\(define" |
|
#t |
|
))) |
|
|
|
|
|
|
|
(define (lang-parm lang parm) |
|
(list-ref (assq-ref supported-languages lang) |
|
(case parm |
|
((docstring-start) 0) |
|
((docstring-end) 1) |
|
((docstring-prefix) 2) |
|
((option-prefix) 3) |
|
((signature-start) 4) |
|
((std-int-doc?) 5)))) |
|
|
|
|
|
|
|
|
|
|
|
(define (snarf-file input output texinfo? lang) |
|
(or (memq lang (map car supported-languages)) |
|
(error "doc-snarf: input language must be c or scheme.")) |
|
(write-output (snarf input lang) output |
|
(if texinfo? format-texinfo format-plain))) |
|
|
|
|
|
|
|
|
|
(define (find-std-int-doc line input-port) |
|
"Unread @var{line} from @var{input-port}, then read in the entire form and |
|
return the standard internal docstring if found. Return #f if not." |
|
(unread-string line input-port) |
|
(let ((form (read input-port))) |
|
(cond ((and (list? form) |
|
(< 3 (length form)) |
|
(eq? 'define (car form)) |
|
(pair? (cadr form)) |
|
(symbol? (caadr form)) |
|
(string? (caddr form))) |
|
(caddr form)) |
|
((and (list? form) |
|
(< 2 (length form)) |
|
(eq? 'define (car form)) |
|
(symbol? (cadr form)) |
|
(list? (caddr form)) |
|
(< 3 (length (caddr form))) |
|
(eq? 'lambda (car (caddr form))) |
|
(string? (caddr (caddr form)))) |
|
(caddr (caddr form))) |
|
(else #f)))) |
|
|
|
|
|
|
|
(define (split-prefixed string prefix) |
|
(separate-fields-discarding-char |
|
#\newline string |
|
(lambda lines |
|
(map (lambda (line) |
|
(string-append prefix line)) |
|
lines)))) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define (snarf input-file lang) |
|
(let* ((i-p (open-input-file input-file)) |
|
(parm-regexp (lambda (parm) (make-regexp (lang-parm lang parm)))) |
|
(docstring-start (parm-regexp 'docstring-start)) |
|
(docstring-end (parm-regexp 'docstring-end)) |
|
(docstring-prefix (parm-regexp 'docstring-prefix)) |
|
(option-prefix (parm-regexp 'option-prefix)) |
|
(signature-start (parm-regexp 'signature-start)) |
|
(augmented-options |
|
(lambda (line i-p options) |
|
(let ((int-doc (and (lang-parm lang 'std-int-doc?) |
|
(let ((d (find-std-int-doc line i-p))) |
|
(and d (split-prefixed d "internal: ")))))) |
|
(if int-doc |
|
(append (reverse int-doc) options) |
|
options))))) |
|
|
|
(let lp ((line (read-line i-p)) (state 'neutral) (doc-strings '()) |
|
(options '()) (entries '()) (lno 0)) |
|
(cond |
|
((eof-object? line) |
|
(close-input-port i-p) |
|
(reverse entries)) |
|
|
|
|
|
|
|
((eq? state 'neutral) |
|
(let ((m (regexp-exec docstring-start line))) |
|
(if m |
|
(lp (read-line i-p) 'doc-string |
|
(list (match:substring m 1)) '() entries (+ lno 1)) |
|
(lp (read-line i-p) state '() '() entries (+ lno 1))))) |
|
|
|
|
|
|
|
((eq? state 'doc-string) |
|
(let ((m0 (regexp-exec docstring-prefix line)) |
|
(m1 (regexp-exec option-prefix line)) |
|
(m2 (regexp-exec signature-start line)) |
|
(m3 (regexp-exec docstring-end line))) |
|
(cond |
|
(m0 |
|
(lp (read-line i-p) 'doc-string |
|
(cons (match:substring m0 1) doc-strings) '() entries |
|
(+ lno 1))) |
|
(m1 |
|
(lp (read-line i-p) 'options |
|
doc-strings (cons (match:substring m1 1) options) entries |
|
(+ lno 1))) |
|
(m2 |
|
(let ((options (augmented-options line i-p options))) |
|
(lp (read-line i-p) 'neutral '() '() |
|
(cons (parse-entry doc-strings options line input-file lno) |
|
entries) |
|
(+ lno 1)))) |
|
(m3 |
|
(lp (read-line i-p) 'neutral '() '() |
|
(cons (parse-entry doc-strings options #f input-file lno) |
|
entries) |
|
(+ lno 1))) |
|
(else |
|
(lp (read-line i-p) 'neutral '() '() entries (+ lno 1)))))) |
|
|
|
|
|
|
|
((eq? state 'options) |
|
(let ((m1 (regexp-exec option-prefix line)) |
|
(m2 (regexp-exec signature-start line)) |
|
(m3 (regexp-exec docstring-end line))) |
|
(cond |
|
(m1 |
|
(lp (read-line i-p) 'options |
|
doc-strings (cons (match:substring m1 1) options) entries |
|
(+ lno 1))) |
|
(m2 |
|
(let ((options (augmented-options line i-p options))) |
|
(lp (read-line i-p) 'neutral '() '() |
|
(cons (parse-entry doc-strings options line input-file lno) |
|
entries) |
|
(+ lno 1)))) |
|
(m3 |
|
(lp (read-line i-p) 'neutral '() '() |
|
(cons (parse-entry doc-strings options #f input-file lno) |
|
entries) |
|
(+ lno 1))) |
|
(else |
|
(lp (read-line i-p) 'neutral '() '() entries (+ lno 1)))))))))) |
|
|
|
(define (make-entry symbol signature docstrings options filename line) |
|
(vector 'entry symbol signature docstrings options filename line)) |
|
(define (entry-symbol e) |
|
(vector-ref e 1)) |
|
(define (entry-signature e) |
|
(vector-ref e 2)) |
|
(define (entry-docstrings e) |
|
(vector-ref e 3)) |
|
(define (entry-options e) |
|
(vector-ref e 4)) |
|
(define (entry-filename e) |
|
(vector-ref e 5)) |
|
(define (entry-line e) |
|
"This docstring will not be snarfed, unfortunately..." |
|
(vector-ref e 6)) |
|
|
|
|
|
|
|
|
|
(define (parse-entry docstrings options def-line filename line-no) |
|
|
|
(cond |
|
(def-line |
|
(make-entry (get-symbol def-line) |
|
(make-prototype def-line) (reverse docstrings) |
|
(reverse options) filename |
|
(+ (- line-no (length docstrings) (length options)) 1))) |
|
((> (length docstrings) 0) |
|
(make-entry (string->symbol (car (reverse docstrings))) |
|
(car (reverse docstrings)) |
|
(cdr (reverse docstrings)) |
|
(reverse options) filename |
|
(+ (- line-no (length docstrings) (length options)) 1))) |
|
(else |
|
(make-entry 'foo "" (reverse docstrings) (reverse options) filename |
|
(+ (- line-no (length docstrings) (length options)) 1))))) |
|
|
|
|
|
|
|
|
|
(define (make-prototype def-line) |
|
(call-with-input-string |
|
def-line |
|
(lambda (s-p) |
|
(let* ((paren (read-char s-p)) |
|
(keyword (read s-p)) |
|
(tmp (read s-p))) |
|
(cond |
|
((pair? tmp) |
|
(join-symbols tmp)) |
|
((symbol? tmp) |
|
(symbol->string tmp)) |
|
(else |
|
"")))))) |
|
|
|
(define (get-symbol def-line) |
|
(call-with-input-string |
|
def-line |
|
(lambda (s-p) |
|
(let* ((paren (read-char s-p)) |
|
(keyword (read s-p)) |
|
(tmp (read s-p))) |
|
(cond |
|
((pair? tmp) |
|
(car tmp)) |
|
((symbol? tmp) |
|
tmp) |
|
(else |
|
'foo)))))) |
|
|
|
|
|
|
|
(define (join-symbols s) |
|
(cond ((null? s) |
|
"") |
|
((symbol? s) |
|
(string-append ". " (symbol->string s))) |
|
((null? (cdr s)) |
|
(symbol->string (car s))) |
|
(else |
|
(string-append (symbol->string (car s)) " " (join-symbols (cdr s)))))) |
|
|
|
|
|
|
|
|
|
|
|
(define (write-output entries output-file writer) |
|
(with-output-to-port (cond (output-file (open-output-file output-file)) |
|
(else (current-output-port))) |
|
(lambda () (for-each writer entries)))) |
|
|
|
|
|
|
|
(define (format-texinfo entry) |
|
(display "\n\f") |
|
(display (entry-symbol entry)) |
|
(newline) |
|
(display "@c snarfed from ") |
|
(display (entry-filename entry)) |
|
(display ":") |
|
(display (entry-line entry)) |
|
(newline) |
|
(display "@deffn procedure ") |
|
(display (entry-signature entry)) |
|
(newline) |
|
(for-each (lambda (s) (write-line s)) |
|
(entry-docstrings entry)) |
|
(for-each (lambda (s) (display "@c ") (write-line s)) |
|
(entry-options entry)) |
|
(write-line "@end deffn")) |
|
|
|
|
|
|
|
(define (format-plain entry) |
|
(display "Procedure: ") |
|
(display (entry-signature entry)) |
|
(newline) |
|
(for-each (lambda (s) (write-line s)) |
|
(entry-docstrings entry)) |
|
(for-each (lambda (s) (display ";; ") (write-line s)) |
|
(entry-options entry)) |
|
(display "Snarfed from ") |
|
(display (entry-filename entry)) |
|
(display ":") |
|
(display (entry-line entry)) |
|
(newline) |
|
(write-line "\f")) |
|
|
|
|
|
|