home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume15 / arc5.21 / part03 < prev    next >
Text File  |  1988-06-30  |  61KB  |  2,144 lines

  1. Subject:  v15i079:  ARC (PC compression program), v5.21, Part03/05
  2. Newsgroups: comp.sources.unix
  3. Sender: sources
  4. Approved: rsalz@uunet.UU.NET
  5.  
  6. Submitted-by: hyc@math.lsa.umich.edu
  7. Posting-number: Volume 15, Issue 79
  8. Archive-name: arc5.21/part03
  9.  
  10. #--------------------------------CUT HERE-------------------------------------
  11. #! /bin/sh
  12. #
  13. # This is a shell archive.  Save this into a file, edit it
  14. # and delete all lines above this comment.  Then give this
  15. # file to sh by executing the command "sh file".  The files
  16. # will be extracted into the current directory owned by
  17. # you with default permissions.
  18. #
  19. # The files contained herein are:
  20. #
  21. # -rw-r--r--  1 hyc         11146 Jun 17 17:03 arc.c
  22. # -rw-r--r--  1 hyc          3318 Jun  1 19:59 arc.h
  23. # -rw-r--r--  1 hyc          9286 Jun 13 00:31 arcadd.c
  24. # -rw-r--r--  1 hyc          1204 Jun  1 15:16 arccode.c
  25. # -rw-r--r--  1 hyc          3396 Jun  1 19:18 arccvt.c
  26. # -rw-r--r--  1 hyc          2070 Jun 13 04:26 arcdata.c
  27. # -rw-r--r--  1 hyc          2055 Apr 19 01:39 arcdel.c
  28. # -rw-r--r--  1 hyc          5008 Jun 13 14:08 arcdos.c
  29. # -rw-r--r--  1 hyc          4898 Jun 13 14:06 arcext.c
  30. # -rw-r--r--  1 hyc          7418 Jun 13 13:48 arcio.c
  31. # -rw-r--r--  1 hyc          4418 Jun  1 18:06 arclst.c
  32. #
  33. echo 'x - arc.c'
  34. if test -f arc.c; then echo 'shar: not overwriting arc.c'; else
  35. sed 's/^X//' << '________This_Is_The_END________' > arc.c
  36. X/*
  37. X * $Header: arc.c,v 1.10 88/06/17 15:22:48 hyc Locked $
  38. X */
  39. X
  40. X/*  ARC - Archive utility
  41. X  
  42. X    Version 5.21, created on 04/22/87 at 15:05:21
  43. X  
  44. X(C) COPYRIGHT 1985-87 by System Enhancement Associates; ALL RIGHTS RESERVED
  45. X  
  46. X    By:     Thom Henderson
  47. X  
  48. X    Description:
  49. X     This program is a general archive utility, and is used to maintain
  50. X     an archive of files.  An "archive" is a single file that combines
  51. X     many files, reducing storage space and allowing multiple files to
  52. X     be handled as one.
  53. X  
  54. X    Instructions:
  55. X     Run this program with no arguments for complete instructions.
  56. X  
  57. X    Programming notes:
  58. X     ARC Version 2 differs from version 1 in that archive entries
  59. X     are automatically compressed when they are added to the archive,
  60. X     making a separate compression step unecessary.     The nature of the
  61. X     compression is indicated by the header version number placed in
  62. X     each archive entry, as follows:
  63. X  
  64. X     1 = Old style, no compression
  65. X     2 = New style, no compression
  66. X     3 = Compression of repeated characters only
  67. X     4 = Compression of repeated characters plus Huffman SQueezing
  68. X     5 = Lempel-Zev packing of repeated strings (old style)
  69. X     6 = Lempel-Zev packing of repeated strings (new style)
  70. X     7 = Lempel-Zev Williams packing with improved hash function
  71. X     8 = Dynamic Lempel-Zev packing with adaptive reset
  72. X     9 = Dynamic Lempel-Zev packing, larger hash table
  73. X  
  74. X     Type 5, Lempel-Zev packing, was added as of version 4.0
  75. X  
  76. X     Type 6 is Lempel-Zev packing where runs of repeated characters
  77. X     have been collapsed, and was added as of version 4.1
  78. X  
  79. X     Type 7 is a variation of Lempel-Zev using a different hash
  80. X     function which yields speed improvements of 20-25%, and was
  81. X     added as of version 4.6
  82. X  
  83. X     Type 8 is a different implementation of Lempel-Zev, using a
  84. X     variable code size and an adaptive block reset, and was added
  85. X     as of version 5.0
  86. X  
  87. X     Type 9 is a slight modification of type 8, first used by Phil
  88. X     Katz in his PKARC utilites. The primary difference is the use
  89. X     of a hash table twice as large as for type 8, and that this
  90. X     algorithm called Squashing, doesn't perform run-length encoding
  91. X     on the input data.
  92. X  
  93. X     Verion 4.3 introduced a temporary file for holding the result
  94. X     of the first crunch pass, thus speeding up crunching.
  95. X  
  96. X     Version 4.4 introduced the ARCTEMP environment string, so that
  97. X     the temporary crunch file may be placed on a ramdisk.    Also
  98. X     added was the distinction bewteen Adding a file in all cases,
  99. X     and Updating a file only if the disk file is newer than the
  100. X     corresponding archive entry.
  101. X  
  102. X     The compression method to use is determined when the file is
  103. X     added, based on whichever method yields the smallest result.
  104. X  
  105. X    Language:
  106. X     Computer Innovations Optimizing C86
  107. X*/
  108. X#include <stdio.h>
  109. X#include "arc.h"
  110. X
  111. Xint        strlen();
  112. Xvoid        addarc(), delarc(), extarc(), lstarc(), tstarc(), cvtarc(), runarc();
  113. Xvoid        abort();
  114. X#if    MTS
  115. Xvoid        etoa();
  116. X#endif
  117. X#if    GEMDOS
  118. Xlong        _stksize = 24576;
  119. X#endif
  120. Xchar        *strcpy(), *strcat();
  121. X
  122. Xstatic char   **lst;        /* files list */
  123. Xstatic int    lnum;        /* length of files list */
  124. X
  125. Xmain(num, arg)            /* system entry point */
  126. X    int        num;    /* number of arguments */
  127. X    char           *arg[];    /* pointers to arguments */
  128. X{
  129. X    char        opt = 0;/* selected action */
  130. X    char           *a;    /* option pointer */
  131. X    char           *makefnam();    /* filename fixup routine */
  132. X    void        upper();/* case conversion routine */
  133. X    char           *index();/* string index utility */
  134. X    char           *envfind();    /* environment searcher */
  135. X    int        n;    /* index */
  136. X    char           *arctemp2, *calloc(), *mktemp();
  137. X#if    GEMDOS
  138. X    void        exitpause();
  139. X#endif
  140. X#if    MTS
  141. X    fortran void    guinfo();
  142. X    char        gotinf[4];
  143. X#endif
  144. X
  145. X    if (num < 3) {
  146. X        printf("ARC - Archive utility, Version 5.21, created on 04/22/87 at 15:05:21\n");
  147. X/*        printf("(C) COPYRIGHT 1985,86,87 by System Enhancement Associates;");
  148. X        printf(" ALL RIGHTS RESERVED\n\n");
  149. X        printf("Please refer all inquiries to:\n\n");
  150. X        printf("       System Enhancement Associates\n");
  151. X        printf("       21 New Street, Wayne NJ 07470\n\n");
  152. X        printf("You may copy and distribute this program freely,");
  153. X        printf(" provided that:\n");
  154. X        printf("    1)     No fee is charged for such copying and");
  155. X        printf(" distribution, and\n");
  156. X        printf("    2)     It is distributed ONLY in its original,");
  157. X        printf(" unmodified state.\n\n");
  158. X        printf("If you like this program, and find it of use, then your");
  159. X        printf(" contribution will\n");
  160. X        printf("be appreciated.     You may not use this product in a");
  161. X        printf(" commercial environment\n");
  162. X        printf("or a governmental organization without paying a license");
  163. X        printf(" fee of $35.  Site\n");
  164. X        printf("licenses and commercial distribution licenses are");
  165. X        printf(" available.  A program\n");
  166. X        printf("disk and printed documentation are available for $50.\n");
  167. X        printf("\nIf you fail to abide by the terms of this license, ");
  168. X        printf(" then your conscience\n");
  169. X        printf("will haunt you for the rest of your life.\n\n"); */
  170. X#if    MSDOS
  171. X        printf("Usage: ARC {amufdxerplvtc}[bswnoq][g<password>]");
  172. X#endif
  173. X#if    GEMDOS
  174. X        printf("Usage: ARC {amufdxerplvtc}[bhswnoq][g<password>]");
  175. X#endif
  176. X#if    UNIX
  177. X        printf("Usage: arc {amufdxerplvtc}[biswnoq][g<password>]");
  178. X#endif
  179. X#if    MTS
  180. X        printf("Parameters: {amufdxeplvtc}[biswnoq][g<password>]");
  181. X#endif
  182. X        printf(" <archive> [<filename> . . .]\n");
  183. X        printf("Where:     a   = add files to archive\n");
  184. X        printf("     m   = move files to archive\n");
  185. X        printf("     u   = update files in archive\n");
  186. X        printf("     f   = freshen files in archive\n");
  187. X        printf("     d   = delete files from archive\n");
  188. X        printf("     x,e = extract files from archive\n");
  189. X#if    !MTS
  190. X        printf("     r   = run files from archive\n");
  191. X#endif
  192. X        printf("     p   = copy files from archive to");
  193. X        printf(" standard output\n");
  194. X        printf("     l   = list files in archive\n");
  195. X        printf("     v   = verbose listing of files in archive\n");
  196. X        printf("     t   = test archive integrity\n");
  197. X        printf("     c   = convert entry to new packing method\n");
  198. X        printf("     b   = retain backup copy of archive\n");
  199. X#if    GEMDOS
  200. X        printf("     h   = hold screen after finishing\n");
  201. X#endif
  202. X#if    MTS
  203. X        printf("     i   = suppress ASCII/EBCDIC translation\n");
  204. X#endif
  205. X#if    UNIX
  206. X        printf("     i   = suppress image mode (translate EOL)\n");
  207. X#endif
  208. X        printf("     s   = suppress compression (store only)\n");
  209. X        printf("     w   = suppress warning messages\n");
  210. X        printf("     n   = suppress notes and comments\n");
  211. X        printf("     o   = overwrite existing files when");
  212. X        printf(" extracting\n");
  213. X        printf("     q   = squash instead of crunching\n");
  214. X        printf("     g   = Encrypt/decrypt archive entry\n");
  215. X        printf("\nAdapted from MSDOS by Howard Chu\n");
  216. X        /*
  217. X         * printf("\nPlease refer to the program documentation for");
  218. X         * printf(" complete instructions.\n"); 
  219. X         */
  220. X#if    GEMDOS
  221. X        exitpause();
  222. X#endif
  223. X        return 1;
  224. X    }
  225. X    /* see where temp files go */
  226. X#if    !MTS
  227. X    arctemp = calloc(1, STRLEN);
  228. X    if (!(arctemp2 = envfind("ARCTEMP")))
  229. X        arctemp2 = envfind("TMPDIR");
  230. X    if (arctemp2) {
  231. X        strcpy(arctemp, arctemp2);
  232. X        n = strlen(arctemp);
  233. X        if (arctemp[n - 1] != CUTOFF)
  234. X            arctemp[n] = CUTOFF;
  235. X    }
  236. X#if    !MSDOS
  237. X    strcat(arctemp, mktemp("AXXXXXX"));
  238. X#else
  239. X    strcat(arctemp, "$ARCTEMP");
  240. X#endif
  241. X#else
  242. X    guinfo("SHFSEP    ", gotinf);
  243. X    sepchr[0] = gotinf[0];
  244. X    guinfo("SCRFCHAR", gotinf);
  245. X    tmpchr[0] = gotinf[0];
  246. X    arctemp = "-$$$";
  247. X    arctemp[0] = tmpchr[0];
  248. X#endif
  249. X
  250. X#if    !UNIX
  251. X    /* avoid any case problems with arguments */
  252. X
  253. X    for (n = 1; n < num; n++)    /* for each argument */
  254. X        upper(arg[n]);    /* convert it to uppercase */
  255. X#else
  256. X    /* avoid case problems with command options */
  257. X    upper(arg[1]);        /* convert to uppercase */
  258. X#endif
  259. X
  260. X    /* create archive names, supplying defaults */
  261. X    makefnam(arg[2], ".arc", arcname);
  262. X    /* makefnam(".$$$",arcname,newname); */
  263. X    sprintf(newname, "%s.arc", arctemp);
  264. X    makefnam(".BAK", arcname, bakname);
  265. X
  266. X    /* now scan the command and see what we are to do */
  267. X
  268. X    for (a = arg[1]; *a; a++) {    /* scan the option flags */
  269. X#if    !MTS
  270. X        if (index("AMUFDXEPLVTCR", *a)) {    /* if a known command */
  271. X#else
  272. X        if (index("AMUFDXEPLVTC", *a)) {
  273. X#endif
  274. X            if (opt)/* do we have one yet? */
  275. X                abort("Cannot mix %c and %c", opt, *a);
  276. X            opt = *a;    /* else remember it */
  277. X        } else if (*a == 'B')    /* retain backup copy */
  278. X            keepbak = 1;
  279. X
  280. X        else if (*a == 'W')    /* suppress warnings */
  281. X            warn = 0;
  282. X#if    !DOS
  283. X        else if (*a == 'I')    /* image mode, no ASCII/EBCDIC x-late */
  284. X            image = !image;
  285. X#endif
  286. X#if    GEMDOS
  287. X        else if (*a == 'H')    /* pause before exit */
  288. X            hold = 1;
  289. X#endif
  290. X
  291. X        else if (*a == 'N')    /* suppress notes and comments */
  292. X            note = 0;
  293. X
  294. X        else if (*a == 'O')    /* overwrite file on extract */
  295. X            overlay = 1;
  296. X
  297. X        else if (*a == 'G') {    /* garble */
  298. X            password = a + 1;
  299. X            while (*a)
  300. X                a++;
  301. X            a--;
  302. X#if    MTS
  303. X            etoa(password, strlen(password));
  304. X#endif
  305. X        } else if (*a == 'S')    /* storage kludge */
  306. X            nocomp = 1;
  307. X
  308. X        else if (*a == 'K')    /* special kludge */
  309. X            kludge = 1;
  310. X
  311. X        else if (*a == 'Q')    /* use squashing */
  312. X            dosquash = 1;
  313. X
  314. X        else if (*a == '-' || *a == '/')    /* UNIX and PC-DOS
  315. X                             * option markers */
  316. X            ;
  317. X
  318. X        else
  319. X            abort("%c is an unknown command", *a);
  320. X    }
  321. X
  322. X    if (!opt)
  323. X        abort("I have nothing to do!");
  324. X
  325. X    /* get the files list set up */
  326. X
  327. X    lnum = num - 3;        /* initial length of list */
  328. X    lst = (char **) calloc((lnum==0) ? 1:lnum,
  329. X                 sizeof(char *));    /* initial list */
  330. X    for (n = 3; n < num; n++)
  331. X        lst[n - 3] = arg[n];
  332. X
  333. X    for (n = 0; n < lnum;) {/* expand indirect references */
  334. X        if (*lst[n] == '@')
  335. X            expandlst(n);
  336. X        else
  337. X            n++;
  338. X    }
  339. X
  340. X    /* act on whatever action command was given */
  341. X
  342. X    switch (opt) {        /* action depends on command */
  343. X    case 'A':        /* Add */
  344. X    case 'M':        /* Move */
  345. X    case 'U':        /* Update */
  346. X    case 'F':        /* Freshen */
  347. X        addarc(lnum, lst, (opt == 'M'), (opt == 'U'), (opt == 'F'));
  348. X        break;
  349. X
  350. X    case 'D':        /* Delete */
  351. X        delarc(lnum, lst);
  352. X        break;
  353. X
  354. X    case 'E':        /* Extract */
  355. X    case 'X':        /* eXtract */
  356. X    case 'P':        /* Print */
  357. X        extarc(lnum, lst, (opt == 'P'));
  358. X        break;
  359. X
  360. X    case 'V':        /* Verbose list */
  361. X        bose = 1;
  362. X    case 'L':        /* List */
  363. X        lstarc(lnum, lst);
  364. X        break;
  365. X
  366. X    case 'T':        /* Test */
  367. X        tstarc();
  368. X        break;
  369. X
  370. X    case 'C':        /* Convert */
  371. X        cvtarc(lnum, lst);
  372. X        break;
  373. X#if    !MTS
  374. X    case 'R':        /* Run */
  375. X        runarc(lnum, lst);
  376. X        break;
  377. X#endif
  378. X    default:
  379. X        abort("I don't know how to do %c yet!", opt);
  380. X    }
  381. X#if    GEMDOS
  382. X    if (hold)
  383. X        exitpause();
  384. X#endif
  385. X    return nerrs;
  386. X}
  387. Xstatic
  388. Xexpandlst(n)            /* expand an indirect reference */
  389. X    int        n;    /* number of entry to expand */
  390. X{
  391. X    FILE           *lf, *fopen();    /* list file, opener */
  392. X    char           *malloc(), *realloc();    /* memory managers */
  393. X    char        buf[100];    /* input buffer */
  394. X    int        x;    /* index */
  395. X    char           *p = lst[n] + 1; /* filename pointer */
  396. X
  397. X    if (*p) {        /* use name if one was given */
  398. X        makefnam(p, ".CMD", buf);
  399. X        if (!(lf = fopen(buf, "r")))
  400. X            abort("Cannot read list of files in %s", buf);
  401. X    } else
  402. X        lf = stdin;    /* else use standard input */
  403. X
  404. X    for (x = n + 1; x < lnum; x++)    /* drop reference from the list */
  405. X        lst[x - 1] = lst[x];
  406. X    lnum--;
  407. X
  408. X    while (fscanf(lf, "%99s", buf) > 0) {    /* read in the list */
  409. X        if (!(lst =(char **)realloc(lst, (lnum + 1) * sizeof(char *))))
  410. X            abort("too many file references");
  411. X
  412. X        lst[lnum] = malloc(strlen(buf) + 1);
  413. X        strcpy(lst[lnum], buf); /* save the name */
  414. X        lnum++;
  415. X    }
  416. X
  417. X    if (lf != stdin)    /* avoid closing standard input */
  418. X        fclose(lf);
  419. X}
  420. ________This_Is_The_END________
  421. if test `wc -c < arc.c` -ne    11146; then
  422.     echo 'shar: arc.c was damaged during transit (should have been    11146 bytes)'
  423. fi
  424. fi        ; : end of overwriting check
  425. echo 'x - arc.h'
  426. if test -f arc.h; then echo 'shar: not overwriting arc.h'; else
  427. sed 's/^X//' << '________This_Is_The_END________' > arc.h
  428. X/*
  429. X * $Header: arc.h,v 1.7 88/06/01 17:51:06 hyc Locked $
  430. X */
  431. X
  432. X#undef    MSDOS
  433. X#undef    GEMDOS        /* This amusing garbage is to get all my */
  434. X#undef    DOS        /* define's past some compilers, which */
  435. X#undef    BSD        /* apparently define some of these themselves */
  436. X#undef    SYSV
  437. X#undef    UNIX
  438. X#undef    MTS
  439. X
  440. X#define    MSDOS    0        /* MSDOS machine */
  441. X#define    GEMDOS    0        /* Atari, GEMDOS */
  442. X#define    BSD    1        /* BSD4.2 or 4.3 */
  443. X#define    SYSV    0        /* Also uses BSD */
  444. X#define    MTS    0        /* MTS or 370(?) */
  445. X
  446. X/*
  447. X * Assumptions:
  448. X * char = 8 bits
  449. X * short = 16 bits
  450. X * long = 32 bits
  451. X * int >= 16 bits
  452. X */
  453. X
  454. X#if    MSDOS || GEMDOS
  455. X#define    DOS    1
  456. X#define    CUTOFF    '\\'
  457. X#endif
  458. X
  459. X#if    !MSDOS
  460. X#define    envfind    getenv
  461. X#define    setmem(a, b, c)    memset(a, c, b)
  462. X#endif
  463. X
  464. X#if    BSD || SYSV
  465. X#define    UNIX    1
  466. X#define    CUTOFF    '/'
  467. X#include <ctype.h>
  468. X#endif
  469. X
  470. X#if    MTS
  471. X#define rindex strrchr
  472. X#define index strchr
  473. X#undef  USEGFINFO        /* define this to use GFINFO for directory */
  474. X#define USECATSCAN        /* scanning, else use CATSCAN/FILEINFO... */
  475. X#define    CUTOFF    sepchr[0]
  476. X#endif
  477. X
  478. X/*  ARC - Archive utility - ARC Header
  479. X  
  480. X    Version 2.17, created on 04/22/87 at 13:09:43
  481. X  
  482. X(C) COPYRIGHT 1985,86 by System Enhancement Associates; ALL RIGHTS RESERVED
  483. X  
  484. X    By:     Thom Henderson
  485. X  
  486. X    Description: 
  487. X     This is the header file for the ARC archive utility.  It defines
  488. X     global parameters and the references to the external data.
  489. X  
  490. X  
  491. X    Language:
  492. X     Computer Innovations Optimizing C86
  493. X*/
  494. X
  495. X#define ARCMARK 26        /* special archive marker        */
  496. X#define ARCVER 9        /* archive header version code   */
  497. X#define STRLEN 100        /* system standard string length */
  498. X#define FNLEN 13        /* file name length              */
  499. X#define MAXARG 25        /* maximum number of arguments   */
  500. X
  501. X#ifndef DONT_DEFINE        /* Defined by arcdata.c */
  502. X#include "arcs.h"
  503. X
  504. Xextern int      keepbak;    /* true if saving the old archive */
  505. X#if    !DOS
  506. Xextern int      image;        /* true to suppress CRLF/LF x-late */
  507. X#endif
  508. X#if    MTS
  509. Xextern char     sepchr[2];    /* Shared file separator, default = ':' */
  510. Xextern char     tmpchr[2];    /* Temporary file prefix, default = '-' */
  511. X#endif
  512. X#if    GEMDOS
  513. Xextern int      hold;        /* hold screen before exiting */
  514. X#endif
  515. Xextern int      warn;        /* true to print warnings */
  516. Xextern int      note;        /* true to print comments */
  517. Xextern int      bose;        /* true to be verbose */
  518. Xextern int      nocomp;        /* true to suppress compression */
  519. Xextern int      overlay;    /* true to overlay on extract */
  520. Xextern int      kludge;        /* kludge flag */
  521. Xextern char    *arctemp;    /* arc temp file prefix */
  522. Xextern char    *password;    /* encryption password pointer */
  523. Xextern int      nerrs;        /* number of errors encountered */
  524. Xextern int      changing;    /* true if archive being modified */
  525. X
  526. Xextern char     hdrver;        /* header version */
  527. X
  528. Xextern FILE    *arc;        /* the old archive */
  529. Xextern FILE    *new;        /* the new archive */
  530. Xextern char     arcname[STRLEN];/* storage for archive name */
  531. Xextern char     bakname[STRLEN];/* storage for backup copy name */
  532. Xextern char     newname[STRLEN];/* storage for new archive name */
  533. Xextern unsigned short arcdate;    /* archive date stamp */
  534. Xextern unsigned short arctime;    /* archive time stamp */
  535. Xextern unsigned short olddate;    /* old archive date stamp */
  536. Xextern unsigned short oldtime;    /* old archive time stamp */
  537. Xextern int      dosquash;    /* squash instead of crunch */
  538. X#endif                /* DONT_DEFINE */
  539. ________This_Is_The_END________
  540. if test `wc -c < arc.h` -ne     3318; then
  541.     echo 'shar: arc.h was damaged during transit (should have been     3318 bytes)'
  542. fi
  543. fi        ; : end of overwriting check
  544. echo 'x - arcadd.c'
  545. if test -f arcadd.c; then echo 'shar: not overwriting arcadd.c'; else
  546. sed 's/^X//' << '________This_Is_The_END________' > arcadd.c
  547. X/*
  548. X * $Header: arcadd.c,v 1.8 88/06/13 00:31:15 hyc Locked $
  549. X */
  550. X
  551. X/*
  552. X * ARC - Archive utility - ARCADD
  553. X * 
  554. X * Version 3.40, created on 06/18/86 at 13:10:18
  555. X * 
  556. X * (C) COPYRIGHT 1985,86 by System Enhancement Associates; ALL RIGHTS RESERVED
  557. X * 
  558. X * By:  Thom Henderson
  559. X * 
  560. X * Description: This file contains the routines used to add files to an archive.
  561. X * 
  562. X * Language: Computer Innovations Optimizing C86
  563. X */
  564. X#include <stdio.h>
  565. X#include "arc.h"
  566. X#if    MTS
  567. X#include <mts.h>
  568. X#endif
  569. X
  570. Xstatic    void    addfile();
  571. Xchar    *strcpy();
  572. Xint    strcmp(), strlen(), free(), readhdr(), unlink();
  573. X#if    UNIX
  574. Xint    izadir();
  575. X#endif
  576. Xvoid    writehdr(), filecopy(), getstamp();
  577. Xvoid    pack(), closearc(), openarc(), abort();
  578. X
  579. Xvoid
  580. Xaddarc(num, arg, move, update, fresh)        /* add files to archive */
  581. X    int             num;    /* number of arguments */
  582. X    char           *arg[];    /* pointers to arguments */
  583. Xint             move;        /* true if moving file */
  584. Xint             update;        /* true if updating */
  585. Xint             fresh;        /* true if freshening */
  586. X{
  587. X    char           *d, *dir();    /* directory junk */
  588. X    char            buf[STRLEN];    /* pathname buffer */
  589. X    char          **path;    /* pointer to pointers to paths */
  590. X    char          **name;    /* pointer to pointers to names */
  591. X    int             nfiles = 0;    /* number of files in lists */
  592. X    int             notemp;    /* true until a template works */
  593. X    int             nowork = 1;    /* true until files are added */
  594. X    char           *i, *rindex();    /* string indexing junk */
  595. X    char           *malloc(), *realloc();    /* memory allocators */
  596. X    int             n;    /* index */
  597. X#if    MSDOS
  598. X    unsigned int    coreleft();    /* remaining memory reporter */
  599. X#endif
  600. X    int        addbunch();
  601. X
  602. X    if (num < 1) {        /* if no files named */
  603. X        num = 1;    /* then fake one */
  604. X#if    DOS
  605. X        arg[0] = "*.*";    /* add everything */
  606. X#endif
  607. X#if    UNIX
  608. X        arg[0] = "*";
  609. X#endif
  610. X#if    MTS
  611. X        arg[0] = "?";
  612. X#endif
  613. X    }
  614. X    path = (char **) malloc(sizeof(char **));
  615. X    name = (char **) malloc(sizeof(char **));
  616. X
  617. X
  618. X    for (n = 0; n < num; n++) {    /* for each template supplied */
  619. X        strcpy(buf, arg[n]);    /* get ready to fix path */
  620. X#if    !MTS
  621. X        if (!(i = rindex(buf, '\\')))
  622. X            if (!(i = rindex(buf, '/')))
  623. X                if (!(i = rindex(buf, ':')))
  624. X                    i = buf - 1;
  625. X#else
  626. X        if (!(i = rindex(buf, sepchr[0])))
  627. X            if (buf[0] != tmpchr[0])
  628. X                i = buf - 1;
  629. X            else
  630. X                i = buf;
  631. X#endif
  632. X        i++;        /* pointer to where name goes */
  633. X
  634. X        notemp = 1;    /* reset files flag */
  635. X        for (d = dir(arg[n]); d; d = dir(NULL)) {
  636. X            notemp = 0;    /* template is giving results */
  637. X            nfiles++;    /* add each matching file */
  638. X            path = (char **) realloc(path, nfiles * sizeof(char **));
  639. X            name = (char **) realloc(name, nfiles * sizeof(char **));
  640. X            strcpy(i, d);    /* put name in path */
  641. X            path[nfiles - 1] = malloc(strlen(buf) + 1);
  642. X            strcpy(path[nfiles - 1], buf);
  643. X            name[nfiles - 1] = d;    /* save name */
  644. X#if    MSDOS
  645. X            if (coreleft() < 5120) {
  646. X                nfiles = addbunch(nfiles, path, name, move, update, fresh);
  647. X                nowork = nowork && !nfiles;
  648. X                while (nfiles) {
  649. X                    free(path[--nfiles]);
  650. X                    free(name[nfiles]);
  651. X                }
  652. X                free(path);
  653. X                free(name);
  654. X                path = name = NULL;
  655. X            }
  656. X#endif
  657. X        }
  658. X        if (notemp && warn)
  659. X            printf("No files match: %s\n", arg[n]);
  660. X    }
  661. X
  662. X    if (nfiles) {
  663. X        nfiles = addbunch(nfiles, path, name, move, update, fresh);
  664. X        nowork = nowork && !nfiles;
  665. X        while (nfiles) {
  666. X            free(path[--nfiles]);
  667. X            free(name[nfiles]);
  668. X        }
  669. X        free(path);
  670. X        free(name);
  671. X    }
  672. X    if (nowork && warn)
  673. X        printf("No files were added.\n");
  674. X}
  675. X
  676. Xint
  677. Xaddbunch(nfiles, path, name, move, update, fresh)    /* add a bunch of files */
  678. X    int             nfiles;    /* number of files to add */
  679. X    char          **path;    /* pointers to pathnames */
  680. X    char          **name;    /* pointers to filenames */
  681. X    int             move;    /* true if moving file */
  682. X    int             update;    /* true if updating */
  683. X    int             fresh;    /* true if freshening */
  684. X{
  685. X    int             m, n;    /* indices */
  686. X    char           *d;    /* swap pointer */
  687. X    struct heads    hdr;    /* file header data storage */
  688. X
  689. X    for (n = 0; n < nfiles - 1; n++) {    /* sort the list of names */
  690. X        for (m = n + 1; m < nfiles; m++) {
  691. X            if (strcmp(name[n], name[m]) > 0) {
  692. X                d = path[n];
  693. X                path[n] = path[m];
  694. X                path[m] = d;
  695. X                d = name[n];
  696. X                name[n] = name[m];
  697. X                name[m] = d;
  698. X            }
  699. X        }
  700. X    }
  701. X
  702. X    for (n = 0; n < nfiles - 1;) {    /* consolidate the list of names */
  703. X        if (!strcmp(path[n], path[n + 1])    /* if duplicate names */
  704. X            ||!strcmp(path[n], arcname)    /* or this archive */
  705. X#if    UNIX
  706. X            ||izadir(path[n])    /* or a directory */
  707. X#endif
  708. X            ||!strcmp(path[n], newname)    /* or the new version */
  709. X            ||!strcmp(path[n], bakname)) {    /* or its backup */
  710. X            free(path[n]);    /* then forget the file */
  711. X            free(name[n]);
  712. X            for (m = n; m < nfiles - 1; m++) {
  713. X                path[m] = path[m + 1];
  714. X                name[m] = name[m + 1];
  715. X            }
  716. X            nfiles--;
  717. X        } else
  718. X            n++;    /* else test the next one */
  719. X    }
  720. X
  721. X    if (!strcmp(path[n], arcname)    /* special check for last file */
  722. X        ||!strcmp(path[n], newname)    /* courtesy of Rick Moore */
  723. X#if    UNIX
  724. X        ||izadir(path[n])
  725. X#endif
  726. X        || !strcmp(path[n], bakname)) {
  727. X        free(path[n]);
  728. X        free(name[n]);
  729. X        nfiles--;
  730. X    }
  731. X    if (!nfiles)        /* make sure we got some */
  732. X        return 0;
  733. X
  734. X    for (n = 0; n < nfiles - 1; n++) {    /* watch out for duplicate
  735. X                         * names */
  736. X        if (!strcmp(name[n], name[n + 1]))
  737. X            abort("Duplicate filenames:\n  %s\n  %s", path[n], path[n + 1]);
  738. X    }
  739. X    openarc(1);        /* open archive for changes */
  740. X
  741. X    for (n = 0; n < nfiles; n++)    /* add each file in the list */
  742. X        addfile(path[n], name[n], update, fresh);
  743. X
  744. X    /* now we must copy over all files that follow our additions */
  745. X
  746. X    while (readhdr(&hdr, arc)) {    /* while more entries to copy */
  747. X        writehdr(&hdr, new);
  748. X        filecopy(arc, new, hdr.size);
  749. X    }
  750. X    hdrver = 0;        /* archive EOF type */
  751. X    writehdr(&hdr, new);    /* write out our end marker */
  752. X    closearc(1);        /* close archive after changes */
  753. X
  754. X    if (move) {        /* if this was a move */
  755. X        for (n = 0; n < nfiles; n++) {    /* then delete each file
  756. X                         * added */
  757. X            if (unlink(path[n]) && warn) {
  758. X                printf("Cannot unsave %s\n", path[n]);
  759. X                nerrs++;
  760. X            }
  761. X        }
  762. X    }
  763. X    return nfiles;        /* say how many were added */
  764. X}
  765. X
  766. Xstatic          void
  767. Xaddfile(path, name, update, fresh)    /* add named file to archive */
  768. X    char           *path;    /* path name of file to add */
  769. X    char           *name;    /* name of file to add */
  770. X    int             update;    /* true if updating */
  771. X    int             fresh;    /* true if freshening */
  772. X{
  773. X    struct heads    nhdr;    /* data regarding the new file */
  774. X    struct heads    ohdr;    /* data regarding an old file */
  775. X    FILE           *f, *fopen();    /* file to add, opener */
  776. X    long            starts, ftell();    /* file locations */
  777. X    int             upd = 0;/* true if replacing an entry */
  778. X
  779. X#if    !MTS
  780. X    if (!(f = fopen(path, "rb")))
  781. X#else
  782. X    if (image)
  783. X        f = fopen(path, "rb");
  784. X    else
  785. X        f = fopen(path, "r");
  786. X    if (!f)
  787. X#endif
  788. X    {
  789. X        if (warn) {
  790. X            printf("Cannot read file: %s\n", path);
  791. X            nerrs++;
  792. X        }
  793. X        return;
  794. X    }
  795. X    strcpy(nhdr.name, name);/* save name */
  796. X    nhdr.size = 0;        /* clear out size storage */
  797. X    nhdr.crc = 0;        /* clear out CRC check storage */
  798. X#if    !MTS
  799. X    getstamp(f, &nhdr.date, &nhdr.time);
  800. X#else
  801. X    {
  802. X    char *buffer, *malloc();
  803. X    int    inlen;
  804. X    struct    GDDSECT    *region;
  805. X
  806. X    region=gdinfo(f->_fd);
  807. X    inlen=region->GDINLEN;
  808. X    buffer=malloc(inlen);   /* maximum line length */
  809. X    setbuf(f,buffer);        
  810. X    f->_bufsiz=inlen;        
  811. X    f->_mods|=0x00040000;   /* Don't do "$continue with" */
  812. X    f->_mods&=0xfff7ffff;   /* turn it off, if set... */
  813. X    }
  814. X    getstamp(path, &nhdr.date, &nhdr.time);
  815. X#endif
  816. X
  817. X    /* position archive to spot for new file */
  818. X
  819. X    if (arc) {        /* if adding to existing archive */
  820. X        starts = ftell(arc);    /* where are we? */
  821. X        while (readhdr(&ohdr, arc)) {    /* while more files to check */
  822. X            if (!strcmp(ohdr.name, nhdr.name)) {
  823. X                upd = 1;    /* replace existing entry */
  824. X                if (update || fresh) {    /* if updating or
  825. X                             * freshening */
  826. X                    if (nhdr.date < ohdr.date
  827. X                        || (nhdr.date == ohdr.date && nhdr.time <= ohdr.time)) {
  828. X                        fseek(arc, starts, 0);
  829. X                        fclose(f);
  830. X                        return;    /* skip if not newer */
  831. X                    }
  832. X                }
  833. X            }
  834. X            if (strcmp(ohdr.name, nhdr.name) >= 0)
  835. X                break;    /* found our spot */
  836. X
  837. X            writehdr(&ohdr, new);    /* entry preceeds update;
  838. X                         * keep it */
  839. X            filecopy(arc, new, ohdr.size);
  840. X            starts = ftell(arc);    /* now where are we? */
  841. X        }
  842. X
  843. X        if (upd) {    /* if an update */
  844. X            if (note) {
  845. X                printf("Updating file: %-12s  ", name);
  846. X                fflush(stdout);
  847. X            }
  848. X            fseek(arc, ohdr.size, 1);
  849. X        } else if (fresh) {    /* else if freshening */
  850. X            fseek(arc, starts, 0);    /* then do not add files */
  851. X            fclose(f);
  852. X            return;
  853. X        } else {    /* else adding a new file */
  854. X            if (note) {
  855. X                printf("Adding file:   %-12s  ", name);
  856. X                fflush(stdout);
  857. X            }
  858. X            fseek(arc, starts, 0);    /* reset for next time */
  859. X        }
  860. X    } else {        /* no existing archive */
  861. X        if (fresh) {    /* cannot freshen nothing */
  862. X            fclose(f);
  863. X            return;
  864. X        } else if (note) {    /* else adding a file */
  865. X            printf("Adding file:   %-12s  ", name);
  866. X            fflush(stdout);
  867. X        }
  868. X    }
  869. X
  870. X    starts = ftell(new);    /* note where header goes */
  871. X    hdrver = ARCVER;        /* anything but end marker */
  872. X    writehdr(&nhdr, new);    /* write out header skeleton */
  873. X    pack(f, new, &nhdr);    /* pack file into archive */
  874. X    strcpy(nhdr.name, name);
  875. X    fseek(new, starts, 0);    /* move back to header skeleton */
  876. X    writehdr(&nhdr, new);    /* write out real header */
  877. X    fseek(new, nhdr.size, 1);    /* skip over data to next header */
  878. X    fclose(f);        /* all done with the file */
  879. X}
  880. ________This_Is_The_END________
  881. if test `wc -c < arcadd.c` -ne     9286; then
  882.     echo 'shar: arcadd.c was damaged during transit (should have been     9286 bytes)'
  883. fi
  884. fi        ; : end of overwriting check
  885. echo 'x - arccode.c'
  886. if test -f arccode.c; then echo 'shar: not overwriting arccode.c'; else
  887. sed 's/^X//' << '________This_Is_The_END________' > arccode.c
  888. X/*
  889. X * $Header: arccode.c,v 1.1 88/06/01 15:15:58 hyc Locked $
  890. X */
  891. X
  892. X/*
  893. X * ARC - Archive utility - ARCCODE
  894. X * 
  895. X * Version 1.02, created on 01/20/86 at 13:33:35
  896. X * 
  897. X * (C) COPYRIGHT 1985 by System Enhancement Associates; ALL RIGHTS RESERVED
  898. X * 
  899. X * By:  Thom Henderson
  900. X * 
  901. X * Description: This file contains the routines used to encrypt and decrypt data
  902. X * in an archive.  The encryption method is nothing fancy, being just a
  903. X * routine XOR, but it is used on the packed data, and uses a variable length
  904. X * key.  The end result is something that is in theory crackable, but I'd
  905. X * hate to try it.  It should be more than sufficient for casual use.
  906. X * 
  907. X * Language: Computer Innovations Optimizing C86
  908. X */
  909. X#include <stdio.h>
  910. X#include "arc.h"
  911. X
  912. Xstatic char    *p;        /* password pointer */
  913. X
  914. Xvoid
  915. Xsetcode()
  916. X{                /* get set for encoding/decoding */
  917. X    p = password;        /* reset password pointer */
  918. X}
  919. X
  920. Xunsigned char
  921. Xcode(c)                /* encode some character */
  922. X    char            c;    /* character to encode */
  923. X{
  924. X    if (p) {        /* if password is in use */
  925. X        if (!*p)    /* if we reached the end */
  926. X            p = password;    /* then wrap back to the start */
  927. X        return c ^ *p++;/* very simple here */
  928. X    } else
  929. X        return c;    /* else no encryption */
  930. X}
  931. ________This_Is_The_END________
  932. if test `wc -c < arccode.c` -ne     1204; then
  933.     echo 'shar: arccode.c was damaged during transit (should have been     1204 bytes)'
  934. fi
  935. fi        ; : end of overwriting check
  936. echo 'x - arccvt.c'
  937. if test -f arccvt.c; then echo 'shar: not overwriting arccvt.c'; else
  938. sed 's/^X//' << '________This_Is_The_END________' > arccvt.c
  939. X/*
  940. X * $Header: arccvt.c,v 1.5 88/06/01 19:17:40 hyc Locked $
  941. X */
  942. X
  943. X/*
  944. X * ARC - Archive utility - ARCCVT
  945. X * 
  946. X * Version 1.16, created on 02/03/86 at 22:53:02
  947. X * 
  948. X * (C) COPYRIGHT 1985 by System Enhancement Associates; ALL RIGHTS RESERVED
  949. X * 
  950. X * By:  Thom Henderson
  951. X * 
  952. X * Description: This file contains the routines used to convert archives to use
  953. X * newer file storage methods.
  954. X * 
  955. X * Language: Computer Innovations Optimizing C86
  956. X */
  957. X#include <stdio.h>
  958. X#include "arc.h"
  959. X
  960. Xvoid    openarc(), rempath(), closearc(), abort(), pack(), writehdr(), filecopy();
  961. Xint    match(), readhdr(), unpack(), unlink();
  962. X
  963. Xstatic char     tempname[STRLEN];    /* temp file name */
  964. X
  965. Xvoid
  966. Xcvtarc(num, arg)        /* convert archive */
  967. X    int             num;    /* number of arguments */
  968. X    char           *arg[];    /* pointers to arguments */
  969. X{
  970. X    struct heads    hdr;    /* file header */
  971. X    int             cvt;    /* true to convert current file */
  972. X    int             did[MAXARG];/* true when argument was used */
  973. X    int             n;    /* index */
  974. X    char           *makefnam();    /* filename fixer */
  975. X    FILE           *fopen();/* file opener */
  976. X    void            cvtfile();
  977. X
  978. X    if (arctemp)        /* use temp area if specified */
  979. X        sprintf(tempname, "%s.CVT", arctemp);
  980. X    else
  981. X        makefnam("$ARCTEMP.CVT", arcname, tempname);
  982. X#if    !DOS
  983. X    image = 1;
  984. X#endif
  985. X
  986. X    openarc(1);        /* open archive for changes */
  987. X
  988. X    for (n = 0; n < num; n++)    /* for each argument */
  989. X        did[n] = 0;    /* reset usage flag */
  990. X    rempath(num, arg);    /* strip off paths */
  991. X
  992. X    if (num) {        /* if files were named */
  993. X        while (readhdr(&hdr, arc)) {    /* while more files to check */
  994. X            cvt = 0;/* reset convert flag */
  995. X            for (n = 0; n < num; n++) {    /* for each template
  996. X                             * given */
  997. X                if (match(hdr.name, arg[n])) {
  998. X                    cvt = 1;    /* turn on convert flag */
  999. X                    did[n] = 1;    /* turn on usage flag */
  1000. X                    break;    /* stop looking */
  1001. X                }
  1002. X            }
  1003. X
  1004. X            if (cvt)/* if converting this one */
  1005. X                cvtfile(&hdr);    /* then do it */
  1006. X            else {    /* else just copy it */
  1007. X                writehdr(&hdr, new);
  1008. X                filecopy(arc, new, hdr.size);
  1009. X            }
  1010. X        }
  1011. X    } else
  1012. X        while (readhdr(&hdr, arc))    /* else convert all files */
  1013. X            cvtfile(&hdr);
  1014. X
  1015. X    hdrver = 0;        /* archive EOF type */
  1016. X    writehdr(&hdr, new);    /* write out our end marker */
  1017. X    closearc(1);        /* close archive after changes */
  1018. X
  1019. X    if (note) {
  1020. X        for (n = 0; n < num; n++) {    /* report unused args */
  1021. X            if (!did[n]) {
  1022. X                printf("File not found: %s\n", arg[n]);
  1023. X                nerrs++;
  1024. X            }
  1025. X        }
  1026. X    }
  1027. X}
  1028. X
  1029. Xvoid
  1030. Xcvtfile(hdr)            /* convert a file */
  1031. X    struct heads   *hdr;    /* pointer to header data */
  1032. X{
  1033. X    long            starts, ftell();    /* where the file goes */
  1034. X    FILE           *tmp, *fopen();    /* temporary file */
  1035. X
  1036. X    if (!(tmp = fopen(tempname, "w+b")))
  1037. X        abort("Unable to create temporary file %s", tempname);
  1038. X
  1039. X    if (note) {
  1040. X        printf("Converting file: %-12s   reading, ", hdr->name);
  1041. X        fflush(stdout);
  1042. X    }
  1043. X    unpack(arc, tmp, hdr);    /* unpack the entry */
  1044. X    fseek(tmp, 0L, 0);    /* reset temp for reading */
  1045. X
  1046. X    starts = ftell(new);    /* note where header goes */
  1047. X    hdrver = ARCVER;        /* anything but end marker */
  1048. X    writehdr(hdr, new);    /* write out header skeleton */
  1049. X    pack(tmp, new, hdr);    /* pack file into archive */
  1050. X    fseek(new, starts, 0);    /* move back to header skeleton */
  1051. X    writehdr(hdr, new);    /* write out real header */
  1052. X    fseek(new, hdr->size, 1);    /* skip over data to next header */
  1053. X    fclose(tmp);        /* all done with the file */
  1054. X    if (unlink(tempname) && warn) {
  1055. X        printf("Cannot unsave %s\n", tempname);
  1056. X        nerrs++;
  1057. X    }
  1058. X}
  1059. ________This_Is_The_END________
  1060. if test `wc -c < arccvt.c` -ne     3396; then
  1061.     echo 'shar: arccvt.c was damaged during transit (should have been     3396 bytes)'
  1062. fi
  1063. fi        ; : end of overwriting check
  1064. echo 'x - arcdata.c'
  1065. if test -f arcdata.c; then echo 'shar: not overwriting arcdata.c'; else
  1066. sed 's/^X//' << '________This_Is_The_END________' > arcdata.c
  1067. X/*
  1068. X * $Header: arcdata.c,v 1.6 88/06/01 19:17:58 hyc Locked $
  1069. X */
  1070. X
  1071. X/*  ARC - Archive utility - ARCDATA
  1072. X
  1073. X    Version 2.17, created on 04/22/87 at 13:09:43
  1074. X
  1075. X(C) COPYRIGHT 1985,86 by System Enhancement Associates; ALL RIGHTS RESERVED
  1076. X
  1077. X    By:     Thom Henderson
  1078. X
  1079. X    Description: 
  1080. X     This file defines the external data storage used by the ARC
  1081. X     archive utility.
  1082. X
  1083. X
  1084. X    Language:
  1085. X     Computer Innovations Optimizing C86
  1086. X*/
  1087. X#include <stdio.h>
  1088. X
  1089. X#define DONT_DEFINE
  1090. X#include "arc.h"
  1091. X
  1092. Xint             keepbak = 0;    /* true if saving the old archive */
  1093. X#if    UNIX
  1094. Xint        image = 1;    /* true to suppress CRLF/LF x-late */
  1095. X#endif
  1096. X#if    MTS
  1097. Xint             image = 0;    /* true to suppress EBCDIC/ASCII x-late */
  1098. Xchar            sepchr[2] = ":";/* Shared file separator */
  1099. Xchar            tmpchr[2] = "-";/* Temporary file prefix */
  1100. X#endif
  1101. X#if    GEMDOS
  1102. Xint        hold = 0;    /* true to pause before exit */
  1103. X#endif
  1104. Xint             warn = 1;    /* true to print warnings */
  1105. Xint             note = 1;    /* true to print comments */
  1106. Xint             bose = 0;    /* true to be verbose */
  1107. Xint             nocomp = 0;    /* true to suppress compression */
  1108. Xint             overlay = 0;    /* true to overlay on extract */
  1109. Xint             kludge = 0;    /* kludge flag */
  1110. Xchar           *arctemp = NULL;    /* arc temp file prefix */
  1111. Xchar           *password = NULL;/* encryption password pointer */
  1112. Xint             nerrs = 0;    /* number of errors encountered */
  1113. Xint        changing = 0;    /* true if archive being modified */
  1114. X
  1115. Xchar            hdrver;        /* header version */
  1116. X
  1117. XFILE           *arc;        /* the old archive */
  1118. XFILE           *new;        /* the new archive */
  1119. Xchar            arcname[STRLEN];    /* storage for archive name */
  1120. Xchar            bakname[STRLEN];    /* storage for backup copy name */
  1121. Xchar            newname[STRLEN];    /* storage for new archive name */
  1122. Xunsigned short  arcdate = 0;    /* archive date stamp */
  1123. Xunsigned short  arctime = 0;    /* archive time stamp */
  1124. Xunsigned short  olddate = 0;    /* old archive date stamp */
  1125. Xunsigned short  oldtime = 0;    /* old archive time stamp */
  1126. Xint        dosquash = 0;    /* true to squash instead of crunch */
  1127. ________This_Is_The_END________
  1128. if test `wc -c < arcdata.c` -ne     2070; then
  1129.     echo 'shar: arcdata.c was damaged during transit (should have been     2070 bytes)'
  1130. fi
  1131. fi        ; : end of overwriting check
  1132. echo 'x - arcdel.c'
  1133. if test -f arcdel.c; then echo 'shar: not overwriting arcdel.c'; else
  1134. sed 's/^X//' << '________This_Is_The_END________' > arcdel.c
  1135. X/*
  1136. X * $Header: arcdel.c,v 1.3 88/04/19 01:39:32 hyc Exp $
  1137. X */
  1138. X
  1139. X/*
  1140. X * ARC - Archive utility - ARCDEL
  1141. X * 
  1142. X * Version 2.09, created on 02/03/86 at 22:53:27
  1143. X * 
  1144. X * (C) COPYRIGHT 1985 by System Enhancement Associates; ALL RIGHTS RESERVED
  1145. X * 
  1146. X * By:  Thom Henderson
  1147. X * 
  1148. X * Description: This file contains the routines used to delete entries in an
  1149. X * archive.
  1150. X * 
  1151. X * Language: Computer Innovations Optimizing C86
  1152. X */
  1153. X#include <stdio.h>
  1154. X#include "arc.h"
  1155. X
  1156. Xvoid    abort(), rempath(), openarc(), closearc(), writehdr(), filecopy();
  1157. Xint    match(), readhdr();
  1158. X
  1159. Xvoid
  1160. Xdelarc(num, arg)        /* remove files from archive */
  1161. X    int             num;    /* number of arguments */
  1162. X    char           *arg[];    /* pointers to arguments */
  1163. X{
  1164. X    struct heads    hdr;    /* header data */
  1165. X    int             del;    /* true to delete a file */
  1166. X    int             did[MAXARG];/* true when argument used */
  1167. X    int             n;    /* index */
  1168. X
  1169. X    if (!num)        /* she must specify which */
  1170. X        abort("You must tell me which files to delete!");
  1171. X
  1172. X    for (n = 0; n < num; n++)    /* for each argument */
  1173. X        did[n] = 0;    /* reset usage flag */
  1174. X    rempath(num, arg);    /* strip off paths */
  1175. X
  1176. X    openarc(1);        /* open archive for changes */
  1177. X
  1178. X    while (readhdr(&hdr, arc)) {    /* while more entries in archive */
  1179. X        del = 0;    /* reset delete flag */
  1180. X        for (n = 0; n < num; n++) {    /* for each template given */
  1181. X            if (match(hdr.name, arg[n])) {
  1182. X                del = 1;    /* turn on delete flag */
  1183. X                did[n] = 1;    /* turn on usage flag */
  1184. X                break;    /* stop looking */
  1185. X            }
  1186. X        }
  1187. X
  1188. X        if (del) {    /* skip over unwanted files */
  1189. X            fseek(arc, hdr.size, 1);
  1190. X            if (note)
  1191. X                printf("Deleting file: %s\n", hdr.name);
  1192. X        } else {    /* else copy over file data */
  1193. X            writehdr(&hdr, new);    /* write out header and file */
  1194. X            filecopy(arc, new, hdr.size);
  1195. X        }
  1196. X    }
  1197. X
  1198. X    hdrver = 0;        /* special end of archive type */
  1199. X    writehdr(&hdr, new);    /* write out archive end marker */
  1200. X    closearc(1);        /* close archive after changes */
  1201. X
  1202. X    if (note) {
  1203. X        for (n = 0; n < num; n++) {    /* report unused arguments */
  1204. X            if (!did[n]) {
  1205. X                printf("File not found: %s\n", arg[n]);
  1206. X                nerrs++;
  1207. X            }
  1208. X        }
  1209. X    }
  1210. X}
  1211. ________This_Is_The_END________
  1212. if test `wc -c < arcdel.c` -ne     2055; then
  1213.     echo 'shar: arcdel.c was damaged during transit (should have been     2055 bytes)'
  1214. fi
  1215. fi        ; : end of overwriting check
  1216. echo 'x - arcdos.c'
  1217. if test -f arcdos.c; then echo 'shar: not overwriting arcdos.c'; else
  1218. sed 's/^X//' << '________This_Is_The_END________' > arcdos.c
  1219. X/*
  1220. X * $Header: arcdos.c,v 1.5 88/06/13 00:40:49 hyc Locked $
  1221. X */
  1222. X
  1223. X/*
  1224. X * ARC - Archive utility - ARCDOS
  1225. X * 
  1226. X * Version 1.44, created on 07/25/86 at 14:17:38
  1227. X * 
  1228. X * (C) COPYRIGHT 1985 by System Enhancement Associates; ALL RIGHTS RESERVED
  1229. X * 
  1230. X * By:  Thom Henderson
  1231. X * 
  1232. X * Description: This file contains certain DOS level routines that assist in
  1233. X * doing fancy things with an archive, primarily reading and setting the date
  1234. X * and time last modified.
  1235. X * 
  1236. X * These are, by nature, system dependant functions.  But they are also, by
  1237. X * nature, very expendable.
  1238. X * 
  1239. X * Language: Computer Innovations Optimizing C86
  1240. X */
  1241. X#include <stdio.h>
  1242. X#include "arc.h"
  1243. X
  1244. X#if    MSDOS
  1245. X#include "fileio2.h"        /* needed for filehand */
  1246. X#endif
  1247. X
  1248. X#if    UNIX
  1249. X#include <sys/types.h>
  1250. X#include <sys/stat.h>
  1251. X#include <sys/time.h>
  1252. X#include "tws.h"
  1253. X#endif
  1254. X
  1255. X#if    SYSV
  1256. Xstruct timeval {
  1257. X    long tv_sec;
  1258. X    long tv_usec;
  1259. X};
  1260. X#endif
  1261. X
  1262. X#if    GEMDOS
  1263. X#include <osbind.h>
  1264. X#endif
  1265. X
  1266. Xchar    *strcpy(), *strcat(), *malloc();
  1267. X
  1268. Xvoid
  1269. Xgetstamp(f, date, time)        /* get a file's date/time stamp */
  1270. X#if    !MTS
  1271. X    FILE           *f;    /* file to get stamp from */
  1272. X#else
  1273. X    char           *f;    /* filename "" "" */
  1274. X#endif
  1275. X    unsigned short   *date, *time;    /* storage for the stamp */
  1276. X{
  1277. X#if    MSDOS
  1278. X    struct {
  1279. X        int             ax, bx, cx, dx, si, di, ds, es;
  1280. X    }               reg;
  1281. X
  1282. X    reg.ax = 0x5700;    /* get date/time */
  1283. X    reg.bx = filehand(f);    /* file handle */
  1284. X    if (sysint21(®, ®) & 1)    /* DOS call */
  1285. X        printf("Get timestamp fail (%d)\n", reg.ax);
  1286. X
  1287. X    *date = reg.dx;        /* save date/time */
  1288. X    *time = reg.cx;
  1289. X#endif
  1290. X#if    GEMDOS
  1291. X    int    fd, ret[2];
  1292. X
  1293. X    fd = fileno(f);
  1294. X    Fdatime(ret, fd, 0);
  1295. X    *date = ret[1];
  1296. X    *time = ret[0];
  1297. X#endif
  1298. X#if    UNIX
  1299. X    char           *ctime();
  1300. X    struct stat    *buf;
  1301. X    int             day, hr, min, sec, yr, imon;
  1302. X    static char     mon[4], *mons[12] = {
  1303. X                   "Jan", "Feb", "Mar", "Apr", "May", "Jun",
  1304. X                    "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
  1305. X    };
  1306. X
  1307. X    buf = (struct stat *) malloc(sizeof(struct stat));
  1308. X    fstat(fileno(f), buf);
  1309. X
  1310. X    sscanf(ctime(&(buf->st_mtime)), "%*4s%3s%d%d:%d:%d%d", mon, &day, &hr, &min,
  1311. X           &sec, &yr);
  1312. X    for (imon = 0; imon < 12 && strcmp(mon, mons[imon]); imon++);
  1313. X
  1314. X    *date = (unsigned short) (((yr - 1980) << 9) + ((imon + 1) << 5) + day);
  1315. X    *time = (unsigned short) ((hr << 11) + (min << 5) + sec / 2);
  1316. X#endif
  1317. X#if    MTS
  1318. X    fortran         timein(),
  1319. X#if    USEGFINFO
  1320. X                    gfinfo();
  1321. X#else
  1322. X                    fileinfo();
  1323. X#endif
  1324. X    int             stclk[2];
  1325. X    char            name[24];
  1326. X    struct bigtime {
  1327. X        int             greg;
  1328. X        int             year;
  1329. X        int             mon;
  1330. X        int             day;
  1331. X        int             hour;
  1332. X        int             min;
  1333. X        int             sec;
  1334. X        int             usec;
  1335. X        int             week;
  1336. X        int             toff;
  1337. X        int             tzn1;
  1338. X        int             tzn2;
  1339. X    }               tvec;
  1340. X#if    USEGFINFO
  1341. X    static int      gfflag = 0x0009, gfdummy[2] = {
  1342. X                               0, 0
  1343. X    };
  1344. X    int             gfcinfo[18];
  1345. X#else
  1346. X    static int      cattype = 2;
  1347. X#endif
  1348. X
  1349. X    strcpy(name, f);
  1350. X    strcat(name, " ");
  1351. X#if    USEGFINFO
  1352. X    gfcinfo[0] = 18;
  1353. X    gfinfo(name, name, &gfflag, gfcinfo, gfdummy, gfdummy);
  1354. X    timein("*IBM MICROSECONDS*", &gfcinfo[16], &tvec);
  1355. X#else
  1356. X    fileinfo(name, &cattype, "CILCCT  ", stclk);
  1357. X    timein("*IBM MICROSECONDS*", stclk, &tvec);
  1358. X#endif
  1359. X
  1360. X    *date = (unsigned short) (((tvec.year - 1980) << 9) + ((tvec.mon) << 5) + tvec.day);
  1361. X    *time = (unsigned short) ((tvec.hour << 11) + (tvec.min << 5) + tvec.sec / 2);
  1362. X#endif
  1363. X}
  1364. X
  1365. Xvoid
  1366. Xsetstamp(f, date, time)        /* set a file's date/time stamp */
  1367. X    char           *f;    /* filename to stamp */
  1368. X    unsigned short    date, time;    /* desired date, time */
  1369. X{
  1370. X#if    MSDOS
  1371. X    FILE    *ff;
  1372. X    struct {
  1373. X        int             ax, bx, cx, dx, si, di, ds, es;
  1374. X    }               reg;
  1375. X
  1376. X    ff = fopen(f, "w+");    /* How else can I get a handle? */
  1377. X
  1378. X    reg.ax = 0x5701;    /* set date/time */
  1379. X    reg.bx = filehand(f);    /* file handle */
  1380. X    reg.cx = time;        /* desired time */
  1381. X    reg.dx = date;        /* desired date */
  1382. X    if (sysint21(®, ®) & 1)    /* DOS call */
  1383. X        printf("Set timestamp fail (%d)\n", reg.ax);
  1384. X    fclose(ff);
  1385. X#endif
  1386. X#if    GEMDOS
  1387. X    int    fd, set[2];
  1388. X
  1389. X    fd = Fopen(f, 0);
  1390. X    set[0] = time;
  1391. X    set[1] = date;
  1392. X    Fdatime(set, fd, 1);
  1393. X    Fclose(fd);
  1394. X#endif
  1395. X#if    UNIX
  1396. X    struct tws      tms;
  1397. X    struct timeval  tvp[2];
  1398. X    int    utimes();
  1399. X    twscopy(&tms, dtwstime());
  1400. X    tms.tw_sec = (time & 31) * 2;
  1401. X    tms.tw_min = (time >> 5) & 63;
  1402. X    tms.tw_hour = (time >> 11);
  1403. X    tms.tw_mday = date & 31;
  1404. X    tms.tw_mon = ((date >> 5) & 15) - 1;
  1405. X    tms.tw_year = (date >> 9) + 80;
  1406. X    tms.tw_clock = 0L;
  1407. X    tms.tw_flags = TW_NULL;
  1408. X    tvp[0].tv_sec = twclock(&tms);
  1409. X    tvp[1].tv_sec = tvp[0].tv_sec;
  1410. X    tvp[0].tv_usec = tvp[1].tv_usec = 0;
  1411. X    utimes(f, tvp);
  1412. X#endif
  1413. X}
  1414. X
  1415. X#if    MSDOS
  1416. Xint
  1417. Xfilehand(stream)        /* find handle on a file */
  1418. X    struct bufstr  *stream;    /* file to grab onto */
  1419. X{
  1420. X    return stream->bufhand;    /* return DOS 2.0 file handle */
  1421. X}
  1422. X#endif
  1423. X
  1424. X#if    UNIX
  1425. Xint
  1426. Xizadir(filename)        /* Is filename a directory? */
  1427. X    char           *filename;
  1428. X{
  1429. X    struct stat     buf;
  1430. X
  1431. X    if (stat(filename, &buf) != 0)
  1432. X        return (0);    /* Ignore if stat fails since */
  1433. X    else
  1434. X        return (buf.st_mode & S_IFDIR);    /* bad files trapped later */
  1435. X}
  1436. X#endif
  1437. ________This_Is_The_END________
  1438. if test `wc -c < arcdos.c` -ne     5008; then
  1439.     echo 'shar: arcdos.c was damaged during transit (should have been     5008 bytes)'
  1440. fi
  1441. fi        ; : end of overwriting check
  1442. echo 'x - arcext.c'
  1443. if test -f arcext.c; then echo 'shar: not overwriting arcext.c'; else
  1444. sed 's/^X//' << '________This_Is_The_END________' > arcext.c
  1445. X/*
  1446. X * $Header: arcext.c,v 1.5 88/06/01 19:26:31 hyc Locked $
  1447. X */
  1448. X
  1449. X/*
  1450. X * ARC - Archive utility - ARCEXT
  1451. X * 
  1452. X * Version 2.19, created on 10/24/86 at 14:53:32
  1453. X * 
  1454. X * (C) COPYRIGHT 1985 by System Enhancement Associates; ALL RIGHTS RESERVED
  1455. X * 
  1456. X * By:  Thom Henderson
  1457. X * 
  1458. X * Description: This file contains the routines used to extract files from an
  1459. X * archive.
  1460. X * 
  1461. X * Language: Computer Innovations Optimizing C86
  1462. X */
  1463. X#include <stdio.h>
  1464. X#include "arc.h"
  1465. X#if    !MSDOS
  1466. X#include <ctype.h>
  1467. X#endif
  1468. X
  1469. Xvoid    openarc(), closearc(), setstamp();
  1470. Xint    free(), match(), readhdr(), unpack();
  1471. Xchar    *strcpy(), *strcat();
  1472. X
  1473. Xvoid
  1474. Xextarc(num, arg, prt)        /* extract files from archive */
  1475. X    int             num;    /* number of arguments */
  1476. X    char           *arg[];    /* pointers to arguments */
  1477. X    int             prt;        /* true if printing */
  1478. X{
  1479. X    struct heads    hdr;    /* file header */
  1480. X    int             save;    /* true to save current file */
  1481. X    int             did[MAXARG];/* true when argument was used */
  1482. X    char           *i, *rindex();    /* string index */
  1483. X    char          **name, *malloc();    /* name pointer list,
  1484. X                         * allocator */
  1485. X    int             n;    /* index */
  1486. X    void            extfile();
  1487. X
  1488. X    name = (char **) malloc(num * sizeof(char *));    /* get storage for name
  1489. X                             * pointers */
  1490. X
  1491. X    for (n = 0; n < num; n++) {    /* for each argument */
  1492. X        did[n] = 0;    /* reset usage flag */
  1493. X#if    !MTS
  1494. X        if (!(i = rindex(arg[n], '\\')))    /* find start of name */
  1495. X            if (!(i = rindex(arg[n], '/')))
  1496. X                if (!(i = rindex(arg[n], ':')))
  1497. X                    i = arg[n] - 1;
  1498. X#else
  1499. X        if (!(i = rindex(arg[n], sepchr[0])))
  1500. X            if (arg[n][0] != tmpchr[0])
  1501. X                i = arg[n] - 1;
  1502. X            else
  1503. X                i = arg[n];
  1504. X#endif
  1505. X        name[n] = i + 1;
  1506. X    }
  1507. X
  1508. X
  1509. X    openarc(0);        /* open archive for reading */
  1510. X
  1511. X    if (num) {        /* if files were named */
  1512. X        while (readhdr(&hdr, arc)) {    /* while more files to check */
  1513. X            save = 0;    /* reset save flag */
  1514. X            for (n = 0; n < num; n++) {    /* for each template
  1515. X                             * given */
  1516. X                if (match(hdr.name, name[n])) {
  1517. X                    save = 1;    /* turn on save flag */
  1518. X                    did[n] = 1;    /* turn on usage flag */
  1519. X                    break;    /* stop looking */
  1520. X                }
  1521. X            }
  1522. X
  1523. X            if (save)    /* extract if desired, else skip */
  1524. X                extfile(&hdr, arg[n], prt);
  1525. X            else
  1526. X                fseek(arc, hdr.size, 1);
  1527. X        }
  1528. X    } else
  1529. X        while (readhdr(&hdr, arc))    /* else extract all files */
  1530. X            extfile(&hdr, "", prt);
  1531. X
  1532. X    closearc(0);        /* close archive after reading */
  1533. X
  1534. X    if (note) {
  1535. X        for (n = 0; n < num; n++) {    /* report unused args */
  1536. X            if (!did[n]) {
  1537. X                printf("File not found: %s\n", arg[n]);
  1538. X                nerrs++;
  1539. X            }
  1540. X        }
  1541. X    }
  1542. X    free(name);
  1543. X}
  1544. X
  1545. Xvoid
  1546. Xextfile(hdr, path, prt)        /* extract a file */
  1547. X    struct heads   *hdr;    /* pointer to header data */
  1548. X    char           *path;    /* pointer to path name */
  1549. X    int             prt;    /* true if printing */
  1550. X{
  1551. X    FILE           *f, *fopen();    /* extracted file, opener */
  1552. X    char            buf[STRLEN];    /* input buffer */
  1553. X    char            fix[STRLEN];    /* fixed name buffer */
  1554. X    char           *i, *rindex();    /* string index */
  1555. X
  1556. X    if (prt) {        /* printing is much easier */
  1557. X        unpack(arc, stdout, hdr);    /* unpack file from archive */
  1558. X        printf("\f");    /* eject the form */
  1559. X        return;        /* see? I told you! */
  1560. X    }
  1561. X    strcpy(fix, path);    /* note path name template */
  1562. X#if    !MTS
  1563. X    if (*path) {
  1564. X    if (!(i = rindex(fix, '\\')))    /* find start of name */
  1565. X        if (!(i = rindex(fix, '/')))
  1566. X            if (!(i = rindex(fix, ':')))
  1567. X                i = fix - 1;
  1568. X    } else i = fix -1;
  1569. X#else
  1570. X    if (!(i = rindex(fix, sepchr[0])))
  1571. X        if (fix[0] != tmpchr[0])
  1572. X            i = fix - 1;
  1573. X        else
  1574. X            i = fix;
  1575. X#endif
  1576. X    strcpy(i + 1, hdr->name);    /* replace template with name */
  1577. X
  1578. X    if (note)
  1579. X        printf("Extracting file: %s\n", fix);
  1580. X
  1581. X    if (warn && !overlay) {
  1582. X        if (f = fopen(fix, "r")) {    /* see if it exists */
  1583. X                fclose(f);
  1584. X                printf("WARNING: File %s already exists!", fix);
  1585. X                fflush(stdout);
  1586. X                while (1) {
  1587. X                    printf("  Overwrite it (y/n)? ");
  1588. X                    fflush(stdout);
  1589. X                    fgets(buf, STRLEN, stdin);
  1590. X                    *buf = toupper(*buf);
  1591. X                    if (*buf == 'Y' || *buf == 'N')
  1592. X                        break;
  1593. X                }
  1594. X                if (*buf == 'N') {
  1595. X                    printf("%s not extracted.\n", fix);
  1596. X                    fseek(arc, hdr->size, 1);
  1597. X                    return;
  1598. X                }
  1599. X        }
  1600. X    }
  1601. X#if    !MTS
  1602. X    if (!(f = fopen(fix, "wb")))
  1603. X#else
  1604. X    {
  1605. X        fortran         create();
  1606. X        void        memset();
  1607. X        char            c_name[256];
  1608. X        struct crsize {
  1609. X            short           maxsize, cursize;
  1610. X        }               c_size;
  1611. X        char            c_vol[6];
  1612. X        int             c_type;
  1613. X        strcpy(c_name, fix);
  1614. X        strcat(c_name, " ");
  1615. X        c_size.maxsize = 0;
  1616. X        c_size.cursize = hdr->length / 4096 + 1;
  1617. X        memset(c_vol, 0, sizeof(c_vol));
  1618. X        c_type = 0x100;
  1619. X        create(c_name, &c_size, c_vol, &c_type);
  1620. X    }
  1621. X    if (image) {
  1622. X        f = fopen(fix, "wb");
  1623. X    } else
  1624. X        f = fopen(fix, "w");
  1625. X    if (!f)
  1626. X#endif
  1627. X    {
  1628. X        if (warn) {
  1629. X            printf("Cannot create %s\n", fix);
  1630. X            nerrs++;
  1631. X        }
  1632. X        fseek(arc, hdr->size, 1);
  1633. X        return;
  1634. X    }
  1635. X    /* now unpack the file */
  1636. X
  1637. X    unpack(arc, f, hdr);    /* unpack file from archive */
  1638. X    fclose(f);        /* all done writing to file */
  1639. X#if    !MTS
  1640. X    setstamp(fix, hdr->date, hdr->time);    /* use filename for stamp */
  1641. X#endif
  1642. X}
  1643. ________This_Is_The_END________
  1644. if test `wc -c < arcext.c` -ne     4898; then
  1645.     echo 'shar: arcext.c was damaged during transit (should have been     4898 bytes)'
  1646. fi
  1647. fi        ; : end of overwriting check
  1648. echo 'x - arcio.c'
  1649. if test -f arcio.c; then echo 'shar: not overwriting arcio.c'; else
  1650. sed 's/^X//' << '________This_Is_The_END________' > arcio.c
  1651. X/*
  1652. X * $Header: arcio.c,v 1.7 88/06/02 16:27:32 hyc Locked $
  1653. X */
  1654. X
  1655. X/*  ARC - Archive utility - ARCIO
  1656. X
  1657. X    Version 2.50, created on 04/22/87 at 13:25:20
  1658. X
  1659. X(C) COPYRIGHT 1985,86 by System Enhancement Associates; ALL RIGHTS RESERVED
  1660. X
  1661. X    By:     Thom Henderson
  1662. X
  1663. X    Description:
  1664. X     This file contains the file I/O routines used to manipulate
  1665. X     an archive.
  1666. X
  1667. X    Language:
  1668. X     Computer Innovations Optimizing C86
  1669. X*/
  1670. X#include <stdio.h>
  1671. X#include "arc.h"
  1672. X#if    MTS
  1673. X#include <ctype.h>
  1674. X#endif
  1675. X
  1676. Xvoid    abort();
  1677. Xint    strlen(), free();
  1678. X
  1679. Xint
  1680. Xreadhdr(hdr, f)            /* read a header from an archive */
  1681. X    struct heads   *hdr;    /* storage for header */
  1682. X    FILE           *f;    /* archive to read header from */
  1683. X{
  1684. X#if    !MSDOS
  1685. X    unsigned char   dummy[28];
  1686. X    int             i;
  1687. X#endif
  1688. X    char            name[FNLEN];    /* filename buffer */
  1689. X    int             try = 0;/* retry counter */
  1690. X    static int      first = 1;    /* true only on first read */
  1691. X
  1692. X    if (!f)            /* if archive didn't open */
  1693. X        return 0;    /* then pretend it's the end */
  1694. X    if (feof(f))        /* if no more data */
  1695. X        return 0;    /* then signal end of archive */
  1696. X
  1697. X    if (fgetc(f) != ARCMARK) {    /* check archive validity */
  1698. X        if (warn) {
  1699. X            printf("An entry in %s has a bad header.", arcname);
  1700. X            nerrs++;
  1701. X        }
  1702. X        while (!feof(f)) {
  1703. X            try++;
  1704. X            if (fgetc(f) == ARCMARK) {
  1705. X                ungetc(hdrver = fgetc(f), f);
  1706. X                if (!(hdrver & 0x80) && hdrver <= ARCVER)
  1707. X                    break;
  1708. X            }
  1709. X        }
  1710. X
  1711. X        if (feof(f) && first)
  1712. X            abort("%s is not an archive", arcname);
  1713. X
  1714. X        if (changing && warn)
  1715. X            abort("%s is corrupted -- changes disallowed", arcname);
  1716. X
  1717. X        if (warn)
  1718. X            printf("  %d bytes skipped.\n", try);
  1719. X
  1720. X        if (feof(f))
  1721. X            return 0;
  1722. X    }
  1723. X    hdrver = fgetc(f);    /* get header version */
  1724. X    if (hdrver & 0x80)    /* sign bit? negative? */
  1725. X        abort("Invalid header in archive %s", arcname);
  1726. X    if (hdrver == 0)
  1727. X        return 0;    /* note our end of archive marker */
  1728. X    if (hdrver > ARCVER) {
  1729. X        fread(name, sizeof(char), FNLEN, f);
  1730. X#if    MTS
  1731. X        atoe(name, strlen(name));
  1732. X#endif
  1733. X        printf("I don't know how to handle file %s in archive %s\n",
  1734. X               name, arcname);
  1735. X        printf("I think you need a newer version of ARC.\n");
  1736. X        exit(1);
  1737. X    }
  1738. X    /* amount to read depends on header type */
  1739. X
  1740. X    if (hdrver == 1) {    /* old style is shorter */
  1741. X        fread(hdr, sizeof(struct heads) - sizeof(long int), 1, f);
  1742. X        hdrver = 2;    /* convert header to new format */
  1743. X        hdr->length = hdr->size;    /* size is same when not
  1744. X                         * packed */
  1745. X    } else
  1746. X#if    MSDOS
  1747. X        fread(hdr, sizeof(struct heads), 1, f);
  1748. X#else
  1749. X        fread(dummy, 27, 1, f);
  1750. X
  1751. X    for (i = 0; i < FNLEN; hdr->name[i] = dummy[i], i++);
  1752. X#if    MTS
  1753. X    (void) atoe(hdr->name, strlen(hdr->name));
  1754. X#endif
  1755. X    for (i = 0; i<4; hdr->size<<=8, hdr->size += dummy[16-i], i++);
  1756. X    hdr->date = (short) ((dummy[18] << 8) + dummy[17]);
  1757. X    hdr->time = (short) ((dummy[20] << 8) + dummy[19]);
  1758. X    hdr->crc = (short) ((dummy[22] << 8) + dummy[21]);
  1759. X    for (i = 0; i<4; hdr->length<<=8, hdr->length += dummy[26-i], i++);
  1760. X#endif
  1761. X
  1762. X    if (hdr->date > olddate
  1763. X        || (hdr->date == olddate && hdr->time > oldtime)) {
  1764. X        olddate = hdr->date;
  1765. X        oldtime = hdr->time;
  1766. X    }
  1767. X    first = 0;
  1768. X    return 1;        /* we read something */
  1769. X}
  1770. X
  1771. Xvoid
  1772. Xput_int(number, f)        /* write a 2 byte integer */
  1773. X    short           number;
  1774. X    FILE           *f;
  1775. X{
  1776. X    fputc((char) (number & 255), f);
  1777. X    fputc((char) (number >> 8), f);
  1778. X}
  1779. X
  1780. Xvoid
  1781. Xput_long(number, f)        /* write a 4 byte integer */
  1782. X    long            number;
  1783. X    FILE           *f;
  1784. X{
  1785. X    put_int((short) (number & 0xFFFF), f);
  1786. X    put_int((short) (number >> 16), f);
  1787. X}
  1788. X
  1789. Xvoid
  1790. Xwritehdr(hdr, f)        /* write a header to an archive */
  1791. X    struct heads   *hdr;    /* header to write */
  1792. X    FILE           *f;    /* archive to write to */
  1793. X{
  1794. X    fputc(ARCMARK, f);        /* write out the mark of ARC */
  1795. X    fputc(hdrver, f);    /* write out the header version */
  1796. X    if (!hdrver)        /* if that's the end */
  1797. X        return;        /* then write no more */
  1798. X#if    MSDOS
  1799. X    fwrite(hdr, sizeof(struct heads), 1, f);
  1800. X#else
  1801. X    /* byte/word ordering hassles... */
  1802. X#if    MTS
  1803. X    etoa(hdr->name, strlen(hdr->name));
  1804. X#endif
  1805. X    fwrite(hdr->name, 1, FNLEN, f);
  1806. X    put_long(hdr->size, f);
  1807. X    put_int(hdr->date, f);
  1808. X    put_int(hdr->time, f);
  1809. X    put_int(hdr->crc, f);
  1810. X    put_long(hdr->length, f);
  1811. X#endif
  1812. X
  1813. X    /* note the newest file for updating the archive timestamp */
  1814. X
  1815. X    if (hdr->date > arcdate
  1816. X        || (hdr->date == arcdate && hdr->time > arctime)) {
  1817. X        arcdate = hdr->date;
  1818. X        arctime = hdr->time;
  1819. X    }
  1820. X}
  1821. X
  1822. Xvoid
  1823. Xputc_tst(c, t)            /* put a character, with tests */
  1824. X    char            c;    /* character to output */
  1825. X    FILE           *t;    /* file to write to */
  1826. X{
  1827. X    c &= 0xff;
  1828. X    if (t)
  1829. X#if    UNIX
  1830. X        fputc(c, t);
  1831. X#else
  1832. X        if (fputc(c, t) == EOF)
  1833. X            abort("Write fail (disk full?)");
  1834. X#endif
  1835. X}
  1836. X
  1837. X/*
  1838. X * NOTE:  The filecopy() function is used to move large numbers of bytes from
  1839. X * one file to another.  This particular version has been modified to improve
  1840. X * performance in Computer Innovations C86 version 2.3 in the small memory
  1841. X * model.  It may not work as expected with other compilers or libraries, or
  1842. X * indeed with different versions of the CI-C86 compiler and library, or with
  1843. X * the same version in a different memory model.
  1844. X * 
  1845. X * The following is a functional equivalent to the filecopy() routine that
  1846. X * should work properly on any system using any compiler, albeit at the cost
  1847. X * of reduced performance:
  1848. X * 
  1849. X * filecopy(f,t,size) 
  1850. X *      FILE *f, *t; long size; 
  1851. X * { 
  1852. X *      while(size--)
  1853. X *              putc_tst(fgetc(f),t); 
  1854. X * }
  1855. X */
  1856. X#if    MSDOS
  1857. X#include <fileio2.h>
  1858. X
  1859. Xfilecopy(f, t, size)        /* bulk file copier */
  1860. X    FILE           *f, *t;    /* files from and to */
  1861. X    long            size;    /* bytes to copy */
  1862. X{
  1863. X    char           *buf;    /* buffer pointer */
  1864. X    char           *alloc();/* buffer allocator */
  1865. X    unsigned int    bufl;    /* buffer length */
  1866. X    unsigned int    coreleft();    /* space available reporter */
  1867. X    unsigned int    cpy;    /* bytes being copied */
  1868. X    long            floc, tloc, fseek();    /* file pointers, setter */
  1869. X    struct regval   reg;    /* registers for DOS calls */
  1870. X
  1871. X    if ((bufl = coreleft()) < 1000)    /* see how much space we have */
  1872. X        abort("Out of memory");
  1873. X    bufl -= 1000;        /* fudge factor for overhead */
  1874. X    if (bufl > 60000)
  1875. X        bufl = 60000;    /* avoid choking alloc() */
  1876. X    if (bufl > size)
  1877. X        bufl = size;    /* avoid wasting space */
  1878. X    buf = alloc(bufl);    /* allocate our buffer */
  1879. X
  1880. X    floc = fseek(f, 0L, 1);    /* reset I/O system */
  1881. X    tloc = fseek(t, 0L, 1);
  1882. X
  1883. X    segread(®.si);    /* set segment registers for DOS */
  1884. X
  1885. X    while (size > 0) {    /* while more to copy */
  1886. X        reg.ax = 0x3F00;/* read from handle */
  1887. X        reg.bx = filehand(f);
  1888. X        reg.cx = bufl < size ? bufl : size;    /* amount to read */
  1889. X        reg.dx = buf;
  1890. X        if (sysint21(®, ®) & 1)
  1891. X            abort("Read fail");
  1892. X
  1893. X        cpy = reg.ax;    /* amount actually read */
  1894. X        reg.ax = 0x4000;/* write to handle */
  1895. X        reg.bx = filehand(t);
  1896. X        reg.cx = cpy;
  1897. X        reg.dx = buf;
  1898. X        sysint21(®, ®);
  1899. X
  1900. X        if (reg.ax != cpy)
  1901. X            abort("Write fail (disk full?)");
  1902. X
  1903. X        size -= (long) cpy;
  1904. X    }
  1905. X
  1906. X    free(buf);        /* all done with buffer */
  1907. X}
  1908. X#else
  1909. X
  1910. Xvoid
  1911. Xfilecopy(f, t, size)        /* bulk file copier */
  1912. X    FILE           *f, *t;    /* files from and to */
  1913. X    long            size;    /* bytes to copy */
  1914. X{
  1915. X    char           *buf;    /* buffer pointer */
  1916. X    char           *malloc();    /* buffer allocator */
  1917. X    unsigned int    bufl;    /* buffer length */
  1918. X    unsigned int    cpy;    /* bytes being copied */
  1919. X
  1920. X    bufl = 32760;
  1921. X    if (bufl > size)
  1922. X        bufl = size;    /* don't waste space */
  1923. X
  1924. X    buf = malloc(bufl);
  1925. X
  1926. X    while (size > 0) {
  1927. X        cpy = fread(buf, sizeof(char),
  1928. X            bufl < size ? bufl : (unsigned short) size, f);
  1929. X        if (fwrite(buf, sizeof(char), cpy, t) != cpy)
  1930. X            abort("Write fail (no space?)");
  1931. X        size -= cpy;
  1932. X    }
  1933. X
  1934. X    free(buf);
  1935. X}
  1936. X#endif
  1937. ________This_Is_The_END________
  1938. if test `wc -c < arcio.c` -ne     7418; then
  1939.     echo 'shar: arcio.c was damaged during transit (should have been     7418 bytes)'
  1940. fi
  1941. fi        ; : end of overwriting check
  1942. echo 'x - arclst.c'
  1943. if test -f arclst.c; then echo 'shar: not overwriting arclst.c'; else
  1944. sed 's/^X//' << '________This_Is_The_END________' > arclst.c
  1945. X/*
  1946. X * $Header: arclst.c,v 1.5 88/06/01 18:05:57 hyc Locked $
  1947. X */
  1948. X
  1949. X/*  ARC - Archive utility - ARCLST
  1950. X  
  1951. X    Version 2.39, created on 04/22/87 at 13:48:29
  1952. X  
  1953. X(C) COPYRIGHT 1985-87 by System Enhancement Associates; ALL RIGHTS RESERVED
  1954. X  
  1955. X    By:     Thom Henderson
  1956. X  
  1957. X    Description:
  1958. X     This file contains the routines used to list the contents
  1959. X     of an archive.
  1960. X  
  1961. X    Language:
  1962. X     Computer Innovations Optimizing C86
  1963. X*/
  1964. X#include <stdio.h>
  1965. X#include "arc.h"
  1966. X
  1967. Xvoid            rempath(), openarc(), closearc();
  1968. Xint             readhdr(), match();
  1969. X
  1970. Xvoid
  1971. Xlstarc(num, arg)        /* list files in archive */
  1972. X    int             num;    /* number of arguments */
  1973. X    char           *arg[];    /* pointers to arguments */
  1974. X{
  1975. X    struct heads    hdr;    /* header data */
  1976. X    int             list;    /* true to list a file */
  1977. X    int             did[MAXARG];    /* true when argument was used */
  1978. X    long            tnum, tlen, tsize;    /* totals */
  1979. X    int             n;    /* index */
  1980. X    void            lstfile();
  1981. X
  1982. X    tnum = tlen = tsize = 0;/* reset totals */
  1983. X
  1984. X    for (n = 0; n < num; n++)    /* for each argument */
  1985. X        did[n] = 0;    /* reset usage flag */
  1986. X    rempath(num, arg);    /* strip off paths */
  1987. X
  1988. X    if (note && !kludge) {
  1989. X        printf("Name          Length  ");
  1990. X        if (bose)
  1991. X            printf("  Stowage    SF   Size now");
  1992. X        printf("  Date     ");
  1993. X        if (bose)
  1994. X            printf("  Time    CRC");
  1995. X        printf("\n");
  1996. X
  1997. X        printf("============  ========");
  1998. X        if (bose)
  1999. X            printf("  ========  ====  ========");
  2000. X        printf("  =========");
  2001. X        if (bose)
  2002. X            printf("  ======  ====");
  2003. X        printf("\n");
  2004. X    }
  2005. X    openarc(0);        /* open archive for reading */
  2006. X
  2007. X    if (num) {        /* if files were named */
  2008. X        while (readhdr(&hdr, arc)) {    /* process all archive files */
  2009. X            list = 0;    /* reset list flag */
  2010. X            for (n = 0; n < num; n++) {    /* for each template
  2011. X                             * given */
  2012. X                if (match(hdr.name, arg[n])) {
  2013. X                    list = 1;    /* turn on list flag */
  2014. X                    did[n] = 1;    /* turn on usage flag */
  2015. X                    break;    /* stop looking */
  2016. X                }
  2017. X            }
  2018. X
  2019. X            if (list) {    /* if this file is wanted */
  2020. X                if (!kludge)
  2021. X                    lstfile(&hdr);    /* then tell about it */
  2022. X                tnum++;    /* update totals */
  2023. X                tlen += hdr.length;
  2024. X                tsize += hdr.size;
  2025. X            }
  2026. X            fseek(arc, hdr.size, 1);    /* move to next header */
  2027. X        }
  2028. X    } else
  2029. X        while (readhdr(&hdr, arc)) {    /* else report on all files */
  2030. X            if (!kludge)
  2031. X                lstfile(&hdr);
  2032. X            tnum++;    /* update totals */
  2033. X            tlen += hdr.length;
  2034. X            tsize += hdr.size;
  2035. X            fseek(arc, hdr.size, 1);    /* skip to next header */
  2036. X        }
  2037. X
  2038. X    closearc(0);        /* close archive after reading */
  2039. X
  2040. X    if (note && !kludge) {
  2041. X        printf("        ====  ========");
  2042. X        if (bose)
  2043. X            printf("            ====  ========");
  2044. X        printf("\n");
  2045. X    }
  2046. X    if (note) {
  2047. X        printf("Total %6ld  %8ld", tnum, tlen);
  2048. X        if (bose) {
  2049. X            if (tlen)
  2050. X                printf("            %3ld%%", 100L - (100L * tsize) / tlen);
  2051. X            else
  2052. X                printf("            ---");
  2053. X            printf("  %8ld", tsize);
  2054. X        }
  2055. X        printf("\n");
  2056. X
  2057. X        for (n = 0; n < num; n++) {    /* report unused args */
  2058. X            if (!did[n]) {
  2059. X                printf("File not found: %s\n", arg[n]);
  2060. X                nerrs++;
  2061. X            }
  2062. X        }
  2063. X    }
  2064. X}
  2065. X
  2066. Xvoid
  2067. Xlstfile(hdr)            /* tell about a file */
  2068. X    struct heads   *hdr;    /* pointer to header data */
  2069. X{
  2070. X    int             yr, mo, dy;    /* parts of a date */
  2071. X    int             hh, mm;    /* parts of a time */
  2072. X
  2073. X    static char    *mon[] =    /* month abbreviations */
  2074. X    {
  2075. X     "Jan", "Feb", "Mar", "Apr",
  2076. X     "May", "Jun", "Jul", "Aug",
  2077. X     "Sep", "Oct", "Nov", "Dec"
  2078. X    };
  2079. X
  2080. X    if (!note) {        /* no notes means short listing */
  2081. X        printf("%s\n", hdr->name);
  2082. X        return;
  2083. X    }
  2084. X
  2085. X    yr = (hdr->date >> 9) & 0x7f;    /* dissect the date */
  2086. X    mo = (hdr->date >> 5) & 0x0f;
  2087. X    dy = hdr->date & 0x1f;
  2088. X
  2089. X    hh = (hdr->time >> 11) & 0x1f;    /* dissect the time */
  2090. X    mm = (hdr->time >> 5) & 0x3f;
  2091. X/*    ss = (hdr->time & 0x1f) * 2;    seconds, not used. */
  2092. X
  2093. X    printf("%-12s  %8ld  ", hdr->name, hdr->length);
  2094. X
  2095. X    if (bose) {
  2096. X        switch (hdrver) {
  2097. X        case 1:
  2098. X        case 2:
  2099. X            printf("   --   ");
  2100. X            break;
  2101. X        case 3:
  2102. X            printf(" Packed ");
  2103. X            break;
  2104. X        case 4:
  2105. X            printf("Squeezed");
  2106. X            break;
  2107. X        case 5:
  2108. X        case 6:
  2109. X        case 7:
  2110. X            printf("crunched");
  2111. X            break;
  2112. X        case 8:
  2113. X            printf("Crunched");
  2114. X            break;
  2115. X        case 9:
  2116. X            printf("Squashed");
  2117. X            break;
  2118. X        default:
  2119. X            printf("Unknown!");
  2120. X        }
  2121. X
  2122. X        if (hdr->length)
  2123. X            printf("  %3ld%%", 100L - (100L * hdr->size) / hdr->length);
  2124. X        else
  2125. X            printf("  ---");
  2126. X        printf("  %8ld  ", hdr->size);
  2127. X    }
  2128. X    printf("%2d %3s %02d", dy, mon[mo - 1], (yr + 80) % 100);
  2129. X
  2130. X    if (bose)
  2131. X        printf("  %2d:%02d%c  %04x",
  2132. X               (hh > 12 ? hh - 12 : hh), mm, (hh > 11 ? 'p' : 'a'),
  2133. X               hdr->crc & 0xffff);
  2134. X
  2135. X    printf("\n");
  2136. X}
  2137. ________This_Is_The_END________
  2138. if test `wc -c < arclst.c` -ne     4418; then
  2139.     echo 'shar: arclst.c was damaged during transit (should have been     4418 bytes)'
  2140. fi
  2141. fi        ; : end of overwriting check
  2142. exit 0
  2143.  
  2144.