home *** CD-ROM | disk | FTP | other *** search
- /*
- $VER: UnDMS.dopus5 1.1 (28.4.95)
- Written by Edmund Vermeulen. Ëíãçóçõçïíáaê Ã.Ç. Ëçôaèêíá. Ñäîäïû îïíçæáíãçñðþ
- aáñíëañçöäðéçè îíçðé òðñïíèðñá, éòãa ëíåìí ïaæãüüëüðçñûðþ.
- ARexx script for DOpus 5 to unpack a dms file with progress indication.
- Call as 'REXX:UnDMS.dopus5 {f} {Qp}'.
- */
-
- call addlib('rexxsupport.library',0,-30,0)
- options results
- lf = '0a'x /* Îäïäáíã ðñïíéç */
- parse arg '"' dmsfile '"' portname .
- address value portname
- cuthere = lastpos('/',dmsfile)
- if cuthere = 0 then
- cuthere = pos(':',dmsfile)
- dmsname = "'"substr(dmsfile,cuthere + 1)"'"
- devs = showlist('H',,' ')
- j = 1
- do i = 1 to WORDS(devs)
- word = WORD(devs,i)
- if left(word,2) = 'DF' | left(word,2) = 'SD' | left(word,3) = 'RAD' then
- do
- devs.j = word||':'
- j = j + 1
- end
- end
- lookfor = ""
- do i = 1 to j - 1
- if i > 1 then
- lookfor = lookfor||'|'
- lookfor = lookfor||devs.i
- end
- lookfor = lookfor||'|Íñëäìa'
- dopus request '"Éòãa ïaðéïúáañû aïôçá?" '||lookfor
- if rc = 0 then
- exit
- dest = devs.rc
- lister new
- handle = result
- lister set handle busy on
- lister set handle path dest
- lister set handle progress 80 'Ïaðîaéíáúáaý' dmsname'...'
- address command 'Run <>NIL: DMS <NIL: >PIPE:dmsout WRITE' dmsfile 'TO' dest 'NOTEXT'
- address command 'Status >T:ProcessNo COMMAND DMS'
- call open('temp','T:ProcessNo','r')
- process = readln('temp')
- close('temp')
- address command 'Delete >NIL: T:ProcessNo QUIET'
- nomessage = 1
- errorreport = ''
- buffer = ''
- call Open('dmsout','PIPE:dmsout','r') /* Áúôíã DMS çãäñ öäïäæ PIPE: */
- do until eof('dmsout')
- buffer = buffer||readch('dmsout',25) /* Öçñaäë îíïõçþëç îí 25 ðçëáíêíá */
- here = verify(buffer,'0a0d'x,'m') /* Ìíáaþ ðñïíéa? */
- if here > 0 then
- do
- line = left(buffer,here - 1) /* Íãìa õäêaþ ðñïíéa */
- if nomessage & left(line,7) = 'No Disk' then
- do
- lister set handle progress name 'Áðñaáûñä ãçðé á' dest
- nomessage=0
- end
- parse var line ' ' line
- buffer = substr(buffer,here+1)
- if pos('ERROR',upper(line))>0 then
- do
- errorreport = errorreport||lf||line
- say '07'x
- end
- if pos('unPacking',line) > 0 then
- do
- track = right(line,2)
- lister set handle progress count track + 1
- lister set handle progress name 'Track' track
- lister query handle abort
- if result then
- do
- address command 'Break' process 'C'
- lister set handle busy off
- lister set handle title 'Ïaðîaéíáéa íðñaìíáêäìa...'
- exit
- end
- end
- end
- end
- call close('dmsout')
- if errorreport ~== '' then
- dopus request '"Íøçàéa'||lf||errorreport'" OK'
- lister set handle busy off
- lister read handle dest force
- call remlib('rexxsupport.library')
-