r3291: *** empty log message ***
[umlisp.git] / composite.lisp
index f363287930adc7a6eab1fd22a0e9c5f010e4ba82..263c28aaee17781e72ebcc41855beffc57b0ceb8 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: composite.lisp,v 1.3 2002/10/09 23:03:41 kevin Exp $
+;;;; $Id: composite.lisp,v 1.9 2002/11/04 18:02:13 kevin Exp $
 ;;;;
 ;;;; This file, part of UMLisp, is
 ;;;;    Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D.
@@ -68,7 +68,7 @@
 (defclass ucon_freq (umlsclass)
   ((ucon :type ucon :initarg :ucon :reader ucon)
    (freq :type fixnum :initarg :freq :accessor freq))
-  (:metaclass kmrcl:ml-class)
+  (:metaclass hyperobject-class)
   (:default-initargs :cui nil :pfstr nil :freq nil)
   (:title "Concept and Count")
   (:fields (cui :string fmt-cui) (freq :fixnum) (pfstr :cdata))
@@ -84,7 +84,7 @@
 (defclass ustr_freq (umlsclass)
   ((ustr :type ustr :initarg :ustr :reader ustr)
    (freq :type fixnum :initarg :freq :accessor freq))
-  (:metaclass kmrcl:ml-class)
+  (:metaclass hyperobject-class)
   (:default-initargs :cui nil :pfstr nil :freq nil)
   (:title "String and Count")
   (:fields (sui :string fmt-sui) (freq :fixnum) (stt :string) (lrl :fixnum) (str :cdata))
 (defclass usty_freq (umlsclass)
   ((usty :type usty :initarg :usty :reader usty)
    (freq :type fixnum :initarg :freq :accessor freq))
-  (:metaclass kmrcl:ml-class)
+  (:metaclass hyperobject-class)
   (:default-initargs :usty nil :freq nil)
   (:title "Semantic Type and Count")
-  (:ref-fields (tui find-ucon-tui "subobjects=no"))
+;;  (:ref-fields (tui find-ucon-tui "subobjects=no"))
+  (:ref-fields (tui find-ucon-tui))
   (:fields (tui :string fmt-tui) (freq :fixnum) (sty :string))
   (:documentation "Composite object of usty/freq"))
 
-(defun usty_freq-tui (s)
+(defmethod tui ((s usty_freq))
   (tui (usty s)))
-(defun usty_freq-sty (s)
+
+(defmethod sty ((s usty_freq))
   (sty (usty s)))
 
+
+(defun find-usty_freq-all ()
+  (let ((usty_freqs '()))
+    (dolist (tuple (mutex-sql-query "select distinct TUI from MRSTY"))
+      (let* ((tui (car tuple))
+            (freq (ensure-integer 
+                    (caar (mutex-sql-query 
+                           (format nil "select count(*) from MRSTY where TUI=~a" tui))))))
+       (push (make-instance 'usty_freq :usty (find-usty-tui tui) :freq freq) usty_freqs)))
+    (sort usty_freqs #'> :key #'freq)))
+
+
 (defclass usrl_freq (umlsclass)
   ((usrl :type usrl :initarg :usrl :reader usrl)
    (freq :type fixnum :initarg :freq :accessor freq))
-  (:metaclass kmrcl:ml-class)
+  (:metaclass hyperobject-class)
   (:default-initargs :usrl nil :freq nil)
   (:title "Source and Count")
   (:ref-fields (sab find-ustr-sab))
   (:fields (sab :string) (freq :commainteger) (srl :fixnum))
   (:documentation "Composite object of usrl/freq"))
 
-(defun usrl_freq-sab (s)
+(defmethod sab ((s usrl_freq))
   (sab (usrl s)))
  
-(defun usrl_freq-srl (s)
+(defmethod srl ((s usrl_freq))
   (srl (usrl s)))
 
 
 ;; Frequency finding functions
+
+(defun find-usrl_freq-all ()
+  (let ((freqs '()))
+    (dolist (usrl (find-usrl-all))
+      (let ((freq (ensure-integer 
+                  (caar (mutex-sql-query 
+                         (format nil "select count(*) from MRSO where SAB='~a'" 
+                                 (sab usrl)))))))
+       (push (make-instance 'usrl_freq :usrl usrl :freq freq) freqs)))
+    (sort freqs #'> :key #'usrl_freq-freq)))
+
 (defun find-ucon2_freq-coc-tui (ucon tui)
 "Return sorted list of tuples with ucon and freq that have co-occuring concepts of semantic type tui" 
   (let ((ucon_freqs '())) 
 (defun find-ucon2_freq-coc-tui-all (tui)
   (find-ucon2_freq-tui-all tui #'find-ucon2-coc-tui))
 
+#+(or cmu scl)
+(dolist (c '(ucon_freq ustr_freq usty_freq usrl_freq))
+  (let ((cl #+cmu (pcl:find-class c)
+           #+scl (find-class c)))
+    #+cmu (pcl:finalize-inheritance cl)
+    #+scl (clos:finalize-inheritance cl)))