X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=parse-macros.lisp;h=1b00ae50fbd5639e17f31096e5b25ae14a7858f1;hb=c01a3503e58ba9d4e7fadb42f3f0f69c38496e10;hp=6e006d816ef9a9fd4cd989b4c6cc7b949b8b8d92;hpb=b9fe7fe8b8e24133538f78dbaf6af73b5f0bdec2;p=umlisp.git diff --git a/parse-macros.lisp b/parse-macros.lisp index 6e006d8..1b00ae5 100644 --- a/parse-macros.lisp +++ b/parse-macros.lisp @@ -26,7 +26,7 @@ (delimited-string-to-list line #\| t)))) (defun source-files (path) - (if (probe-file path) + (if (probe-file path) (list path) (sort (directory (make-pathname :defaults path @@ -47,7 +47,9 @@ `(let ((,eof (gensym "EOFSYM-")) (,buffer (make-fields-buffer)) (,files (source-files ,path))) - (with-open-file (,ustream (first ,files) :direction :input) + (with-open-file (,ustream (first ,files) :direction :input + #+(and clisp unicode) :external-format + #+(and clisp unicode) charset:utf-8) (do ((,line (read-buffered-fields ,buffer ,ustream #\| ,eof) (read-buffered-fields ,buffer ,ustream #\| ,eof))) ((eq ,line ,eof) t) @@ -62,11 +64,16 @@ (files (gensym "FILES-"))) `(let ((,eof (gensym "EOFSYM-")) (,files (source-files ,path))) - (with-open-file (,ustream (first ,files) :direction :input) - (do ((,line (read-umls-line ,ustream ,eof) - (read-umls-line ,ustream ,eof))) - ((eq ,line ,eof) t) - ,@body))))) + (unless ,files + (error "Can't find files for ~A~%" (namestring ,path))) + (with-open-file (,ustream (first ,files) :direction :input + #+(and clisp unicode) :external-format + #+(and clisp unicode) charset:utf-8) + (do ((,line (read-umls-line ,ustream ,eof) + (read-umls-line ,ustream ,eof))) + ((eq ,line ,eof) t) + (locally (declare (type list ,line)) + ,@body)))))) (defmacro with-umls-ufile ((line ufile) &body body) "Opens a UMLS and processes each parsed line with (body) argument"