home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 28 / amigaformatcd28.iso / -seriously_amiga- / archivers / unsharppc / src / unshar.c < prev    next >
C/C++ Source or Header  |  1998-04-23  |  20KB  |  806 lines

  1. /*
  2.  *                     Unshar V1.3 (C) Copyright Eddy Carroll 1990
  3.  *                     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  4.  * Usage: Unshar {-overwrite} {-nosort} <filename> ...
  5.  *
  6.  * Extracts files from a SHAR'd archive.
  7.  *
  8.  * This utility has a few advantages over the version of SH on Fish Disk 92.
  9.  * For a start, it doesn't crash if it gets a slightly unusual format! It
  10.  * also has a (limited) capability for extracting files from shar archives
  11.  * which use 'SED' rather than 'CAT' (typically, this is done so that
  12.  * each line in the file may be prefixed with an 'X' or similar, so that
  13.  * indentation is preserved). Unshar will spot 'SED' lines, and treat them
  14.  * the same as 'CAT' (allowing for different parameters of course) with
  15.  * the exception that any leading characters matching the string specified
  16.  * in the SED command are discarded.
  17.  *
  18.  * Unshar checks files being extracted to see if they are to be stored
  19.  * within a sub-directory. If they are, and the sub-directory does not
  20.  * already exist, it is created.
  21.  *
  22.  * One other small addition is that any filenames which are prefixed with
  23.  * the characters "./" have these characters removed. Some shar files
  24.  * use this prefix to ensure that the files are stored in the current
  25.  * directory.
  26.  *
  27.  * Files are extracted into the current directory. As each file is extracted,
  28.  * an appropriate message is printed on the screen. If the file already
  29.  * exists, the user is warned and given the chance to avoid overwriting it
  30.  * "Overwrite file (Yes/No/All)? ". The default is Yes. If All is selected,
  31.  * then this prompt is supressed for the rest of the current file. It may
  32.  * be disabled for all the files by specifying the -o switch on the
  33.  * command line.
  34.  *
  35.  * By default, unshar will do a `prescan' over all the files listed, looking
  36.  * at the first few lines of each for a Subject: line. If one is found, then
  37.  * it examines it for Issue numbers and Part numbers, and unshars those files
  38.  * having the lowest numbers first. This results in the shar files being
  39.  * extracted in the correct order, regardless of what order they were listed
  40.  * in on the command line. You can override this behaviour and unshar files
  41.  * in the command line order by specifying the -n switch.
  42.  * 
  43.  * DISTRIBUTION
  44.  * I retain copyright rights to this source code, though it may be _freely_
  45.  * distributed. The executable file created from this source code is in
  46.  * the Public Domain and may be distributed without any restrictions.
  47.  *
  48.  *
  49.  * N.b. The code is starting to look a bit messy; could be it will get
  50.  *      a complete overhaul for the next revision.
  51.  *
  52.  */
  53.  
  54. /* Compiles under Lattice V5.04 */
  55.  
  56. #ifndef __PPC__
  57. #ifndef LATTICE_50 
  58. #include "system.h"
  59. #endif
  60. #else /* __PPC__ */
  61. #include "system.h"
  62. #endif
  63.  
  64. #define YES            1
  65. #define NO            0
  66. #define CR            '\015'
  67. #define EOL            '\012'
  68. #define SINGLEQUOTE '\''
  69. #define DOUBLEQUOTE '\042'
  70. #define MAXSTRING    512        /* Maximum length of input line */
  71.  
  72. /*
  73.  *        New handler for Ctrl-C. Checks if CTRL-C received, and if it has,
  74.  *        sets the global CtrlC variable to true.
  75.  */
  76. #define chkabort() (CtrlC |= ((SetSignal(0,0) & SIGBREAKF_CTRL_C)))
  77.  
  78.  
  79. char HelpMsg[] = "\
  80. Unshar V1.3 by Eddy Carroll 1990 Public Domain, extracts Unix shar archives.\
  81. \n\
  82. Usage: unshar {-overwrite} {-nosort} <filename> ...\n";
  83.  
  84. char DiskMsg[]  = "Unshar aborted - Disk write error (disk full?)\n";
  85. char ErrorMsg[] = "Unshar: Invalid CAT or SED command at line ";
  86.  
  87. int linenum;
  88. int CtrlC = NO;
  89.  
  90. /*
  91.  * --------------------------------------------------------------------------
  92.  * The following block may be removed `as-is' and used in other programs.
  93.  * It provides basic buffered i/o on two files, an input file and an output
  94.  * file. It also provides output to the current standard output via
  95.  * print. Buffering is done using buffers of size MAXBUF.
  96.  *
  97.  * The following routines are provided:
  98.  *
  99.  * getc() returns an integer corresponding to the next character read from
  100.  * infile, or EOF if the end of file has been reached.
  101.  *
  102.  * putc(c) outputs a character to outfile. If a diskerror occurs, the global
  103.  * diskerror is set to YES, and all further diskwrites are ignored.
  104.  *
  105.  * getline() returns a pointer to a string containing the next line
  106.  * read in from infile. getline() also checks for CTRL-C via chkabort()
  107.  * 
  108.  * putline(s) outputs a string to outfile, returning non-zero if an
  109.  * error occurred during the write.
  110.  *
  111.  * flushin() resets getc() and getline() for input from a new file
  112.  *
  113.  * flushout() flushes output buffer; call prior to closing output file.
  114.  *
  115.  * input() returns a pointer to a string containing a line from stdin.
  116.  *
  117.  * print(s) prints a message on standard output.
  118.  *
  119.  * print3(s1,s2,s3) outputs three strings on standard output.
  120.  *
  121.  * numtostr(n) returns a pointer to the ascii representation of n.
  122.  *
  123.  * Special Notes
  124.  * ~~~~~~~~~~~~~
  125.  * You should ensure that you use the filenames 'infile' and 'outfile'
  126.  * when you are opening the input and output files in main(). Also,
  127.  * do not #define EOF or MAXBUF elsewhere in your program.
  128.  *
  129.  */
  130.  
  131. #define EOF        -1
  132. #define MAXBUF    10000
  133.  
  134. BPTR infile, outfile;
  135. LONG maxin = MAXBUF, maxout = MAXBUF, inbuf = MAXBUF, outbuf = 0;
  136. unsigned char inbuffer[MAXBUF], outbuffer[MAXBUF];
  137. int diskerror = NO;
  138.  
  139. /*
  140.  *        int getc()
  141.  *        ----------
  142.  *        Returns next character from infile, or EOF if end of file.
  143.  *
  144.  *        Replaced by a macro to improve performance. Original function was:
  145.  *
  146.  *        int getc()
  147.  *        {
  148.  *            if (!maxin)
  149.  *                return (EOF);
  150.  *
  151.  *            if (inbuf >= maxin) {
  152.  *                maxin = Read(infile, inbuffer, MAXBUF);
  153.  *                inbuf = 0;
  154.  *                if (!maxin)
  155.  *                    return (EOF);
  156.  *            }
  157.  *            return (inbuffer[inbuf++]);
  158.  *        }
  159.  *
  160.  */
  161. #define IF(x,y,z) ((x) ? (y) : (z))
  162.  
  163. #define getc()    IF(!maxin, EOF, \
  164.                 IF(inbuf >= maxin, ( \
  165.                     inbuf = 0, maxin = Read(infile, inbuffer, MAXBUF), \
  166.                     IF(!maxin, EOF, inbuffer[inbuf++]) \
  167.                 ), inbuffer[inbuf++])) \
  168.  
  169. /* 
  170.  *        Prepares getc() for input from a new file
  171.  */
  172. #define flushin() (maxin = MAXBUF, inbuf = MAXBUF)
  173.  
  174. /*
  175.  *        putc(ch)
  176.  *        --------
  177.  *        Outputs character ch to disk. If a diskerror is detected, then all
  178.  *        further output is ignored and the global diskerror is set to YES.
  179.  *
  180.  *        Replaced by a macro for performance reasons. Original function was:
  181.  *
  182.  *        void putc(ch)
  183.  *        int ch;
  184.  *        {
  185.  *            if (ch == EOF)
  186.  *                maxout = outbuf;
  187.  *            else
  188.  *                outbuffer[outbuf++] = ch;
  189.  *        
  190.  *            if (outbuf >= maxout) {
  191.  *                if (!diskerror && Write(outfile, outbuffer, maxout) == -1)
  192.  *                    diskerror = YES;
  193.  *                outbuf = 0;
  194.  *                maxout = MAXBUF;
  195.  *            }
  196.  *        }
  197.  */
  198. #define flushout() (maxout = outbuf, \
  199.                     IF(!diskerror && Write(outfile, outbuffer, maxout) == -1, \
  200.                         diskerror = YES, \
  201.                         0), \
  202.                     outbuf = 0, maxout = MAXBUF)
  203.  
  204. #define putc(ch) (outbuffer[outbuf++] = ch, \
  205.                   IF(outbuf >= maxout, \
  206.                       (IF (!diskerror && \
  207.                             Write(outfile, outbuffer, maxout) == -1, \
  208.                         diskerror = YES, \
  209.                         0), \
  210.                      outbuf = 0, maxout = MAXBUF), \
  211.                     0))
  212.  
  213. /*
  214.  *        print(s)
  215.  *        --------
  216.  *        Outputs a message to std output
  217.  */
  218. void print(s)
  219. char *s;
  220. {
  221.     Write(Output(),s,strlen(s));
  222. }
  223.  
  224. /*
  225.  *        print3()
  226.  *        --------
  227.  *        Outputs three strings to std output.
  228.  *        Useful for sequences like print3("string", variable, "string");
  229.  */
  230. void print3(s1,s2,s3)
  231. char *s1,*s2,*s3;
  232. {
  233.     print(s1);
  234.     print(s2);
  235.     print(s3);
  236. }
  237.  
  238. /*
  239.  *        getline()
  240.  *        ---------
  241.  *        Reads in a line from current infile into string, and returns a
  242.  *        pointer to that string. Returns NULL if EOF encountered.
  243.  */
  244. char *getline()
  245. {
  246.     register int ch, i = 0;
  247.     static char line[MAXSTRING];
  248.  
  249.     ch = getc();
  250.     if (ch == EOF)
  251.         return (NULL);
  252.  
  253.     while (i < (MAXSTRING-1) && ch != EOF && ch != EOL) {
  254.         line[i++] = ch;
  255.         ch = getc();
  256.     }
  257.  
  258.     line[i] = '\0';
  259.     linenum++;
  260.     chkabort();
  261.     return (line);
  262. }
  263.  
  264. /*
  265.  *        putline()
  266.  *        ---------
  267.  *        Outputs a string to the current output file (terminating it with LF).
  268.  *        Returns 0 for success, non-zero for disk error
  269.  */
  270. int putline(s)
  271. char *s;
  272. {
  273.     while (*s)
  274.         putc(*s++);
  275.     putc(EOL);
  276.     return (diskerror);
  277. }
  278.  
  279. /*
  280.  *        input()
  281.  *        -------
  282.  *        Reads a line from keyboard and returns pointer to it
  283.  */
  284. char *input()
  285. {
  286.     static char s[80];
  287.     int len;
  288.  
  289.     s[0] = '\0';
  290.     len = Read(Input(),s,75);
  291.     if (len < 0)
  292.         len = 0;
  293.     s[len] = '\0';
  294.     chkabort();
  295.     return(s);
  296. }
  297.  
  298. /*
  299.  *        numtostr()
  300.  *        ----------
  301.  *        Converts integer to string and returns pointer to it.
  302.  */
  303. char *numtostr(n)
  304. int n;
  305. {
  306.     static char s[20];
  307.     int i = 19;
  308.  
  309.     s[19] = '\0';
  310.     if (n)
  311.         while (n)
  312.             s[--i] = '0' + (n % 10), n /= 10;
  313.     else
  314.         s[--i] = '0';
  315.     return(&s[i]);
  316. }
  317.  
  318. /*
  319.  *        --------------------* End of Buffered IO routines *-----------------
  320.  */
  321.  
  322. /*
  323.  *        index()
  324.  *        -------
  325.  *        Like standard Unix index(), but skips over quotes if skip == true.
  326.  *        Also skips over chars prefixed by a \. Returns pointer to first
  327.  *        occurance of char c inside string s, or NULL.
  328.  */
  329. char *index(s,c,skip)
  330. char *s,c;
  331. int skip;
  332. {
  333.     register char *p = s;
  334.     register int noquotes = YES, literal = NO;
  335.  
  336.     while (*p) {
  337.         if (literal) {
  338.             literal = NO;
  339.             p++;
  340.         } else {
  341.             if (skip && ((*p == SINGLEQUOTE) || (*p == DOUBLEQUOTE)))
  342.                 noquotes = !noquotes;
  343.             if (noquotes && (*p == c))
  344.                 return(p);
  345.             literal = (*p == '\\');
  346.             p++;
  347.         }
  348.     }
  349.     return (NULL);
  350. }
  351.  
  352. /*
  353.  *        getname()
  354.  *        ---------
  355.  *        Extracts a string from start of string s1 and stores it in s2.
  356.  *        Leading spaces are discarded, and quotes, if present, are used to
  357.  *        indicate the start and end of the filename. If mode is MODE_FILE,
  358.  *        then if the name starts with either './' or '/', this prefix is
  359.  *        stripped. This doesn't happen if the mode is MODE_TEXT. A pointer
  360.  *        to the first character after the string in s1 is returned. In
  361.  *        addition, any characters prefixed with are passed through without
  362.  *        checking.
  363.  */
  364.  
  365. #define MODE_FILE 1
  366. #define MODE_TEXT 2
  367.  
  368. char *getname(s1,s2,mode)
  369. char *s1,*s2;
  370. {
  371.     char endchar = ' ';
  372.  
  373.     while (*s1 == ' ')
  374.         s1++;
  375.  
  376.     if (*s1 == SINGLEQUOTE || *s1 == DOUBLEQUOTE)
  377.         endchar = *s1++;
  378.  
  379.     if (mode == MODE_FILE) {
  380.         if (s1[0] == '.' && s1[1] == '/')
  381.             s1 += 2;
  382.         while (*s1 == '/')
  383.             s1++;
  384.     }
  385.  
  386.     while (*s1 && *s1 != endchar) {
  387.         if (*s1 == '\\' && *(s1+1))
  388.             s1++;
  389.         *s2++ = *s1++;
  390.     }
  391.     *s2 = '\0';
  392.  
  393.     if (*s1 == endchar)
  394.         return(++s1);
  395.     else
  396.         return(s1);
  397. }
  398.  
  399.  
  400. /*
  401.  *        checkfordir()
  402.  *        -------------
  403.  *        Checks filename to see if it is inside a subdirectory. If it is,
  404.  *        then checks if subdirectory exists, and creates it if it doesn't.
  405.  */
  406. void checkfordir(filename)
  407. char *filename;
  408. {
  409.     char dir[80], *p;
  410.     int i, x;
  411.     BPTR dirlock;
  412.  
  413.     p = filename;
  414.  
  415.     while (p = index(p, '/', 1)) {
  416.  
  417.         /* Dir exists, so copy dir part of filename into dir name area */
  418.  
  419.         x = p - filename;
  420.         for (i = 0; i < x; i++)
  421.             dir[i] = filename[i];
  422.         dir[i] = '\0';
  423.  
  424.         /* Now, see if directory exists, if not then create */
  425.         if ((dirlock = Lock(dir,ACCESS_READ)) == NULL) {
  426.             dirlock = CreateDir(dir);
  427.             if (dirlock) {
  428.                 print3("Creating directory ", dir, "\n");
  429.             }
  430.         }
  431.         if (dirlock)
  432.             UnLock(dirlock);
  433.  
  434.         p++;
  435.     }
  436. }
  437.  
  438. /*
  439.  *        unshar()
  440.  *        --------
  441.  *        Extracts all stored files from a shar file. Returns zero for success,
  442.  *        non-zero if a disk error occurred. If echofilename is non-zero, then
  443.  *        the name of each shar file is output before unsharing it. If
  444.  *        overwrite is non-zero, then existing files are overwritten without
  445.  *        any warning. If title is non-NULL, then it points to a string
  446.  *        which is printed out before any files are extracted.
  447.  */
  448. int unshar(sharfile, title, echofilename, overwrite)
  449. char *sharfile, *title;
  450. int echofilename, overwrite;
  451. {
  452.     register char *s, *p;
  453.     char endmarker[100], filename[100],sedstring[100];
  454.     int endlen, stripfirst, startfile, found = NO, err = NO, skip, sedlen;
  455.     int append;
  456.     BPTR filelock;
  457.  
  458.     if ((infile = Open(sharfile, MODE_OLDFILE)) == NULL) {
  459.         print3("Can't open file ", sharfile, " for input\n");
  460.         return(1);
  461.     }
  462.  
  463.     linenum = 0;
  464.     if (echofilename)
  465.         print3("\033[7m Shar file: ", sharfile, " \033[0m\n");
  466.     if (title)
  467.         print(title);
  468.  
  469.     while (!err && !CtrlC && (s = getline()) != NULL) {
  470.         startfile = NO;
  471.         if (strncmp(s,"cat ",4) == 0) {
  472.             startfile  = YES;
  473.             stripfirst = NO;
  474.         }
  475.         if (strncmp(s,"sed ",4) == 0) {
  476.             startfile  = YES;
  477.             stripfirst = YES;
  478.             sedlen = 0;
  479.             /*
  480.              *        Note - tons of sanity checks done here to ensure that a
  481.              *        sed line of the form:
  482.              *
  483.              *            sed >s/somefile <<'endmarker' -e 's/X//'
  484.              *
  485.              *        Will be interpreted correctly.
  486.              */
  487.  
  488. #define ISPREFIX(ch)    (ch == DOUBLEQUOTE || ch == SINGLEQUOTE || ch == ' ')
  489. #define ISMETA(ch)        (ch == '<' || ch == '>')
  490. #define ISOK(s)            (s[1] == '/' && ISPREFIX(s[-1]) && !ISMETA(s[-2]))
  491.  
  492.             p = s;
  493.             while ((p = index(p,'s',0)) != NULL && !ISOK(p))
  494.                 p++;
  495.             if (p != NULL) {
  496.                 p += 2;                /* Skip over the 's/' bit    */
  497.                 if (*p == '^')        /* Skip past starting char    */
  498.                     p++;
  499.                 while (*p && *p != '/')
  500.                     sedstring[sedlen++] = *p++;
  501.             } 
  502.         }
  503.  
  504.         if (startfile) {    
  505.             if (found == NO) {
  506.                 found = YES;
  507.             }
  508.             if ((p = index(s,'>',1)) == NULL) {
  509.                 print3(ErrorMsg, numtostr(linenum), "(a)\n");
  510.             } else {
  511.                 /*
  512.                  *       This next bit checks to see if we are creating or
  513.                  *       appending to the output file (i.e. >file or >>file)
  514.                  */
  515.                 if (*++p == '>') {
  516.                     p++;
  517.                     append = YES;
  518.                 } else
  519.                     append = NO;
  520.                 getname(p,filename,MODE_FILE);
  521.                 p = s;
  522.                 while ((p = index(p,'<',1)) && (p[1] != '<'))
  523.                     ;
  524.                 if (p)
  525.                     getname(p+2,endmarker,MODE_TEXT);
  526.  
  527.                 endlen = strlen(endmarker);
  528.  
  529.                 if (strlen(filename) && endlen) {
  530.  
  531.                     checkfordir(filename);
  532.  
  533.                     /* Found a valid line so perform extract */
  534.  
  535.                     /* Check if file exists */
  536.  
  537.                     skip = NO;
  538.                     outfile = NULL;
  539.                     if (!overwrite) {
  540.                         filelock = Lock(filename, ACCESS_READ);
  541.                         if (filelock) {
  542.                             UnLock(filelock);
  543.                             if (!append) {
  544.                                 print3("Overwrite file ", filename,
  545.                                     " (Yes, [No], All)? ");
  546.  
  547.                                 switch (tolower(*input())) {
  548.                                     case 'a': overwrite = YES;    break;
  549.                                     case 'y': skip = NO;        break;
  550.                                     default : skip = YES;        break;
  551.                                 }
  552.                             }
  553.                         }
  554.                     }
  555.  
  556.                     /*
  557.                      *        Open as old file and seek to the end if
  558.                      *        appending AND the file already exists. If
  559.                      *        it doesn't exist, then just open as new file.
  560.                      */
  561.                     if (filelock && append) {
  562.                         outfile = Open(filename, MODE_READWRITE);
  563.                         if (outfile)
  564.                             Seek(outfile, 0, OFFSET_END);
  565.                     } else if (!skip)
  566.                         outfile = Open(filename, MODE_NEWFILE);
  567.  
  568.                     if (!outfile && !skip) {
  569.                         print3("Couldn't open file ",filename," for output\n");
  570.                         skip = YES;
  571.                     }
  572.                     if (!skip) {
  573.                         if (filelock && append)
  574.                             print3("Extending file ", filename, "\n");
  575.                         else
  576.                             print3("Unsharing file ", filename, "\n");
  577.                     }
  578.                     s = getline();
  579.                     err = NO;
  580.                     while (s && strncmp(s,endmarker,endlen) && !CtrlC) {
  581.                         if (stripfirst && !strncmp(sedstring,s,sedlen))
  582.                             s += sedlen;
  583.                         if (!skip && (err = putline(s)))
  584.                             break;
  585.                         s = getline();
  586.                     }
  587.                     if (!skip) {
  588.                         flushout();
  589.                         if (err || diskerror)
  590.                             print(DiskMsg), err = YES;
  591.                         Close(outfile);
  592.                     }
  593.                 } else
  594.                     print(ErrorMsg, numtostr(linenum), "\n");
  595.             }
  596.         }
  597.     }
  598.  
  599.     if (!err && !CtrlC)
  600.         if (found)
  601.             print("Unshar done\n");
  602.         else
  603.             print("No files to unshar\n");
  604.     Close(infile);
  605.     flushin();
  606.     return(err);
  607. }
  608.  
  609. /*
  610.  *        readheader()
  611.  *        ------------
  612.  *        Reads in the first few lines (actually 480 bytes) of filename, and
  613.  *        scans for a subject line. If the subject line is found, then
  614.  *        it is stored in subject (up to 100 chars in length), else a null
  615.  *        string is stored. The subject line is also examined, and a sequence
  616.  *        number determined. If the subject line starts with i or I, followed
  617.  *        by a number, then this is taken as the sequence number. Otherwise,
  618.  *        the first number after `Part' or `part' is uses. This sequence
  619.  *        number is returned in seqnum. I-type sequence numbers have 1000
  620.  *        added on to them first of all, to keep them seperated from 'part'
  621.  *        types.
  622.  *
  623.  *        The idea is that successive parts of a set of several shar files
  624.  *        will have increasing sequence numbers.
  625.  *
  626.  *        Zero is returned if an error occurred.
  627.  */
  628. int readheader(filename, subject, seqnum)
  629. char *filename, *subject;
  630. int *seqnum;
  631. {
  632.     static char buf[480];
  633.     BPTR file;
  634.     int len, i;
  635.     char *p;
  636.  
  637.     *subject = '\0';
  638.  
  639.     file = Open(filename, MODE_OLDFILE);
  640.     if (!file) {
  641.         print3("Can't open file ", filename, " for input\n");
  642.         return (0);
  643.     }
  644.  
  645.     len = Read(file, buf, 480);
  646.     Close(file);
  647.     if (len == -1) {
  648.         print3("Error reading header from file ", filename, "\n");
  649.         return (0);
  650.     }
  651.  
  652.     /*
  653.      *        Now analyse file for a Subject: line
  654.      */
  655.     for (i = 0; i < len; i++) {
  656.         if (buf[i] == '\n' && strnicmp(&buf[i+1], "Subject:", 8) == 0) {
  657.             /*
  658.              *        Copy subject line into subject string, ensuring
  659.              *        it is properly terminated with a \n and \0
  660.              */
  661.             i++;
  662.             strncpy(subject, buf + i + 9, 98);
  663.             subject[98] = '\0';
  664.             for (p = subject; *p; p++) {
  665.                 if (*p == '\n') {
  666.                     break;
  667.                 }
  668.             }
  669.             *p++ = '\n';
  670.             *p = '\0';
  671.             /*
  672.              *        Now scan new subject string looking for sequence number
  673.              */
  674.             p = subject;
  675.             while (*p) {
  676.                 if (*p == 'i') {
  677.                     *seqnum = atoi(p+1);
  678.                     if (*seqnum != 0)
  679.                         return 1;
  680.                 }
  681.                 if (strnicmp(p, "Part", 4) == 0) {
  682.                     p += 4;
  683.                     while (*p == ' ')
  684.                         *p++;
  685.                     *seqnum = atoi(p);
  686.                     if (*seqnum != 0) {
  687.                         *seqnum += 1000;
  688.                         return 1;
  689.                     }
  690.                 } else
  691.                     p++;
  692.             }
  693.             *seqnum = 10000;
  694.             return (1);
  695.         }
  696.     }
  697.     *seqnum = 10000;
  698.     return (1);
  699. }
  700.  
  701. /*
  702.  *        Start of mainline
  703.  */
  704. int main(argc,argv)
  705. int argc;
  706. char *argv[];
  707. {
  708.  
  709.     int i, numfiles;
  710.     int overwrite = NO, sortfiles = YES;
  711.     char **filenames;
  712.  
  713.     if ((argc == 1) || (*argv[1] == '?')) {
  714.         print(HelpMsg);
  715.         return (10);
  716.     }
  717.     while (argc > 1 && *argv[1] == '-') {
  718.         switch (tolower(argv[1][1])) {
  719.  
  720.             case 'o':
  721.                 overwrite = YES;
  722.                 break;
  723.  
  724.             case 'n':
  725.                 sortfiles = NO;
  726.                 break;
  727.  
  728.             default:
  729.                 print(HelpMsg);
  730.                 return (10);
  731.         }
  732.         argc--; argv++;
  733.     }
  734.  
  735.     numfiles  = argc - 1;
  736.     filenames = &argv[1];
  737.  
  738.     if (!sortfiles) {
  739.         /*
  740.          *        Just process files in the order they occur
  741.          */
  742.         for (i = 0; i < numfiles && !CtrlC; i++) {
  743.             if (unshar(filenames[i], NULL, numfiles > 1, overwrite) != 0)
  744.                 break;
  745.         }
  746.     } else {
  747.         /*
  748.          *        Do a prescan through all the files, and then unshar them
  749.          *        in the right order.
  750.          */    
  751.         typedef struct SortRecord {
  752.             struct  SortRecord *next;    /* Next record in list                */
  753.             int        index;                /* Index into filenames [] array    */
  754.             int        seqnum;                /* Sequence number of file            */
  755.             char    name[100];            /* Original subject line            */
  756.         } SORT;
  757.  
  758.         SORT *filehdrs, *head = NULL, *cur;
  759.  
  760.         filehdrs = AllocMem(sizeof(SORT) * numfiles, 0);
  761.         if (!filehdrs) {
  762.             print("Couldn't allocate memory to store file headers\n");
  763.             goto endsort;
  764.         }
  765.  
  766.         for (i = 0; i < numfiles && !CtrlC; i++) {
  767.             int seqnum;
  768.             SORT **ptr;
  769.  
  770.             if (!readheader(filenames[i], filehdrs[i].name, &seqnum))
  771.                 continue;    /* If couldn't read file, move to next file */
  772.  
  773.             /*
  774.              *        Now insert name at correct position in linked list
  775.              */
  776.             for (ptr = &head; *ptr && (*ptr)->seqnum <= seqnum;
  777.                                                 ptr = &(*ptr)->next)
  778.                 ;
  779.             filehdrs[i].next = *ptr;
  780.             *ptr = &filehdrs[i];
  781.  
  782.             filehdrs[i].seqnum = seqnum;
  783.             filehdrs[i].index  = i;
  784.         }
  785.         /*
  786.          *        Now we have a sorted list of files, so just walk down
  787.          *        the list unsharing files as we go.
  788.          */
  789.         for (cur = head; cur && !CtrlC; cur = cur->next) {
  790.             if (unshar(filenames[cur->index], cur->name,
  791.                                             numfiles > 1, overwrite) != 0)
  792.                 break;
  793.         }
  794. endsort:
  795.         if (filehdrs)
  796.             FreeMem(filehdrs, sizeof(SORT) * numfiles);
  797.     }
  798.  
  799.     /*
  800.      *        All files handled, now just tidy up and exit. If CtrlC was
  801.      *        pressed, let the user know.
  802.      */
  803.     if (CtrlC)
  804.         print("^C\n");
  805. }
  806.