From: Kevin M. Rosenberg Date: Tue, 6 May 2003 05:15:22 +0000 (+0000) Subject: r4834: Auto commit for Debian build X-Git-Tag: v2006ac.2~192 X-Git-Url: http://git.kpe.io/?a=commitdiff_plain;h=4dc54e52e03d1ad2591f53230788aebd862b8fb2;p=umlisp.git r4834: Auto commit for Debian build --- diff --git a/sql-create.lisp b/sql-create.lisp index 700af8f..ee5ea48 100644 --- a/sql-create.lisp +++ b/sql-create.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: sql-create.lisp,v 1.13 2003/05/06 04:42:55 kevin Exp $ +;;;; $Id: sql-create.lisp,v 1.14 2003/05/06 05:11:55 kevin Exp $ ;;;; ;;;; This file, part of UMLisp, is ;;;; Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D. @@ -193,25 +193,24 @@ This is much faster that using create-umls-db-insert." (make-noneng-index-file extension) (dolist (f *umls-files*) (translate-umls-file f extension))) -(defun translate-file (filename extension files) - "Translate a umls file into a format suitable for sql copy cmd" - (let ((output-path (umls-pathname filename extension)) - (input-files (mklist files))) - (if (probe-file output-path) - (format t "File ~A already exists: skipping~%" output-path) - (dolist (input-file input-files) - (with-open-file (ostream output-path :direction :output) - (with-umls-file (line (umls-file-fil input-file)) - (umls-translate input-file line ostream) - (princ #\newline ostream))))))) - (defun translate-umls-file (file extension) "Translate a umls file into a format suitable for sql copy cmd" - (translate-file (umls-file-fil file) extension file)) + (translate-files (umls-file-fil file) extension (list file))) (defun make-noneng-index-file (extension) "Make non-english index file" - (translate-file "MRXW.NONEN" extension (noneng-lang-index-files))) + (translate-files "MRXW.NONEN" extension (noneng-lang-index-files))) + +(defun translate-files (output-basename extension input-files) + "Translate a umls file into a format suitable for sql copy cmd" + (let ((output-path (umls-pathname output-basename extension))) + (if (probe-file output-path) + (format t "File ~A already exists: skipping~%" output-path) + (with-open-file (ostream output-path :direction :output) + (dolist (input-file input-files) + (with-umls-file (line (umls-file-fil input-file)) + (umls-translate input-file line ostream) + (princ #\newline ostream))))))) (defun pg-copy-cmd (file extension) "Return postgresql copy statement for a file"