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

BOPTCP.m

Go to the documentation of this file.
  1. BOPTCP ;IHS/ILC/ALG/CIA/PLS - TCP/IP Send/Receive Utility;03-Feb-2006 10:58;SM
  1. ;;1.0;AUTOMATED DISPENSING INTERFACE;**1**;Jul 26, 2005
  1. ;;
  1. ;
  1. ; NOTE! This routine may be saved under a different name. If this is
  1. ; done, be sure to edit the first line of the routine and the
  1. ; name of the routine in the EOR line
  1. ;
  1. ; NOTE! Normally, transmissions are ended with a sequence of control
  1. ; characters such as ASCII 13,11,13 or 27,27,27. No such
  1. ; end-of-transmit characters are used during the sending of
  1. ; data. If any such characters are
  1. ; returned, they are not checked for. PLEASE be sure
  1. ; to add them. (Data sent to in SDATA and data
  1. ; received in DATA subroutines.)
  1. ;
  1. ; Replaceable parameters that will need to be replaced are
  1. ; the following:
  1. ;
  1. ; Subroutine: IP (To IP address
  1. ; Subroutine: SOCKET (To Socket#)
  1. ;
  1. ; Or
  1. ;
  1. ; Change these subroutines to call a file or table (which is probably
  1. ; better than hardsetting the values.)
  1. ;
  1. ;
  1. ; EXPLANATION:
  1. ;
  1. ; Then EN call point will transmit to IP/Socket the data contained in
  1. ; the INPUT array. Data returned will be returned
  1. ; in the OUTPUT array.
  1. ;
  1. ;
  1. ; EXAMPLE:
  1. ;
  1. ; TRANS(1)="MSH|^~\&|..." <- message carries over into TRANS(2)
  1. ; TRANS(2)="...MSA|... etc, etc"
  1. ;
  1. ; S A7RERR=$$EN^BOPTCP("TRANS","RESULTS")
  1. ;
  1. ; W A7RERR -> will be = zero if ALL goes well, or -1^... if not
  1. ;
  1. ; If the above call works, the response will be in
  1. ; the RESULTS array. Something line this...
  1. ;
  1. ; RESULTS(1)="MSH|^~\&|..." <- the response message
  1. ; RESULTS(2)="... etc, etc"
  1. ;
  1. EN(INPUT,OUTPUT) ;Call to do direct connect to MPI
  1. N I,LOOP,LP,POP,X,XCS,XCSDAT,XCSER,XCSEXIT,XCSMD,XCSNT,XCSTIME
  1. N XCSTRACE,Y
  1. ;
  1. D SETUP
  1. ;
  1. ;IHS exemption approved on March 16, 2005
  1. I XCSNT N $ESTACK,$ETRAP S $ETRAP="D ERROR^BOPTCP"
  1. E S X="ERROR^BOPTCP",@^%ZOSF("TRAP")
  1. ;
  1. D OPEN I POP QUIT $$ERR("POP=1 ON OPEN") ;->
  1. D DATA
  1. D GET
  1. D QUIT
  1. ;
  1. Q 0 ;#errors = 0
  1. ;
  1. ERR(REA) ;Report back an error
  1. D TRACE("ERROR "_XCS("STAT"))
  1. D:'POP QUIT
  1. Q "-1^"_REA
  1. ;
  1. ERROR ;Trap an error
  1. D ^%ZTER G UNWIND^%ZTER
  1. ;
  1. OPEN ;Open connection
  1. D TRACE("Make Connection")
  1. D CALL^%ZISTCP(BOPIP,BOPOCK) Q:POP
  1. D TRACE("Got Connection")
  1. U IO
  1. Q
  1. DATA ;Send data
  1. D TRACE("Send Data")
  1. D SDATA(INPUT,$G(TYPE,"MPI")) ;LJA
  1. Q
  1. ;
  1. GET ;Get responce
  1. D GDATA(OUTPUT)
  1. Q
  1. QUIT ;Shut down
  1. D CLOSE^%ZISTCP
  1. Q
  1. TRACE(S1) ;
  1. Q:0 N %,H
  1. I S1=-1 K ^TMP($J,"ZZXCSA") Q
  1. S H=$P($H,",",2),H=(H\3600)_":"_(H#3600\60)_":"_(H#60)_" "
  1. L +^TMP($J,"ZZXCSA"):1
  1. S %=$G(^TMP($J,"ZZXCSA",0))+1,^(0)=%,^(%)=H_XCSTRACE_S1
  1. L -^TMP($J,"ZZXCSA")
  1. Q
  1. SETUP ;EP - SET UP INFO
  1. S XCS("IP")=BOPIP,XCS("SOCK")=BOPOCK
  1. S (XCS("STAT"),XCSEXIT)=0,XCSTIME=30,XCSTRACE="C: "
  1. S XCSNT=$$NEWERR^%ZTER()
  1. D TRACE(-1),TRACE("Client Setup")
  1. Q
  1. GDATA(ROOT,STAT) ;EP - get Data
  1. N E,I,M
  1. ;
  1. ; changed read timeout to 2 from 5 dtg
  1. S BOPCHKA="" F U IO R RESTRNG#200:3 Q:RESTRNG=""&'$T D Q:BOPCHKA ;
  1. .; set quit flag if ascii 28 contained
  1. .I RESTRNG[$C(28) S BOPCHKA=1
  1. .;
  1. .;Strip Control Characters from END of received string
  1. .F Q:RESTRNG'?.E1C S RESTRNG=$E(RESTRNG,1,$L(RESTRNG)-1)
  1. .;
  1. .S BOPK=2
  1. MORE .S BOPTRNG=$P(RESTRNG,$C(11),BOPK)
  1. .Q:BOPTRNG']""
  1. .F BOPI=1:1 S BOPLINE=$P(BOPTRNG,$C(13),BOPI) Q:BOPLINE']""!(BOPLINE=$C(28)) D
  1. ..S I=$O(@ROOT@(":"),-1)+1,@ROOT@(I)=BOPLINE
  1. .S BOPK=BOPK+1
  1. .G MORE
  1. ;
  1. Q
  1. ;
  1. SDATA(ROOT,TYPE) ;EP - Send data from a source
  1. N X,Y,L,D
  1. S X=ROOT
  1. F S X=$Q(@X) Q:X']""!(X'[ROOT) D
  1. .U IO W @X,!
  1. ;
  1. D ENDCHARS
  1. Q
  1. ;
  1. ENDCHARS ; Add EOT ctrl characters, etc, below... LJA
  1. Q
  1. ;
  1. ; If end of transmission characters needed, add here...
  1. ;
  1. IP() ; Substitute IP ADDRESS...
  1. Q $P(^BOP(90355,1,0),U,17)
  1. ;
  1. SOCKET() ; Substitute SOCKET...
  1. Q $P(^BOP(90355,1,0),U,18)