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
|
;;; "getparam.scm" convert getopt to passing parameters by name.
; Copyright 1995, 1996, 1997 Aubrey Jaffer
;
;Permission to copy this software, to redistribute it, and to use it
;for any purpose is granted, subject to the following restrictions and
;understandings.
;
;1. Any copy made of this software must include this copyright notice
;in full.
;
;2. I have made no warrantee or representation that the operation of
;this software will be error-free, and I am under no obligation to
;provide any services, by way of maintenance, update, or otherwise.
;
;3. In conjunction with products arising from the use of this
;material, there shall be no use of my name in any advertising,
;promotional, or sales literature without prior written consent in
;each case.
(require 'getopt)
(define (getopt->parameter-list argc argv optnames arities types aliases)
(define (can-take-arg? opt)
(not (eq? (list-ref arities (position opt optnames))
'boolean)))
(define (coerce-val val curopt)
(define ntyp (list-ref types (position curopt optnames)))
(case ntyp
((expression) val)
(else (coerce val ntyp))))
(let ((starting-optind *optind*)
(optlist '())
(long-opt-list '())
(optstring #f)
(parameter-list (make-parameter-list optnames))
(curopt '*unclaimed-argument*))
(set! aliases (map (lambda (alias)
(define str (string-copy (car alias)))
(do ((i (+ -1 (string-length str)) (+ -1 i)))
((negative? i) (cons str (cdr alias)))
(cond ((char=? #\ (string-ref str i))
(string-set! str i #\-)))))
aliases))
(for-each
(lambda (alias)
(define opt (car alias))
(cond ((not (string? opt)))
((< 1 (string-length opt))
(set! long-opt-list (cons opt long-opt-list)))
((not (= 1 (string-length opt))))
((can-take-arg? (cadr alias))
(set! optlist (cons (string-ref opt 0)
(cons #\: optlist))))
(else (set! optlist (cons (string-ref opt 0) optlist)))))
aliases)
(set! optstring (list->string (cons #\: optlist)))
(let loop ()
(let ((opt (getopt-- argc argv optstring)))
(case opt
((#\: #\?)
(parameter-list->getopt-usage (list-ref argv (+ -1 starting-optind))
optnames arities types aliases)
(slib:error 'getopt->parameter-list
(case opt
((#\:) "argument missing after")
((#\?) "unrecognized option"))
(string #\- getopt:opt)))
((#f)
(cond ((and (< *optind* argc)
(string=? "-" (list-ref argv *optind*)))
(set! *optind* (+ 1 *optind*)))
((< *optind* argc)
(cond ((and (member curopt optnames)
(adjoin-parameters!
parameter-list
(list curopt
(coerce-val (list-ref argv *optind*)
curopt))))
(set! *optind* (+ 1 *optind*))
(loop))
(else (slib:error 'getopt->parameter-list curopt
(list-ref argv *optind*)
"not supported"))))))
(else
(cond ((char? opt) (set! opt (string opt))))
(let ((topt (assoc opt aliases)))
(cond (topt (set! topt (cadr topt)))
(else (slib:error "Option not recognized -" opt)))
(cond
((not (can-take-arg? topt))
(adjoin-parameters! parameter-list (list topt #t)))
(*optarg*
(set! curopt topt)
(adjoin-parameters! parameter-list
(list topt (coerce-val *optarg* curopt))))
(else
(set! curopt topt)
;;; (slib:warn 'getopt->parameter-list
;;; "= missing for option--" opt)
)))
(loop)))))
parameter-list))
(define (parameter-list->getopt-usage comname optnames arities types aliases)
(require 'printf)
(require 'common-list-functions)
(let ((aliast (map list optnames))
(strlen=1? (lambda (s) (= 1 (string-length s))))
(cep (current-error-port)))
(for-each (lambda (alias)
(let ((apr (assq (cadr alias) aliast)))
(set-cdr! apr (cons (car alias) (cdr apr)))))
aliases)
(fprintf cep "Usage: %s [OPTION ARGUMENT ...] ..." comname)
(newline cep) (newline cep)
(for-each
(lambda (optname arity aliat)
(let loop ((initials (remove-if-not strlen=1? (cdr aliat)))
(longname (remove-if strlen=1? (cdr aliat))))
(cond ((and (null? initials) (null? longname)))
(else (fprintf cep
(case arity
((boolean) " %3s %s")
(else " %3s %s<%s> %s"))
(if (null? initials)
""
(string-append "-" (car initials)
(if (null? longname) " " ",")))
(if (null? longname)
" "
(string-append "--" (car longname)
(case arity
((boolean) " ")
(else "="))))
(case arity
((boolean) "")
(else optname))
(case arity
((nary nary1) "...")
(else "")))
(newline cep)
(loop (if (null? initials) '() (cdr initials))
(if (null? longname) '() (cdr longname)))))))
optnames arities aliast)))
(define (getopt->arglist argc argv optnames positions
arities types defaulters checks aliases)
(let* ((params (getopt->parameter-list
argc argv optnames arities types aliases))
(fparams (fill-empty-parameters defaulters params)))
(and (list? params) (check-parameters checks fparams))
(and (list? params) (parameter-list->arglist positions arities fparams))))
|