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 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610
|
;; common.lsp. functions missing that are part of common lisp,
;; and commonly used
;; It is assumed you are using XLISP-PLUS 3.0 with all Common Lisp related
;; options (except packages) turned on before you load this file.
;; Author either unknown or Tom Almy unless indicated.
(in-package "XLISP")
; (unintern sym) - remove a symbol from the oblist
#-:packages
(defun unintern (symbol)
(let ((subhash (hash symbol (length *obarray*))))
(cond ((member symbol (aref *obarray* subhash))
(setf (aref *obarray* subhash)
(delete symbol (aref *obarray* subhash)))
t)
(t nil))))
(export '(pairlis copy-list copy-alist copy-tree signum))
;; pairlis does not check for lengths of keys and values being unequal
(defun pairlis (keys values &optional list)
(nconc (mapcar #'cons keys values) list))
(defun copy-list (list) (append list 'nil))
(defun copy-alist (list)
(if (null list)
'nil
(cons (if (consp (car list))
(cons (caar list) (cdar list))
(car list))
(copy-alist (cdr list)))))
(defun copy-tree (list)
(if (consp list)
(cons (copy-tree (car list)) (copy-tree (cdr list)))
list))
(defun signum (x)
(cond ((not (numberp x)) (error "~s is not a number" x))
((zerop (abs x)) x)
(t (/ x (abs x)))))
(export '(remf incf decf push pushnew pop))
; Cruddy but simple versions of these functions.
; Commented out since XLISP will now expand macros once, making
; good version much preferred.
;(defmacro incf (var &optional (delta 1))
; `(setf ,var (+ ,var ,delta)))
;(defmacro decf (var &optional (delta 1))
; `(setf ,var (- ,var ,delta)))
;(defmacro push (v l)
; `(setf ,l (cons ,v ,l))))
;(defmacro pushnew (a l &rest args)
; `(unless (member ,a ,l ,@args) (push ,a ,l) nil))
;(defmacro pop (l)
; `(prog1 (first ,l) (setf ,l (rest ,l)))))
; This is what one really needs to do for incf decf and
; (in common.lsp) push and pop. The setf form must only be evaluated once.
; But is it worth all this overhead for correctness?
; (By Tom Almy)
(defun |DoForm| (form) ; returns (cons |list for let| |new form|)
(let* ((args (rest form)) ; raw form arguments
(letlist (mapcan #'(lambda (x) (when (consp x)
(list (list (gensym) x))))
form))
(revlist (mapcar #'(lambda (x) (cons (second x) (first x)))
letlist))
(newform (cons (first form) (sublis revlist args))))
(cons letlist newform)))
(defun |RemProp| (l prop)
(do ((cl l (cddr cl))
(flg nil cl))
((atom cl) nil) ; none found
(cond ((atom (cdr l))
(error "odd length property list"))
((eq (car cl) prop) ; a match!
(if flg ; different if first in list from later
(rplacd (cdr flg) (cddr cl))
(setq l (cddr l)))
(return (list l))))))
(defmacro remf (form prop &aux (remres (gensym)))
(if (and (consp form) (some #'consp form))
(let ((retval (|DoForm| form)))
`(let* ( ,@(car retval)
(,remres (|RemProp| ,(cdr retval) ,prop)))
(if ,remres
(progn (setf ,(cdr retval) (car ,remres))
t)
nil)))
`(let ((,remres (|RemProp| ,form ,prop)))
(if ,remres (progn (setf ,form (car ,remres)) t)
nil))))
#-:packages
(unintern '|RemProp|)
(defmacro incf (form &optional (delta 1))
(if (and (consp form) (some #'consp form))
(let ((retval (|DoForm| form)))
`(let ,(car retval)
(setf ,(cdr retval)
(+ ,(cdr retval) ,delta))))
`(setf ,form (+ ,form ,delta))))
(defmacro decf (form &optional (delta 1))
(if (and (consp form) (some #'consp form))
(let ((retval (|DoForm| form)))
`(let ,(car retval)
(setf ,(cdr retval)
(- ,(cdr retval) ,delta))))
`(setf ,form (- ,form ,delta))))
(defmacro push (val form)
(if (and (consp form) (some #'consp form))
(let ((retval (|DoForm| form)))
`(let ,(car retval)
(setf ,(cdr retval)
(cons ,val ,(cdr retval)))))
`(setf ,form (cons ,val ,form))))
(defmacro pop (form)
(if (and (consp form) (some #'consp form))
(let ((retval (|DoForm| form)))
`(let ,(car retval)
(prog1 (first ,(cdr retval))
(setf ,(cdr retval)
(rest ,(cdr retval))))))
`(prog1 (first ,form)
(setf ,form (rest ,form)))))
(defmacro pushnew (val form &rest rest)
(if (and (consp form) (some #'consp form))
(let ((retval (|DoForm| form)))
`(let ,(car retval)
(setf ,(cdr retval)
(adjoin ,val ,(cdr retval) ,@rest))))
`(setf ,form (adjoin ,val ,form ,@rest))))
; DoForm is now needed in COMMON2.LSP
; #-:packages
; (unintern '|DoForm|)
;; Hyperbolic functions Ken Whedbee from CLtL
(export '(logtest cis sinh cosh tanh asinh acosh atanh))
#-:bignums (defun logtest (x y) (not (zerop (logand x y))))
(defconstant imag-one #C(0.0 1.0))
(defun cis (x) (exp (* imag-one x)))
(defun sinh (x) (/ (- (exp x) (exp (- x))) 2.0))
(defun cosh (x) (/ (+ (exp x) (exp (- x))) 2.0))
(defun tanh (x) (/ (sinh x) (cosh x)))
(defun asinh (x) (log (+ x (sqrt (+ 1.0 (* x x))))))
(defun acosh (x)
(log (+ x
(* (1+ x)
(sqrt (/ (1- x) (1+ x)))))))
(defun atanh (x)
(when (or (= x 1.0) (= x -1.0))
(error "~s is a logarithmic singularity" x))
(log (/ (1+ x) (sqrt (- 1.0 (* x x))))))
;; Additional Common Lisp Functions by Luke Tierney
;; from xlisp-stat
;;
;; Defsetf and documentation functions
;; Corrected for Common Lisp compatibility (requires XLISP-PLUS 2.1e or later)
;; Modified by Tom Almy, 7/92
;; Corrected again in 6/93
;; and again (Luke Tierney) 11/93
;;
(export '(defsetf))
(defun apply-arg-rotate (f args)
(apply f (list 'quote (car (last args))) (butlast args)))
; (defsetf) - define setf method
(defmacro defsetf (sym first &rest rest)
(if (symbolp first)
`(progn (setf (get ',sym '*setf*) #',first)
(remprop ',sym '*setf-lambda*)
',sym)
(let ((f `#'(lambda ,(append (car rest) first) ,@(cdr rest)))
(args (gensym)))
`(progn
(setf (get ',sym '*setf-lambda*) ; changed *setf* to *setf-lambda*
#'(lambda (&rest ,args) (apply-arg-rotate ,f ,args)))
(remprop ',sym '*setf*)
',sym))))
;;;;
;;;;
;;;; *Modules*, provide and require: Leo Sarasua
;;;;
;;;;
(export '(provide require *modules*)) ; LSG
(defvar *modules*)
(defun provide (name) ; LSG
(pushnew (string name) *modules* :test #'string=))
(defun require (name &optional (pathname)) ; LSG
(let ((name (string name))
(path (string pathname)))
(or (find name *modules* :test #'string=)
(load (strcat pathname name)) )))
(defun require (name &optional (pathname)) ; LSG
(let ((namelist (mapcar #'string (if (listp name) name (list name))))
(path (string pathname)))
(dolist (name1 namelist)
(or (find name1 *modules* :test #'string=)
(load (strcat pathname name1)) ))))
;;;;
;;;;
;;;; Miscellaneous Functions: Luke Tierney
;;;; from xlisp-stat
;;;;
(export '(equalp y-or-n-p yes-or-no-p functionp with-input-from-string
with-output-to-string with-open-file))
; equalp rewritten by Tom Almy to better match Common Lisp
(defun equalp (x y)
(cond ((equal x y) t)
((numberp x) (if (numberp y) (= x y) nil))
((characterp x) (if (characterp y) (char-equal x y) nil))
((and (or (arrayp x) (stringp x))
(or (arrayp y) (stringp y))
(eql (length x) (length y)))
(every #'equalp x y))))
; Modified by TAA
#-:getkey
(defun y-or-n-p (&rest args)
(reset-system)
(when args (fresh-line) (apply #'format *terminal-io* args))
(do ((answer (string-trim " " (read-line))
(string-trim " " (read-line))))
((or (string-equal answer "Y")
(string-equal answer "N"))
(string-equal answer "Y"))
(princ " Answer \"y\" or \"n\": " *terminal-io*)))
#+:getkey
(defun y-or-n-p (&rest args)
(when args (fresh-line) (apply #'format *terminal-io* args))
(do ((answer (princ (int-char (get-key)))
(princ (int-char (get-key)))))
((or (char-equal answer #\Y)
(char-equal answer #\N))
(char-equal answer #\Y))
(princ "\nAnswer \"y\" or \"n\": " *terminal-io*)))
; Based on y-or-n-p
(defun yes-or-no-p (&rest args)
(reset-system)
(when args (fresh-line) (apply #'format *terminal-io* args))
(do ((answer (string-trim " " (read-line))
(string-trim " " (read-line))))
((or (string-equal answer "YES")
(string-equal answer "NO"))
(string-equal answer "YES"))
(princ " Answer \"yes\" or \"no\": " *terminal-io*)))
; Improved by TAA to match common lisp definition
(defun functionp (x)
(if (typep x '(or closure subr symbol))
t
(and (consp x) (eq (car x) 'lambda))))
;(defmacro with-input-from-string (stream-string &rest body)
; (let ((stream (first stream-string))
; (string (second stream-string)))
; `(let ((,stream (make-string-input-stream ,string)))
; (progn ,@body))))
(defmacro with-input-from-string
(stream-string &rest body)
(let ((stream (first stream-string))
(string (second stream-string))
(start (second (member :start (cddr stream-string))))
(end (second (member :end (cddr stream-string))))
(index (second (member :index (cddr stream-string)))))
(when (null start) (setf start 0))
(if index
(let ((str (gensym)))
`(let* ((,str ,string)
(,stream (make-string-input-stream ,str
,start
,end)))
(prog1 (progn ,@body)
(setf ,index
(- (length ,str)
(length (get-output-stream-list
,stream)))))))
`(let ((,stream (make-string-input-stream ,string ,start ,end)))
(progn ,@body)))))
(defmacro with-output-to-string (str-list &rest body)
(let ((stream (first str-list)))
`(let ((,stream (make-string-output-stream)))
(progn ,@body)
(get-output-stream-string ,stream))))
(defmacro with-open-file (stream-file-args &rest body)
(let ((stream (first stream-file-args))
(file-args (rest stream-file-args)))
`(let ((,stream (open ,@file-args)))
(unwind-protect
(progn ,@body)
(when ,stream (close ,stream))))))
(export '(eval-when declare proclaim special))
;; Dummy function to allow importing CL code
(defmacro eval-when (when &rest body)
(if (or (member 'eval when) (member 'execute when))
`(progn ,@body)))
(defmacro declare (&rest args)
(if *displace-macros*
(dolist (a args)
(if (eq (first a) 'special)
(return (cerror "special ignored"
"special declarations are not supported"))))))
(defun proclaim (decl)
(if (eq (first decl) 'special)
(dolist (s (rest decl))
(mark-as-special s))))
;; array functions. KCW from Kyoto Common Lisp
(export '(fill replace acons))
(defun fill (sequence item
&key (start 0) end)
(when (null end) (setf end (length sequence)))
(do ((i start (1+ i)))
((>= i end) sequence)
(setf (elt sequence i) item)))
(defun replace (sequence1 sequence2
&key (start1 0) end1
(start2 0) end2)
(when (null end1) (setf end1 (length sequence1)))
(when (null end2) (setf end2 (length sequence2)))
(if (and (eq sequence1 sequence2)
(> start1 start2))
(do* ((i 0 (1+ i))
(l (if (< (- end1 start1) (- end2 start2))
(- end1 start1)
(- end2 start2)))
(s1 (+ start1 (1- l)) (1- s1))
(s2 (+ start2 (1- l)) (1- s2)))
((>= i l) sequence1)
(setf (elt sequence1 s1) (elt sequence2 s2)))
(do ((i 0 (1+ i))
(l (if (< (- end1 start1)(- end2 start2))
(- end1 start1)
(- end2 start2)))
(s1 start1 (1+ s1))
(s2 start2 (1+ s2)))
((>= i l) sequence1)
(setf (elt sequence1 s1) (elt sequence2 s2)))))
(defun acons (x y a) ; from CLtL
(cons (cons x y) a))
;; more set functions. KCW from Kyoto Common Lisp
;; Modified to pass keys to subfunctions without checking here
;; (more efficient)
;; (Tom Almy states:) we can't get the destructive versions of union
;; intersection, and set-difference to run faster than the non-destructive
;; subrs. Therefore we will just have the destructive versions do their
;; non-destructive counterparts
(export '(nunion nintersection nset-difference
set-exclusive-or nset-exclusive-or))
(setf (symbol-function 'nunion)
(symbol-function 'union)
(symbol-function 'nintersection)
(symbol-function 'intersection)
(symbol-function 'nset-difference)
(symbol-function 'set-difference))
(defun set-exclusive-or (list1 list2 &rest rest)
(append (apply #'set-difference list1 list2 rest)
(apply #'set-difference list2 list1 rest)))
(defun nset-exclusive-or (list1 list2 &rest rest)
(nconc (apply #'set-difference list1 list2 rest)
(apply #'set-difference list2 list1 rest)))
;;;;;
;;;;; Symbol and Package Functions
;;;;;
#+:packages
(export '(defpackage do-symbols do-external-symbols do-all-symbols
apropos apropos-list))
#+:packages
(defmacro do-symbol-arrays (s res a body)
(let ((arraysym (gensym))
(isym (gensym))
(asym (gensym))
(listsym (gensym)))
`(let ((,arraysym ,a)
(,isym 0)
(,asym nil)
(,listsym nil)
(,s nil))
(block nil
(tagbody
new-array
(when (null ,arraysym)
(setf ,s nil)
(return ,res))
(setf ,asym (first ,arraysym) ,arraysym (rest ,arraysym) ,isym -1)
new-list
(setf ,isym (1+ ,isym))
(if (<= 199 ,isym) (go new-array))
(setf ,listsym (aref ,asym ,isym))
new-item
(if (null ,listsym) (go new-list))
(setf ,s (first ,listsym) ,listsym (rest ,listsym))
(tagbody ,@body)
(go new-item))))))
#+:packages
(defmacro do-symbols (spr &rest body)
(let ((packsym (gensym))
(usessym (gensym))
(arraysym (gensym)))
`(let* ((,packsym ,(if (second spr) (second spr) '*package*))
(,usessym (package-use-list ,packsym))
(,arraysym (cons (package-obarray ,packsym nil)
(mapcar #'package-obarray
(cons ,packsym ,usessym)))))
(do-symbol-arrays ,(first spr) ,(third spr) ,arraysym ,body))))
#+:packages
(defmacro do-external-symbols (spr &rest body)
(let ((packsym (gensym))
(arraysym (gensym)))
`(let* ((,packsym ,(if (second spr) (second spr) '*package*))
(,arraysym (list (package-obarray ,packsym))))
(do-symbol-arrays ,(first spr) ,(third spr) ,arraysym ,body))))
#+:packages
(defmacro do-all-symbols (sr &rest body)
(let ((packsym (gensym))
(arraysym (gensym)))
`(let* ((,packsym (list-all-packages))
(,arraysym nil))
(dolist (p ,packsym)
(push (package-obarray p) ,arraysym)
(push (package-obarray p nil) ,arraysym))
(do-symbol-arrays ,(first sr) ,(second sr) ,arraysym ,body))))
#+:packages
(defmacro defpackage (pname &rest options)
`(let* ((pname ',pname)
(options ',options)
(pack (find-package ',pname))
(nicknames nil))
(dolist (opt options)
(if (eq (first opt) :nicknames)
(setf nicknames (append (rest opt) nicknames))))
(if pack
(rename-package pack
pname
(mapcar #'string
(append nicknames (package-nicknames pack))))
(setf pack (make-package pname :nicknames
(mapcar #'string nicknames))))
(dolist (opt options)
(case (first opt)
(:shadow (shadow (mapcar #'string (rest opt)) pack))
(:shadowing-import-from
(let ((from-pack (find-package (second opt))))
(dolist (sname (rest (rest opt)))
(multiple-value-bind (sym found)
(find-symbol (string sname) from-pack)
(if found
(shadowing-import sym pack)
(error "no symbol named ~s in package ~s"
(string sname)
from-pack))))))))
(dolist (opt options)
(if (eq (first opt) :use)
(use-package (mapcar #'string (rest opt)) pack)))
(dolist (opt options)
(case (first opt)
(:intern
(dolist (sname (rest opt)) (intern (string sname) pack)))
(:import-from
(let ((from-pack (find-package (second opt))))
(dolist (sname (rest (rest opt)))
(multiple-value-bind (sym found)
(find-symbol (string sname) from-pack)
(if found
(import sym pack)
(error "no symbol named ~s in package ~s"
(string sname)
from-pack))))))))
(dolist (opt options)
(if (eq (first opt) :export)
(dolist (sname (rest opt))
(export (intern (string sname) pack) pack))))
pack))
#+:packages
(defun apropos2 (s)
(format t "~&~s" s)
(when (fboundp s) (format t " Function"))
(if (constantp s)
(format t " Constant=~s" (symbol-value s))
(when (boundp s) (format t " Value=~s" (symbol-value s)))))
#+:packages
(defun apropos (x &optional package)
(if package
(do-symbols (s package)
(if (search x (string s) :test #'char-equal)
(apropos2 s)))
(do-all-symbols (s)
(if (search x (string s) :test #'char-equal)
(apropos2 s))))
(values))
#+:packages
(defun apropos-list (x &optional package)
(let ((res nil))
(if package
(do-symbols (s package res)
(if (search x (string s) :test #'char-equal)
(push s res)))
(do-all-symbols (s res)
(if (search x (string s) :test #'char-equal)
(push s res))))))
;;;;;
;;;;; Additional Multiple Value Functions and Macros
;;;;;
(export
'(values-list multiple-value-list multiple-value-bind multiple-value-setq))
(defun values-list (x) (apply #'values x))
(defmacro multiple-value-list (form)
`(multiple-value-call #'list ,form))
(defmacro multiple-value-bind (vars form &rest body)
`(multiple-value-call #'(lambda (&optional ,@vars &rest ,(gensym)) ,@body)
,form))
(defmacro multiple-value-setq (variables form)
(let* ((tvars (mapcar #'(lambda (x) (gensym "V")) variables))
(pairs nil))
(mapc #'(lambda (x y) (push y pairs) (push x pairs)) variables tvars)
(if (null tvars) (push (gensym) tvars))
`(multiple-value-bind ,tvars ,form (setq ,@pairs) ,(first tvars))))
(push :common *features*)
|