|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define-module (scripts list) |
|
#:use-module (srfi srfi-1) |
|
#:export (list-scripts)) |
|
|
|
(define %include-in-guild-list #f) |
|
(define %summary "An alias for \"help\".") |
|
|
|
|
|
(define (directory-files dir) |
|
(if (and (file-exists? dir) (file-is-directory? dir)) |
|
(let ((dir-stream (opendir dir))) |
|
(let loop ((new (readdir dir-stream)) |
|
(acc '())) |
|
(if (eof-object? new) |
|
(begin |
|
(closedir dir-stream) |
|
acc) |
|
(loop (readdir dir-stream) |
|
(if (or (string=? "." new) |
|
(string=? ".." new)) |
|
acc |
|
(cons new acc)))))) |
|
'())) |
|
|
|
(define (strip-extensions path) |
|
(or-map (lambda (ext) |
|
(and |
|
(string-suffix? ext path) |
|
|
|
|
|
|
|
(not (string-null? ext)) |
|
(substring path 0 |
|
(- (string-length path) (string-length ext))))) |
|
(append %load-compiled-extensions %load-extensions))) |
|
|
|
(define (unique l) |
|
(cond ((null? l) l) |
|
((null? (cdr l)) l) |
|
((equal? (car l) (cadr l)) (unique (cdr l))) |
|
(else (cons (car l) (unique (cdr l)))))) |
|
|
|
(define (find-submodules head) |
|
(let ((shead (map symbol->string head))) |
|
(unique |
|
(sort |
|
(append-map (lambda (path) |
|
(fold (lambda (x rest) |
|
(let ((stripped (strip-extensions x))) |
|
(if stripped (cons stripped rest) rest))) |
|
'() |
|
(directory-files |
|
(fold (lambda (x y) (in-vicinity y x)) path shead)))) |
|
%load-path) |
|
string<?)))) |
|
|
|
(define (list-scripts . args) |
|
(for-each (lambda (x) |
|
|
|
(format #t "~A\n" x)) |
|
(find-submodules '(scripts)))) |
|
|
|
(define (main . args) |
|
(apply (@@ (scripts help) main) args)) |
|
|