r4748: Auto commit for Debian build
[umlisp.git] / sql-classes.lisp
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10; Package: umlisp -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          sql-classes.lisp
6 ;;;; Purpose:       Routines for reading UMLS objects from SQL database
7 ;;;; Author:        Kevin M. Rosenberg
8 ;;;; Date Started:  Apr 2000
9 ;;;;
10 ;;;; $Id: sql-classes.lisp,v 1.23 2003/05/03 18:16:16 kevin Exp $
11 ;;;;
12 ;;;; This file, part of UMLisp, is
13 ;;;;    Copyright (c) 2000-2002 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 (declaim (optimize (compilation-speed 0) (debug 3)))
21
22
23 (defvar *current-srl* nil)
24 (defun current-srl ()
25   *current-srl*)
26 (defun current-srl! (srl)
27   (setq *current-srl* srl))
28
29
30 (defmacro with-umlisp-query ((table fields srl where-name where-value
31                                     &key (lrlname "KCUILRL") distinct single
32                                     order like)
33                              &body body)
34   (let ((query (gensym)))
35     `(unless (and ,where-name (not ,where-value)) 
36       (let ((,query (umlisp-query ,table (quote ,fields) ,srl ,where-name ,where-value
37                                   :lrlname ,lrlname :single ,single :distinct ,distinct
38                                   :order ,order :like ,like)))
39         (if ,single
40             (let ((tuple (car ,query)))
41               (when tuple
42                 (destructuring-bind ,fields tuple
43                   ,@body)))
44             (loop
45              for tuple in ,query collect
46              (destructuring-bind ,fields tuple
47                ,@body)))))))
48
49 (defun umlisp-query (table fields srl where-name where-value
50                      &key (lrlname "KCUILRL") single distinct order like)
51   "Query the UMLisp database. Return a list of umlisp objects whose name
52 is OBJNAME from TABLE where WHERE-NAME field = WHERE-VALUE with FIELDS"
53   (when (or (not where-name) where-value)
54     (mutex-sql-query
55      (query-string table fields srl where-name where-value 
56                    :lrlname lrlname :single single :distinct distinct :order order :like like))))
57
58   
59 (defun query-string (table fields &optional srl where-name where-value
60                      &key (lrlname "KCUILRL") single distinct order like)
61   (let ((qs (format nil "select ~A~{~:@(~A~)~^,~} from ~:@(~A~)" 
62                     (if distinct "distinct " "")
63                     fields table)))
64     (when where-name
65       (setq qs (concatenate 'string qs
66                             (format nil
67                                     (if (stringp where-value)
68                                         (if like
69                                             " where ~A like '%~A%'"
70                                           " where ~A='~A'")
71                                       " where ~A=~A")
72                                     where-name  where-value))))
73     (when srl
74       (setq qs (concatenate 'string qs (format nil " and ~:@(~A~) <= ~D"
75                                                lrlname srl))))
76     (when order
77       (setq qs (concatenate 'string qs
78                             (format nil " order by ~{~:@(~A~) ~(~A~)~^,~}"
79                                     (flatten
80                                      (loop for o in order collect
81                                            (if (atom o)
82                                                (list o  'asc)
83                                                (list (car o) (cdr o)))))))))
84     (when single
85       (setq qs (concatenate 'string qs " limit 1")))
86     qs))
87
88 (defun find-ucon-cui (cui &key (srl *current-srl*))
89   "Find ucon for a cui"
90   (with-umlisp-query ('mrcon (kpfstr kcuilrl) srl 'cui (parse-cui cui) :single t)
91     (make-instance 'ucon :cui (parse-cui cui)
92                    :pfstr kpfstr
93                    :lrl (ensure-integer kcuilrl))))
94
95 (defun find-ucon-cui-old (cui &key (srl *current-srl*))
96   "Find ucon for a cui"
97   (when (stringp cui) (setq cui (parse-cui cui)))
98   (when cui
99     (let ((ls (format nil "select KPFSTR,KCUILRL from MRCON where CUI=~d" cui)))
100       (when srl
101         (string-append ls (format nil " and KCUILRL <= ~d" srl)))
102       (string-append ls " limit 1")
103       (awhen (car (mutex-sql-query ls))
104              (destructuring-bind (kpfstr kcuilrl)
105                  (make-instance 'ucon :cui cui :pfstr kpfstr
106                             :lrl (ensure-integer kcuilrl)))))))
107
108 (defun find-ucon-cui-sans-pfstr (cui &key (srl *current-srl*))
109   "Find ucon for a cui"
110   (with-umlisp-query ('mrcon (kcuilrl) srl 'cui (parse-cui cui) :single t)
111     (make-instance 'ucon :cui (parse-cui cui)
112                    :lrl (ensure-integer kcuilrl)
113                    :pfstr nil)))
114
115 (defun find-pfstr-cui (cui &key (srl *current-srl*))
116   "Find preferred string for a cui"
117   (with-umlisp-query ('mrcon (kpfstr) srl 'cui (parse-cui cui) :single t)
118     kpfstr))
119
120 (defun find-ucon-lui (lui &key (srl *current-srl*))
121   "Find list of ucon for lui"
122   (with-umlisp-query ('mrcon (cui kpfstr kcuilrl) srl 'lui (parse-lui lui) :distinct t)
123     (make-instance 'ucon :cui (ensure-integer cui)
124                    :pfstr kpfstr
125                    :lrl (ensure-integer kcuilrl))))
126
127 (defun find-ucon-sui (sui &key (srl *current-srl*))
128   "Find list of ucon for sui"
129   (with-umlisp-query ('mrcon (cui kpfstr kcuilrl) srl 'sui (parse-sui sui) :distinct t)
130     (make-instance 'ucon :cui (ensure-integer cui)
131                    :pfstr kpfstr
132                    :lrl (ensure-integer kcuilrl))))
133
134 (defun find-ucon-cuisui (cui sui &key (srl *current-srl*))
135   "Find ucon for cui/sui"
136   (when (and cui sui)
137     (with-umlisp-query ('mrcon (cui kpfstr kcuilrl) srl 'kcuisui 
138                                (make-cuisui (parse-cui cui) (parse-sui sui)))
139       (make-instance 'ucon :cui (ensure-integer cui)
140                      :pfstr kpfstr
141                      :lrl (ensure-integer kcuilrl)))))
142
143 (defun find-ucon-str (str &key (srl *current-srl*))
144   "Find ucon that are exact match for str"
145   (with-umlisp-query ('mrcon (cui kpfstr kcuilrl) srl 'str str :distinct t)
146     (make-instance 'ucon :cui (ensure-integer cui) :pfstr kpfstr
147                    :lrl (ensure-integer kcuilrl))))
148
149 (defun find-ucon-all (&key (srl *current-srl*))
150   "Return list of all ucon's"
151   (with-sql-connection (db)
152     (clsql:map-query 
153      'list
154      #'(lambda (cui pfstr cuilrl)
155          (make-instance 'ucon :cui (ensure-integer cui)
156                         :pfstr pfstr
157                         :lrl (ensure-integer cuilrl)))
158      (query-string 'mrcon '(cui kpfstr kcuilrl) srl nil nil
159                    :order '((cui . asc)) :distinct t)
160      :database db)))
161
162 (defun map-ucon-all (fn &key (srl *current-srl*))
163   "Map a function over all ucon's"
164   (with-sql-connection (db)
165     (clsql:map-query 
166      nil
167      #'(lambda (cui pfstr cuilrl)
168          (funcall fn
169                   (make-instance 'ucon :cui (ensure-integer cui)
170                                  :pfstr pfstr
171                                  :lrl (ensure-integer cuilrl))))
172      (query-string 'mrcon '(cui kpfstr kcuilrl) srl nil nil :order '((cui . asc)) :distinct t)
173      :database db)))
174
175
176 (defun find-udef-cui (cui &key (srl *current-srl*))
177   "Return a list of udefs for cui"
178   (with-umlisp-query ('mrdef (sab def) srl 'cui (parse-cui cui) :lrlname "KSRL")
179     (make-instance 'udef :sab sab :def def)))
180
181 (defun find-usty-cui (cui &key (srl *current-srl*))
182   "Return a list of usty for cui"
183   (with-umlisp-query ('mrsty (tui sty) srl 'cui (parse-cui cui) :lrlname "KLRL")
184     (make-instance 'usty :tui (ensure-integer tui) :sty sty)))
185
186 (defun find-usty-word (word &key (srl *current-srl*))
187   "Return a list of usty that match word"
188   (with-umlisp-query ('mrsty (tui sty) srl 'sty word :lrlname 'klrl :like t :distinct t)
189     (make-instance 'usty :tui (ensure-integer tui) :sty sty)))
190
191 (defun find-urel-cui (cui &key (srl *current-srl*))
192   "Return a list of urel for cui"
193   (with-umlisp-query ('mrrel (rel cui2 rela sab sl mg kpfstr2) srl 'cui1 (parse-cui cui) :lrlname "KSRL")
194     (make-instance 'urel :cui1 (parse-cui cui) :rel rel :cui2 (ensure-integer cui2) :rela rela
195                    :sab sab :sl sl :mg mg :pfstr2 kpfstr2)))
196
197 (defun find-urel-cui2 (cui2 &key (srl *current-srl*))
198   "Return a list of urel for cui2"
199   (with-umlisp-query ('mrrel (rel cui1 rela sab sl mg kpfstr2) srl 'cui2 (parse-cui cui2) :lrlname "KSRL")
200     (make-instance 'urel :cui2 (parse-cui cui2) :rel rel :cui1 (ensure-integer cui1) :rela rela
201                    :sab sab :sl sl :mg mg :pfstr2 kpfstr2)))
202
203 (defun find-ucon-rel-cui2 (cui2 &key (srl *current-srl*))
204   (mapcar 
205    #'(lambda (cui) (find-ucon-cui cui :srl srl))
206    (remove-duplicates (mapcar #'cui1 (find-urel-cui2 cui2 :srl srl)))))
207
208 (defun find-ucoc-cui (cui &key (srl *current-srl*))
209   "Return a list of ucoc for cui"
210   (with-umlisp-query ('mrcoc (cui2 soc cot cof coa kpfstr2) srl 'cui1 (parse-cui cui) 
211                              :lrlname "KSRL" :order '((cof . asc)))
212     (setq cui2 (ensure-integer cui2))
213     (when (zerop cui2) (setq cui2 nil))
214     (make-instance 'ucoc :cui1 (parse-cui cui) :cui2 (ensure-integer cui2) :soc soc :cot cot
215                    :cof (ensure-integer cof) :coa coa :pfstr2 kpfstr2)))
216
217 (defun find-ucoc-cui2 (cui2 &key (srl *current-srl*))
218   "Return a list of ucoc for cui2"
219   (with-umlisp-query ('mrcoc (cui1 soc cot cof coa kpfstr2) srl 'cui2 (parse-cui cui2) 
220                              :lrlname "KSRL" :order '((cof . asc)))
221     (setq cui2 (ensure-integer cui2))
222     (when (zerop cui2) (setq cui2 nil))
223     (make-instance 'ucoc :cui1 (ensure-integer cui1) :cui2 (parse-cui cui2) :soc soc :cot cot
224                    :cof (ensure-integer cof) :coa coa :pfstr2 kpfstr2)))
225
226 (defun find-ucon-coc-cui2 (cui2 &key (srl *current-srl*))
227   "List of ucon with co-occurance cui2"
228   (mapcar 
229    #'(lambda (cui) (find-ucon-cui cui :srl srl))
230    (remove-duplicates (mapcar #'cui1 (find-ucoc-cui2 cui2 :srl srl)))))
231
232 (defun find-ulo-cui (cui &key (srl *current-srl*))
233   "Return a list of ulo for cui"
234   (with-umlisp-query ('mrlo (isn fr un sui sna soui) srl 'cui (parse-cui cui) :lrlname "KLRL")
235     (make-instance 'ulo :isn isn :fr (ensure-integer fr) :un un :sui (ensure-integer sui) :sna sna
236                    :soui soui)))
237
238 (defgeneric suistr (lo))
239 (defmethod suistr ((lo ulo))
240   "Return the string for a ulo object"
241   (find-string-sui (sui lo)))
242
243 (defun find-uatx-cui (cui &key (srl *current-srl*))
244   "Return a list of uatx for cui"
245   (with-umlisp-query ('mratx (sab rel atx) srl 'cui (parse-cui cui) :lrlname 'ksrl)
246     (make-instance 'uatx :sab sab :rel rel :atx atx)))
247
248
249 (defun find-uterm-cui (cui &key (srl *current-srl*))
250   "Return a list of uterm for cui"
251   (with-umlisp-query ('mrcon (lui lat ts kluilrl) srl 'cui (parse-cui cui) :lrlname 'kluilrl
252                              :distinct t)
253     (make-instance 'uterm :lui (ensure-integer lui) :cui (parse-cui cui)
254                    :lat lat :ts ts :lrl (ensure-integer kluilrl))))
255
256 (defun find-uterm-lui (lui &key (srl *current-srl*))
257   "Return a list of uterm for lui"
258   (with-umlisp-query ('mrcon (cui lat ts kluilrl) srl 'lui (parse-lui lui) 
259                              :lrlname 'kluilrl :distinct t)
260     (make-instance 'uterm :cui (ensure-integer cui) :lui (parse-lui lui)
261                    :lat lat :ts ts :lrl (ensure-integer kluilrl))))
262
263 (defun find-uterm-cuilui (cui lui &key (srl *current-srl*))
264   "Return single uterm for cui/lui"
265   (with-umlisp-query ('mrcon (lat ts kluilrl) srl 'kcuilui
266                              (make-cuilui (parse-cui cui) (parse-lui lui))
267                              :lrlname 'kluilrl :single t)
268     (make-instance 'uterm :cui cui :lui lui :lat lat :ts ts :lrl (ensure-integer kluilrl))))
269
270 (defun find-ustr-cuilui (cui lui &key (srl *current-srl*))
271   "Return a list of ustr for cui/lui"
272   (with-umlisp-query ('mrcon (sui stt str lrl) srl 'kcuilui (make-cuilui cui lui) :lrlname 'lrl)
273     (make-instance 'ustr :sui (ensure-integer sui) :cui cui :lui lui
274                    :cuisui (make-cuisui cui sui) :stt stt :str str
275                    :lrl (ensure-integer lrl))))
276
277 (defun find-ustr-cuisui (cui sui &key (srl *current-srl*))
278   "Return the single ustr for cuisui"
279   (with-umlisp-query ('mrcon (lui stt str lrl) srl 'kcuisui (make-cuisui cui sui) :lrlname 'lrl :single t)
280     (make-instance 'ustr :sui sui :cui cui :cuisui (make-cuisui cui sui)
281                    :lui (ensure-integer lui) :stt stt :str str :lrl (ensure-integer lrl))))
282
283 (defun find-ustr-sui (sui &key (srl *current-srl*))
284   "Return the list of ustr for sui"
285   (with-umlisp-query ('mrcon (cui lui stt str lrl) srl 'sui (parse-sui sui) :lrlname 'lrl)
286     (make-instance 'ustr :sui sui :cui cui :stt stt :str str
287                    :cuisui (make-cuisui (ensure-integer cui) (parse-sui sui))
288                    :lui (ensure-integer lui)
289                    :lrl (ensure-integer lrl))))
290       
291 (defun find-ustr-sab (sab &key (srl *current-srl*))
292   "Return the list of ustr for sab"
293   (with-umlisp-query ('mrso (kcuisui) srl 'sab sab :lrlname 'srl)
294     (let ((cuisui (ensure-integer kcuisui)))
295       (apply #'find-ustr-cuisui 
296              (append
297               (multiple-value-list (decompose-cuisui cuisui)) (list :srl srl))))))
298
299 (defun find-ustr-all (&key (srl *current-srl*))
300   "Return list of all ustr's"
301     (with-sql-connection (db)
302       (clsql:map-query 
303        'list
304        #'(lambda (cui lui sui stt lrl pfstr)
305            (setq cui (ensure-integer cui))
306            (setq lui (ensure-integer lui))
307            (setq sui (ensure-integer sui))      
308            (setq lrl (ensure-integer lrl))
309            (make-instance 'ustr :cui cui
310                           :lui lui
311                           :sui sui
312                           :cuisui (make-cuisui cui sui)
313                           :stt stt
314                           :lrl lrl
315                           :str pfstr))
316        (query-string 'mrcon '(cui lui sui stt lrl kpfstr) srl nil nil :lrlname 'lrl :distinct t
317                      :order '((sui . asc)))
318        :database db)))
319
320 (defun find-string-sui (sui &key (srl *current-srl*))
321   "Return the string associated with sui"
322   (with-umlisp-query ('mrcon (str) srl 'sui sui :lrlname 'lrl :single t)
323     str))
324
325 (defun find-uso-cuisui (cui sui &key (srl *current-srl*))
326   (with-umlisp-query ('mrso (sab code srl tty) srl 'kcuisui (make-cuisui cui sui) :lrlname 'srl)
327       (make-instance 'uso :sab sab :code code :srl srl :tty tty)))
328
329 (defun find-ucxt-cuisui (cui sui &key (srl *current-srl*))
330   (with-umlisp-query ('mrcxt (sab code cxn cxl rnk cxs cui2 hcd rela xc) srl 'kcuisui
331                              (make-cuisui cui sui) :lrlname 'ksrl)
332     (make-instance 'ucxt :sab sab :code code
333                    :cxn (ensure-integer cxn)
334                    :cxl cxl :cxs cxs :hcd hcd :rela rela :xc xc
335                    :rnk (ensure-integer rnk)
336                    :cui2 (ensure-integer cui2))))
337
338 (defun find-usat-ui (cui &optional (lui nil) (sui nil) &key (srl *current-srl*))
339   (let ((ls (format nil "select CODE,ATN,SAB,ATV from MRSAT where ")))
340     (cond
341       (sui (string-append ls (format nil "KCUISUI=~d" (make-cuisui cui sui))))
342       (lui (string-append ls (format nil "KCUILUI=~d and sui=0" (make-cuilui cui lui))))
343       (t (string-append ls (format nil "cui=~d and lui=0 and sui=0" cui))))
344     (when srl
345       (string-append ls (format nil " and KSRL <= ~d" srl)))
346     (let ((usats '()))
347       (dolist (tuple (mutex-sql-query ls))
348         (destructuring-bind (code atn sab atv) tuple
349           (push (make-instance 'usat :code code :atn atn :sab sab :atv atv)
350                 usats)))
351       (nreverse usats))))
352
353
354 (defun find-usty-tui (tui)
355   "Find usty for tui"
356   (with-umlisp-query ('mrsty (sty) nil 'tui (parse-tui tui) :single t)
357     (make-instance 'usty :tui (parse-tui tui) :sty sty)))
358
359 (defun find-usty-sty (sty)
360   "Find usty for a sty"
361   (with-umlisp-query ('mrsty (tui) nil 'sty sty :single t)
362     (make-instance 'usty :tui (ensure-integer tui) :sty sty)))
363
364 (defun find-usty-all ()
365   "Return list of usty's for all semantic types"
366   (with-umlisp-query ('mrsty (tui) nil nil nil :distinct t)
367     (find-usty-tui tui)))
368
369 (defun find-usab-all ()
370   "Find usab for a key"
371   (with-umlisp-query ('mrsab (vcui rcui vsab rsab son sf sver mstart mend imeta rmeta slc scc srl tfr cfr cxty ttyl atnl lat cenc curver sabin) nil nil nil)
372     (make-instance 'usab :vcui (ensure-integer vcui) 
373                    :rcui (ensure-integer rcui)
374                    :vsab vsab :rsab rsab :son son :sf sf :sver sver :mstart mstart
375                    :mend mend :imeta imeta :rmeta rmeta :slc slc :scc scc
376                    :srl (ensure-integer srl) 
377                    :tfr (ensure-integer tfr) :cfr (ensure-integer cfr)
378                    :cxty cxty :ttyl ttyl :atnl atnl :lat lat :cenc cenc
379                    :curver curver :sabin sabin)))
380
381 (defun find-usab-by-key (key-name key)
382   "Find usab for a key"
383   (with-umlisp-query ('mrsab (vcui rcui vsab rsab son sf sver mstart mend imeta rmeta slc scc srl tfr cfr cxty ttyl atnl lat cenc curver sabin) nil key-name key :single t)
384     (make-instance 'usab :vcui (ensure-integer vcui) 
385                    :rcui (ensure-integer rcui)
386                    :vsab vsab :rsab rsab :son son :sf sf :sver sver :mstart mstart
387                    :mend mend :imeta imeta :rmeta rmeta :slc slc :scc scc
388                    :srl (ensure-integer srl) 
389                    :tfr (ensure-integer tfr) :cfr (ensure-integer cfr)
390                    :cxty cxty :ttyl ttyl :atnl atnl :lat lat :cenc cenc
391                    :curver curver :sabin sabin)))
392
393 (defun find-usab-rsab (rsab)
394   "Find usab for rsab"
395   (find-usab-by-key "RSAB" rsab))
396
397 (defun find-usab-vsab (vsab)
398   "Find usab for vsab"
399   (find-usab-by-key "VSAB" vsab))
400
401 (defun find-cui-max ()
402   (ensure-integer (caar (mutex-sql-query "select max(CUI) from MRCON"))))
403
404 ;;;; Cross table find functions
405
406 (defun find-ucon-tui (tui &key (srl *current-srl*))
407   "Find list of ucon for tui"
408   (with-umlisp-query ('mrsty (cui) srl 'tui (parse-tui tui) :lrlname 'klrl :order '((cui . asc)))
409     (find-ucon-cui (ensure-integer cui) :srl srl)))
410   
411 (defun find-ucon-word (word &key (srl *current-srl*) (like nil))
412   "Return list of ucons that match word. Optionally, use SQL's LIKE syntax"
413   (with-umlisp-query ('mrxw_eng (cui) srl 'wd word :like like :distinct t
414                                 :lrlname 'klrl :order '((cui . asc)))
415     (find-ucon-cui cui :srl srl)))
416
417 (defun find-ucon-normalized-word (word &key (srl *current-srl*) (like nil))
418   "Return list of ucons that match word, optionally use SQL's LIKE syntax"
419   (with-umlisp-query ('mrxnw_eng (cui) srl 'nwd word :like like :distinct t
420                                 :lrlname 'klrl :order '((cui . asc)))
421     (find-ucon-cui cui :srl srl)))
422
423 (defun find-ustr-word (word &key (srl *current-srl*))
424   "Return list of ustrs that match word"
425   (with-umlisp-query ('mrxw_eng (cui sui) srl 'wd word
426                                 :lrlname 'klrl
427                                 :order '((cui . asc) (sui . asc)))
428     (find-ustr-cuisui (ensure-integer cui) (ensure-integer sui) :srl srl)))
429
430 (defun find-ustr-normalized-word (word &key (srl *current-srl*))
431   "Return list of ustrs that match word"
432   (with-umlisp-query ('mrxnw_eng (cui sui) srl 'nwd word :lrlname 'klrl
433                                  :order '((cui . asc) (sui . asc)))
434     (find-ustr-cuisui (ensure-integer cui) (ensure-integer sui) :srl srl)))
435
436 ;; Special tables
437
438 (defun find-usrl-all ()
439   (with-umlisp-query ('usrl (sab srl) nil nil nil :order '((sab . asc)))
440     (make-instance 'usrl :sab sab :srl (ensure-integer srl))))
441
442 ;;; Multiword lookup and score functions
443
444 (defun find-ucon-multiword (str &key (srl *current-srl*))
445   "Return sorted list of ucon's that match a multiword string"
446   (let* ((words (delimited-string-to-list str #\space))
447          (ucons '()))
448     (dolist (word words)
449       (setq ucons (append ucons (find-ucon-word word :srl srl))))
450     (sort-score-ucon-str str (delete-duplicates ucons :test #'eql :key #'cui))))
451
452 (defun find-ustr-multiword (str &key (srl *current-srl*))
453   "Return sorted list of ustr's that match a multiword string"
454   (let* ((words (delimited-string-to-list str #\space))
455          (ustrs '()))
456     (dolist (word words)
457       (setq ustrs (append ustrs (find-ustr-word word :srl srl))))
458     (sort-score-ustr-str str (delete-duplicates ustrs :test #'eql :key #'cui))))
459         
460 (defun sort-score-ucon-str (str ucons)
461   "Return list of sorted and scored ucons. Score by match of str to ucon-pfstr"
462   (sort-score-umlsclass-str ucons str #'pfstr))
463
464 (defun sort-score-ustr-str (str ustrs)
465   "Return list of sorted and scored ucons. Score by match of str to ucon-pfstr"
466   (sort-score-umlsclass-str ustrs str #'str))
467
468 (defun sort-score-umlsclass-str (objs str lookup-func)
469   "Sort a list of objects based on scoring to a string"
470   (let ((scored '()))
471     (dolist (obj objs)
472       (push 
473        (list obj 
474              (score-multiword-match str (funcall lookup-func obj))) 
475        scored))
476     (mapcar #'car (sort scored #'> :key #'cadr))))
477
478 (defun score-multiword-match (s1 s2)
479   "Score a match between two strings with s1 being reference string"
480   (let* ((word-list-1 (delimited-string-to-list s1 #\space))
481          (word-list-2 (delimited-string-to-list s2 #\space))
482          (n1 (length word-list-1))
483          (n2 (length word-list-2))
484          (unmatched n1)
485          (score 0)
486          (nlong 0)
487          (nshort 0)
488          short-list long-list)
489     (declare (fixnum n1 n2 nshort nlong score unmatched))
490     (if (> n1 n2)
491         (progn
492           (setq nlong n1)
493           (setq nshort n2)
494           (setq long-list word-list-1)
495           (setq short-list word-list-2))
496       (progn
497         (setq nlong n2)
498         (setq nshort n1)
499         (setq long-list word-list-2)
500         (setq short-list word-list-1)))
501     (decf score (- nlong nshort)) ;; reduce score for extra words
502     (dotimes (iword nshort)
503       (declare (fixnum iword))
504       (kmrcl:aif (position (nth iword short-list) long-list :test #'string-equal)
505            (progn
506              (incf score (- 10 (abs (- kmrcl::it iword))))
507              (decf unmatched))))
508     (decf score (* 2 unmatched))
509     score))
510
511
512 ;;; LEX SQL functions
513
514 (defun find-lexterm-eui (eui)
515   (with-umlisp-query ('lrwd (wrd) nil 'eui eui :single t)
516     (make-instance 'lexterm :eui eui :wrd wrd)))
517
518 (defun find-lexterm-word (wrd)
519   (with-umlisp-query ('lrwd (eui) nil 'wrd wrd)
520     (make-instance 'lexterm :eui (ensure-integer eui)
521                    :wrd (copy-seq wrd))))
522
523 ;; LEX SQL Read functions
524
525 (defun find-labr-eui (eui)
526   (with-umlisp-query ('lrabr (bas abr eui2 bas2) nil 'eui eui) 
527     (make-instance 'labr :eui eui :bas bas :abr abr :bas2 bas2
528                    :eui2 (ensure-integer eui2))))
529
530 (defun find-labr-bas (bas)
531   (with-umlisp-query ('labr (eui abr eui2 bas2) nil 'bas bas)
532     (make-instance 'labr :eui (ensure-integer eui) :abr abr :bas2 bas2
533                    :bas (copy-seq bas) :eui2 (ensure-integer eui2))))
534
535 (defun find-lagr-eui (eui)
536   (with-umlisp-query ('lragr (str sca agr cit bas) nil 'eui eui)
537     (make-instance 'lagr :eui eui :str str :sca sca :agr agr
538                    :cit cit :bas bas)))
539
540 (defun find-lcmp-eui (eui)
541   (with-umlisp-query ('lrcmp (bas sca com) nil 'eui eui)
542     (make-instance 'lcmp :eui eui :bas bas :sca sca :com com)))
543
544 (defun find-lmod-eui (eui)
545   (with-umlisp-query ('lrmod (bas sca psn_mod fea) nil 'eui eui)
546     (make-instance 'lmod :eui eui :bas bas :sca sca :psnmod psn_mod :fea fea)))
547
548 (defun find-lnom-eui (eui)
549   (with-umlisp-query ('lrnom (bas sca eui2 bas2 sca2) nil 'eui eui)
550     (make-instance 'lnom :eui eui :bas bas :sca sca :bas2 bas2 :sca2 sca2
551                    :eui2 (ensure-integer eui2))))
552
553 (defun find-lprn-eui (eui)
554   (with-umlisp-query ('lrprn (bas num gnd cas pos qnt fea) nil 'eui eui)
555     (make-instance 'lprn :eui eui :bas bas :num num :gnd gnd
556                    :cas cas :pos pos :qnt qnt :fea fea)))
557
558 (defun find-lprp-eui (eui)
559   (with-umlisp-query ('lrprp (bas str sca fea) nil 'eui eui)
560     (make-instance 'lprp :eui eui :bas bas :str str :sca sca :fea fea)))
561
562 (defun find-lspl-eui (eui)
563   (with-umlisp-query ('lrspl (spv bas) nil 'eui eui)
564     (make-instance 'lspl :eui eui :spv spv :bas bas)))
565
566 (defun find-ltrm-eui (eui)
567   (with-umlisp-query ('lrtrm (bas gen) nil 'eui eui) 
568     (make-instance 'ltrm :eui eui :bas bas :gen gen)))
569
570 (defun find-ltyp-eui (eui)
571   (with-umlisp-query ('lrtyp (bas sca typ) nil 'eui eui)
572     (make-instance 'ltyp :eui eui :bas bas :sca sca :typ typ)))
573
574 (defun find-lwd-wrd (wrd)
575   (make-instance 'lwd :wrd
576                  :euilist (with-umlisp-query ('lrwd (eui) nil 'wrd wrd)
577                             (ensure-integer eui))))
578
579 ;;; Semantic Network SQL access functions
580
581 (defun find-sdef-ui (ui)
582   (with-umlisp-query ('srdef (rt sty_rl stn_rtn def ex un rh abr rin)
583                              nil 'ui ui :single t)
584     (make-instance 'sdef :rt rt :ui ui :styrl sty_rl :stnrtn stn_rtn
585                    :def def :ex ex :un un :rh rh :abr abr :rin rin)))
586
587 (defun find-sstre1-ui (ui)
588   (with-umlisp-query ('srstre1 (ui2 ui3) nil 'ui ui)
589     (make-instance 'sstre1 :ui ui :ui2 (ensure-integer ui2)
590                    :ui3 (ensure-integer ui3))))
591
592 (defun find-sstre1-ui2 (ui2)
593   (with-umlisp-query ('srstre1 (ui ui3) nil 'ui2 ui2)
594     (make-instance 'sstre1 :ui (ensure-integer ui) :ui2 ui2
595                    :ui3 (ensure-integer ui3))))
596
597 (defun find-sstr-rl (rl)
598   (with-umlisp-query ('srstre (sty_rl sty_rl2 ls) nil 'rl rl)
599     (make-instance 'sstr :rl rl :styrl sty_rl :styrl2 sty_rl2 :ls ls)))
600
601 (defun find-sstre2-sty (sty)
602   (with-umlisp-query ('srstre2 (rl sty2) nil 'sty sty)
603     (make-instance 'sstre2 :sty (copy-seq sty) :rl rl :sty2 sty2)))
604
605 (defun find-sstr-styrl (styrl)
606   (with-umlisp-query ('srstr (rl sty_rl2 ls) nil 'styrl styrl)
607     (make-instance 'sstr :styrl styrl :rl rl :styrl2 sty_rl2 :ls ls)))