r11481: make vff macro more efficient
[umlisp.git] / parse-rrf.lisp
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10; Package: umlisp -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:     parse-rrf.lisp
6 ;;;; Purpose:  Parsing and SQL insertion routines for UMLisp which may
7 ;;;;           change from year to year
8 ;;;; Author:   Kevin M. Rosenberg
9 ;;;; Created:  Apr 2000
10 ;;;;
11 ;;;; $Id$
12 ;;;;
13 ;;;; This file, part of UMLisp, is
14 ;;;;    Copyright (c) 2000-2006 by Kevin M. Rosenberg, M.D.
15 ;;;;
16 ;;;; UMLisp users are granted the rights to distribute and use this software
17 ;;;; as governed by the terms of the GNU General Public License.
18 ;;;; *************************************************************************
19
20 (in-package #:umlisp)
21
22 ;;; Pre-read data for custom fields into hash tables
23 (defvar *preparse-hash-init?* nil)
24
25 (eval-when (:compile-toplevel :load-toplevel :execute)
26
27 (declaim (inline srl-to-srlus))
28 (defun srl-to-srlus (srl)
29   "Convert the standard SRL category to one oriented for use in the United States.
30 Specifically, SRL 4 in the USA has license restrictions between SRL 1 and 2 when
31 used in the United States. We create a new scale (SRLUS) where SRL to SRLUS mapping is:
32 (0->0, 1->1, 4->2, 2->3, 3->4)."
33   (declare (fixnum srl))
34   (cond
35     ((= srl 4) 2)
36     ((= srl 2) 3)
37     ((= srl 3) 4)
38     (t srl)))
39
40 (let ((pfstr-hash nil)      ;; Preferred concept strings by CUI
41       (cui-lrl-hash nil)    ;; LRL by CUI
42       (lui-lrl-hash nil)    ;; LRL by LUI
43       (sui-lrl-hash nil)    ;; LRL by SUI
44       (cuisui-lrl-hash nil) ;; LRL by CUISUI
45       (cui-lrlus-hash nil)  ;; LRLUS by CUI
46       (lui-lrlus-hash nil)  ;; LRLUS by LUI
47       (sui-lrlus-hash nil)  ;; LRLUS by SUI
48       (cuisui-lrlus-hash nil) ;; LRL by CUISUI
49
50       (sab-srl-hash nil)
51       (sab-srlus-hash nil))   ;; SRL by SAB
52
53   (defun clear-preparse-hash-tables ()
54     (clrhash pfstr-hash)
55     (clrhash cui-lrl-hash)
56     (clrhash lui-lrl-hash)
57     (clrhash sui-lrl-hash)
58     (clrhash cuisui-lrl-hash)
59     (clrhash cui-lrlus-hash)
60     (clrhash lui-lrlus-hash)
61     (clrhash sui-lrlus-hash)
62     (clrhash cuisui-lrlus-hash)
63     (clrhash sab-srl-hash)
64     (clrhash sab-srlus-hash))
65
66   (defun make-preparse-hash-table ()
67     (if sui-lrl-hash
68         (clear-preparse-hash-tables)
69       (setf
70           pfstr-hash (make-hash-table :size 1500000)
71           cui-lrl-hash (make-hash-table :size 1500000)
72           lui-lrl-hash (make-hash-table :size 5000000)
73           sui-lrl-hash (make-hash-table :size 6000000)
74           cuisui-lrl-hash (make-hash-table :size 6000000)
75           cui-lrlus-hash (make-hash-table :size 1500000)
76           lui-lrlus-hash (make-hash-table :size 5000000)
77           sui-lrlus-hash (make-hash-table :size 6000000)
78           cuisui-lrlus-hash (make-hash-table :size 6000000)
79           sab-srl-hash (make-hash-table :size 200 :test 'equal)
80           sab-srlus-hash (make-hash-table :size 200 :test 'equal))))
81
82   (defun ensure-preparse (&optional (force-read nil))
83     (when (and *preparse-hash-init?* (not force-read))
84       (return-from ensure-preparse 'already-done))
85     (make-preparse-hash-table)
86     (let ((counter 0))
87       (declare (fixnum counter)
88                (ignorable counter))
89       (with-umls-file (line "MRCONSO.RRF")
90         (let* ((cui (parse-ui (nth 0 line)))
91                (lui (parse-ui (nth 3 line)))
92                (sui (parse-ui (nth 5 line)))
93                (sab (nth 11 line))
94                (srl (parse-integer (nth 15 line)))
95                (srlus (srl-to-srlus srl)))
96           #+sbcl
97           (when (= 0 (mod (incf counter) 100000)) (sb-ext:gc :full t))
98
99           ;; pfstr deprecated by KPFENG field in MRCONSO
100           #+nil
101           (unless (gethash cui pfstr-hash)  ;; if haven't stored pfstr for cui
102             (when (and (string-equal (nth 1 line) "ENG") ; LAT
103                        (string-equal (nth 2 line) "P") ; ts
104                        (string-equal (nth 4 line) "PF")) ; stt
105               (setf (gethash cui pfstr-hash) (nth 14 line))))
106           (set-lrl-hash cui srl cui-lrl-hash)
107           (set-lrl-hash lui srl lui-lrl-hash)
108           (set-lrl-hash sui srl sui-lrl-hash)
109           (set-lrl-hash (make-cuisui cui sui) srl cuisui-lrl-hash)
110           (set-lrl-hash cui srlus cui-lrlus-hash)
111           (set-lrl-hash lui srlus lui-lrlus-hash)
112           (set-lrl-hash sui srlus sui-lrlus-hash)
113           (set-lrl-hash (make-cuisui cui sui) srlus cuisui-lrlus-hash)
114           (multiple-value-bind (val found) (gethash sab sab-srl-hash)
115             (declare (ignore val))
116             (unless found
117               (setf (gethash sab sab-srl-hash) srl)))
118           (multiple-value-bind (val found) (gethash sab sab-srlus-hash)
119             (declare (ignore val))
120             (unless found
121               (setf (gethash sab sab-srlus-hash) srlus))))))
122     (setq *preparse-hash-init?* t)
123     t)
124
125   #+nil (defun pfstr-hash (cui) (gethash cui pfstr-hash))
126   (defun cui-lrl (cui)       (gethash cui cui-lrl-hash))
127   (defun lui-lrl (lui)       (gethash lui lui-lrl-hash))
128   (defun sui-lrl (sui)       (gethash sui sui-lrl-hash))
129   (defun cuisui-lrl (cuisui) (gethash cuisui cuisui-lrl-hash))
130   (defun cui-lrlus (cui)     (gethash cui cui-lrlus-hash))
131   (defun lui-lrlus (lui)     (gethash lui lui-lrlus-hash))
132   (defun sui-lrlus (sui)     (gethash sui sui-lrlus-hash))
133   (defun cuisui-lrlus (cuisui) (gethash cuisui cuisui-lrlus-hash))
134   (defun sab-srl (sab)      (aif (gethash sab sab-srl-hash) it 0))
135   (defun sab-srlus (sab)    (aif (gethash sab sab-srlus-hash) it 0))
136
137 )) ;; closure
138
139
140 (defun set-lrl-hash (key srl hash)
141   "Set the least restrictive level in hash table"
142   (declare (fixnum srl))
143   (multiple-value-bind (hash-lrl found) (gethash key hash)
144     (declare (type (or null fixnum) hash-lrl)
145              (boolean found))
146     (if (or (not found) (< srl hash-lrl))
147         (setf (gethash key hash) srl))))
148
149 ;; UMLS file and column structures
150 ;;; SQL datatypes symbols
151 ;;; sql-u - Unique identifier
152 ;;; sql-t - Tiny integer (8-bit)
153 ;;; sql-s - Small integer (16-bit)
154 ;;; sql-i - Integer (32-bit)
155 ;;; sql-l - Big integer (64-bit)
156 ;;; sql-f - Floating point
157 ;;; sql-c - Character data
158
159 (defparameter +col-datatypes+
160     '(("AV" sql-f) ("BTS" sql-i) ("CLS" sql-i) ("COF" sql-i) ("CUI1" sql-u)
161       ("AUI" sql-u) ("AUI1" sql-u) ("AUI2" sql-u) ("PCUI" sql-u)
162       ("PLUI" sql-u) ("PAUI" sql-u) ("RUI" sql-u)
163       ("CUI2" sql-u) ("CUI" sql-u) ("CXN" sql-s) ("FR" sql-i)
164       ("LUI" sql-u) ("MAX" sql-s) ("MIN" sql-s) ("RANK" sql-s) ("REF" sql-c)
165       ("PTR" sql-c)
166       ("RNK" sql-s) ("RWS" sql-i) ("SRL" sql-t) ("SUI" sql-u) ("TUI" sql-u)
167       ("MAPRANK" sql-s)
168       ;;; Custom columns
169       ("KCUISUI" sql-l) ("KCUILUI" sql-l)
170       ("KSRL" sql-t) ("KSRLUS" sql-t) ("LRL" sql-t) ("LRLUS" sql-t)
171       ("KCUILRL" sql-t) ("KLUILRL" sql-t) ("KSUILRL" sql-t) ("KLRL" sql-t)
172       ("KCUILRLUS" sql-t) ("KLUILRLUS" sql-t) ("KSUILRLUS" sql-t) ("KLRLUS" sql-t)
173       ;;; LEX columns
174       ("EUI" sql-u) ("EUI2" sql-u)
175       ;;; Semantic net columns
176       ("UI" sql-u) ("UI2" sql-u) ("UI3" sql-u)
177       ;; New fields for 2002AD
178       ("RCUI" sql-u) ("VCUI" sql-u) ("CFR" sql-i) ("TFR" sql-i)
179       ;; New fields for 2004AA
180       ("MAPSETCUI" sql-u)
181       )
182     "SQL data types for each non-string column")
183
184 (defparameter +custom-tables+
185     nil
186   #+ignore
187   '(("KCON" "SELECT CUI,STR FROM MRCONSO WHERE STT='PF' AND TS='P' AND ISPREF='Y' AND LAT='ENG'"))
188   "Custom tables to create")
189
190 (defvar *vff-position-hash* (make-hash-table :size 100 :test 'eq))
191
192
193 (defmacro vff (filename fieldname record)
194   (let ((pos (gensym "POS-"))
195         (found (gensym "FOUND-"))
196         (key (kmrcl:ensure-keyword (concatenate 'string filename "^" fieldname))))
197     `(locally (declare (optimize (speed 3) (size 0) (safety 0)))
198       (multiple-value-bind (,pos ,found) (gethash ,key *vff-position-hash*)
199         (if ,pos
200             (locally (declare (type (integer 0 100000) ,pos))
201               (nth ,pos ,record))
202             (let ((,pos (position-field-file ,filename ,fieldname)))
203               (unless ,pos
204                 (error "Did not find fieldname ~A in filename ~A." ,fieldname ,filename))
205               (locally (declare (type (integer 0 100000) ,pos))
206                 (setf (gethash ,key *vff-position-hash*) ,pos)
207                 (nth ,pos ,record))))))))
208
209 (defparameter +custom-cols+
210     '(#+nil ("MRCONSO.RRF" "KPFSTR" "TEXT"
211              (slot-value (find-ucol "STR" "MRCONSO.RRF") 'max)
212              (lambda (x) (pfstr-hash (parse-ui (nth 0 x)))))
213       ;; Set to 1 if term is prefered term for english
214       ("MRCONSO.RRF" "KPFENG" "TINYINT" 0
215        (lambda (x)  (if (and (string-equal (nth 1 x) "ENG") ; LAT
216                              (string-equal (nth 2 x) "P") ; ts
217                              (string-equal (nth 4 x) "PF")) ; stt
218                       "1"
219                       "0")))
220       ("MRCONSO.RRF" "KCUISUI" "BIGINT" 0
221        (lambda (x) (write-to-string (make-cuisui (parse-ui (vff "MRCONSO.RRF" "CUI" x))
222                                                  (parse-ui (vff "MRCONSO.RRF" "SUI" x))))))
223       ("MRCONSO.RRF" "KCUILUI" "BIGINT" 0
224        (lambda (x) (write-to-string (make-cuilui (parse-ui (vff "MRCONSO.RRF" "CUI" x))
225                                                  (parse-ui (vff "MRCONSO.RRF" "SUI" x))))))
226       ("MRCONSO.RRF" "KCUILRL" "TINYINT" 0
227        (lambda (x) (write-to-string (cui-lrl (parse-ui (vff "MRCONSO.RRF" "CUI" x))))))
228       ("MRCONSO.RRF" "KCUILRLUS" "TINYINT" 0
229        (lambda (x) (write-to-string (cui-lrlus (parse-ui (vff "MRCONSO.RRF" "CUI" x))))))
230       ("MRCONSO.RRF" "KLUILRL" "TINYINT" 0
231        (lambda (x) (write-to-string (lui-lrl (parse-ui (vff "MRCONSO.RRF" "LUI" x))))))
232       ("MRCONSO.RRF" "KLUILRLUS" "TINYINT" 0
233        (lambda (x) (write-to-string (lui-lrlus (parse-ui (vff "MRCONSO.RRF" "LUI" x))))))
234       ("MRCONSO.RRF" "KSUILRL" "TINYINT" 0
235        (lambda (x) (write-to-string (sui-lrl (parse-ui (vff "MRCONSO.RRF" "SUI" x))))))
236       ("MRCONSO.RRF" "KSUILRLUS" "TINYINT" 0
237        (lambda (x) (write-to-string (sui-lrlus (parse-ui (vff "MRCONSO.RRF" "SUI" x))))))
238       ("MRCONSO.RRF" "KSRLUS" "TINYINT" 0
239        (lambda (x) (write-to-string (srl-to-srlus (parse-integer (vff "MRCONSO.RRF" "SRL" x))))))
240       ("MRSAB.RRF" "KSRLUS" "TINYINT" 0
241        (lambda (x) (write-to-string (srl-to-srlus (parse-integer (vff "MRSAB.RRF" "SRL" x))))))
242       ("MRSTY.RRF" "KLRL" "TINYINT" 0
243        (lambda (x) (write-to-string (cui-lrl (parse-ui (vff "MRSTY.RRF" "CUI" x))))))
244       ("MRSTY.RRF" "KLRLUS" "TINYINT" 0
245        (lambda (x) (write-to-string (cui-lrlus (parse-ui (vff "MRSTY.RRF" "CUI" x))))))
246       ("MRCOC.RRF" "KLRL" "TINYINT" 0
247        (lambda (x) (write-to-string
248                     (max (cui-lrl (parse-ui (vff "MRCOC.RRF" "CUI1" x)))
249                          (kmrcl:aif (cui-lrl (parse-ui (vff "MRCOC.RRF" "CUI2" x))) kmrcl::it 0)))))
250       ("MRCOC.RRF" "KLRLUS" "TINYINT" 0
251        (lambda (x) (write-to-string
252                     (max (cui-lrlus (parse-ui (vff "MRCOC.RRF" "CUI1" x)))
253                          (kmrcl:aif (cui-lrl (parse-ui (vff "MRCOC.RRF" "CUI2" x))) kmrcl::it 0)))))
254       ("MRSAT.RRF" "KSRL" "TINYINT" 0
255        (lambda (x) (write-to-string (sab-srl (vff "MRSAT.RRF" "SAB" x)))))
256       ("MRSAT.RRF" "KSRLUS" "TINYINT" 0
257        (lambda (x) (write-to-string (sab-srlus (vff "MRSAT.RRF" "SAB" x)))))
258       ("MRREL.RRF" "KSRL" "TINYINT" 0
259        (lambda (x) (write-to-string (sab-srl (vff "MRREL.RRF" "SAB" x)))))
260       ("MRREL.RRF" "KSRLUS" "TINYINT" 0
261        (lambda (x) (write-to-string (sab-srlus (vff "MRREL.RRF" "SAB" x)))))
262       ("MRRANK.RRF" "KSRL" "TINYINT" 0
263        (lambda (x) (write-to-string (sab-srl (vff "MRRANK.RRF" "SAB" x)))))
264       ("MRRANK.RRF" "KSRLUS" "TINYINT" 0
265        (lambda (x) (write-to-string (sab-srlus (vff "MRRANK.RRF" "SAB" x)))))
266       ("MRHIER.RRF" "KSRL" "TINYINT" 0
267        (lambda (x) (write-to-string (sab-srl (vff "MRHIER.RRF" "SAB" x)))))
268       ("MRHIER.RRF" "KSRLUS" "TINYINT" 0
269        (lambda (x) (write-to-string (sab-srlus (vff "MRHIER.RRF" "SAB" x)))))
270       ("MRMAP.RRF" "KSRL" "TINYINT" 0
271        (lambda (x) (write-to-string (sab-srl (vff "MRMAP.RRF" "MAPSETSAB" x)))))
272       ("MRMAP.RRF" "KSRLUS" "TINYINT" 0
273        (lambda (x) (write-to-string (sab-srlus (vff "MRMAP.RRF" "MAPSETSAB" x)))))
274       ("MRSMAP.RRF" "KSRL" "TINYINT" 0
275        (lambda (x) (write-to-string (sab-srl (vff "MRSMAP.RRF" "MAPSETSAB" x)))))
276       ("MRSMAP.RRF" "KSRLUS" "TINYINT" 0
277        (lambda (x) (write-to-string (sab-srlus (vff "MRSMAP.RRF" "MAPSETSAB" x)))))
278       ("MRDEF.RRF" "KSRL" "TINYINT" 0
279        (lambda (x) (write-to-string (sab-srl (vff "MRDEF.RRF" "SAB" x)))))
280       ("MRDEF.RRF" "KSRLUS" "TINYINT" 0
281        (lambda (x) (write-to-string (sab-srlus (vff "MRDEF.RRF" "SAB" x)))))
282       ("MRXW_ENG.RRF" "KLRL" "TINYINT" 0
283        (lambda (x) (write-to-string (cuisui-lrl (make-cuisui
284                                                  (parse-ui (vff "MRXW_ENG.RRF" "CUI" x))
285                                                  (parse-ui (vff "MRXW_ENG.RRF" "SUI" x)))))))
286       ("MRXW_ENG.RRF" "KLRLUS" "TINYINT" 0
287        (lambda (x) (write-to-string (cuisui-lrlus (make-cuisui
288                                                  (parse-ui (vff "MRXW_ENG.RRF" "CUI" x))
289                                                  (parse-ui (vff "MRXW_ENG.RRF" "SUI" x)))))))
290       ("MRXW_NONENG.RRF" "KLRL" "TINYINT" 0
291        (lambda (x) (write-to-string (cuisui-lrl (make-cuisui
292                                                  (parse-ui (vff "MRXW_NONENG.RRF" "CUI" x))
293                                                  (parse-ui (vff "MRXW_NONENG.RRF" "SUI" x)))))))
294       ("MRXW_NONENG.RRF" "KLRLUS" "TINYINT" 0
295        (lambda (x) (write-to-string (cuisui-lrlus (make-cuisui
296                                                  (parse-ui (vff "MRXW_NONENG.RRF" "CUI" x))
297                                                  (parse-ui (vff "MRXW_NONENG.RRF" "SUI" x)))))))
298       ("MRXNW_ENG.RRF" "KLRL" "TINYINT" 0
299        (lambda (x) (write-to-string (cuisui-lrl (make-cuisui
300                                                  (parse-ui (vff "MRXNW_ENG.RRF" "CUI" x))
301                                                  (parse-ui (vff "MRXNW_ENG.RRF" "SUI" x)))))))
302       ("MRXNW_ENG.RRF" "KLRLUS" "TINYINT" 0
303        (lambda (x) (write-to-string (cuisui-lrlus (make-cuisui
304                                                  (parse-ui (vff "MRXNW_ENG.RRF" "CUI" x))
305                                                  (parse-ui (vff "MRXNW_ENG.RRF" "SUI" x)))))))
306       ("MRXNS_ENG.RRF" "KLRL" "TINYINT" 0
307        (lambda (x) (write-to-string (cuisui-lrl (make-cuisui
308                                                  (parse-ui (vff "MRXNS_ENG.RRF" "CUI" x))
309                                                  (parse-ui (vff "MRXNS_ENG.RRF" "SUI" x)))))))
310       ("MRXNS_ENG.RRF" "KLRLUS" "TINYINT" 0
311        (lambda (x) (write-to-string (cuisui-lrlus (make-cuisui
312                                                  (parse-ui (vff "MRXNS_ENG.RRF" "CUI" x))
313                                                  (parse-ui (vff "MRXNS_ENG.RRF" "SUI" x)))))))
314
315       #+nil  ("MRREL.RRF" "KPFSTR2" "TEXT" 1024 (lambda (x) (pfstr-hash (parse-ui (nth 4 x)))))
316       #+nil  ("MRCOC.RRF" "KPFSTR2" "TEXT" 1024 (lambda (x) (pfstr-hash (parse-ui (nth 2 x)))))
317
318       ("MRSAT.RRF" "KCUILUI" "BIGINT" 0
319        (lambda (x) (write-to-string (make-cuilui
320                                      (parse-ui (vff "MRSAT.RRF" "CUI" x))
321                                      (parse-ui (vff "MRSAT.RRF" "LUI" x))))))
322       ("MRSAT.RRF" "KCUISUI" "BIGINT" 0
323        (lambda (x) (write-to-string (make-cuisui
324                                      (parse-ui (vff "MRSAT.RRF" "CUI" x))
325                                      (parse-ui (vff "MRSAT.RRF" "SUI" x))))))
326       ("MRXW_ENG.RRF" "KCUISUI" "BIGINT" 0
327        (lambda (x) (write-to-string (make-cuisui
328                                      (parse-ui (vff "MRXW_ENG.RRF" "CUI" x))
329                                      (parse-ui (vff "MRXW_ENG.RRF" "SUI" x))))))
330       ("MRXNW_ENG.RRF" "KCUISUI" "BIGINT" 0
331        (lambda (x) (write-to-string (make-cuisui
332                                      (parse-ui (vff "MRXNW_ENG.RRF" "CUI" x))
333                                      (parse-ui (vff "MRXNW_ENG.RRF" "SUI" x))))))
334       ("MRXNS_ENG.RRF" "KCUISUI" "BIGINT" 0
335        (lambda (x) (write-to-string (make-cuisui
336                                      (parse-ui (vff "MRXNS_ENG.RRF" "CUI" x))
337                                      (parse-ui (vff "MRXNS_ENG.RRF" "SUI" x))))))
338       ("MRXW_NONENG.RRF" "LAT" "VARCHAR" 3 (lambda (x) (vff "MRXW_NONENG.RRF" "LAT" x)))
339       ("MRXW_NONENG.RRF" "WD"  "VARCHAR" 200  (lambda (x) (vff "MRXW_NONENG.RRF" "WD" x)))
340       ("MRXW_NONENG.RRF" "CUI" "INTEGER" 0 (lambda (x) (write-to-string (parse-ui (vff "MRXW_NONENG.RRF" "CUI" x)))))
341       ("MRXW_NONENG.RRF" "LUI" "INTEGER" 0 (lambda (x) (write-to-string (parse-ui (vff "MRXW_NONENG.RRF" "LUI" x)))))
342       ("MRXW_NONENG.RRF" "SUI" "INTEGER" 0 (lambda (x) (write-to-string (parse-ui (vff "MRXW_NONENG.RRF" "SUI" x)))))
343       ("MRXW_NONENG.RRF" "KCUISUI" "BIGINT" 0
344        (lambda (x) (write-to-string (make-cuisui
345                                      (parse-ui (vff "MRXW_NONENG.RRF" "CUI" x))
346                                      (parse-ui (vff "MRXW_NONENG.RRF" "SUI" x)))))))
347     "Custom columns to create.(filename, col, sqltype, value-func).")
348
349 (defparameter +index-cols+
350     '(("CUI1" "MRCOC") ("CUI" "MRCONSO") ("LUI" "MRCONSO")
351       ("SRL" "MRCONSO") ("KSRLUS" "MRCONSO") ("AUI" "MRCONSO") ("KPFENG" "MRCONSO")
352       ("SUI" "MRCONSO") ("SAUI" "MRCONSO") ("CODE" "MRCONSO")
353       ("SCUI" "MRCONSO")
354       ("CUI" "MRDEF")
355       ("CUI1" "MRREL") ("CUI2" "MRREL") ("SAB" "MRREL")
356       ("RUI" "MRREL") ("AUI1" "MRREL") ("AUI2" "MRREL")
357       ("CUI" "MRSAT") ("LUI" "MRSAT") ("SUI" "MRSAT")
358       ("METAUI" "MRSAT") ("ATN" "MRSAT")
359       ("CUI" "MRSTY")  ("TUI" "MRSTY") ("CUI" "MRXNS_ENG")
360       ("AUI" "MRHIER") ("CUI" "MRHIER") ("CXN" "MRHIER") ("RELA" "MRHIER") ("PAUI" "MRHIER")
361       ("SAB" "MRHIER")
362       #+ignore ("NSTR" "MRXNS_ENG" 10)
363       ("CUI" "MRXNW_ENG") ("NWD" "MRXNW_ENG") ("WD" "MRXW_ENG")
364       ("KCUISUI" "MRCONSO") ("KCUILUI" "MRCONSO")
365       ("KCUILRL" "MRCONSO") ("KLUILRL" "MRCONSO") ("KSUILRL" "MRCONSO")
366       ("KCUILRLUS" "MRCONSO") ("KLUILRLUS" "MRCONSO") ("KSUILRLUS" "MRCONSO")
367       ("KCUISUI" "MRSAT")  ("KCUILUI" "MRSAT")
368       ("KCUISUI" "MRXW_ENG") ("KCUISUI" "MRXNW_ENG")
369       ("KCUISUI" "MRXNS_ENG") ("KCUISUI" "MRXW_NONENG")
370       ("KSRL" "MRDEF") ("KSRL" "MRRANK")("KSRL" "MRREL") ("KSRL" "MRSAT")
371       ("KSRLUS" "MRDEF") ("KSRLUS" "MRRANK")("KSRLUS" "MRREL") ("KSRLUS" "MRSAT")
372       ("KLRL" "MRCOC") ("KLRL" "MRSTY") ("KLRL" "MRXW_ENG") ("KLRL" "MRXNW_ENG")
373       ("KLRLUS" "MRCOC") ("KLRLUS" "MRSTY") ("KLRLUS" "MRXW_ENG") ("KLRLUS" "MRXNW_ENG")
374       ("KLRL" "MRXNS_ENG") ("KLRL" "MRXW_NONENG")
375       ("KLRLUS" "MRXNS_ENG") ("KLRLUS" "MRXW_NONENG")
376       ;; LEX indices
377       ("EUI" "LRABR") ("EUI2" "LRABR") ("EUI" "LRAGR") ("EUI" "LRCMP") ("EUI" "LRMOD")
378       ("EUI" "LRNOM") ("EUI2" "LRNOM") ("EUI" "LRPRN") ("EUI" "LRPRP") ("EUI" "LRSPL")
379       ("EUI" "LRTRM") ("EUI" "LRTYP") ("EUI" "LRWD") ("WRD" "LRWD")
380       ("BAS" "LRABR")
381       ;; Semantic NET indices
382       ("UI" "SRSTRE1") ("UI2" "SRSTRE1") ("UI3" "SRSTRE1")
383       ("STY_RL" "SRDEF") ("RT" "SRDEF") ("STY_RL" "SRSTR") ("STY_RL2" "SRSTR")
384       ("RL" "SRSTR")
385
386       ("SRL" "MRSAB") ("KSRLUS" "MRSAB") ("RSAB" "MRSAB") ("VSAB" "MRSAB") ("RCUI" "MRSAB")
387       ("VCUI" "MRSAB") ("LAT" "MRSAB") ("MAPSETCUI" "MRMAP")  ("MAPSETCUI" "MRSMAP")
388       ("CUI" "MRHIER"))
389   "Columns in files to index")
390
391
392 (defparameter +custom-index-cols+
393   nil
394   #+ignore
395   '(("CUI" "KCON") ("LRL" "KCON"))
396   "Indexes to custom tables")
397
398 ;; File & Column functions
399
400 (defun gen-ucols ()
401   (add-ucols (gen-ucols-meta))
402   (add-ucols (gen-ucols-generic "LRFLD"))
403   (add-ucols (gen-ucols-generic "SRFLD"))
404   (add-ucols (gen-ucols-custom)))
405
406 (defun gen-ucols-meta ()
407 "Initialize all umls columns"
408   (let ((cols '()))
409     (with-umls-file (line "MRCOLS.RRF")
410       (destructuring-bind (col des ref min av max fil dty) line
411         (push (make-ucol col des ref (parse-integer min) (read-from-string av)
412                          (parse-integer max) fil dty)
413               cols)))
414     (nreverse cols)))
415
416 (defun gen-ucols-custom ()
417 "Initialize umls columns for custom columns"
418   (loop for customcol in +custom-cols+
419         collect
420         (make-ucol (nth 1 customcol) "" 0 0 0 (eval (nth 3 customcol))
421                    (nth 0 customcol) nil :sqltype (canonicalize-column-type (nth 2 customcol))
422                    :custom-value-fun (compile nil (nth 4 customcol)))))
423
424 (defun gen-ucols-generic (col-filename)
425 "Initialize for generic (LEX/NET) columns"
426   (let ((cols '()))
427     (with-umls-file (line col-filename)
428       (destructuring-bind (nam des ref fil) line
429         (setq nam (escape-column-name nam))
430         (dolist (file (delimited-string-to-list fil #\,))
431           (push
432            (make-ucol nam des ref nil nil nil file nil)
433            cols))))
434     (nreverse cols)))
435
436
437 (defun gen-ufiles ()
438   (add-ufiles (gen-ufiles-generic "MRFILES.RRF" "META"))
439   (add-ufiles (gen-ufiles-generic "LRFIL" "LEX"))
440   (add-ufiles (gen-ufiles-generic "SRFIL" "NET"))
441   ;; needs to come last
442   (add-ufiles (gen-ufiles-custom)))
443
444
445 (defun gen-ufiles-generic (files-filename dir)
446 "Initialize generic UMLS file structures"
447   (let ((files '()))
448     (with-umls-file (line files-filename)
449       (destructuring-bind (fil des fmt cls rws bts) line
450         (push (make-ufile
451                dir fil des
452                (parse-integer cls)
453                (parse-integer rws) (parse-integer bts)
454                (concatenate 'list (umls-field-string-to-list fmt)
455                             (custom-colnames-for-filename fil)))
456               files)))
457     (nreverse files)))
458
459 (defun gen-ufiles-custom ()
460   (make-ufile "META" "MRXW_NONENG.RRF" "Custom NonEnglish Index"
461               5 0 0 (fields (find-ufile "MRXW_ENG.RRF"))))
462
463
464