home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Archiver / repck33.lha / Repack.rexx.BBS < prev    next >
Encoding:
File List  |  1995-12-01  |  15.5 KB  |  643 lines

  1. /*             Welcome, dumper!
  2. LHA-LZX V1.0-2.0 by Mat Bettinson of the Plot Hatching Factory '95
  3. LHA-LZX V3.0 and above by Andrea Vallinotto.
  4.  
  5. $VER: LZX Repacker V 3.3_C-net, by Andrea Vallinotto (5.10.95)
  6. © 1995 Nathan Johnes Software lavatories :->
  7.  
  8. ************ SPECIAL BBS VERSION FOR C-Net and other BBS systems **************
  9.  
  10. Since Jonathan Forbes' brilliant LZX came along and promptly blew LHA away,
  11. there's a need for a bulk converter. This is such a device.
  12.  
  13. You can execute this script with the following parameters: destination
  14. directory (any valid path name), temp directory (as above), efficiency
  15. (either 1, 2 or 3), BBS mode ('on' or any other string for 'off').
  16. If you wish, you can change the value of the LZX merging-group in the
  17. beginning of the program (see below!).
  18.  
  19. C-Net suggested string:
  20. 'rx repack.rexx <source-file-name> <temp-dir> 3 ON'
  21. On C-Net repack is useful if used in the 'transform' operation that occours just
  22. after the upload of a file (after the test). Keep in mind that no matter which
  23. format the file is, after the repacking you'll have a LZX archive.
  24.  
  25. BEWARE: the temp dir must be large enough to accommodate the largest extracted
  26. archive you're converting (including sub-archives, if present!).
  27.  
  28. You'll need:
  29. in your search path: for lha and lzh archives either Lha, Lhx or LZX registered;
  30.              for tar archives either Tar, Gnutar or Detar,
  31.              and unzip, unarj, unrar, hpack, shrink, xarc, zoo, arc,
  32.              gzip, LZX, Delete, Assign, Setdate, Filenote and Which.
  33.  
  34. Since this version, LZX version 1.21 or above is REQUIRED!
  35.  
  36. You can change the following value to suit you needs! It's the maximum group
  37. size that LZX can create. */
  38.  
  39. groupsize=2900
  40.  
  41. /* Don't modify nothing below this line: spaghetti code lies behind...
  42.         DON'T SAY YOU'VE NOT BEEN WARNED!! 
  43. (But what kind of code would you expect from an Italian, anyway ? :-)) ) */
  44.  
  45. options results
  46. options failat 9
  47. signal on break_c
  48. signal on halt
  49.  
  50. verstring='LZX Repacker version 3.3_C-Net'
  51. parse var verstring jf utilname blah ver .
  52. titlestring=left(utilname,6) ver
  53. copyleft='by Andrea Vallinotto of Nowhere software'
  54. lstring="#?.(LZH|LHA|ZIP|ARJ|RAR|SHR|XAR|HPK|ARC|ZOO|PAK|TAR|GZ|Z|TGZ)"
  55. logname='t:Repack.log'
  56. anofile='s:repack.ano'
  57. cr='0a'x
  58. bold='1b'x'[1m'
  59. normal='1b'x'[0m'
  60. under='1b'x'[4m'
  61.  
  62. setuplib("rexxsupport.library",0,-30,0)
  63. parse source . . . scriptname . .
  64. if ~exists(scriptname) then signal badinstall
  65. call checklzx
  66.  
  67. parse arg instring
  68.  
  69. hmq=length(instring)-length(compress(instring,'"'))
  70. select
  71.     when hmq // 2 then signal baddata
  72.     when hmq=0 then do
  73.             parse var instring Dir root mode bbsmode quiet .
  74.             signal init
  75.             end
  76.     otherwise nop
  77. end
  78.  
  79. a=0
  80. loop:
  81. instring=strip(instring,L)
  82. a=a+1
  83. select
  84.     when left(instring,1)='"' then do
  85.                 parse var instring '"' foo.a '"' instring
  86.                 signal loop
  87.                 end
  88.     when left(instring,1)="" then do
  89.                 foo.0=a-1
  90.                 signal complete
  91.                 end
  92.     otherwise         do
  93.                 parse var instring foo.a instring
  94.                 signal loop
  95.                 end
  96. end
  97. complete:
  98. if foo.0>0 then dir= foo.1
  99.         else dir=''
  100. if foo.0>1 then root= foo.2
  101.         else root=''
  102. if foo.0>2 then mode= foo.3
  103.         else mode=''
  104. if foo.0>3 then bbsmode= foo.4
  105.         else bbsmode=''
  106. if foo.0>4 then quiet= foo.5
  107.         else quiet=''
  108. init:
  109. bbsmode=upper(bbsmode)
  110. if lzxreg then maxeff=9
  111.         else maxeff=3
  112. if (mode > maxeff | mode < 0) then signal baddata
  113.  
  114. if quiet ='' then     do
  115.             say;say ' *** LHA-LZX repacker 1.0-2.0 by Mat Bettinson of the Plot Hatching Factory ***'
  116.             say '  *** 'verstring copyleft '***';say
  117.             end
  118.  
  119. oldstack=Pragma('S',50000)
  120. If right(root,1) ~= '/' & right(root,1) ~= ':' then root = root'/'
  121.  
  122. /* this procedure must be left even in SFM because it could be called while
  123. recursing on a single file (on dir/RTD) */
  124. bestia=whatis(dir)
  125. select
  126.     when bestia='' then signal baddata
  127.     when bestia='FILE' then sfm(dir)
  128.     otherwise sfm=0
  129. end
  130. call initlog('on directory' dir)
  131. If right(Dir,1) ~= '/' & right(Dir,1) ~= ':' then Dir = Dir'/'
  132. if ~(length(root)-length(compress(root,':'))) then root=pragma(d)'/'root
  133. tempdir=root'RTD'
  134. mkdir(tempdir)
  135. if ~(length(dir)-length(compress(dir,':'))) then 
  136.                         if right(pragma(d),1)=':' then dir=pragma(d)dir
  137.                                     else dir=pragma(d)'/'dir
  138.                         else
  139.                         if dir=':' then dir=pragma(d)
  140. if bbsmode='ON' then do
  141.             Address COMMAND 'List 'quote(dir)' P 'lstring' DATES TO 'quote(root'lha-lzx_infos.temp')' FILES LFORMAT "%d %t %c"'
  142.             Call Open(infos,root'lha-lzx_infos.temp','R')
  143.             end
  144. if exists(quiet'recursive_LZX_repack.temp') then    Call Open(list,quiet'recursive_LZX_repack.temp','R')
  145.                             else do
  146.                             Address COMMAND "List "quote(Dir)" P "lstring" TO "quote(root'LHA-LZX.temp')" FILES LFORMAT %n"
  147.                             Call Open(list,root'LHA-LZX.temp','R')
  148.                             end
  149. Call Pragma('D',tempdir)
  150. call Writelogoptions
  151.  
  152. /* Mainloop */
  153. BSave = 0
  154. mainloop:
  155. call initano
  156. DO forever
  157.     File = ReadLN(list)
  158.     IF EOF(list) then break
  159.     if bbsmode='ON' then do
  160.                 mix = ReadLN(infos)
  161.                 Datetime = subword(mix,1,2)
  162.                 Comment = quote(subword(mix,3))
  163.             end
  164.     NewFile = Left(File,lastpos('.',file))'LZX'
  165.     say 'Converting file: 'File
  166.     Midcleanup()
  167.     Lhasize=Size(Dir||File)
  168.     signal on failure
  169.     WriteLog('Trying to extract' file)
  170.     arctype=extract(Dir||File)
  171.     signal off failure
  172.     if arctype="???" then do
  173.                 Say "Cannot determine arc type... skipping!"
  174.                 WriteLog("Couldn't determine arc type of" File '...skipped!')
  175.                 iterate
  176.                 end
  177.     WriteLog('File' file 'extracted OK. Repacking...')
  178.     Address COMMAND 'List PAT 'lstring' FILES ALL LFORMAT %p%n >'quote(root'recursive_LZX_repack.temp')
  179.     if size(root'recursive_LZX_repack.temp') ~= 0 then do
  180.                             WriteLog('Started recursion for file' file)
  181.                             Close(log)
  182.                             Address REXX scriptname quote(tempdir) quote(tempdir) mode bbsmode quote(root)
  183.                             Call Open(log,logname,'A')
  184.                             end
  185.     Call fano
  186.     old=pragma(d,tempdir)
  187.     signal on failure
  188.     if lzxreg then lzxmode=mode' -Qf'
  189.             else lzxmode=mode
  190.     Address COMMAND 'LZX -r -e -a -M'groupsize' -'lzxmode' -F a 'quote(Dir||NewFile) '#?'
  191.     signal off failure
  192.     call pragma(d,old)
  193.     Lzxsize=Size(Dir||Newfile)
  194.         Diff = Lhasize - Lzxsize
  195.         Address COMMAND 'Delete >NIL: 'quote(Dir||File) 'FORCE'
  196.         if bbsmode='ON' then do
  197.                     Address COMMAND 'Setdate >NIL: 'quote(Dir||NewFile) Datetime
  198.                     Address COMMAND 'Filenote >NIL: 'quote(Dir||NewFile) Comment
  199.                     end
  200.                 else     Address COMMAND 'Filenote >NIL: 'quote(Dir||NewFile) quote('Repacked by' utilname ver 'from' arctype 'archive; gained:' diff 'bytes!')
  201.         say '* 'Diff' bytes saved on this 'arctype' archive!' ; say
  202.         WriteLog('Converted' file 'to' newfile ', gained' Diff 'bytes')
  203.     BSave = BSave + Diff
  204. END
  205. if bsave=0 then Bsave="Sorry, no"
  206. select
  207.     when quiet='ON' then WriteLog(verstring': finished repacking; total gain: 'Bsave 'bytes')
  208.     when quiet~=''    then WriteLog('Finished file recursion')
  209.     otherwise nop
  210. end
  211. Cleanup:
  212. Call PRAGMA('D',root)
  213. Call Close(list)
  214. Call Close(log)
  215. if bbsmode='ON' then Call Close(infos)
  216. Address COMMAND 'Delete >NIL: 'quote(tempdir)' ALL FORCE'
  217. call Delete(root'LHA-LZX.temp')
  218. call Delete(root'lha-lzx_infos.temp')
  219. call Delete(root'recursive_LZX_repack.temp')
  220. call pragma('s',oldstack)
  221. EXIT 0
  222.  
  223. sfm:
  224. /* Single file mode... */
  225. parse arg sngfile
  226. sfm=1
  227. /* deve dare fn e dir */
  228. fn=substr(sngfile,max(lastpos(':', sngfile),lastpos('/', sngfile)) +1)
  229. dir=left(arg(1),max(lastpos(':',sngfile),lastpos('/',sngfile)))
  230. if ~(length(dir)-length(compress(dir,':'))) then /* Nel dir non ci sono i : */
  231.                         if right(pragma(d),1)=':' then dir=pragma(d)dir /* Se siamo in root, dir=root||dir */
  232.                                     else dir=pragma(d)'/'dir /* Se non siamo in root, dir=cwd||/||dir */ 
  233.                         else
  234.                         if dir=':' then dir=pragma(d) /* Ci sono i : ma solo quelli! (siamo in root)*/
  235. call initlog('on file' dir||fn)
  236. call writelogoptions
  237. open(fake,root'lha-lzx.temp',W)
  238. writeln(fake,fn)
  239. close(fake)
  240. tempdir=root'RTD'
  241. Mkdir(tempdir)
  242. if bbsmode='ON' then do
  243.             Address COMMAND 'List 'quote(Dir||fn)' DATES FILES LFORMAT "%d %t %c" >'quote(root'lha-lzx_infos.temp')
  244.             Call Open(infos,root'lha-lzx_infos.temp','R')
  245.             end
  246. Call Pragma('D',tempdir)
  247. Call Open(list,root'LHA-LZX.temp','R')
  248. Bsave=0
  249. signal mainloop
  250.  
  251. midcleanup:
  252. Address COMMAND 'Delete >NIL: "'tempdir'/#?" ALL FORCE'
  253. return 1
  254.  
  255. badinstall:
  256. Say "Repack has been incorrectly installed! See the DOCS!"
  257. signal badexit
  258.  
  259. baddata:
  260. Say 'One or more of the parameters supplied on the command line is bogus!!!'
  261.  
  262. badexit:
  263. Say '"Computer, end program!"'
  264. exit 5
  265.  
  266. extract:
  267. parse arg fullname
  268. select
  269.     when checklha(fullname) then arc=extlha(quote(fullname))
  270.     when checkzip(fullname) then arc=extzip(quote(fullname))
  271.     when checkarj(fullname) then arc=extarj(quote(fullname))
  272.     when checkrar(fullname) then arc=extrar(quote(fullname))
  273.     when checkshr(fullname) then arc=extshr(quote(fullname))
  274.     when checkxar(fullname) then arc=extxar(quote(fullname))
  275.     when checkarc(fullname) then arc=extarc(quote(fullname))
  276.     when checkzoo(fullname) then arc=extzoo(quote(fullname))
  277.     when checkpak(fullname) then arc=extpak(quote(fullname))
  278.     when checktgz(fullname) then arc=exttgz(quote(fullname))
  279.     when checktar(fullname) then arc=exttar(quote(fullname))
  280.     when checkgzip(fullname) then arc=extgzip(quote(fullname))
  281.     when checkhpack(fullname) then arc=exthpack(quote(fullname))
  282.         otherwise arc="???"
  283. end
  284. return arc
  285.  
  286. extlha:
  287. lxc='lha -a -F -M x'
  288. if (lzxreg & lha_h_l(arg(1))~='02'x) then lxc='lzx -a -F x'
  289.                             else if pathexists('lhx') then lxc='lhx -a -F -M x'
  290. Address COMMAND lxc arg(1) '#?'
  291. return "LHA"
  292.  
  293. extzip: 
  294. Address COMMAND 'unzip -a -q 'arg(1)
  295. return "ZIP"
  296.  
  297. extarj: 
  298. Address COMMAND 'unarj x 'arg(1)
  299. return "ARJ"
  300.  
  301. extrar: 
  302. Address COMMAND 'unrar x 'arg(1)
  303. return "RAR"
  304.  
  305. extshr:
  306. Address COMMAND 'shrink x 'arg(1)
  307. return "Shrink"
  308.  
  309. extxar:
  310. address command 'xarc -x 'arg(1)
  311. return "XARC"
  312.  
  313. exthpack: 
  314. Address COMMAND 'hpack x -DA -R 'arg(1)
  315. return "Hpack"
  316.  
  317. extarc:
  318. Address COMMAND 'arc e 'arg(1)
  319. return "ARC"
  320.  
  321. extzoo:
  322. Address COMMAND 'zoo eq/ 'arg(1)
  323. return "ZOO"
  324.  
  325. exttgz:
  326. extgzip(arg(1))
  327. exttar(exitname)
  328. return "Tar-Gzipped"
  329.  
  330. extgzip:
  331. sss = Left(file,(lastpos('.',file)-1))
  332. exitname=quote(tempdir'/'||(right(sss,(length(sss)-lastpos('/',sss)))))
  333. Address COMMAND 'gzip >'exitname '-cdN 'arg(1)
  334. return "GZip"
  335.  
  336. exttar:
  337. if pathexists('tar') then txc='tar -a -x -f'
  338.             else if pathexists('gnutar') then txc='gnutar -p -x -f'
  339.                             else txc='detar'
  340. Address command txc arg(1)
  341. return 'TAR'
  342.  
  343. extpak:
  344. Address COMMAND arg(1)
  345. return "PAK"
  346.  
  347. checklha: 
  348. call open(check,arg(1),r)
  349. seek(check,2,B)
  350. if readch(check,3)=="-lh" then     do 
  351.                 close(check)
  352.                 return 1
  353.                 end
  354. close(check) 
  355. return 0
  356.  
  357. lha_h_l:
  358. call open(headercheck,(strip(arg(1),B,'"')),r)
  359. seek(headercheck,20,B)
  360. val=readch(headercheck,1)
  361. close(headercheck)
  362. return val
  363.  
  364. checkzip: 
  365. call open(check,arg(1),r)
  366. if readch(check,2)=="PK" then do
  367.                 close(check)
  368.                 return 1
  369.                 end
  370. close(check)
  371. return 0
  372.  
  373. checkarj: 
  374. call open(check,arg(1),r)
  375. if readch(check,2)=="`ê" then do
  376.                 close(check)
  377.                 return 1
  378.                 end
  379. close(check)
  380. return 0
  381.  
  382. checkrar: 
  383. call open(check,arg(1),r)
  384. if readch(check,3)=="Rar" then do
  385.                 close(check)
  386.                 return 1
  387.                 end
  388. close(check)
  389. return 0
  390.  
  391. checkshr:
  392. return (checkxar(arg(1)) & (right(arg(1),(length(arg(1))-lastpos('.',arg(1))))='shr'))
  393.  
  394. checkxar: 
  395. call open(check,arg(1),r)
  396. if readch(check,4)=="FORM" & right(readch(check,8),4)=="CDAF" then do
  397.                 close(check)
  398.                 return 1
  399.                 end
  400. close(check) 
  401. return 0
  402.  
  403. checktgz:
  404. call open(check,arg(1),r)
  405. if (right(namein,3)='tgz' & readch(check,3)=='1f8b08'x) then do
  406.                                 close(check)
  407.                                 return 1
  408.                                 end
  409. close(check)
  410. return 0
  411.  
  412.  
  413. checktar:
  414. open(ch,arg(1),r)
  415. call seek(ch,100) /* Moves up to the needed position*/
  416. /* Nooow... let's try with lots of triple checks including datatype() calls....*/
  417. select
  418.     when ~tlc(7) then signal notar
  419.     when ~tlc(7) then signal notar
  420.     when ~tlc(7) then signal notar
  421.     when ~tlc(30) then signal notar
  422. otherwise close(ch);return 1
  423. end
  424.  
  425. notar:
  426. close(ch);return 0
  427.  
  428. tlc:
  429. do arg(1)
  430. ts=readch(ch,1)
  431. if ~(ts==' ' | datatype(ts,N) ) then return 0
  432. end
  433. if readch(ch,1)=='0'x then return 1 /* The string is 0 terminated....*/
  434. return 0
  435.  
  436.  
  437. checkgzip: 
  438. call open(check,arg(1),r)
  439. if readch(check,3)=='1f8b08'x then do
  440.                 close(check)
  441.                 return 1
  442.                 end
  443. close(check)
  444. return 0
  445.  
  446. checkhpack: 
  447. call open(check,arg(1),r)
  448. if readch(check,4)=="HPAK" then do
  449.                 close(check)
  450.                 return 1
  451.                 end
  452. close(check)
  453. return 0
  454.  
  455. checkzoo: 
  456. call open(check,arg(1),r)
  457. if readch(check,4)=="ZOO " then do
  458.                 close(check)
  459.                 return 1
  460.                 end
  461. close(check)
  462. return 0
  463.  
  464. checkarc:
  465. call open(check,arg(1),r)
  466. if readch(check,2)=='1a08'x then do
  467.                 close(check)
  468.                 return 1
  469.                 end
  470. close(check)
  471. return 0
  472.  
  473. checkpak:
  474. call open(check,arg(1),r)
  475. call seek(check,248)
  476. if readch(check,11)=='dos.library' then do
  477.                 close(check)
  478.                 return 1
  479.                 end
  480. close(check)
  481. return 0
  482.  
  483. Size: procedure
  484. return word(statef(arg(1)),2)
  485.  
  486. fano:
  487. do id=1 to omit.0
  488. if length(omit.id)-length(compress(omit.id,'#?'))=0 then
  489.                             if ~exists(omit.id) then iterate
  490. address command 'delete >NIL:' quote(omit.id) 'FORCE'
  491. end
  492. do id=1 to add.0
  493. if ~exists(add.id) then iterate
  494. ADDRESS COMMAND 'Copy' add.id tempdir
  495. end
  496. return
  497.  
  498. initano:
  499. if ~exists(anofile) then do 
  500.                 add.0=0
  501.                 omit.0=0
  502.                 return
  503.             end
  504.  
  505. open(in,anofile,r)
  506. do until eof(in)
  507.     inline=readln(in)
  508.     if goodline(inline) then break
  509. end
  510. middle:
  511. select
  512.     when inline=='ADD:' then call addano
  513.     when inline=='OMIT:' then call omitano
  514. otherwise nop
  515. end
  516. if ~eof(in) then signal middle
  517. if ~datatype(add.0,'N') then add.0=0
  518. if ~datatype(omit.0,'N') then omit.0=0
  519. return
  520.  
  521. addano:
  522. count=0
  523. do forever
  524. inline=readln(in)
  525. if (eof(in) | inline=='OMIT:') then do
  526.                     add.0=count
  527.                     return
  528.                     end
  529. if goodline(inline) then do
  530.                 count=count+1;add.count=inline
  531.             end
  532. end
  533. return
  534.  
  535. omitano:
  536. count=0
  537. do forever
  538. inline=readln(in)
  539. if (eof(in) | inline=='ADD:') then do
  540.                     omit.0=count
  541.                     return
  542.                     end
  543. if goodline(inline) then do
  544.                     count=count+1;omit.count=inline
  545.             end
  546. end
  547. return
  548.  
  549.  
  550. goodline: procedure
  551. if (left(arg(1),1)==';' | arg(1)=='') then return 0
  552. return 1
  553.  
  554. failure:
  555. signal off failure
  556. if (RC=10 | RC=104) then do
  557.             Say bold"WARNING:"normal"Failed extracting "fullname" archive... skipping!"
  558.             midcleanup()
  559.             Writelog('Extraction error while unpacking' fullname 'archive... skipping!')
  560.             if sfm then exit(10)
  561.                 else signal mainloop
  562.             end
  563.     else do
  564.         Say bold"WARNING:"normal"Problem encountered while creating new LZX archive (not enough memory ?)."
  565.         Say "Keeping original "fullname" archive."
  566.         call delete(dir||Newfile)
  567.         midcleanup()
  568.         Writelog('Could not create new LZX archive; keeping' fullname 'archive.')
  569.         if sfm then exit(10)
  570.             else signal mainloop
  571.         end
  572.  
  573. setuplib: procedure
  574. parse arg library,v1,v2,v3
  575.  
  576. if(~show('l',library))then    do
  577.                 if(~addlib(library,v1,v2,v3))then    do
  578.                                     say "Could not open" library"! Aborting..."
  579.                                     exit 10
  580.                                     end
  581.                 end
  582. return 1
  583.  
  584. writelog:
  585. return WriteLN(log,date(e) time() arg(1))
  586.  
  587. initlog:
  588. om='W'
  589. if exists(logname) then om='A'
  590. open(log,logname,om)
  591. Writeln(log,cr)
  592. WriteLog('Started 'verstring arg(1))
  593. close(log)
  594. open(log,logname,'A')
  595. drop om;return
  596.  
  597. writelogoptions:
  598. return Writelog('Options: Efficency' mode', BBSmode:' bbsmode)
  599.  
  600. pathexists: procedure
  601. address command 'which >nil:' arg(1)
  602. if rc=5 then return 0
  603. return 1
  604.  
  605. whatis: procedure
  606. return word(statef(arg(1)),1)
  607.  
  608. checklzx:
  609. address command 'which >t:lzxfn lzx'
  610. if rc=5 then signal misslzx
  611. open(ln,'t:lzxfn',r)
  612. ref=readln(ln)
  613. close(ln)
  614. address command 'version >NIL:' quote(ref)
  615. drop ref;call delete('t:lzxfn')
  616. if rc>=5 then signal vererror
  617. lzxreg=exists('l:lzx.keyfile')
  618. return
  619.  
  620. misslzx:
  621. say "LZX is not in installed (or not in your search path)!"
  622. exit(205)
  623.  
  624. vererror:
  625. say "Repack requires LZX version 1.21 o greater to operate!!"
  626. exit(5)
  627.  
  628. mkdir: procedure
  629. return makedir(arg(1))
  630.  
  631. quote: procedure
  632. return '"'arg(1)'"'
  633.  
  634. halt:
  635. break_c:
  636. signal off break_c
  637. signal off halt
  638. signal off failure
  639. Say "Yo, man! You pressed Control-c! Stopping execution...."
  640. Writelog('User pressed Control-C, aborting....')
  641. call midcleanup()
  642. signal cleanup
  643.