Home   Package List   Routine Alphabetical List   Global Alphabetical List   FileMan Files List   FileMan Sub-Files List   Package Component Lists   Package-Namespace Mapping  
Routine: INHUTS1

INHUTS1.m

Go to the documentation of this file.
  1. INHUTS1 ;JMB; 17 Jul 95 14:21;Monitoring utilities
  1. ;;3.01;BHL IHS Interfaces with GIS;;JUL 01, 2001
  1. ;COPYRIGHT 1991-2000 SAIC
  1. Q
  1. ;
  1. RD(PROMPT,DEF,RANGE) ;Read a parameter
  1. ;INPUT:
  1. ; PROMPT - prompt for user
  1. ; DEF - default value (default to no or 0)
  1. ; RANGE - type of question (yes/no (def) or numeric)
  1. ; nuemric range = hi , lo ex. "1,10"
  1. ;OUTPUT:
  1. ; function - user's answer (or "^" if user aborted)
  1. ;
  1. N ANS
  1. S ANS=U
  1. ;Handle yes/no type questions
  1. I $G(RANGE)="YN"!($G(RANGE)="") S ANS=$$YN^UTSRD(PROMPT_": ;"_+$G(DEF)) S:ANS[U ANS=U Q ANS
  1. ;Handle numeric questions
  1. W ! D ^UTSRD(PROMPT_": ;;;;"_+$G(DEF)_";"_RANGE)
  1. S ANS=X S:X[U!$G(DTOUT) ANS=U
  1. Q ANS
  1. ;
  1. DES0 ;Load array of queues to check
  1. ; Includes Transmiters and Receivers
  1. ; Includes the Format Controler and Output Controller
  1. ;OUTPUT:
  1. ; INDEST - array of queues to check
  1. ;
  1. N BP,BP0
  1. K INDEST S BP=0
  1. ;Loop through Background Process Control file
  1. F S BP=$O(^INTHPC(BP)) Q:'BP S BP0=$G(^INTHPC(BP,0)) D
  1. . ;Check if process is NOT active
  1. . Q:'$P(BP0,U,2)
  1. . ;Place into list of queues
  1. . S INDEST(BP)=$P(BP0,U)
  1. Q
  1. ;
  1. DES1 ;Load array of queues to check
  1. ; Includes Transmitters only (no Receivers)
  1. ; Does not include the Format Controller and Output Controller
  1. ;OUTPUT:
  1. ; INDEST - array of queues to check
  1. ; format -> queue name ^ location (global) of queue
  1. ;
  1. K INDEST S BP=2
  1. ;Loop through Background Process Control file
  1. F S BP=$O(^INTHPC(BP)) Q:'BP S BP0=$G(^INTHPC(BP,0)) D
  1. . ;Check for a destination
  1. . S D=$P(BP0,U,7) Q:'D
  1. . ;Check if process is NOT active and no messages in queue
  1. . Q:'$P(BP0,U,2)&'$D(^INLHDEST(D))
  1. . ;Check for transmitters only (no receivers)
  1. . Q:$P(^INTHPC(BP,0),U)'["TRANSMIT"
  1. . ;Place into list of queues
  1. . S INDEST(BP)=$P(BP0,U)_U_"INLHDEST("_D_")"
  1. Q