home *** CD-ROM | disk | FTP | other *** search
- /* Program 5_3 -- Pretty print (2nd vers)
- by Stephen R. Davis, 1987
-
- Accepts up to two arguments which are assumed to be file names.
- Prints first argument to second argument after adding line
- numbers and noting the "nesting level". If the second file name
- is missing, assumes 'stdout'. If first argument is missing, this
- is assumed to be an error and an error message is given.
- */
-
- #include <stdio.h>
- #include <process.h>
- #include <errno.h>
-
- /*the system error list is known at link time*/
- extern char *sys_errlist [];
-
- /*define a few macros we can use*/
- #define min(x,y) ((x)<(y)) ? (x):(y)
- #define lpp 66
-
- /*prototype definitions --*/
- void main (int, char **);
- void nesting (unsigned *, char *);
- char *fgetstr (char *, int, FILE *);
- void errexit (unsigned);
-
- /*Main - open the first and second arguments and proceed
- as in Prog1*/
- void main (argc, argv)
- int argc;
- char *argv[];
- {
- FILE *input,*output;
- char string[256];
- unsigned linenum,level,newlevel;
-
- if (argc > 3 || argc < 2) /*wrong number args?*/
- errexit (1);
-
- if ((input = fopen (argv[1], "r")) == 0) /*get input file*/
- errexit (2);
-
- if (argc == 2) /*if no output file...*/
- output = stdout; /*...use stdout, else...*/
- else { /*...open output file*/
- if ((output = fopen (argv[2], "r")) != 0)
- errexit (3); /*file exists already!*/
- fclose (output);
- if ((output = fopen (argv[2], "w")) == 0)
- errexit (4);
- }
-
- linenum = 0;
- newlevel = 0;
- while (fgetstr(string, 255, input)) {
- level = newlevel;
- nesting(&newlevel, string);
- string[70] = '\0';
- if (fprintf (output, "%3u[%2u]: %s\n", ++linenum,
- min(level, newlevel), string) < 0)
- errexit (5); /*note: '\n' removed for fgets*/
- };
-
- while (linenum++ % lpp) /*<--use this...*/
- fprintf (output, "\n");
- /*fprintf (output, "\f\n");*/ /*<--...or this */
-
- if (fclose (input)) /*put our toys away*/
- errexit (6);
- if (fclose (output))
- errexit (7);
-
- /*exit normally*/
- exit (0);
- }
-
- /*Nesting - examine the given string for "{" and "}". Increment
- level for every "{" and decrement for "}"s.*/
- void nesting (levelptr,stringptr)
- unsigned *levelptr;
- char *stringptr;
- {
- do {
- if (*stringptr == '{')
- *levelptr += 1;
- if (*stringptr == '}')
- *levelptr -= 1;
- } while (*stringptr++);
- }
-
- /*fgetstr - 'gets' does not return '\n' -- 'fgets' does.
- this routine makes 'fgets' like 'gets'*/
- char *fgetstr (string, n, filptr)
- char string[];
- int n;
- FILE *filptr;
- {
- char *retval, *ptr;
- if (retval = fgets (string, n, filptr))
- for (ptr = string; *ptr; ptr++)
- if (*ptr == '\n') {
- *ptr = '\0';
- break;
- }
- return retval;
- }
-
- /*Errexit - handle errors as they arise*/
- char *errlist[] =
- {"invalid error",
-
- "wrong number of arguments."
- " Try: prg5_3 input_file [output_file]",
-
- "input file does not exist",
- "output file already exists",
- "output file cannot be created",
- "error on output file write",
- "error on closing input file",
- "error on closing output file",
- "debug error"};
-
- void errexit (errnum)
- unsigned errnum;
- {
- if (errnum > 7)
- errnum = 7;
- fprintf (stderr, "pretty printer error: %s\n"
- "system error: %s\n",
- errlist[errnum],
- sys_errlist [errno]);
- exit (errnum);
- }