r11478: generate custom columns by dynamically finding position of dependant columns...
[umlisp.git] / create-sql.lisp
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10; Package: umlisp -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:     sql-create
6 ;;;; Purpose:  Create SQL database for UMLisp
7 ;;;; Author:   Kevin M. Rosenberg
8 ;;;; Created:  Apr 2000
9 ;;;;
10 ;;;; $Id$
11 ;;;;
12 ;;;; This file, part of UMLisp, is
13 ;;;;    Copyright (c) 2000-2006 by Kevin M. Rosenberg, M.D.
14 ;;;;
15 ;;;; UMLisp users are granted the rights to distribute and use this software
16 ;;;; as governed by the terms of the GNU General Public License.
17 ;;;; *************************************************************************
18
19 (in-package #:umlisp)
20
21 (defun create-table-cmd (file)
22   "Return sql command to create a table"
23   (let ((col-func
24          (lambda (c)
25            (let ((sqltype (sqltype c)))
26              (case *umls-sql-type*
27                (:oracle
28                 (cond
29                  ((string-equal sqltype "VARCHAR")
30                   (setq sqltype "VARCHAR2"))
31                  ((string-equal sqltype "BIGINT")
32                   (setq sqltype "VARCHAR2(20)")))))
33
34              (concatenate 'string
35                (col c)
36                " "
37                (if (or (string-equal sqltype "VARCHAR")
38                        (string-equal sqltype "CHAR"))
39                    (format nil "~a (~a)" sqltype (cmax c))
40                  sqltype))))))
41     (format nil "CREATE TABLE ~a (~{~a~^,~})~A~A"
42             (table file)
43             (mapcar col-func (ucols file))
44             (if (and (eq *umls-sql-type* :mysql)
45                      (string-equal (table file) "MRCXT"))
46                 " MAX_ROWS=200000000"
47               "")
48             (if (eq *umls-sql-type* :mysql)
49                 " TYPE=MYISAM CHARACTER SET utf8"
50                 ""))))
51
52 (defun create-custom-table-cmd (tablename sql-cmd)
53   "Return SQL command to create a custom table"
54   (format nil "CREATE TABLE ~a AS ~a;" tablename sql-cmd))
55
56 (defun insert-col-value (col value)
57   (if (null (parse-fun col))
58       value
59       (format nil "~A" (funcall (parse-fun col) value))))
60
61 (defun insert-values-cmd (file values)
62   "Return sql insert command for a row of values"
63   (let ((insert-func
64          (lambda (col value)
65            (concatenate 'string (quote-str col)
66                         (insert-col-value col value)
67                         (quote-str col)))))
68     (format
69      nil "INSERT INTO ~a (~{~a~^,~}) VALUES (~A)"
70      (table file)
71      (fields file)
72      (concat-separated-strings
73       ","
74       (mapcar insert-func (remove-custom-cols (ucols file)) values)
75       (custom-col-values (custom-ucols-for-file file) values t)))))
76
77
78 (defun custom-col-value (col values doquote)
79   (let ((custom-value (funcall (custom-value-fun col) values)))
80     (if custom-value
81         (if doquote
82             (concatenate 'string (quote-str col)
83                          (escape-backslashes custom-value)
84                          (quote-str col))
85             (escape-backslashes custom-value))
86         "")))
87
88 (defun custom-col-values (ucols values doquote)
89   "Returns a list of string column values for SQL inserts for custom columns"
90   (loop for col in ucols collect (custom-col-value col values doquote)))
91
92 (defun remove-custom-cols (cols)
93   "Remove custom cols from a list col umls-cols"
94   (remove-if #'custom-value-fun cols))
95
96 (defun find-custom-cols-for-filename (filename)
97   (remove-if-not (lambda (x) (string-equal filename (car x))) +custom-cols+))
98
99 (defun find-custom-col (filename col)
100   (find-if (lambda (x) (and (string-equal filename (car x))
101                             (string-equal col (cadr x)))) +custom-cols+))
102
103 (defun custom-colnames-for-filename (filename)
104   (mapcar #'cadr (find-custom-cols-for-filename filename)))
105
106 (defun custom-ucols-for-file (file)
107   (remove-if-not #'custom-value-fun (ucols file)))
108
109 (defun noneng-lang-index-files ()
110   (remove-if-not
111    (lambda (f) (and (> (length (fil f)) 4)
112                     (string-equal (fil f) "MRXW_" :end1 5)
113                     (not (string-equal (fil f) "MRXW_ENG.RRF"))
114                     (not (string-equal (fil f) "MRXW_NONENG.RRF"))))
115    *umls-files*))
116
117 ;;; SQL Command Functions
118
119 (defun create-index-cmd (colname tablename length)
120   "Return sql create index command"
121   (format nil "CREATE INDEX ~a ON ~a (~a)"
122           (concatenate 'string tablename "_" colname "_X")
123           tablename
124           (case *umls-sql-type*
125             (:mysql
126              (concatenate 'string colname
127                           (if (integerp length)
128                               (format nil " (~d)" length)
129                               "")))
130             ((:postgresql :postgresql-socket)
131              ;; FIXME: incorrect syntax for postgresql?
132              (if (integerp length)
133                  (format nil "substr((~A)::text,1,~D)" colname length)
134                  colname))
135             (t
136              colname))))
137
138 (defun create-all-tables-cmdfile ()
139   "Return sql commands to create all tables. Not need for automated SQL import"
140   (mapcar (lambda (f) (format nil "~a~%~%" (create-table-cmd f))) *umls-files*))
141
142 ;; SQL Execution functions
143
144 (defun sql-drop-tables (conn)
145   "SQL Databases: drop all tables"
146   (dolist (file *umls-files*)
147     (ignore-errors
148       (sql-execute (format nil "DROP TABLE ~a" (table file)) conn))))
149
150 (defun sql-create-tables (conn)
151   "SQL Databases: create all tables"
152   (dolist (file *umls-files*)
153     (sql-execute (create-table-cmd file) conn)))
154
155 #+ignore
156 (defun sql-create-kcon-table (conn)
157   "Create concept table, one row per concept."
158   (ignore-errors (execute-command "DROP TABLE KCON" :database conn))
159   (execute-command
160    (format nil "CREATE TABLE KCON (CUI INTEGER, STR ~A, LRL ~A)"
161            (case *umls-sql-type*
162              (:oracle
163               (format nil "VARCHAR2(~D)"
164                       (slot-value (find-ucol "STR" "MRCONSO.RRF") 'max)))
165              (t "TEXT"))
166            (case *umls-sql-type*
167              (:mysql "TINYINT")
168              ((:postgresql :postgresql-socket) "INT2")
169              (:oracle "NUMBER(2,0)")
170              (t "INTEGER")))
171    :database conn)
172   ;; KCON deprecated by KPFENG field in MRCONSO
173   #+nil
174   (dolist (tuple (query "select distinct cui from MRCONSO order by cui"
175                         :database conn))
176     (let ((cui (car tuple)))
177       (execute-command
178        (format nil "INSERT into KCON VALUES (~D,'~A',~D)"
179                cui
180                (add-sql-quotes (pfstr-hash cui) )
181                (cui-lrl cui))
182        :database conn))))
183
184 (defun sql-create-custom-tables (conn)
185   "SQL Databases: create all custom tables"
186   ;;(sql-create-kcon-table conn)
187   (dolist (ct +custom-tables+)
188     (sql-execute (create-custom-table-cmd (car ct) (cadr ct)) conn)))
189
190 (defun sql-insert-values (conn file)
191   "SQL Databases: inserts all values for a file"
192   (with-umls-file (line (fil file))
193     (sql-execute (insert-values-cmd file line) conn)))
194
195 (defun sql-insert-all-values (conn)
196   "SQL Databases: inserts all values for all files"
197   (dolist (file *umls-files*)
198     (sql-insert-values conn file)))
199
200 (defun drop-index-cmd (colname tablename)
201   "Return sql create index command"
202   (case *umls-sql-type*
203     (:mysql
204      (format nil "DROP INDEX ~a ON ~a"
205              (concatenate 'string tablename "_" colname "_X")
206              tablename))
207     (t
208      (format nil "DROP INDEX ~a"
209              (concatenate 'string tablename "_" colname "_X")))))
210
211 (defun sql-create-indexes (conn &key (indexes +index-cols+) verbose)
212   "SQL Databases: create all indexes"
213   (dolist (idx indexes)
214     (when verbose (format t "UMLS Import: Creating index for column ~A on table ~A.~%"
215                           (first idx) (second idx)))
216     (ignore-errors (sql-execute (drop-index-cmd (car idx) (cadr idx)) conn))
217     (sql-execute (create-index-cmd (car idx) (cadr idx) (caddr idx)) conn)))
218
219 (defun make-usrl (conn)
220   (if (eql :mysql *umls-sql-type*)
221       (sql-execute "drop table if exists USRL" conn)
222       (ignore-errors (sql-execute "drop table USRL" conn)))
223   (sql-execute "create table USRL (sab varchar(80), srl integer)" conn)
224   (dolist (tuple (mutex-sql-query
225                   "select distinct SAB,SRL from MRCONSO order by SAB asc"))
226     (sql-execute (format nil "insert into USRL (sab,srl) values ('~a',~d)"
227                          (car tuple) (ensure-integer (cadr tuple)))
228                  conn)))
229
230 (defun sql-create-special-tables (conn)
231   (make-usrl conn)
232   (make-ustats))
233
234 (defun create-umls-db-by-insert (&key verbose)
235   "SQL Databases: initializes entire database via SQL insert commands"
236   (ensure-ucols+ufiles)
237   (ensure-preparse)
238   (with-sql-connection (conn)
239     (sql-drop-tables conn)
240     (sql-create-tables conn)
241     (sql-insert-all-values conn)
242     (sql-create-indexes conn)
243     (sql-create-custom-tables conn)
244     (sql-create-indexes conn :indexes +custom-index-cols+ :verbose verbose)
245     (sql-create-special-tables conn)))
246
247 (defun create-umls-db (&key (extension "-trans") (force-translation nil) (verbose nil))
248   "SQL Databases: initializes entire database via SQL copy commands.
249 This is much faster that using create-umls-db-insert."
250   (when verbose (format t "UMLS Import: Starting.~%"))
251   (ensure-ucols+ufiles)
252   (when verbose (format t "UMLS Import: Preparsing files.~%"))
253   (ensure-preparse)
254   (when verbose (format t "UMLS Import: Converting text UMLS files to optimized format.~%"))
255   (translate-all-files :extension extension :verbose verbose :force force-translation)
256   (let ((copy-cmd
257          (ecase (umls-sql-type)
258            (:mysql #'mysql-copy-cmd)
259            (:postgresql #'pg-copy-cmd))))
260     (with-sql-connection (conn)
261       (clsql:truncate-database :database conn)
262       (sql-drop-tables conn)
263       (sql-create-tables conn)
264       (dolist (file *umls-files*)
265         (when verbose (format t "UMLS Import: Importing file ~A to SQL.~%" (fil file)))
266         (sql-execute (funcall copy-cmd file extension) conn))
267       (When verbose (format t "UMLS Import: Creating SQL indices.~%"))
268       (sql-create-indexes conn :verbose verbose)
269       (When verbose (format t "UMLS Import: Creating custom tables.~%"))
270       (sql-create-custom-tables conn)
271       (When verbose (format t "UMLS Import: Creating custom indices.~%"))
272       (sql-create-indexes conn :indexes +custom-index-cols+ :verbose verbose)
273       (When verbose (format t "UMLS Import: Creating special tables.~%"))
274       (sql-create-special-tables conn)))
275   (When verbose (format t "UMLS Import: Completed.~%"))
276   t)
277
278 (defun translate-all-files (&key (extension "-trans") verbose force)
279   "Translate all *umls-files* to optimized import format."
280   (make-noneng-index-file extension)
281   (dolist (f (remove "MRXW_NONENG.RRF" *umls-files* :test #'string= :key #'fil))
282     (when verbose (format t "UMLS Import: Translating file ~A.~%" (fil f)))
283     (translate-umls-file f extension :force force)))
284
285 (defun translate-umls-file (file extension &key force)
286   "Translate a umls file into a format suitable for sql copy cmd"
287   (translate-files file extension (list file) :force force))
288
289 (defun make-noneng-index-file (extension &key force)
290   "Make non-english index file"
291   (translate-files (find-ufile "MRXW_NONENG.RRF")
292                    extension (noneng-lang-index-files) :force force))
293
294 (defun verify-translation-file (output-path input-ufiles)
295   "Returns t if translation file exists and is correct size. Warns and deletes incomplete translation file."
296   (when (probe-file output-path)
297     (let ((translated-lines 0)
298           (input-lines 0)
299           (eof (cons nil nil)))
300       (catch 'done-counting
301         (with-open-file (ts output-path :direction :input
302                             #+(and clisp unicode) :external-format
303                             #+(and clisp unicode) charset:utf-8)
304           (do ()
305               ((eq (read-line ts nil eof) eof))
306             (incf translated-lines)))
307         (dolist (input-ufile input-ufiles)
308           (with-umls-ufile (line input-ufile)
309                            (incf input-lines)
310                            (when (> input-lines translated-lines)
311                              (throw 'done-counting 'incomplete)))))
312       (cond
313         ((< input-lines translated-lines)
314           (format t "Translated file ~A incomplete, deleting...~%" output-path)
315           (delete-file output-path)
316           nil)
317         ((eql input-lines translated-lines)
318           (format t "Translated file ~A already exists: skipping...~%" output-path)
319           t)
320         ((eql input-lines 0)
321           (warn "The number of input lines is 0 for output file ~A." output-path)
322           nil)
323         ((> translated-lines input-lines)
324           (error "Shouldn't happen. Translated lines of ~A is ~D, greater than input lines ~D"
325                  output-path translated-lines input-lines)
326           (delete-file output-path)
327           nil)))))
328
329 (defun translate-files (out-ufile extension input-ufiles &key force)
330   "Translate a umls file into a format suitable for sql copy cmd"
331   (let ((output-path (ufile-pathname out-ufile extension)))
332     (when (and (not force) (verify-translation-file output-path input-ufiles))
333       (return-from translate-files output-path))
334     (with-open-file (ostream output-path :direction :output
335                              :if-exists :overwrite
336                              #+(and clisp unicode) :external-format
337                              #+(and clisp unicode) charset:utf-8)
338       (dolist (input-ufile input-ufiles)
339         (with-umls-ufile (line input-ufile)
340           (translate-line out-ufile line ostream)
341           (princ #\newline ostream))))))
342
343 (defun translate-line (file line strm)
344   "Translate a single line for sql output"
345   (flet ((col-value (col value)
346            (if (eq (datatype col) 'sql-u)
347                (let ((ui (parse-ui value "")))
348                  (if (stringp ui)
349                      ui
350                      (write-to-string ui)))
351                (escape-backslashes value))))
352     (print-separated-strings
353      strm "|"
354      (mapcar #'col-value (remove-custom-cols (ucols file)) line)
355      (custom-col-values (custom-ucols-for-file file) line nil))))
356
357 (defun pg-copy-cmd (file extension)
358   "Return postgresql copy statement for a file"
359   (format
360    nil "COPY ~a FROM '~a' using delimiters '|' with null as ''"
361    (table file) (ufile-pathname file extension)))
362
363 (defun mysql-copy-cmd (file extension &key (local-file t))
364   "Return mysql copy statement for a file"
365   (format
366    nil
367    "LOAD DATA ~AINFILE \"~a\" INTO TABLE ~a FIELDS TERMINATED BY \"|\""
368    (if local-file "LOCAL " "")
369    (namestring (ufile-pathname file extension)) (table file)))
370
371
372 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
373 ;;;
374 ;;; Routines for analyzing cost of fixed size storage
375 ;;;
376 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
377
378 (defun umls-fixed-size-waste ()
379   "Display storage waste if using all fixed size storage"
380   (let ((totalwaste 0)
381         (totalunavoidable 0)
382         (totalavoidable 0)
383         (unavoidable '())
384         (avoidable '()))
385     (dolist (file *umls-files*)
386       (dolist (col (ucols file))
387         (let* ((avwaste (- (cmax col) (av col)))
388                (cwaste (* avwaste (rws file))))
389           (when (plusp cwaste)
390             (if (<= avwaste 6)
391                 (progn
392                   (incf totalunavoidable cwaste)
393                   (push (list (fil file) (col col)
394                               avwaste cwaste)
395                         unavoidable))
396                 (progn
397                   (incf totalavoidable cwaste)
398                   (push (list (fil file) (col col)
399                               avwaste cwaste)
400                         avoidable)))
401             (incf totalwaste cwaste)))))
402     (values totalwaste totalavoidable totalunavoidable
403             (nreverse avoidable) (nreverse unavoidable))))
404
405 (defun display-waste ()
406   (ensure-ucols+ufiles)
407   (multiple-value-bind (tw ta tu al ul) (umls-fixed-size-waste)
408     (format t "Total waste: ~d~%" tw)
409     (format t "Total avoidable: ~d~%" ta)
410     (format t "Total unavoidable: ~d~%" tu)
411     (format t "Avoidable:~%")
412     (dolist (w al)
413       (format t "  (~a,~a): ~a,~a~%" (car w) (cadr w) (caddr w) (cadddr w)))
414     (format t "Unavoidable:~%")
415     (dolist (w ul)
416       (format t "  (~a,~a): ~a,~a~%" (car w) (cadr w) (caddr w) (cadddr w)))
417     ))
418
419 (defun max-umls-field ()
420   "Return length of longest field"
421   (declare (optimize (speed 3) (space 0)))
422   (ensure-ucols+ufiles)
423   (let ((max 0))
424     (declare (type (integer 0 1000000) max))
425     (dolist (ucol *umls-cols*)
426       (when (> (the (integer 0 1000000) (cmax ucol)) max)
427         (setq max (cmax ucol))))
428     max))
429
430 (defun max-umls-row ()
431   "Return length of longest row"
432   (declare (optimize (speed 3) (space 0)))
433   (ensure-ucols+ufiles)
434   (let ((rowsizes '()))
435     (dolist (file *umls-files*)
436       (let ((row 0))
437         (declare (type (integer 0 1000000) row))
438         (dolist (ucol (ucols file))
439           (let* ((col-max (cmax ucol))
440                  (max-with-delim (1+ col-max)))
441             (declare (type (integer 0 1000000) col-max max-with-delim))
442             (incf row max-with-delim)))
443         (push row rowsizes)))
444     (car (sort rowsizes #'>))))