r2915: *** empty log message ***
[lml.git] / utils.lisp
1 ;;; $Id: utils.lisp,v 1.1 2002/09/30 10:26:43 kevin Exp $
2 ;;;;
3 ;;;; General purpose utilities
4
5 (in-package :lml)
6
7
8 (defmacro aif (test then &optional else)
9   `(let ((it ,test))
10      (if it ,then ,else)))
11
12 (defmacro awhen (test-form &body body)
13   `(aif ,test-form
14         (progn ,@body)))
15
16 (defun keyword-symbol? (x)
17   "Returns T if object is a symbol in the keyword package"
18   (and (symbolp x)
19        (string-equal "keyword" (package-name (symbol-package x)))))
20
21 (defun list-to-spaced-string (list)
22   (format nil "~{ ~A~}" list))
23
24 (defun indent-spaces (n &optional (stream *standard-output*))
25   "Indent n*2 spaces to output stream"
26   (let ((fmt (format nil "~~~DT" (+ n n))))
27     (format stream fmt)))
28
29 (defun print-file-contents (file &optional (strm *standard-output*))
30   "Opens a reads a file. Returns the contents as a single string"
31   (when (probe-file file)
32     (with-open-file (in file :direction :input)
33                     (do ((line (read-line in nil 'eof) 
34                                (read-line in nil 'eof)))
35                         ((eql line 'eof))
36                       (format strm "~A~%" line)))))
37
38 (defun date-string (ut)
39   (if (typep ut 'integer)
40       (multiple-value-bind (sec min hr day mon year dow daylight-p zone)
41           (decode-universal-time ut)
42         (declare (ignore daylight-p zone))
43         (format nil "~[Mon~;Tue~;Wed~;Thu~;Fri~;Sat~;Sun~], ~
44 ~d ~[Jan~;Feb~;Mar~;Apr~;May~;Jun~;Jul~;Aug~;Sep~;Oct~;Nov~;Dec~] ~d ~
45 ~2,'0d:~2,'0d:~2,'0d" 
46                 dow
47                 day
48                 (1- mon)
49                 year
50                 hr min sec))))
51
52 (defun lml-quit (&optional (code 0))
53   "Function to exit the Lisp implementation. Copied from CLOCC's QUIT function."
54     #+allegro (excl:exit code)
55     #+clisp (#+lisp=cl ext:quit #-lisp=cl lisp:quit code)
56     #+cmu (ext:quit code)
57     #+cormanlisp (win32:exitprocess code)
58     #+gcl (lisp:bye code)
59     #+lispworks (lw:quit :status code)
60     #+lucid (lcl:quit code)
61     #+sbcl (sb-ext:quit :unix-status (typecase code (number code) (null 0) (t 1)))
62     #-(or allegro clisp cmu cormanlisp gcl lispworks lucid sbcl)
63     (error 'not-implemented :proc (list 'quit code)))
64
65
66 (defun lml-cwd ()
67   "Returns the current working directory. Based on CLOCC's DEFAULT-DIRECTORY function."
68   #+allegro (excl:current-directory)
69   #+clisp (#+lisp=cl ext:default-directory #-lisp=cl lisp:default-directory)
70   #+cmu (ext:default-directory)
71   #+cormanlisp (ccl:get-current-directory)
72   #+lispworks (hcl:get-working-directory)
73   #+lucid (lcl:working-directory)
74   #-(or allegro clisp cmu cormanlisp lispworks lucid) (truename "."))
75
76