r5213: *** empty log message ***
[lml2.git] / utils.lisp
index 20f6a452de2284afcb0df17cfc9fae7168311561..a275a3e95eac802a7b0b8ebbff5c2e9504865e8e 100644 (file)
@@ -1,82 +1,83 @@
-;;; $Id: utils.lisp,v 1.1 2003/06/20 04:12:29 kevin Exp $
-;;;;
-;;;; General purpose utilities
-
-(in-package #:lml2)
-
-(defmacro aif (test then &optional else)
-  `(let ((it ,test))
-     (if it ,then ,else)))
-
-(defmacro awhen (test-form &body body)
-  `(aif ,test-form
-        (progn ,@body)))
-
-(defun keyword-symbol? (x)
-  "Returns T if object is a symbol in the keyword package"
-  (and (symbolp x)
-       (string-equal "keyword" (package-name (symbol-package x)))))
-
-(defun list-to-spaced-string (list)
-  (format nil "~{~A~^ ~}" list))
-
-(defun print-n-chars (char n stream)
-  (declare (fixnum n)
-          (optimize (speed 3) (safety 0) (space 0)))
-  (do ((i 0 (1+ i)))
-      ((= i n) char)
-    (declare (fixnum i))
-    (write-char char stream)))
-  
-(defun indent-spaces (n &optional (stream *standard-output*))
-  "Indent n*2 spaces to output stream"
-  (print-n-chars #\space (+ n n) stream))
-
-(defun print-file-contents (file &optional (strm *standard-output*))
-  "Opens a reads a file. Returns the contents as a single string"
-  (when (probe-file file)
-    (with-open-file (in file :direction :input)
-                   (do ((line (read-line in nil 'eof) 
-                              (read-line in nil 'eof)))
-                       ((eql line 'eof))
-                     (write-string line strm)
-                     (write-char #\newline strm)))))
-
-(defun date-string (ut)
-  (check-type ut integer)
-  (multiple-value-bind (sec min hr day mon year dow daylight-p zone)
-      (decode-universal-time ut)
-    (declare (ignore daylight-p zone))
-    (format nil "~[Mon~;Tue~;Wed~;Thu~;Fri~;Sat~;Sun~], ~d ~[Jan~;Feb~;Mar~;Apr~;May~;Jun~;Jul~;Aug~;Sep~;Oct~;Nov~;Dec~] ~d ~2,'0d:~2,'0d:~2,'0d" 
-           dow day (1- mon) year hr min sec)))
-
-(defun lml-quit (&optional (code 0))
-  "Function to exit the Lisp implementation."
-    #+allegro (excl:exit code)
-    #+clisp (#+lisp=cl ext:quit #-lisp=cl lisp:quit code)
-    #+(or cmu scl) (ext:quit code)
-    #+cormanlisp (win32:exitprocess code)
-    #+gcl (lisp:bye code)
-    #+lispworks (lw:quit :status code)
-    #+lucid (lcl:quit code)
-    #+sbcl (sb-ext:quit :unix-status (typecase code (number code) (null 0) (t 1)))
-    #+openmcl (ccl:quit code)
-    #+(and mcl (not openmcl)) (declare (ignore code))
-    #+(and mcl (not openmcl)) (ccl:quit)
-    #-(or allegro clisp cmu scl cormanlisp gcl lispworks lucid sbcl mcl)
-    (error 'not-implemented :proc (list 'quit code)))
-
-
-(defun lml-cwd ()
-  "Returns the current working directory. Based on CLOCC's DEFAULT-DIRECTORY function."
-  #+allegro (excl:current-directory)
-  #+clisp (#+lisp=cl ext:default-directory #-lisp=cl lisp:default-directory)
-  #+(or cmu scl) (ext:default-directory)
-  #+cormanlisp (ccl:get-current-directory)
-  #+lispworks (hcl:get-working-directory)
-  #+lucid (lcl:working-directory)
-  #+sbcl (sb-unix:posix-getcwd/)
-  #+mcl (ccl:mac-default-directory)
-  #-(or allegro clisp cmu scl sbcl cormanlisp lispworks lucid mcl) (truename "."))
-
-
+;;; $Id: utils.lisp,v 1.2 2003/06/28 08:18:21 kevin Exp $\r
+;;;;\r
+;;;; General purpose utilities\r
+\r
+(in-package #:lml2)\r
+\r
+(defmacro aif (test then &optional else)\r
+  `(let ((it ,test))\r
+     (if it ,then ,else)))\r
+\r
+(defmacro awhen (test-form &body body)\r
+  `(aif ,test-form\r
+        (progn ,@body)))\r
+\r
+(defun keyword-symbol? (x)\r
+  "Returns T if object is a symbol in the keyword package"\r
+  (and (symbolp x)\r
+       (string-equal "keyword" (package-name (symbol-package x)))))\r
+\r
+(defun list-to-spaced-string (list)\r
+  (format nil "~{~A~^ ~}" list))\r
+\r
+(defun print-n-chars (char n stream)\r
+  (declare (fixnum n)\r
+          (optimize (speed 3) (safety 0) (space 0)))\r
+  (do ((i 0 (1+ i)))\r
+      ((= i n) char)\r
+    (declare (fixnum i))\r
+    (write-char char stream)))\r
+  \r
+(defun indent-spaces (n &optional (stream *standard-output*))\r
+  "Indent n*2 spaces to output stream"\r
+  (print-n-chars #\space (+ n n) stream))\r
+\r
+(defun print-file-contents (file &optional (strm *standard-output*))\r
+  "Opens a reads a file. Returns the contents as a single string"\r
+  (when (probe-file file)\r
+    (let ((eof (cons 'eof nil)))\r
+      (with-open-file (in file :direction :input)\r
+        (do ((line (read-line in nil eof) \r
+                   (read-line in nil eof)))\r
+            ((eq line eof))\r
+          (write-string line strm)\r
+          (write-char #\newline strm))))))\r
+\r
+(defun date-string (ut)\r
+  (check-type ut integer)\r
+  (multiple-value-bind (sec min hr day mon year dow daylight-p zone)\r
+      (decode-universal-time ut)\r
+    (declare (ignore daylight-p zone))\r
+    (format nil "~[Mon~;Tue~;Wed~;Thu~;Fri~;Sat~;Sun~], ~d ~[Jan~;Feb~;Mar~;Apr~;May~;Jun~;Jul~;Aug~;Sep~;Oct~;Nov~;Dec~] ~d ~2,'0d:~2,'0d:~2,'0d" \r
+           dow day (1- mon) year hr min sec)))\r
+\r
+(defun lml-quit (&optional (code 0))\r
+  "Function to exit the Lisp implementation."\r
+    #+allegro (excl:exit code)\r
+    #+clisp (#+lisp=cl ext:quit #-lisp=cl lisp:quit code)\r
+    #+(or cmu scl) (ext:quit code)\r
+    #+cormanlisp (win32:exitprocess code)\r
+    #+gcl (lisp:bye code)\r
+    #+lispworks (lw:quit :status code)\r
+    #+lucid (lcl:quit code)\r
+    #+sbcl (sb-ext:quit :unix-status (typecase code (number code) (null 0) (t 1)))\r
+    #+openmcl (ccl:quit code)\r
+    #+(and mcl (not openmcl)) (declare (ignore code))\r
+    #+(and mcl (not openmcl)) (ccl:quit)\r
+    #-(or allegro clisp cmu scl cormanlisp gcl lispworks lucid sbcl mcl)\r
+    (error 'not-implemented :proc (list 'quit code)))\r
+\r
+\r
+(defun lml-cwd ()\r
+  "Returns the current working directory. Based on CLOCC's DEFAULT-DIRECTORY function."\r
+  #+allegro (excl:current-directory)\r
+  #+clisp (#+lisp=cl ext:default-directory #-lisp=cl lisp:default-directory)\r
+  #+(or cmu scl) (ext:default-directory)\r
+  #+cormanlisp (ccl:get-current-directory)\r
+  #+lispworks (hcl:get-working-directory)\r
+  #+lucid (lcl:working-directory)\r
+  #+sbcl (sb-unix:posix-getcwd/)\r
+  #+mcl (ccl:mac-default-directory)\r
+  #-(or allegro clisp cmu scl sbcl cormanlisp lispworks lucid mcl) (truename "."))\r
+\r
+\r