r5358: *** empty log message ***
[umlisp.git] / class-support.lisp
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10; Package: umlisp -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:         classes-support.lisp
6 ;;;; Purpose:      Support for UMLisp classes
7 ;;;; Author:       Kevin M. Rosenberg
8 ;;;; Date Started: Apr 2000
9 ;;;;
10 ;;;; $Id: class-support.lisp,v 1.19 2003/07/21 08:41:44 kevin Exp $
11 ;;;;
12 ;;;; This file, part of UMLisp, is
13 ;;;;    Copyright (c) 2000-2003 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
22 ;;; Formatting routines
23
24 (defgeneric fmt-cui (c))
25 (defmethod fmt-cui ((c ucon))
26   (fmt-cui (cui c)))
27
28 (defmethod fmt-cui ((c fixnum))
29   (prefixed-fixnum-string c #\C 7))
30
31 (defmethod fmt-cui ((c string))
32   (if (eql (aref c 0) #\C)
33       c
34       (fmt-cui (parse-integer c))))
35
36 (defmethod fmt-cui ((c null))
37   (format nil "nil"))
38
39 (defgeneric fmt-lui (c))
40 (defmethod fmt-lui ((l uterm))
41   (fmt-lui (lui l)))
42
43 (defmethod fmt-lui ((l fixnum))
44   (prefixed-fixnum-string l #\L 7))
45
46 (defmethod fmt-lui ((l string))
47   (if (eql (aref l 0) #\L)
48       l
49       (fmt-lui (parse-integer l))))
50
51 (defgeneric fmt-sui (s))
52 (defmethod fmt-sui ((s ustr))
53   (fmt-sui (sui s)))
54
55 (defmethod fmt-sui ((s fixnum))
56   (prefixed-fixnum-string s #\S 7))
57
58 (defmethod fmt-sui ((s string))
59   (if (eql (aref s 0) #\S)
60       s
61       (fmt-sui (parse-integer s))))
62
63 (defgeneric fmt-tui (tui))
64 (defmethod fmt-tui ((tui fixnum))
65   (prefixed-fixnum-string tui #\T 3))
66
67 (defmethod fmt-tui ((tui string))
68   (if (eql (aref tui 0) #\T)
69       tui
70       (fmt-tui (parse-integer tui))))
71
72 (defgeneric fmt-eui (e))
73 (defmethod fmt-eui ((e fixnum))
74   (prefixed-fixnum-string e #\E 7))
75
76 (defmethod fmt-eui ((e string))
77   (if (eql (aref e 0) #\E)
78       e
79       (fmt-eui (parse-integer e))))
80
81 (defmethod fmt-eui ((e null))
82   (format nil "nil"))
83
84 (defun cui-p (ui)
85   "Check if a string is a CUI"
86   (check-ui ui #\C 7))
87
88 (defun lui-p (ui)
89   "Check if a string is a LUI"
90   (check-ui ui #\L 7))
91
92 (defun sui-p (ui)
93   "Check if a string is a SUI"
94   (check-ui ui #\S 7))
95
96 (defun tui-p (ui)
97   (check-ui ui #\T 3))
98
99 (defun eui-p (ui)
100   (check-ui ui #\E 7))
101
102 (defun check-ui (ui start-char len)
103   (when (and (stringp ui)
104              (= (length ui) (1+ len))
105              (char-equal start-char (schar ui 0))
106              (ignore-errors (parse-integer ui :start 1)))
107     t))
108
109
110 ;;; Generic display functions
111
112 (eval-when (:compile-toplevel :load-toplevel :execute)
113 (defun english-term-p (obj)
114   "Returns two values: T/NIL if term is english and T/NIL if obj is a TERM"
115   (if (eq (hyperobject::class-name (hyperobject::class-of obj)) 'uterm)
116       (values (string-equal (lat obj) "ENG") t)
117     (values nil nil))))
118
119 (defun english-term-filter (obj)
120   "Retrns NIL if object is a term and not english"
121   (multiple-value-bind (is-english is-term) (english-term-p obj)
122       (or (not is-term) is-english)))
123
124 (defun print-umlsclass (obj &key (stream *standard-output*)
125                         (vid :compact-text)
126                         (file-wrapper nil) (english-only t) (subobjects nil)
127                         (refvars nil) (link-printer nil))
128   (view obj :stream stream :vid vid :subobjects subobjects
129         :file-wrapper file-wrapper
130         :filter (if english-only nil #'english-term-filter)
131         :link-printer link-printer
132         :refvars refvars))
133
134 (defmacro define-lookup-display (newfuncname lookup-func)
135   "Defines functions for looking up and displaying objects"
136   `(defun ,newfuncname  (keyval &key (stream *standard-output*) (vid :compact-text)
137                          (file-wrapper t) (english-only nil) (subobjects nil))
138      (let ((obj (funcall ,lookup-func keyval)))
139        (print-umlsclass obj :stream stream :vid vid
140                         :file-wrapper file-wrapper :english-only english-only
141                         :subobjects subobjects)
142        obj)))
143
144 (define-lookup-display display-con #'find-ucon-cui)
145 (define-lookup-display display-term #'find-uterm-lui)
146 (define-lookup-display display-str #'find-ustr-sui)
147
148 (defun ucon-has-tui (ucon tui)
149   "Returns T if UCON has a semantic type of TUI."
150   (some #'(lambda (usty) (= tui (tui usty))) (s#sty ucon)))
151
152 (defgeneric suistr (lo))
153 (defmethod suistr ((lo ulo))
154   "Return the string for a ulo object"
155   (find-string-sui (sui lo)))
156
157 (defgeneric pf-ustr (obj))
158 (defmethod pf-ustr ((ucon ucon))
159   "Return the preferred ustr for a ucon"
160   (pf-ustr
161    (find-if (lambda (uterm) (string= "P" (ts uterm))) (s#term ucon))))
162
163 (defmethod pf-ustr ((uterm uterm))
164   "Return the preferred ustr for a uterm"
165   (find-if (lambda (ustr) (string= "PF" (stt ustr))) (s#str uterm)))
166
167 (defgeneric mesh-number (obj))
168 (defmethod mesh-number ((con ucon))
169   (mesh-number (pf-ustr con)))
170
171 (defmethod mesh-number ((ustr ustr))
172   (let ((codes
173          (filter (lambda (sat)
174                    (when (and (string-equal "MSH" (sab sat))
175                               (string-equal "MN" (atn sat)))
176                      (atv sat)))
177                  (s#sat ustr))))
178     (if (= 1 (length codes))
179         (car codes)
180       codes)))
181
182 (defun ucon-ustrs (ucon)
183   "Return lists of strings for a concept"
184   (let (res)
185     (dolist (term (s#term ucon) (nreverse res))
186       (dolist (str (s#str term))
187         (push str res)))))
188                      
189
190 (defmethod pfstr ((uterm uterm))
191   "Return the preferred string for a uterm"
192   (dolist (ustr (s#str uterm))
193     (when (string= "PF" (stt ustr))
194       (return-from pfstr (str ustr)))))
195
196 (defmethod pfstr ((ustr ustr))
197   "Return the preferred string for a ustr, which is the string itself"
198   (str ustr))
199
200 (defun remove-non-english-terms (uterms)
201   (remove-if-not #'english-term-p uterms))
202
203 (defun remove-english-terms (uterms)
204   (remove-if #'english-term-p uterms))
205
206
207 (defvar +relationship-abbreviations+
208   '(("RB" "Broader" "has a broader relationship")
209     ("RN" "Narrower" "has a narrower relationship")
210     ("RO" "Other related" "has relationship other than synonymous, narrower, or broader")
211     ("RL" "Like" "the two concepts are similar or 'alike'.  In the current edition of the Metathesaurus, most relationships with this attribute are mappings provided by a source")
212     ("RQ" "Unspecified" "unspecified source asserted relatedness, possibly synonymous")
213     ("SY" "Source Synonymy" "source asserted synonymy")
214     ("PAR" "Parent" "has parent relationship in a Metathesaurus source vocabulary")
215     ("CHD" "Child" "has child relationship in a Metathesaurus source vocabulary")
216     ("SIB" "Sibling" "has sibling relationship in a Metathesaurus source vocabulary")
217     ("AQ" "Allowed" "is an allowed qualifier for a concept in a Metathesaurus source vocabulary")
218     ("QB" "Qualified" "can be qualified by a concept in a Metathesaurus source vocabulary")))
219
220 (defvar *rel-info-table* (make-hash-table :size 30 :test 'equal))
221 (defvar *is-rel-table-init* nil)
222 (unless *is-rel-table-init*
223   (dolist (relinfo +relationship-abbreviations+)
224     (setf (gethash (string-downcase (car relinfo)) *rel-info-table*)
225       (cdr relinfo)))
226   (setq *is-rel-table-init* t))
227
228 (defun rel-abbr-info (rel)
229   (nth-value 0 (gethash (string-downcase rel) *rel-info-table*)))
230
231 (defun filter-urels-by-rel (urels rel)
232   (remove-if-not (lambda (urel) (string-equal rel (rel urel))) urels))
233
234
235 (defvar +language-abbreviations+
236   '(("BAQ" . "Basque")
237     ("DAN" . "Danish")
238     ("DUT" . "Dutch")
239     ("ENG" . "English")
240     ("FIN" . "Finnish")
241     ("FRE" . "French")
242     ("GER" . "German")
243     ("HEB" . "Hebrew")
244     ("HUN" . "Hungarian")
245     ("ITA" . "Italian")
246     ("NOR" . "Norwegian")
247     ("POR" . "Portuguese")
248     ("RUS" . "Russian")
249     ("SPA" . "Spanish")
250     ("SWE" . "Swedish")))
251
252 (defvar *lat-info-table* (make-hash-table :size 30 :test 'equal))
253 (defvar *is-lat-table-init* nil)
254 (unless *is-lat-table-init*
255   (dolist (latinfo +language-abbreviations+)
256     (setf (gethash (string-downcase (car latinfo)) *lat-info-table*)
257       (cdr latinfo)))
258   (setq *is-lat-table-init* t))
259
260 (defun lat-abbr-info (lat)
261   (nth-value 0 (gethash (string-downcase lat) *lat-info-table*)))
262
263
264 (defun stt-abbr-info (stt)
265   (when (string-equal "PF" stt)
266     (return-from stt-abbr-info "Preferred"))
267   (when (char-equal #\V (schar stt 0))
268     (setq stt (subseq stt 1)))
269   (loop for c across stt
270       collect
271         (cond
272          ((char-equal #\C c)
273           "Upper/lower case")
274          ((char-equal #\W c)
275           "Word order")
276          ((char-equal #\S c)
277           "Singular")
278          ((char-equal #\P c)
279           "Plural")
280          ((char-equal #\O c)
281           "Other"))))
282
283             
284 (defun ucon-parents (con &optional sab)
285   (ucon-ancestors con sab t))
286
287 (defun ucon-ancestors (ucon &optional sab single-level)
288   "Returns a list of ancestor lists for a concept"
289   (let* ((parent-rels (filter-urels-by-rel (s#rel ucon) "par"))
290          (anc nil))
291     (when sab
292       (setq parent-rels (delete-if-not 
293                          (lambda (rel) (string-equal sab (sab rel)))
294                          parent-rels)))
295     (dolist (rel parent-rels (nreverse anc))
296       (let ((parent (find-ucon-cui (cui2 rel))))
297         (push
298          (if single-level
299              (list parent)
300            (list* parent (car (ucon-ancestors parent (sab rel) nil))))
301          anc)))))
302
303 (defgeneric cxt-ancestors (obj))
304 (defmethod cxt-ancestors ((con ucon))
305   (loop for term in (s#term con)
306       append (cxt-ancestors term)))
307                     
308
309 (defmethod cxt-ancestors ((term uterm))
310   (loop for str in (s#str term)
311       append (cxt-ancestors str)))
312     
313 (defmethod cxt-ancestors ((str ustr))
314   "Return the ancestory contexts of a ustr"
315   (let* ((anc (remove-if-not
316                (lambda (cxt) (string-equal "ANC" (cxl cxt)))
317                (s#cxt str)))
318          (num-contexts (if anc
319                            (apply #'max (mapcar (lambda (cxt) (cxn cxt)) anc))
320                          0))
321          (anc-lists '()))
322     (dotimes (i num-contexts (nreverse anc-lists))
323       (let* ((anc-this-cxn (remove-if-not
324                             (lambda (cxt) (= (1+ i) (cxn cxt))) anc)))
325         (push
326          (sort anc-this-cxn (lambda (a b) (< (rnk a) (rnk b))))
327          anc-lists)))))
328
329   
330 #+scl
331 (dolist (c '(urank udef usat uso ucxt ustr ulo uterm usty urel ucoc uatx ucon uxw uxnw uxns lexterm labr lagr lcmp lmod lnom lprn lprp lspl ltrm ltyp lwd sdef sstr sstre1 sstre2 usrl))
332     (let ((cl (find-class c)))
333       (clos:finalize-inheritance cl)))
334
335