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