VistA-WorldVistAEHR/r/IMAGING-MAG-ZMAG/MAGJUTL2.m

174 lines
8.6 KiB
Mathematica

MAGJUTL2 ;WIRMFO/JHC VistRad subroutines for RPC calls[ 2/21/97 10:53 AM ] ; 22 Mar 2001 2:24 PM
;;3.0;IMAGING;**18,65**;Jul 27, 2006;Build 28
;;Per VHA Directive 2004-038, this routine should not be modified.
;; +---------------------------------------------------------------+
;; | Property of the US Government. |
;; | No permission to copy or redistribute this software is given. |
;; | Use of unreleased versions of this software requires the user |
;; | to execute a written test agreement with the VistA Imaging |
;; | Development Office of the Department of Veterans Affairs, |
;; | telephone (301) 734-0100. |
;; | |
;; | The Food and Drug Administration classifies this software as |
;; | a medical device. As such, it may not be changed in any way. |
;; | Modifications to this software may result in an adulterated |
;; | medical device under 21CFR820, the use of which is considered |
;; | to be a violation of US Federal Statutes. |
;; +---------------------------------------------------------------+
;;
Q
IMGINFO(RARPT,RET) ; Fetch info from Image File for input RARPT:
; Input: RARPT: Rad Report pointer
; RET: see below
; RET contents delimited by ^:
; CT = # of images for case
; ONL = Image Storage status (Y=On Magnetic disk, N=Jukebox
; "n/a" for not available, e.g., film only)
; note -- if last image in group is Online, considers ALL online
; MAGDT = Date/Time of Image Capture
; REMOTE = 1/0 to Indicate images were remotely cached
; MODALITY= Modality abbrev
; PLACE = Image storage PLace (ptr to 2006.1 entry)
; KEY = 1/0 ind. Key Images exist for this exam
;
N IRPT,MAGIEN,MAGIEN2,ONLCHK,NETLOC,STIEN
N CT,ONL,MAGDT,REMOTE,MODALITY,PLACE,REMCHK,KEY
S CT="",ONL="",MAGDT="",RET="",REMOTE="",MODALITY="",PLACE="",KEY=0 ; init return vars
G IMGINFQ:'RARPT G IMGINFQ:'$D(^RARPT(RARPT,2005,0))
I 'MAGJOB("P32") D
. S STIEN=$$STUDYID^MAGJUPD2("",RARPT,1)
. I STIEN S T=$O(^MAG(2005,STIEN,205,0)) I T S KEY=1
S IRPT=0 F S IRPT=$O(^RARPT(RARPT,2005,IRPT)) Q:'IRPT S MAGIEN=$P(^(IRPT,0),U) D
. Q:'$D(^MAG(2005,MAGIEN,0)) I MAGDT="" S MAGDT=$P($G(^(2)),U)
. I $O(^MAG(2005,MAGIEN,1,0)) S CT=CT+$P(^(0),U,4),Y=$P(^(0),U,3),MAGIEN2=$P($G(^(Y,0)),U) S:(MAGIEN2]"") ONLCHK=$$ONLCHK(MAGIEN2),REMCHK=$$REMOTE(MAGIEN2) ; last image in group
. E S CT=CT+1,ONLCHK=$$ONLCHK(MAGIEN),REMCHK=$$REMOTE(MAGIEN)
. S ONL=$S(ONL="":+ONLCHK,+ONL:+ONLCHK,1:0) ; NOT Online if ANY img is 0
. S REMOTE=$S(REMOTE="":REMCHK,+REMOTE:REMCHK,1:0) ; NOT Remote if ANY img is 0
. S X=$P(ONLCHK,U,3)
. I MODALITY="" S MODALITY=X
. E I MODALITY'[X S MODALITY=MODALITY_","_X
. I PLACE="" S PLACE=$P(ONLCHK,U,4)
IMGINFQ S ONL=$S(+ONL:"Y",ONL="":"n/a",1:"N")
S RET=CT_U_ONL_U_MAGDT_U_REMOTE_U_MODALITY_U_PLACE_U_KEY
Q
;
ONLCHK(MAGIEN,USETGA) ;
; Input: MAGIEN: Image pointer
; USETGA: 1/0 -- if 1, forces return of TGA (not .big) file
;Return:
; - T/F for Full-Res image on Mag. Disk that is Online
; - File type (BIG/FULL)
; - Modality
; - Place
; - DFN
; - File Name IFF this image is stored Off-Line (else null)
; - USETGA as calculated in the logic below
; - PROCDT = Img Processing DtTime
; - ACQSITE = Acquisition site code
; USETGA is set to False (0) if a low-resolution image (TGA) is
; requested, but none exists; calling routine would call by ref.
;
N BIG,X,NOD,MAG0,MODALITY,RET,PLACE,DFN,FILNAM,MAG2,PROCDT,ACQSITE,MAG100
S USETGA=+$G(USETGA) ; Defaults to Full-Resolution image if not defined
S RET="",MODALITY="",PLACE="",ACQSITE=""
S MAG0=^MAG(2005,MAGIEN,0),BIG=$D(^("FBIG")),NOD=$S(BIG:^("FBIG"),1:MAG0)
S MAG2=^MAG(2005,MAGIEN,2),PROCDT=$P(MAG2,U)
S MAG100=$G(^MAG(2005,MAGIEN,100)),ACQSITE=$P(MAG100,U,3)
I USETGA D
. I 'BIG S USETGA=0 ; reply no low-res image available
. I BIG S NOD=MAG0,BIG=0 ; enable correct logic inside this subroutine
S MODALITY=$P(MAG0,U,8),DFN=$P(MAG0,U,7)
I BIG S X=+$P(NOD,U) ; $p 1 is Magnetic Disk/Volume (.big) <*> DCM--add to end: S:'X X=+$P(NOD,U,3)
E S X=+$P(NOD,U,3) ; $p 3 is Magnetic Disk/Volume (.tga)
I X D
. I '$D(NETLOC(X)) S NETLOC(X)=+$P(^MAG(2005.2,X,0),U,6)_U_$P(^(0),U,10)
. S RET=+NETLOC(X),PLACE=$P(NETLOC(X),U,2) ; NETLOC is global to this subrtn
. S FILNAM=""
E D
. S RET=0,FILNAM=$P(MAG0,U,2)
. S T=$S(BIG:$P(NOD,U,2),1:$P(NOD,U,5))
. I T S PLACE=$P(^MAG(2005.2,T,0),U,10) ; <*>DCM--add anything?
S RET=RET_U_$S(BIG:"BIG",1:"FULL")_U_MODALITY_U_PLACE_U_DFN_U_FILNAM_U_USETGA_U_PROCDT_U_ACQSITE
Q RET
;
REMOTE(MAGIEN) ;Return list of remote Cache Locations
; else, return "" if none
N RET,LOC
S RET=""
I $D(^MAG(2005,MAGIEN,4,"LOC")) S LOC=0 D
. F S LOC=$O(^MAG(2005,MAGIEN,4,"LOC",LOC)) Q:'LOC S RET=RET_$S(RET="":"",1:",")_LOC
Q RET
;
IMGINF2(RARPT,RET,USETGA) ; Fetch info from Image File for input RARPT:
; Input: RARPT: Rad Report pointer
; RET: see below
; USETGA: 1/0 -- if 1, forces return of TGA (not .big) file
; RET holds array of return values:
; RET = # Images stored for the case
; RET(1:n) = 1/0 ^ FULL/BIG ^ Mod ^ ien ^ Series ^ Routed-to Locations ^ PLACE ^ DFN ^ FileName (if OffLine) ^ PS_Indicator
; (1=Image is on Magnetic Disk)
; * This subroutine may be called by other VistARad routines
;
N BIG,IMG,MAGIEN,MAGIEN2,MAGPTR,MAGINDX,MAGREF,NETLOC,SERIES,SERCT,SERPREV
K RET S RET=0,SERCT=0,SERPREV=""
S USETGA=+$G(USETGA) ; Defaults to Full-Resolution image if not defined
G IMGINF2Q:'RARPT S IMG=0
S MAGINDX="ADCM" ; maybe others will exist in the future
; *P18--this index is defunct for P18 & beyond
; however, keep for bkwds-compat P18 to P32; remove later
F S IMG=$O(^RARPT(RARPT,2005,IMG)) Q:'IMG S MAGIEN=$P(^(IMG,0),U) D
. S MAGREF=$NA(^MAG(2005,MAGIEN,1,MAGINDX))
. I 'MAGJOB("P32")!'$D(@MAGREF) D ; use group multiple structure
.. Q:'$D(^MAG(2005,MAGIEN,0)) S MAGPTR=0
.. I '$O(^MAG(2005,MAGIEN,1,MAGPTR)) D Q
... S T=$$ONLCHK(MAGIEN,USETGA)
... S RET=RET+1,RET(RET)=$P(T,U,1,3)_U_MAGIEN_U_U_$$REMOTE(MAGIEN)_U_$P(T,U,4,7)_U_$$PSIND(MAGIEN)_U_$P(T,U,8)_U_$P(T,U,9)
.. E F S MAGPTR=$O(^MAG(2005,MAGIEN,1,MAGPTR)) Q:'MAGPTR S MAGIEN2=$P(^(MAGPTR,0),U) D
... S T=$$ONLCHK(MAGIEN2,USETGA)
... S RET=RET+1,RET(RET)=$P(T,U,1,3)_U_MAGIEN2_U_U_$$REMOTE(MAGIEN2)_U_$P(T,U,4,7)_U_$$PSIND(MAGIEN2)_U_$P(T,U,8)_U_$P(T,U,9)
. E I $D(@MAGREF) D ; use exam index, e.g., "ADCM"
.. F S MAGREF=$Q(@MAGREF) Q:($P(MAGREF,",",4)'=(""""_MAGINDX_"""")) D
... S X=$L(MAGREF,","),MAGIEN2=$P(MAGREF,",",X-1),SERIES=$P(MAGREF,",",5)
... S T=$$ONLCHK(MAGIEN2,USETGA)
... S RET=RET+1,RET(RET)=$P(T,U,1,3)_U_MAGIEN2_U_SERIES_U_$$REMOTE(MAGIEN2)_U_$P(T,U,4,7)
... I SERIES'=SERPREV S SERCT=SERCT+1,$P(RET("SER",SERCT),U,2)=SERIES,SERPREV=SERIES,RET("SER",0)=SERCT
... S $P(RET("SER",SERCT),U)=RET("SER",SERCT)+1
IMGINF2Q ;
Q
;
PSIND(MAGIEN) ; return Presentation State Indicator(s) for image
; K=Key Image PStype; I=Interpretation PStyp; U=User PStyp
N RSL,IEN,X
S RSL="",IEN=0
I $D(^MAG(2005,MAGIEN,210,IEN)) F S IEN=$O(^MAG(2005,MAGIEN,210,IEN)) Q:'IEN S X=$P(^(IEN,0),U,2) Q:RSL[X S RSL=RSL_$S(RSL="":"",1:",")_X
Q:$Q RSL Q
;
JBFETCH(RARPT,MAGS,USETGA) ; fetch this case's images from Jukebox, if necessary
; Input: RARPT: Rad Report pointer
; MAGS: see below
; USETGA: 1/0 -- if 1, forces return of TGA (not .big) file
; This is a function that returns a string containing:
; # Images fetched from JB ^ Total # Images for Case ^ # Low Res Imgs
; The MAGS array will be returned to the calling
; routine if MAGS is provided as an input parameter
; MAGS is populated by call to IMGINF2.
; IF any images are stored OffLine, then this node is set here:
; MAGS("OFFLN",JBOFFLN)="" JBOFFLN = Platter ID from file 2006.033
;
; * This function may be called by other VistARad routines
;
N MAGIEN,FETCH,IMAG,FILNAM,JBOFFLN,LORESCT
S USETGA=+$G(USETGA) ; Defaults to Full-Resolution image if not defined
S FETCH=0,LORESCT=0
D IMGINF2(RARPT,.MAGS,USETGA)
I MAGS F IMAG=1:1:MAGS S X=MAGS(IMAG) D
. I USETGA S LORESCT=LORESCT+$P(X,U,10)
. I '+X D ; Call params below depend on Consolidated Site status
.. S FILNAM=$P(X,U,9)
.. I FILNAM]"",$D(^MAGQUEUE(2006.033,"B",FILNAM)) S T=$O(^(FILNAM,"")) S JBOFFLN=$P($G(^MAGQUEUE(2006.033,T,0)),U,2) S FETCH=FETCH+1,MAGS("OFFLN",JBOFFLN)="" Q ; OffLine Image
.. I '$G(MAGJOB("CONSOLIDATED")) S X=$$JBTOHD^MAGBAPI($P(X,U,4)_"^"_$P(X,U,2)),FETCH=FETCH+1 ; pre-consolidation vs
.. E S X=$$JBTOHD^MAGBAPI($P(X,U,4)_"^"_$P(X,U,2),$P(X,U,7)),FETCH=FETCH+1
Q FETCH_U_MAGS_U_LORESCT
;
END Q ;