home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Workbench / dosdrivers / CrossMAC103.lha / Patcher < prev    next >
Encoding:
Text File  |  1995-02-10  |  8.2 KB  |  300 lines

  1. ;Script to apply patches
  2. ;$VER: Patcher 5.07 (27.12.94)
  3. ;Copyright © 1992-1994 CONSULTRON.  All rights reserved
  4. ; Use of this script in commercial products is expressly forbidden without
  5. ; written permission.
  6. ;
  7. ; The program spatch is provided by SAS Institute.  They retain all copyrights
  8. ; to that program.  It is available for commercial distribution only to those
  9. ; users who have purchased their SAS C Compiler and are registered with them.
  10.  
  11. ;***************************************************************************
  12.  
  13. ;Copy a new file to the product disk
  14. ;Input: newfile (path and name of new file)
  15.  
  16. (procedure copynew
  17.     (    (if (not PatchOnly)
  18.             (    (if (getsize ("%ld/%s" wversion newfile) )
  19.                     (    (if (not DeleteOnly)
  20.                             (    (copyfiles
  21.                                     (source ("%ld/%s" wversion newfile) )
  22.                                     (dest (pathonly ("%s%s" prod newfile) ) )
  23.                                 )
  24.                             )
  25.                         )
  26.                     )
  27.                     (    (delete ("%s%s" prod newfile) ) )
  28.                 )
  29. ;                (if    (> wversion currentver )
  30. ;                    (set currentver wversion)
  31. ;                )
  32.             )
  33.         )
  34.     )
  35. )
  36.  
  37. ;***************************************************************************
  38.  
  39. ;Perform an spatch
  40. ;Input: file (path and file to patch)
  41.  
  42. (procedure patch
  43.     (    (if (and (not DeleteOnly) (not CopyOnly) )
  44.             (    (set patchfile ("%ld/%s" wversion file) )
  45.                 (set prodfile ("%s%s" prod file) )
  46.                 (set prodfile (substr prodfile 0 (- (strlen prodfile) 1 ) ) )
  47.                 (set tempdir "ram:")
  48.                 (set temp ("%s%s" tempdir (fileonly prodfile)))
  49.                 (if    (= 0 (run ("%s -o%s -p%s %s" spatch temp patchfile prodfile) ))
  50. ;                    (if    (> wversion currentver )
  51. ;                        (set currentver wversion)
  52. ;                    )
  53.                 )
  54.                 ;Replace original file with temp file
  55.                 (if (> (getsize temp) 10 )
  56.                     (    ;Clone protection bits
  57.                         (protect temp (protect patchfile) )
  58.                         (copyfiles
  59.                             (source temp)
  60.                             (dest (pathonly prodfile) )
  61.                             (newname (fileonly prodfile) )
  62.                         )
  63.                     )
  64.                 )
  65.                 ;Delete temporary file
  66.                 (delete temp)
  67.             )
  68.         )
  69.     )
  70. )
  71.  
  72.  
  73. ;Apply the spatch stuff
  74. ;Set DeleteOnly for delete phase
  75.  
  76. ;**************************************************************************
  77. (procedure DoPatch
  78.     (    (while (exists ("%ld" wversion) (noreq) )
  79.             (    (foreach ("%ld" wversion) "#?"
  80.                     (    ;(debug @each-name)
  81.                         (if (< @each-type 0)    ;check for file
  82.                             (    (if (= "@" (substr @each-name (- (strlen @each-name) 1 )))
  83.                                     (    ;Apply patches with spatch
  84.                                         (set file @each-name)
  85.                                         (patch)
  86.                                     )
  87.                                     (    ;Copy the file directly
  88.                                         (set newfile @each-name)
  89.                                         (copynew)
  90.                                     )
  91.                                 )
  92.                             )
  93.                             (    ;@each-name is a directory
  94.                                 (set dir @each-name)
  95.                                 (foreach ("%ld/%s" wversion dir) "#?"
  96.                                     (    (if (< @each-type 0)    ;check for file
  97.                                             (    (if (= "@" (substr @each-name (- (strlen @each-name) 1 )))
  98.                                                     (    ;Apply patches with spatch
  99.                                                         (set file (tackon dir @each-name))
  100.                                                         (patch)
  101.                                                     )
  102.                                                     (    ;Copy the file directly
  103.                                                         (set newfile (tackon dir @each-name))
  104.                                                         (copynew)
  105.                                                     )
  106.                                                 )
  107.                                             )
  108.                                             (    ;@each-name is a directory
  109.                                                 (set dir2 (tackon dir @each-name))
  110.                                                 (foreach ("%ld/%s" wversion dir2) "#?"
  111.                                                     (    (if (< @each-type 0)    ;check for file 
  112.                                                             (    (if (= "@" (substr @each-name (- (strlen @each-name) 1)))
  113.                                                                     (    ;Apply patches with spatch
  114.                                                                         (set file (tackon dir2 @each-name))
  115.                                                                         (patch)
  116.                                                                     )
  117.                                                                     (    ;Copy the file directly
  118.                                                                         (set newfile (tackon dir2 @each-name))
  119.                                                                         (copynew)
  120.                                                                     )
  121.                                                                 )
  122.                                                             )
  123.                                                         )
  124.                                                     )
  125.                                                 )
  126.                                             )
  127.                                         )
  128.                                     )
  129.                                 )
  130.                             )
  131.                         )
  132.                     )
  133.                 )
  134.  
  135.                 (set wversion (+ wversion 1) )
  136.             )
  137.         )
  138.     )
  139. )
  140.  
  141.  
  142. ;***************************************************************************
  143. ;Preserve CIN
  144. (procedure preserveCIN
  145. ; Save the CIN to a CIN file on the disk
  146.     (run ("serfile %s >%s" (tackon prod "READ.ME") (tackon prod "CIN")))
  147. ; set the CIN temporarily to XXXX-YYYY
  148.     (run ("serfile %s CIN: %s" (tackon prod "READ.ME") "XXXX-YYYY"))
  149.     (set CINsaved 1)
  150. )
  151.  
  152. ;***************************************************************************
  153. ;Restore Old State
  154. (procedure restoreCIN
  155. ;restore CrossMAC: assignment
  156.     (if    (= newassign 1)
  157.         (    (makeassign "CrossMAC" "CCrossMAC:")
  158.             (makeassign "CCrossMAC")
  159.         )
  160.     )
  161. ; reset the CIN back to the customer's CIN
  162.     (if (= CINsaved 1)
  163.         (run ("serfile %s CIN: `type %s`" (tackon prod "READ.ME") (tackon prod "CIN")))
  164.     )
  165. )
  166.  
  167. ;***************************************************************************
  168. ;***************************** MAIN ****************************************
  169. ;***************************************************************************
  170.  
  171. ;This can be replaced by checks for "copy of CrossMAC" etc.
  172. (set prod "CrossMAC:")
  173.  
  174.  
  175. ;Starting version number
  176. (set startversion (getversion (tackon prod "Read.ME")))
  177. (set ver (/ startversion 65536))
  178. (set startversion ("%ld" (+ (* 100 ver) (- startversion (* ver 65536)))) )
  179.  
  180. ;(exit (quiet))
  181.  
  182. (set @abort-button "Abort Update")
  183. (onerror (restoreCIN) )
  184.  
  185. ;Check if the CrossMAC: being referenced is the assignment or the disk
  186. (askdisk 
  187.     (prompt ("Please insert %s in any drive" prod))
  188.     (help "To update, you must use a copy of the latest release of "
  189.             "the CrossMAC product disk you have.  "
  190.             "In addition, the volume MUST BE named `CrossMAC'.  "
  191.             "If the disk you have is labeled `Copy_of_CrossMAC', "
  192.             "relabel it using the Workbench menu selection `Icons/Rename...'.")
  193.     (dest "CrossMAC")
  194. )
  195.  
  196. (if (<> "CrossMAC:" (expandpath prod))
  197.     (    (makeassign "CCrossMAC" prod)    ;temp reassign CrossMAC: assignment
  198.         (set newassign 1)
  199.         (makeassign "CrossMAC")        ;clear the CrossMAC: assignment
  200.     )
  201. )
  202.  
  203. ;Force user level to 1 or 2. This is unfortuntely required because otherwise
  204. ;we can't present a menu of choices to the user.
  205. (if (= @user-level 0) 
  206.     (
  207.         (user 1)
  208.         (set @user-level 0)
  209.     )
  210. )
  211.  
  212. ; Test to see if the first patch directory exists.  If not, it may be that the
  213. ; archive was not unarc'd with full path names preserved.
  214. (if (not (= 2 (exists  startversion  (noreq) ) ) )
  215.     (    (message "Could not find directory '" startversion "'.  Make sure you unarc "
  216.             "the archive with the option to preserve directories.\n"
  217.             "[Example: LHA x -x <archivename>]\n"
  218.             "OR\n"
  219.             "This archive of patch files does not update the release "
  220.             "you currently have."
  221.         )
  222.         (exit (quiet))
  223.     )
  224. )
  225.  
  226. (set currentver startversion)
  227.  
  228. ; Put diag/spatch into ram:.  Since this program is to be used quite frequently
  229. (set spatch "ram:SPatch")
  230. (set spatchsrc (tackon prod "diag/SPatch"))
  231. (if (exists "SPatch" (noreq) )    ; a new SPatch exists in the current directory. Use it instead
  232.     (    (delete (tackon prod "diag/lpatch"))    ;delete the old lpatch
  233.         (copyfiles (source "SPatch") (dest (pathonly spatchsrc)))
  234.     )
  235. )
  236.  
  237. (copyfiles 
  238.     (source "CrossMAC:diag/SPatch")
  239.     (dest (pathonly spatch) )
  240. )
  241.  
  242. (preserveCIN)
  243.  
  244. (set wversion "S")
  245.  
  246. ;Delete phase
  247. (set wversion (+ 1 startversion))
  248. (set DeleteOnly 1)
  249. (set PatchOnly 0)
  250. (set CopyOnly 0)
  251. (DoPatch)
  252.  
  253. ;Patch phase
  254. (set wversion (+ 1 startversion))
  255. (set DeleteOnly 0)
  256. (set PatchOnly 1)
  257. (set CopyOnly 0)
  258. (DoPatch)
  259.  
  260. ;Copy phase
  261. (set wversion (+ 1 startversion))
  262. (set DeleteOnly 0)
  263. (set PatchOnly 0)
  264. (set CopyOnly 1)
  265. (DoPatch)
  266.  
  267. (set wversion (+ -1 wversion))
  268.  
  269. (set currentver (getversion (tackon prod "Read.ME")))
  270. (set ver (/ currentver 65536))
  271. (set currentver ("%ld" (+ (* 100 ver) (- currentver (* ver 65536)))) )
  272.  
  273. (set wversion ("%ld" wversion))
  274. (message startversion " " currentver " " wversion)
  275.  
  276. (if    (= startversion wversion)
  277.     (    (message ("Your CrossMAC disk is already at release %s.%s" (substr wversion 0 1) (substr wversion 1)))
  278.     )
  279.     (if    (> startversion wversion)
  280.         (    (message ("Your CrossMAC disk is already updated past the releases in this archive"))
  281.         )
  282.         (if    (< currentver wversion)
  283.             (    (message ("Your CrossMAC disk COULD NOT be updated to release %s.%s\n" (substr wversion 0 1) (substr wversion 1))
  284.                         ("It appears to be at release %s.%s\n" (substr currentver 0 1) (substr currentver 1))
  285.                         "Make sure you patch a GOOD copy of the CrossMAC product disk ONLY!"
  286.                 )
  287.             )
  288.             (if    (= currentver wversion)
  289.                 (    (message ("Your CrossMAC disk has been updated to release %s.%s" (substr currentver 0 1) (substr currentver 1))
  290.                     )
  291.                 )
  292.             )
  293.         )
  294.     )
  295. )
  296.  
  297. (restoreCIN)
  298.  
  299. (exit (quiet))
  300.