home *** CD-ROM | disk | FTP | other *** search
/ PC-Online 1996 May / PCOnline_05_1996.bin / linux / source / a / txtutils / textutil.9 / textutil / textutils-1.9 / src / pr.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-23  |  45.3 KB  |  1,921 lines

  1. /* pr -- convert text files for printing.
  2.    Copyright (C) 1988, 1991 Free Software Foundation, Inc.
  3.  
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 2, or (at your option)
  7.    any later version.
  8.  
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. /*  Author: Pete TerMaat.  */
  19.  
  20. /* Things to watch: Sys V screws up on ...
  21.    pr -n -3 -s: /usr/dict/words
  22.    pr -m -o10 -n /usr/dict/words{,,,}
  23.    pr -6 -a -n -o5 /usr/dict/words
  24.  
  25.    Ideas:
  26.  
  27.    Keep a things_to_do list of functions to call when we know we have
  28.    something to print.  Cleaner than current series of checks.
  29.  
  30.    Improve the printing of control prefixes.
  31.  
  32.  
  33.    Options:
  34.  
  35.    +PAGE    Begin output at page PAGE of the output.
  36.  
  37.    -COLUMN    Produce output that is COLUMN columns wide and print
  38.         columns down.
  39.  
  40.    -a        Print columns across rather than down.  The input
  41.         one
  42.         two
  43.         three
  44.         four
  45.         will be printed as
  46.         one    two    three
  47.         four
  48.  
  49.    -b        Balance columns on the last page.
  50.  
  51.    -c        Print unprintable characters as control prefixes.
  52.         Control-g is printed as ^G.
  53.  
  54.    -d        Double space the output.
  55.  
  56.    -e[c[k]]    Expand tabs to spaces on input.  Optional argument C
  57.         is the input tab character. (Default is `\t'.)  Optional
  58.         argument K is the input tab character's width.  (Default is 8.)
  59.  
  60.    -F
  61.    -f        Use formfeeds instead of newlines to separate pages.
  62.  
  63.    -h header    Replace the filename in the header with the string HEADER.
  64.  
  65.    -i[c[k]]    Replace spaces with tabs on output.  Optional argument
  66.         C is the output tab character.  (Default is `\t'.)  Optional
  67.         argument K is the output tab character's width.  (Default
  68.         is 8.)
  69.  
  70.    -l lines    Set the page length to LINES.  Default is 66.
  71.  
  72.    -m        Print files in parallel.
  73.  
  74.    -n[c[k]]    Precede each column with a line number.
  75.         (With parallel files, precede each line with a line
  76.         number.)  Optional argument C is the character to print
  77.         after each number.  (Default `\t'.)  Optional argument
  78.         K is the number of digits per line number.  (Default 5.)
  79.  
  80.    -o offset    Offset each line with a margin OFFSET spaces wide.
  81.         Total page width is the size of this offset plus the
  82.         width set with `-w'.
  83.  
  84.    -r        Ignore files that can't be opened.
  85.  
  86.    -s[c]    Separate each line with a character.  Optional argument C is
  87.         the character to be used.  Default is `\t'.
  88.  
  89.    -t        Do not print headers or footers.
  90.  
  91.    -v        Print unprintable characters as escape sequences.
  92.         Control-G becomes \007.
  93.  
  94.    -w width    Set the page width to WIDTH characters. */
  95.  
  96.  
  97. #ifdef HAVE_CONFIG_H
  98. #if defined (CONFIG_BROKETS)
  99. /* We use <config.h> instead of "config.h" so that a compilation
  100.    using -I. -I$srcdir will use ./config.h rather than $srcdir/config.h
  101.    (which it would do because it found this file in $srcdir).  */
  102. #include <config.h>
  103. #else
  104. #include "config.h"
  105. #endif
  106. #endif
  107.  
  108. #include <stdio.h>
  109. #include <getopt.h>
  110. #include <sys/types.h>
  111. #include <time.h>
  112. #include "system.h"
  113. #include "version.h"
  114.  
  115. char *xmalloc ();
  116. char *xrealloc ();
  117. void error ();
  118.  
  119. static int char_to_clump ();
  120. static int read_line ();
  121. static int print_page ();
  122. static int print_stored ();
  123. static int open_file ();
  124. static int skip_to_page ();
  125. static void getoptarg ();
  126. static void usage ();
  127. static void print_files ();
  128. static void init_header ();
  129. static void init_store_cols ();
  130. static void store_columns ();
  131. static void balance ();
  132. static void store_char ();
  133. static void pad_down ();
  134. static void read_rest_of_line ();
  135. static void print_char ();
  136. static void cleanup ();
  137.  
  138. #ifndef TRUE
  139. #define TRUE    1
  140. #define FALSE    0
  141. #endif
  142.  
  143. /* Used with start_position in the struct COLUMN described below.
  144.    If start_position == ANYWHERE, we aren't truncating columns and
  145.    can begin printing a column anywhere.  Otherwise we must pad to
  146.    the horizontal position start_position. */
  147. #define ANYWHERE    0
  148.  
  149. /* Each column has one of these structures allocated for it.
  150.    If we're only dealing with one file, fp is the same for all
  151.    columns.
  152.  
  153.    The general strategy is to spend time setting up these column
  154.    structures (storing columns if necessary), after which printing
  155.    is a matter of flitting from column to column and calling
  156.    print_func.
  157.  
  158.    Parallel files, single files printing across in multiple
  159.    columns, and single files printing down in multiple columns all
  160.    fit the same printing loop.
  161.  
  162.    print_func        Function used to print lines in this column.
  163.             If we're storing this column it will be
  164.             print_stored(), Otherwise it will be read_line().
  165.  
  166.    char_func        Function used to process characters in this column.
  167.             If we're storing this column it will be store_char(),
  168.             otherwise it will be print_char().
  169.  
  170.    current_line        Index of the current entry in line_vector, which
  171.             contains the index of the first character of the
  172.             current line in buff[].
  173.  
  174.    lines_stored        Number of lines in this column which are stored in
  175.             buff.
  176.  
  177.    lines_to_print    If we're storing this column, lines_to_print is
  178.             the number of stored_lines which remain to be
  179.             printed.  Otherwise it is the number of lines
  180.             we can print without exceeding lines_per_body.
  181.  
  182.    start_position    The horizontal position we want to be in before we
  183.             print the first character in this column.
  184.  
  185.    numbered        True means precede this column with a line number. */
  186.  
  187. struct COLUMN
  188. {
  189.   FILE *fp;            /* Input stream for this column. */
  190.   char *name;            /* File name. */
  191.   enum
  192.   {
  193.     OPEN,
  194.     ON_HOLD,            /* Hit a form feed. */
  195.     CLOSED
  196.   } status;            /* Status of the file pointer. */
  197.   int (*print_func) ();        /* Func to print lines in this col. */
  198.   void (*char_func) ();        /* Func to print/store chars in this col. */
  199.   int current_line;        /* Index of current place in line_vector. */
  200.   int lines_stored;        /* Number of lines stored in buff. */
  201.   int lines_to_print;        /* No. lines stored or space left on page. */
  202.   int start_position;        /* Horizontal position of first char. */
  203.   int numbered;
  204. };
  205.  
  206. typedef struct COLUMN COLUMN;
  207.  
  208. #define NULLCOL (COLUMN *)0
  209.  
  210. /* The name under which this program was invoked. */
  211. char *program_name;
  212.  
  213. /* All of the columns to print.  */
  214. static COLUMN *column_vector;
  215.  
  216. /* When printing a single file in multiple downward columns,
  217.    we store the leftmost columns contiguously in buff.
  218.    To print a line from buff, get the index of the first char
  219.    from line_vector[i], and print up to line_vector[i + 1]. */
  220. static char *buff;
  221.  
  222. /* Index of the position in buff where the next character
  223.    will be stored. */
  224. static int buff_current;
  225.  
  226. /* The number of characters in buff.
  227.    Used for allocation of buff and to detect overflow of buff. */
  228. static int buff_allocated;
  229.  
  230. /* Array of indices into buff.
  231.    Each entry is an index of the first character of a line.
  232.    This is used when storing lines to facilitate shuffling when
  233.    we do column balancing on the last page. */
  234. static int *line_vector;
  235.  
  236. /* Array of horizonal positions.
  237.    For each line in line_vector, end_vector[line] is the horizontal
  238.    position we are in after printing that line.  We keep track of this
  239.    so that we know how much we need to pad to prepare for the next
  240.    column. */
  241. static int *end_vector;
  242.  
  243. /* (-m) True means we're printing multiple files in parallel. */
  244. static int parallel_files = FALSE;
  245.  
  246. /* (-[0-9]+) True means we're given an option explicitly specifying
  247.    number of columns.  Used to detect when this option is used with -m. */
  248. static int explicit_columns = FALSE;
  249.  
  250. /* (-t) True means we're printing headers and footers. */
  251. static int extremities = TRUE;
  252.  
  253. /* True means we need to print a header as soon as we know we've got input
  254.    to print after it. */
  255. static int print_a_header;
  256.  
  257. /* (-h) True means we're using the standard header rather than a
  258.    customized one specified by the -h flag. */
  259. static int standard_header = TRUE;
  260.  
  261. /* (-f) True means use formfeeds instead of newlines to separate pages. */
  262. static int use_form_feed = FALSE;
  263.  
  264. /* True means we have read the standard input. */
  265. static int have_read_stdin = FALSE;
  266.  
  267. /* True means the -a flag has been given. */
  268. static int print_across_flag = FALSE;
  269.  
  270. /* True means we're printing one file in multiple (>1) downward columns. */
  271. static int storing_columns = TRUE;
  272.  
  273. /* (-b) True means balance columns on the last page as Sys V does. */
  274. static int balance_columns = FALSE;
  275.  
  276. /* (-l) Number of lines on a page, including header and footer lines. */
  277. static int lines_per_page = 66;
  278.  
  279. /* Number of lines in the header and footer can be reset to 0 using
  280.    the -t flag. */
  281. static int lines_per_header = 5;
  282. static int lines_per_body;
  283. static int lines_per_footer = 5;
  284.  
  285. /* (-w) Width in characters of the page.  Does not include the width of
  286.    the margin. */
  287. static int chars_per_line = 72;
  288.  
  289. /* Number of characters in a column.  Based on the gutter and page widths. */
  290. static int chars_per_column;
  291.  
  292. /* (-e) True means convert tabs to spaces on input. */
  293. static int untabify_input = FALSE;
  294.  
  295. /* (-e) The input tab character. */
  296. static char input_tab_char = '\t';
  297.  
  298. /* (-e) Tabstops are at chars_per_tab, 2*chars_per_tab, 3*chars_per_tab, ...
  299.    where the leftmost column is 1. */
  300. static int chars_per_input_tab = 8;
  301.  
  302. /* (-i) True means convert spaces to tabs on output. */
  303. static int tabify_output = FALSE;
  304.  
  305. /* (-i) The output tab character. */
  306. static char output_tab_char = '\t';
  307.  
  308. /* (-i) The width of the output tab. */
  309. static int chars_per_output_tab = 8;
  310.  
  311. /* Keeps track of pending white space.  When we hit a nonspace
  312.    character after some whitespace, we print whitespace, tabbing
  313.    if necessary to get to output_position + spaces_not_printed. */
  314. static int spaces_not_printed;
  315.  
  316. /* Number of spaces between columns (though tabs can be used when possible to
  317.    use up the equivalent amount of space).  Not sure if this is worth making
  318.    a flag for.  BSD uses 0, Sys V uses 1.  Sys V looks better. */
  319. static int chars_per_gutter = 1;
  320.  
  321. /* (-o) Number of spaces in the left margin (tabs used when possible). */
  322. static int chars_per_margin = 0;
  323.  
  324. /* Position where the next character will fall.
  325.    Leftmost position is 0 + chars_per_margin.
  326.    Rightmost position is chars_per_margin + chars_per_line - 1.
  327.    This is important for converting spaces to tabs on output. */
  328. static int output_position;
  329.  
  330. /* Horizontal position relative to the current file.
  331.    (output_position depends on where we are on the page;
  332.    input_position depends on where we are in the file.)
  333.    Important for converting tabs to spaces on input. */
  334. static int input_position;
  335.  
  336. /* Count number of failed opens so we can exit with non-zero
  337.    status if there were any.  */
  338. static int failed_opens = 0;
  339.  
  340. /* The horizontal position we'll be at after printing a tab character
  341.    of width c_ from the position h_. */
  342. #define pos_after_tab(c_, h_) h_ - h_ % c_ + c_
  343.  
  344. /* The number of spaces taken up if we print a tab character with width
  345.    c_ from position h_. */
  346. #define tab_width(c_, h_) - h_ % c_ + c_
  347.  
  348. /* (-NNN) Number of columns of text to print. */
  349. static int columns = 1;
  350.  
  351. /* (+NNN) Page number on which to begin printing. */
  352. static int first_page_number = 1;
  353.  
  354. /* Number of files open (not closed, not on hold). */
  355. static int files_ready_to_read = 0;
  356.  
  357. /* Current page number.  Displayed in header. */
  358. static int page_number;
  359.  
  360. /* Current line number.  Displayed when -n flag is specified.
  361.  
  362.    When printing files in parallel (-m flag), line numbering is as follows:
  363.    1    foo    goo    moo
  364.    2    hoo    too    zoo
  365.  
  366.    When printing files across (-a flag), ...
  367.    1    foo    2    moo    3    goo
  368.    4    hoo    3    too    6    zoo
  369.  
  370.    Otherwise, line numbering is as follows:
  371.    1    foo    3    goo    5    too
  372.    2    moo    4    hoo    6    zoo */
  373. static int line_number;
  374.  
  375. /* (-n) True means lines should be preceded by numbers. */
  376. static int numbered_lines = FALSE;
  377.  
  378. /* (-n) Character which follows each line number. */
  379. static char number_separator = '\t';
  380.  
  381. /* (-n) Width in characters of a line number. */
  382. static int chars_per_number = 5;
  383.  
  384. /* Used when widening the first column to accommodate numbers -- only
  385.    needed when printing files in parallel.  Includes width of both the
  386.    number and the number_separator. */
  387. static int number_width;
  388.  
  389. /* Buffer sprintf uses to format a line number. */
  390. static char *number_buff;
  391.  
  392. /* (-v) True means unprintable characters are printed as escape sequences.
  393.    control-g becomes \007. */
  394. static int use_esc_sequence = FALSE;
  395.  
  396. /* (-c) True means unprintable characters are printed as control prefixes.
  397.    control-g becomes ^G. */
  398. static int use_cntrl_prefix = FALSE;
  399.  
  400. /* (-d) True means output is double spaced. */
  401. static int double_space = FALSE;
  402.  
  403. /* Number of files opened initially in init_files.  Should be 1
  404.    unless we're printing multiple files in parallel. */
  405. static int total_files = 0;
  406.  
  407. /* (-r) True means don't complain if we can't open a file. */
  408. static int ignore_failed_opens = FALSE;
  409.  
  410. /* (-s) True means we separate columns with a specified character. */
  411. static int use_column_separator = FALSE;
  412.  
  413. /* Character used to separate columns if the the -s flag has been specified. */
  414. static char column_separator = '\t';
  415.  
  416. /* Number of separator characters waiting to be printed as soon as we
  417.    know that we have any input remaining to be printed. */
  418. static int separators_not_printed;
  419.  
  420. /* Position we need to pad to, as soon as we know that we have input
  421.    remaining to be printed. */
  422. static int padding_not_printed;
  423.  
  424. /* True means we should pad the end of the page.  Remains false until we
  425.    know we have a page to print. */
  426. static int pad_vertically;
  427.  
  428. /* (-h) String of characters used in place of the filename in the header. */
  429. static char *custom_header;
  430.  
  431. /* String containing the date, filename or custom header, and "Page ". */
  432. static char *header;
  433.  
  434. static int *clump_buff;
  435.  
  436. /* True means we truncate lines longer than chars_per_column. */
  437. static int truncate_lines = FALSE;
  438.  
  439. /* If non-zero, display usage information and exit.  */
  440. static int show_help;
  441.  
  442. /* If non-zero, print the version on standard output then exit.  */
  443. static int show_version;
  444.  
  445. static struct option const long_options[] =
  446. {
  447.   {"help", no_argument, &show_help, 1},
  448.   {"version", no_argument, &show_version, 1},
  449.   {0, 0, 0, 0}
  450. };
  451.  
  452. /* Return the number of columns that have either an open file or
  453.    stored lines. */
  454.  
  455. static int
  456. cols_ready_to_print ()
  457. {
  458.   COLUMN *q;
  459.   int i;
  460.   int n;
  461.  
  462.   n = 0;
  463.   for (q = column_vector, i = 0; i < columns; ++q, ++i)
  464.     if (q->status == OPEN ||
  465.     (storing_columns && q->lines_stored > 0 && q->lines_to_print > 0))
  466.       ++n;
  467.   return n;
  468. }
  469.  
  470. void
  471. main (argc, argv)
  472.      int argc;
  473.      char **argv;
  474. {
  475.   int c;
  476.   int accum = 0;
  477.   int n_files;
  478.   char **file_names;
  479.  
  480.   program_name = argv[0];
  481.  
  482.   n_files = 0;
  483.   file_names = (argc > 1
  484.         ? (char **) xmalloc ((argc - 1) * sizeof (char *))
  485.         : NULL);
  486.  
  487.   while (1)
  488.     {
  489.       c = getopt_long (argc, argv,
  490.                "-0123456789abcde::fFh:i::l:mn::o:rs::tvw:",
  491.                long_options, (int *) 0);
  492.       if (c == 1)              /* Non-option argument. */
  493.     {
  494.       char *s;
  495.       s = optarg;
  496.       if (*s == '+')
  497.         {
  498.           ++s;
  499.           if (!ISDIGIT (*s))
  500.         {
  501.           error (0, 0, "`+' requires a numeric argument");
  502.           usage (2);
  503.         }
  504.           /* FIXME: use strtol */
  505.           first_page_number = atoi (s);
  506.         }
  507.       else
  508.         {
  509.           file_names[n_files++] = optarg;
  510.         }
  511.     }
  512.       else
  513.     {
  514.       if (ISDIGIT (c))
  515.         {
  516.           accum = accum * 10 + c - '0';
  517.           continue;
  518.         }
  519.       else
  520.         {
  521.           if (accum > 0)
  522.         {
  523.           columns = accum;
  524.           explicit_columns = TRUE;
  525.           accum = 0;
  526.         }
  527.         }
  528.     }
  529.  
  530.       if (c == 1)
  531.     continue;
  532.  
  533.       if (c == EOF)
  534.     break;
  535.  
  536.       switch (c)
  537.     {
  538.     case 0: /* getopt long option */
  539.       break;
  540.  
  541.     case 'a':
  542.       print_across_flag = TRUE;
  543.       storing_columns = FALSE;
  544.       break;
  545.     case 'b':
  546.       balance_columns = TRUE;
  547.       break;
  548.     case 'c':
  549.       use_cntrl_prefix = TRUE;
  550.       break;
  551.     case 'd':
  552.       double_space = TRUE;
  553.       break;
  554.     case 'e':
  555.       if (optarg)
  556.         getoptarg (optarg, 'e', &input_tab_char,
  557.                &chars_per_input_tab);
  558.       /* Could check tab width > 0. */
  559.       untabify_input = TRUE;
  560.       break;
  561.     case 'f':
  562.     case 'F':
  563.       use_form_feed = TRUE;
  564.       break;
  565.     case 'h':
  566.       custom_header = optarg;
  567.       standard_header = FALSE;
  568.       break;
  569.     case 'i':
  570.       if (optarg)
  571.         getoptarg (optarg, 'i', &output_tab_char,
  572.                &chars_per_output_tab);
  573.       /* Could check tab width > 0. */
  574.       tabify_output = TRUE;
  575.       break;
  576.     case 'l':
  577.       lines_per_page = atoi (optarg);
  578.       break;
  579.     case 'm':
  580.       parallel_files = TRUE;
  581.       storing_columns = FALSE;
  582.       break;
  583.     case 'n':
  584.       numbered_lines = TRUE;
  585.       if (optarg)
  586.         getoptarg (optarg, 'n', &number_separator,
  587.                &chars_per_number);
  588.       break;
  589.     case 'o':
  590.       chars_per_margin = atoi (optarg);
  591.       break;
  592.     case 'r':
  593.       ignore_failed_opens = TRUE;
  594.       break;
  595.     case 's':
  596.       use_column_separator = TRUE;
  597.       if (optarg)
  598.         {
  599.           char *s;
  600.           s = optarg;
  601.           column_separator = *s;
  602.           if (*++s)
  603.         {
  604.           fprintf (stderr, "\
  605. %s: extra characters in the argument to the `-s' option: `%s'\n",
  606.                program_name, s);
  607.           usage (2);
  608.         }
  609.         }
  610.       break;
  611.     case 't':
  612.       extremities = FALSE;
  613.       break;
  614.     case 'v':
  615.       use_esc_sequence = TRUE;
  616.       break;
  617.     case 'w':
  618.       chars_per_line = atoi (optarg);
  619.       break;
  620.     default:
  621.       usage (2);
  622.       break;
  623.     }
  624.     }
  625.  
  626.   if (show_version)
  627.     {
  628.       printf ("%s\n", version_string);
  629.       exit (0);
  630.     }
  631.  
  632.   if (show_help)
  633.     usage (0);
  634.  
  635.   if (parallel_files && explicit_columns)
  636.     error (1, 0,
  637.   "Cannot specify number of columns when printing in parallel.");
  638.  
  639.   if (parallel_files && print_across_flag)
  640.     error (1, 0,
  641.   "Cannot specify both printing across and printing in parallel.");
  642.  
  643.   for ( ; optind < argc; optind++)
  644.     {
  645.       file_names[n_files++] = argv[optind];
  646.     }
  647.  
  648.   if (n_files == 0)
  649.     {
  650.       /* No file arguments specified;  read from standard input.  */
  651.       print_files (0, (char **) 0);
  652.     }
  653.   else
  654.     {
  655.       if (parallel_files)
  656.     print_files (n_files, file_names);
  657.       else
  658.     {
  659.       int i;
  660.       for (i=0; i<n_files; i++)
  661.         print_files (1, &file_names[i]);
  662.     }
  663.     }
  664.  
  665.   cleanup ();
  666.  
  667.   if (have_read_stdin && fclose (stdin) == EOF)
  668.     error (1, errno, "standard input");
  669.   if (ferror (stdout) || fclose (stdout) == EOF)
  670.     error (1, errno, "write error");
  671.   if (failed_opens > 0)
  672.     exit(1);
  673.   exit (0);
  674. }
  675.  
  676. /* Parse options of the form -scNNN.
  677.  
  678.    Example: -nck, where 'n' is the option, c is the optional number
  679.    separator, and k is the optional width of the field used when printing
  680.    a number. */
  681.  
  682. static void
  683. getoptarg (arg, switch_char, character, number)
  684.      char *arg, switch_char, *character;
  685.      int *number;
  686. {
  687.   if (!ISDIGIT (*arg))
  688.     *character = *arg++;
  689.   if (*arg)
  690.     {
  691.       if (ISDIGIT (*arg))
  692.     *number = atoi (arg);
  693.       else
  694.     {
  695.       fprintf (stderr, "\
  696. %s: extra characters in the argument to the `-%c' option: `%s'\n",
  697.            program_name, switch_char, arg);
  698.       usage (2);
  699.     }
  700.     }
  701. }
  702.  
  703. /* Set parameters related to formatting. */
  704.  
  705. static void
  706. init_parameters (number_of_files)
  707.      int number_of_files;
  708. {
  709.   int chars_used_by_number = 0;
  710.  
  711.   lines_per_body = lines_per_page - lines_per_header - lines_per_footer;
  712.   if (lines_per_body <= 0)
  713.     extremities = FALSE;
  714.   if (extremities == FALSE)
  715.     lines_per_body = lines_per_page;
  716.  
  717.   if (double_space)
  718.     lines_per_body = lines_per_body / 2;
  719.  
  720.   /* If input is stdin, cannot print parallel files.  BSD dumps core
  721.      on this. */
  722.   if (number_of_files == 0)
  723.     parallel_files = FALSE;
  724.  
  725.   if (parallel_files)
  726.     columns = number_of_files;
  727.  
  728.   /* Tabification is assumed for multiple columns. */
  729.   if (columns > 1)
  730.     {
  731.       if (!use_column_separator)
  732.     truncate_lines = TRUE;
  733.  
  734.       untabify_input = TRUE;
  735.       tabify_output = TRUE;
  736.     }
  737.   else
  738.     storing_columns = FALSE;
  739.  
  740.   if (numbered_lines)
  741.     {
  742.       if (number_separator == input_tab_char)
  743.     {
  744.       number_width = chars_per_number +
  745.         tab_width (chars_per_input_tab,
  746.                (chars_per_margin + chars_per_number));
  747.     }
  748.       else
  749.     number_width = chars_per_number + 1;
  750.       /* The number is part of the column width unless we are
  751.          printing files in parallel. */
  752.       if (parallel_files)
  753.     chars_used_by_number = number_width;
  754.     }
  755.  
  756.   chars_per_column = (chars_per_line - chars_used_by_number -
  757.               (columns - 1) * chars_per_gutter) / columns;
  758.  
  759.   if (chars_per_column < 1)
  760.     error (1, 0, "page width too narrow");
  761.  
  762.   if (numbered_lines)
  763.     {
  764.       if (number_buff != (char *) 0)
  765.     free (number_buff);
  766.       number_buff = (char *)
  767.     xmalloc (2 * chars_per_number * sizeof (char));
  768.     }
  769.  
  770.   /* Pick the maximum between the tab width and the width of an
  771.      escape sequence. */
  772.   if (clump_buff != (int *) 0)
  773.     free (clump_buff);
  774.   clump_buff = (int *) xmalloc ((chars_per_input_tab > 4
  775.                  ? chars_per_input_tab : 4) * sizeof (int));
  776. }
  777.  
  778. /* Open the necessary files,
  779.    maintaining a COLUMN structure for each column.
  780.  
  781.    With multiple files, each column p has a different p->fp.
  782.    With single files, each column p has the same p->fp.
  783.    Return 1 if (number_of_files > 0) and no files can be opened,
  784.    0 otherwise.  */
  785.  
  786. static int
  787. init_fps (number_of_files, av)
  788.      int number_of_files;
  789.      char **av;
  790. {
  791.   int i, files_left;
  792.   COLUMN *p;
  793.   FILE *firstfp;
  794.   char *firstname;
  795.  
  796.   total_files = 0;
  797.  
  798.   if (column_vector != NULLCOL)
  799.     free ((char *) column_vector);
  800.   column_vector = (COLUMN *) xmalloc (columns * sizeof (COLUMN));
  801.  
  802.   if (parallel_files)
  803.     {
  804.       files_left = number_of_files;
  805.       for (p = column_vector; files_left--; ++p, ++av)
  806.     {
  807.       if (open_file (*av, p) == 0)
  808.         {
  809.           --p;
  810.           --columns;
  811.         }
  812.     }
  813.       if (columns == 0)
  814.     return 1;
  815.       init_header ("", -1);
  816.     }
  817.   else
  818.     {
  819.       p = column_vector;
  820.       if (number_of_files > 0)
  821.     {
  822.       if (open_file (*av, p) == 0)
  823.         return 1;
  824.       init_header (*av, fileno (p->fp));
  825.     }
  826.       else
  827.     {
  828.       p->name = "standard input";
  829.       p->fp = stdin;
  830.       have_read_stdin = TRUE;
  831.       p->status = OPEN;
  832.       ++total_files;
  833.       init_header ("", -1);
  834.     }
  835.  
  836.       firstname = p->name;
  837.       firstfp = p->fp;
  838.       for (i = columns - 1, ++p; i; --i, ++p)
  839.     {
  840.       p->name = firstname;
  841.       p->fp = firstfp;
  842.       p->status = OPEN;
  843.     }
  844.     }
  845.   files_ready_to_read = total_files;
  846.   return 0;
  847. }
  848.  
  849. /* Determine print_func and char_func, the functions
  850.    used by each column for printing and/or storing.
  851.  
  852.    Determine the horizontal position desired when we begin
  853.    printing a column (p->start_position). */
  854.  
  855. static void
  856. init_funcs ()
  857. {
  858.   int i, h, h_next;
  859.   COLUMN *p;
  860.  
  861.   h = chars_per_margin;
  862.  
  863.   if (use_column_separator)
  864.     h_next = ANYWHERE;
  865.   else
  866.     {
  867.       /* When numbering lines of parallel files, we enlarge the
  868.          first column to accomodate the number.  Looks better than
  869.          the Sys V approach. */
  870.       if (parallel_files && numbered_lines)
  871.     h_next = h + chars_per_column + number_width;
  872.       else
  873.     h_next = h + chars_per_column;
  874.     }
  875.  
  876.   /* This loop takes care of all but the rightmost column. */
  877.  
  878.   for (p = column_vector, i = 1; i < columns; ++p, ++i)
  879.     {
  880.       if (storing_columns)    /* One file, multi columns down. */
  881.     {
  882.       p->char_func = store_char;
  883.       p->print_func = print_stored;
  884.     }
  885.       else
  886.     /* One file, multi columns across; or parallel files.  */
  887.     {
  888.       p->char_func = print_char;
  889.       p->print_func = read_line;
  890.     }
  891.  
  892.       /* Number only the first column when printing files in
  893.          parallel. */
  894.       p->numbered = numbered_lines && (!parallel_files || i == 1);
  895.       p->start_position = h;
  896.  
  897.       /* If we're using separators, all start_positions are
  898.          ANYWHERE, except the first column's start_position when
  899.          using a margin. */
  900.  
  901.       if (use_column_separator)
  902.     {
  903.       h = ANYWHERE;
  904.       h_next = ANYWHERE;
  905.     }
  906.       else
  907.     {
  908.       h = h_next + chars_per_gutter;
  909.       h_next = h + chars_per_column;
  910.     }
  911.     }
  912.  
  913.   /* The rightmost column.
  914.  
  915.      Doesn't need to be stored unless we intend to balance
  916.      columns on the last page. */
  917.   if (storing_columns && balance_columns)
  918.     {
  919.       p->char_func = store_char;
  920.       p->print_func = print_stored;
  921.     }
  922.   else
  923.     {
  924.       p->char_func = print_char;
  925.       p->print_func = read_line;
  926.     }
  927.  
  928.   p->numbered = numbered_lines && (!parallel_files || i == 1);
  929.   p->start_position = h;
  930. }
  931.  
  932. /* Open a file.  Return nonzero if successful, zero if failed. */
  933.  
  934. static int
  935. open_file (name, p)
  936.      char *name;
  937.      COLUMN *p;
  938. {
  939.   if (!strcmp (name, "-"))
  940.     {
  941.       p->name = "standard input";
  942.       p->fp = stdin;
  943.       have_read_stdin = 1;
  944.     }
  945.   else
  946.     {
  947.       p->name = name;
  948.       p->fp = fopen (name, "r");
  949.     }
  950.   if (p->fp == NULL)
  951.     {
  952.       ++failed_opens;
  953.       if (!ignore_failed_opens)
  954.     error (0, errno, "%s", name);
  955.       return 0;
  956.     }
  957.   p->status = OPEN;
  958.   ++total_files;
  959.   return 1;
  960. }
  961.  
  962. /* Close the file in P.
  963.  
  964.    If we aren't dealing with multiple files in parallel, we change
  965.    the status of all columns in the column list to reflect the close. */
  966.  
  967. static void
  968. close_file (p)
  969.      COLUMN *p;
  970. {
  971.   COLUMN *q;
  972.   int i;
  973.  
  974.   if (p->status == CLOSED)
  975.     return;
  976.   if (ferror (p->fp))
  977.     error (1, errno, "%s", p->name);
  978.   if (p->fp != stdin && fclose (p->fp) == EOF)
  979.     error (1, errno, "%s", p->name);
  980.  
  981.   if (!parallel_files)
  982.     {
  983.       for (q = column_vector, i = columns; i; ++q, --i)
  984.     {
  985.       q->status = CLOSED;
  986.       if (q->lines_stored == 0)
  987.         {
  988.           q->lines_to_print = 0;
  989.         }
  990.     }
  991.     }
  992.   else
  993.     {
  994.       p->status = CLOSED;
  995.       p->lines_to_print = 0;
  996.     }
  997.  
  998.   --files_ready_to_read;
  999. }
  1000.  
  1001. /* Put a file on hold until we start a new page,
  1002.    since we've hit a form feed.
  1003.  
  1004.    If we aren't dealing with parallel files, we must change the
  1005.    status of all columns in the column list. */
  1006.  
  1007. static void
  1008. hold_file (p)
  1009.      COLUMN *p;
  1010. {
  1011.   COLUMN *q;
  1012.   int i;
  1013.  
  1014.   if (!parallel_files)
  1015.     for (q = column_vector, i = columns; i; ++q, --i)
  1016.       q->status = ON_HOLD;
  1017.   else
  1018.     p->status = ON_HOLD;
  1019.   p->lines_to_print = 0;
  1020.   --files_ready_to_read;
  1021. }
  1022.  
  1023. /* Undo hold_file -- go through the column list and change any
  1024.    ON_HOLD columns to OPEN.  Used at the end of each page. */
  1025.  
  1026. static void
  1027. reset_status ()
  1028. {
  1029.   int i = columns;
  1030.   COLUMN *p;
  1031.  
  1032.   for (p = column_vector; i; --i, ++p)
  1033.     if (p->status == ON_HOLD)
  1034.       {
  1035.     p->status = OPEN;
  1036.     files_ready_to_read++;
  1037.       }
  1038. }
  1039.  
  1040. /* Print a single file, or multiple files in parallel.
  1041.  
  1042.    Set up the list of columns, opening the necessary files.
  1043.    Allocate space for storing columns, if necessary.
  1044.    Skip to first_page_number, if user has asked to skip leading pages.
  1045.    Determine which functions are appropriate to store/print lines
  1046.    in each column.
  1047.    Print the file(s). */
  1048.  
  1049. static void
  1050. print_files (number_of_files, av)
  1051.      int number_of_files;
  1052.      char **av;
  1053. {
  1054.   init_parameters (number_of_files);
  1055.   if (init_fps (number_of_files, av))
  1056.     return;
  1057.   if (storing_columns)
  1058.     init_store_cols ();
  1059.  
  1060.   if (first_page_number > 1)
  1061.     {
  1062.       if (!skip_to_page (first_page_number))
  1063.     return;
  1064.       else
  1065.     page_number = first_page_number;
  1066.     }
  1067.   else
  1068.     page_number = 1;
  1069.  
  1070.   init_funcs ();
  1071.  
  1072.   line_number = 1;
  1073.   while (print_page ())
  1074.     ;
  1075. }
  1076.  
  1077. /* Generous estimate of number of characters taken up by "Jun  7 00:08 " and
  1078.    "Page NNNNN". */
  1079. #define CHARS_FOR_DATE_AND_PAGE    50
  1080.  
  1081. /* Initialize header information.
  1082.    If DESC is non-negative, it is a file descriptor open to
  1083.    FILENAME for reading.
  1084.  
  1085.    Allocate space for a header string,
  1086.    Determine the time, insert file name or user-specified string.
  1087.  
  1088.    It might be nice to have a "blank headers" option, since
  1089.    pr -h "" still prints the date and page number. */
  1090.  
  1091. static void
  1092. init_header (filename, desc)
  1093.      char *filename;
  1094.      int desc;
  1095. {
  1096.   int chars_per_header;
  1097.   char *f = filename;
  1098.   char *t, *middle;
  1099.   struct stat st;
  1100.  
  1101.   if (filename == 0)
  1102.     f = "";
  1103.  
  1104.   /* If parallel files or standard input, use current time. */
  1105.   if (desc < 0 || !strcmp (filename, "-") || fstat (desc, &st))
  1106.     st.st_mtime = time ((time_t *) 0);
  1107.   t = ctime (&st.st_mtime);
  1108.  
  1109.   t[16] = '\0';            /* Mark end of month and time string. */
  1110.   t[24] = '\0';            /* Mark end of year string. */
  1111.  
  1112.   middle = standard_header ? f : custom_header;
  1113.  
  1114.   chars_per_header = strlen (middle) + CHARS_FOR_DATE_AND_PAGE + 1;
  1115.   if (header != (char *) 0)
  1116.     free (header);
  1117.   header = (char *) xmalloc (chars_per_header * sizeof (char));
  1118.  
  1119.   sprintf (header, "%s %s  %s Page", &t[4], &t[20], middle);
  1120. }
  1121.  
  1122. /* Set things up for printing a page
  1123.  
  1124.    Scan through the columns ...
  1125.      Determine which are ready to print
  1126.        (i.e., which have lines stored or open files)
  1127.      Set p->lines_to_print appropriately
  1128.        (to p->lines_stored if we're storing, or lines_per_body
  1129.        if we're reading straight from the file)
  1130.      Keep track of this total so we know when to stop printing */
  1131.  
  1132. static void
  1133. init_page ()
  1134. {
  1135.   int j;
  1136.   COLUMN *p;
  1137.  
  1138.   if (storing_columns)
  1139.     {
  1140.       store_columns ();
  1141.       for (j = columns - 1, p = column_vector; j; --j, ++p)
  1142.     {
  1143.       p->lines_to_print = p->lines_stored;
  1144.     }
  1145.  
  1146.       /* Last column. */
  1147.       if (balance_columns)
  1148.     {
  1149.       p->lines_to_print = p->lines_stored;
  1150.     }
  1151.       /* Since we're not balancing columns, we don't need to store
  1152.          the rightmost column.   Read it straight from the file. */
  1153.       else
  1154.     {
  1155.       if (p->status == OPEN)
  1156.         {
  1157.           p->lines_to_print = lines_per_body;
  1158.         }
  1159.       else
  1160.         p->lines_to_print = 0;
  1161.     }
  1162.     }
  1163.   else
  1164.     for (j = columns, p = column_vector; j; --j, ++p)
  1165.       if (p->status == OPEN)
  1166.     {
  1167.       p->lines_to_print = lines_per_body;
  1168.     }
  1169.       else
  1170.     p->lines_to_print = 0;
  1171. }
  1172.  
  1173. /* Print one page.
  1174.  
  1175.    As long as there are lines left on the page and columns ready to print,
  1176.      Scan across the column list
  1177.        if the column has stored lines or the file is open
  1178.          pad to the appropriate spot
  1179.          print the column
  1180.    pad the remainder of the page with \n or \f as requested
  1181.    reset the status of all files -- any files which where on hold because
  1182.      of formfeeds are now put back into the lineup. */
  1183.  
  1184. static int
  1185. print_page ()
  1186. {
  1187.   int j;
  1188.   int lines_left_on_page;
  1189.   COLUMN *p;
  1190.  
  1191.   /* Used as an accumulator (with | operator) of successive values of
  1192.      pad_vertically.  The trick is to set pad_vertically
  1193.      to zero before each run through the inner loop, then after that
  1194.      loop, it tells us whether a line was actually printed (whether a
  1195.      newline needs to be output -- or two for double spacing).  But those
  1196.      values have to be accumulated (in pv) so we can invoke pad_down
  1197.      properly after the outer loop completes. */
  1198.   int pv;
  1199.  
  1200.   init_page ();
  1201.  
  1202.   if (cols_ready_to_print () == 0)
  1203.     return FALSE;
  1204.  
  1205.   if (extremities)
  1206.     print_a_header = TRUE;
  1207.  
  1208.   /* Don't pad unless we know a page was printed. */
  1209.   pad_vertically = FALSE;
  1210.   pv = FALSE;
  1211.  
  1212.   lines_left_on_page = lines_per_body;
  1213.   if (double_space)
  1214.     lines_left_on_page *= 2;
  1215.  
  1216.   while (lines_left_on_page > 0 && cols_ready_to_print () > 0)
  1217.     {
  1218.       output_position = 0;
  1219.       spaces_not_printed = 0;
  1220.       separators_not_printed = 0;
  1221.       pad_vertically = FALSE;
  1222.  
  1223.       for (j = 1, p = column_vector; j <= columns; ++j, ++p)
  1224.     {
  1225.       input_position = 0;
  1226.       if (p->lines_to_print > 0)
  1227.         {
  1228.           padding_not_printed = p->start_position;
  1229.  
  1230.           if (!(p->print_func) (p))
  1231.         read_rest_of_line (p);
  1232.           pv |= pad_vertically;
  1233.  
  1234.           if (use_column_separator)
  1235.         ++separators_not_printed;
  1236.  
  1237.           --p->lines_to_print;
  1238.           if (p->lines_to_print <= 0)
  1239.         {
  1240.           if (cols_ready_to_print () <= 0)
  1241.             break;
  1242.         }
  1243.         }
  1244.     }
  1245.  
  1246.       if (pad_vertically)
  1247.     {
  1248.       putchar ('\n');
  1249.       --lines_left_on_page;
  1250.     }
  1251.  
  1252.       if (double_space && pv && extremities)
  1253.     {
  1254.       putchar ('\n');
  1255.       --lines_left_on_page;
  1256.     }
  1257.     }
  1258.  
  1259.   pad_vertically = pv;
  1260.  
  1261.   if (pad_vertically && extremities)
  1262.     pad_down (lines_left_on_page + lines_per_footer);
  1263.  
  1264.   reset_status ();        /* Change ON_HOLD to OPEN. */
  1265.  
  1266.   return TRUE;            /* More pages to go. */
  1267. }
  1268.  
  1269. /* Allocate space for storing columns.
  1270.  
  1271.    This is necessary when printing multiple columns from a single file.
  1272.    Lines are stored consecutively in buff, separated by '\0'.
  1273.    (We can't use a fixed offset since with the '-s' flag lines aren't
  1274.    truncated.)
  1275.  
  1276.    We maintain a list (line_vector) of pointers to the beginnings
  1277.    of lines in buff.  We allocate one more than the number of lines
  1278.    because the last entry tells us the index of the last character,
  1279.    which we need to know in order to print the last line in buff. */
  1280.  
  1281. static void
  1282. init_store_cols ()
  1283. {
  1284.   int total_lines = lines_per_body * columns;
  1285.   int chars_if_truncate = total_lines * (chars_per_column + 1);
  1286.  
  1287.   if (line_vector != (int *) 0)
  1288.     free ((int *) line_vector);
  1289.   line_vector = (int *) xmalloc ((total_lines + 1) * sizeof (int *));
  1290.  
  1291.   if (end_vector != (int *) 0)
  1292.     free ((int *) end_vector);
  1293.   end_vector = (int *) xmalloc (total_lines * sizeof (int *));
  1294.  
  1295.   if (buff != (char *) 0)
  1296.     free (buff);
  1297.   buff_allocated = use_column_separator ? 2 * chars_if_truncate
  1298.     : chars_if_truncate;    /* Tune this. */
  1299.   buff = (char *) xmalloc (buff_allocated * sizeof (char));
  1300. }
  1301.  
  1302. /* Store all but the rightmost column.
  1303.    (Used when printing a single file in multiple downward columns)
  1304.  
  1305.    For each column
  1306.      set p->current_line to be the index in line_vector of the
  1307.        first line in the column
  1308.      For each line in the column
  1309.        store the line in buff
  1310.        add to line_vector the index of the line's first char
  1311.     buff_start is the index in buff of the first character in the
  1312.      current line. */
  1313.  
  1314. static void
  1315. store_columns ()
  1316. {
  1317.   int i, j;
  1318.   int line = 0;
  1319.   int buff_start;
  1320.   int last_col;            /* The rightmost column which will be saved in buff */
  1321.   COLUMN *p;
  1322.  
  1323.   buff_current = 0;
  1324.   buff_start = 0;
  1325.  
  1326.   if (balance_columns)
  1327.     last_col = columns;
  1328.   else
  1329.     last_col = columns - 1;
  1330.  
  1331.   for (i = 1, p = column_vector; i <= last_col; ++i, ++p)
  1332.     p->lines_stored = 0;
  1333.  
  1334.   for (i = 1, p = column_vector; i <= last_col && files_ready_to_read;
  1335.        ++i, ++p)
  1336.     {
  1337.       p->current_line = line;
  1338.       for (j = lines_per_body; j && files_ready_to_read; --j)
  1339.  
  1340.     if (p->status == OPEN)    /* Redundant.  Clean up. */
  1341.       {
  1342.         input_position = 0;
  1343.  
  1344.         if (!read_line (p, i))
  1345.           read_rest_of_line (p);
  1346.  
  1347.         if (p->status == OPEN
  1348.         || buff_start != buff_current)
  1349.           {
  1350.         ++p->lines_stored;
  1351.         line_vector[line] = buff_start;
  1352.         end_vector[line++] = input_position;
  1353.         buff_start = buff_current;
  1354.           }
  1355.       }
  1356.     }
  1357.  
  1358.   /* Keep track of the location of the last char in buff. */
  1359.   line_vector[line] = buff_start;
  1360.  
  1361.   if (balance_columns && p->lines_stored != lines_per_body)
  1362.     balance (line);
  1363. }
  1364.  
  1365. static void
  1366. balance (total_stored)
  1367.      int total_stored;
  1368. {
  1369.   COLUMN *p;
  1370.   int i, lines;
  1371.   int first_line = 0;
  1372.  
  1373.   for (i = 1, p = column_vector; i <= columns; ++i, ++p)
  1374.     {
  1375.       lines = total_stored / columns;
  1376.       if (i <= total_stored % columns)
  1377.     ++lines;
  1378.  
  1379.       p->lines_stored = lines;
  1380.       p->current_line = first_line;
  1381.  
  1382.       first_line += lines;
  1383.     }
  1384. }
  1385.  
  1386. /* Store a character in the buffer. */
  1387.  
  1388. static void
  1389. store_char (c)
  1390.      int c;
  1391. {
  1392.   if (buff_current >= buff_allocated)
  1393.     {
  1394.       /* May be too generous. */
  1395.       buff_allocated = 2 * buff_allocated;
  1396.       buff = (char *) xrealloc (buff, buff_allocated * sizeof (char));
  1397.     }
  1398.   buff[buff_current++] = (char) c;
  1399. }
  1400.  
  1401. static void
  1402. number (p)
  1403.      COLUMN *p;
  1404. {
  1405.   int i;
  1406.   char *s;
  1407.  
  1408.   sprintf (number_buff, "%*d", chars_per_number, line_number++);
  1409.   s = number_buff;
  1410.   for (i = chars_per_number; i > 0; i--)
  1411.     (p->char_func) ((int) *s++);
  1412.  
  1413.   if (number_separator == input_tab_char)
  1414.     {
  1415.       i = number_width - chars_per_number;
  1416.       while (i-- > 0)
  1417.     (p->char_func) ((int) ' ');
  1418.     }
  1419.   else
  1420.     (p->char_func) ((int) number_separator);
  1421.  
  1422.   if (truncate_lines && !parallel_files)
  1423.     input_position += number_width;
  1424. }
  1425.  
  1426. /* Print (or store) padding until the current horizontal position
  1427.    is position. */
  1428.  
  1429. static void
  1430. pad_across_to (position)
  1431.      int position;
  1432. {
  1433.   register int h = output_position;
  1434.  
  1435.   if (tabify_output)
  1436.     spaces_not_printed = position - output_position;
  1437.   else
  1438.     {
  1439.       while (++h <= position)
  1440.     putchar (' ');
  1441.       output_position = position;
  1442.     }
  1443. }
  1444.  
  1445. /* Pad to the bottom of the page.
  1446.  
  1447.    If the user has requested a formfeed, use one.
  1448.    Otherwise, use newlines. */
  1449.  
  1450. static void
  1451. pad_down (lines)
  1452.      int lines;
  1453. {
  1454.   register int i;
  1455.  
  1456.   if (use_form_feed)
  1457.     putchar ('\f');
  1458.   else
  1459.     for (i = lines; i; --i)
  1460.       putchar ('\n');
  1461. }
  1462.  
  1463. /* Read the rest of the line.
  1464.  
  1465.    Read from the current column's file until an end of line is
  1466.    hit.  Used when we've truncated a line and we no longer need
  1467.    to print or store its characters. */
  1468.  
  1469. static void
  1470. read_rest_of_line (p)
  1471.      COLUMN *p;
  1472. {
  1473.   register int c;
  1474.   FILE *f = p->fp;
  1475.  
  1476.   while ((c = getc (f)) != '\n')
  1477.     {
  1478.       if (c == '\f')
  1479.     {
  1480.       hold_file (p);
  1481.       break;
  1482.     }
  1483.       else if (c == EOF)
  1484.     {
  1485.       close_file (p);
  1486.       break;
  1487.     }
  1488.     }
  1489. }
  1490.  
  1491. /* If we're tabifying output,
  1492.  
  1493.    When print_char encounters white space it keeps track
  1494.    of our desired horizontal position and delays printing
  1495.    until this function is called. */
  1496.  
  1497. static void
  1498. print_white_space ()
  1499. {
  1500.   register int h_new;
  1501.   register int h_old = output_position;
  1502.   register int goal = h_old + spaces_not_printed;
  1503.  
  1504.   while (goal - h_old > 1
  1505.       && (h_new = pos_after_tab (chars_per_output_tab, h_old)) <= goal)
  1506.     {
  1507.       putchar (output_tab_char);
  1508.       h_old = h_new;
  1509.     }
  1510.   while (++h_old <= goal)
  1511.     putchar (' ');
  1512.  
  1513.   output_position = goal;
  1514.   spaces_not_printed = 0;
  1515. }
  1516.  
  1517. /* Print column separators.
  1518.  
  1519.    We keep a count until we know that we'll be printing a line,
  1520.    then print_separators() is called. */
  1521.  
  1522. static void
  1523. print_separators ()
  1524. {
  1525.   for (; separators_not_printed > 0; --separators_not_printed)
  1526.     print_char (column_separator);
  1527. }
  1528.  
  1529. /* Print (or store, depending on p->char_func) a clump of N
  1530.    characters. */
  1531.  
  1532. static void
  1533. print_clump (p, n, clump)
  1534.      COLUMN *p;
  1535.      int n;
  1536.      int *clump;
  1537. {
  1538.   while (n--)
  1539.     (p->char_func) (*clump++);
  1540. }
  1541.  
  1542. /* Print a character.
  1543.  
  1544.    If we're tabifying, all tabs have been converted to spaces by
  1545.    process_char().  Keep a count of consecutive spaces, and when
  1546.    a nonspace is encountered, call print_white_space() to print the
  1547.    required number of tabs and spaces. */
  1548.  
  1549. static void
  1550. print_char (c)
  1551.      int c;
  1552. {
  1553.   if (tabify_output)
  1554.     {
  1555.       if (c == ' ')
  1556.     {
  1557.       ++spaces_not_printed;
  1558.       return;
  1559.     }
  1560.       else if (spaces_not_printed > 0)
  1561.     print_white_space ();
  1562.  
  1563.       /* Nonprintables are assumed to have width 0, except '\b'. */
  1564.       if (!ISPRINT (c))
  1565.     {
  1566.       if (c == '\b')
  1567.         --output_position;
  1568.     }
  1569.       else
  1570.     ++output_position;
  1571.     }
  1572.   putchar (c);
  1573. }
  1574.  
  1575. /* Skip to page PAGE before printing. */
  1576.  
  1577. static int
  1578. skip_to_page (page)
  1579.      int page;
  1580. {
  1581.   int n, i, j;
  1582.   COLUMN *p;
  1583.  
  1584.   for (n = 1; n < page; ++n)
  1585.     {
  1586.       for (i = 1; i <= lines_per_body; ++i)
  1587.     {
  1588.       for (j = 1, p = column_vector; j <= columns; ++j, ++p)
  1589.         read_rest_of_line (p);
  1590.     }
  1591.       reset_status ();
  1592.     }
  1593.   return files_ready_to_read > 0;
  1594. }
  1595.  
  1596. /* Print a header.
  1597.  
  1598.    Formfeeds are assumed to use up two lines at the beginning of
  1599.    the page. */
  1600.  
  1601. static void
  1602. print_header ()
  1603. {
  1604.   if (!use_form_feed)
  1605.     fprintf (stdout, "\n\n");
  1606.  
  1607.   output_position = 0;
  1608.   pad_across_to (chars_per_margin);
  1609.   print_white_space ();
  1610.  
  1611.   fprintf (stdout, "%s %d\n\n\n", header, page_number++);
  1612.  
  1613.   print_a_header = FALSE;
  1614.   output_position = 0;
  1615. }
  1616.  
  1617. /* Print (or store, if p->char_func is store_char()) a line.
  1618.  
  1619.    Read a character to determine whether we have a line or not.
  1620.    (We may hit EOF, \n, or \f)
  1621.  
  1622.    Once we know we have a line,
  1623.      set pad_vertically = TRUE, meaning it's safe
  1624.        to pad down at the end of the page, since we do have a page.
  1625.        print a header if needed.
  1626.      pad across to padding_not_printed if needed.
  1627.      print any separators which need to be printed.
  1628.      print a line number if it needs to be printed.
  1629.  
  1630.    Print the clump which corresponds to the first character.
  1631.  
  1632.    Enter a loop and keep printing until an end of line condition
  1633.      exists, or until we exceed chars_per_column.
  1634.  
  1635.    Return FALSE if we exceed chars_per_column before reading
  1636.      an end of line character, TRUE otherwise. */
  1637.  
  1638. static int
  1639. read_line (p)
  1640.      COLUMN *p;
  1641. {
  1642.   register int c, chars;
  1643.   int last_input_position;
  1644.  
  1645.   c = getc (p->fp);
  1646.  
  1647.   last_input_position = input_position;
  1648.   switch (c)
  1649.     {
  1650.     case '\f':
  1651.       hold_file (p);
  1652.       return TRUE;
  1653.     case EOF:
  1654.       close_file (p);
  1655.       return TRUE;
  1656.     case '\n':
  1657.       break;
  1658.     default:
  1659.       chars = char_to_clump (c);
  1660.     }
  1661.  
  1662.   if (truncate_lines && input_position > chars_per_column)
  1663.     {
  1664.       input_position = last_input_position;
  1665.       return FALSE;
  1666.     }
  1667.  
  1668.   if (p->char_func != store_char)
  1669.     {
  1670.       pad_vertically = TRUE;
  1671.  
  1672.       if (print_a_header)
  1673.     print_header ();
  1674.  
  1675.       if (padding_not_printed != ANYWHERE)
  1676.     {
  1677.       pad_across_to (padding_not_printed);
  1678.       padding_not_printed = ANYWHERE;
  1679.     }
  1680.  
  1681.       if (use_column_separator)
  1682.     print_separators ();
  1683.     }
  1684.  
  1685.   if (p->numbered)
  1686.     number (p);
  1687.  
  1688.   if (c == '\n')
  1689.     return TRUE;
  1690.  
  1691.   print_clump (p, chars, clump_buff);
  1692.  
  1693.   for (;;)
  1694.     {
  1695.       c = getc (p->fp);
  1696.  
  1697.       switch (c)
  1698.     {
  1699.     case '\n':
  1700.       return TRUE;
  1701.     case '\f':
  1702.       hold_file (p);
  1703.       return TRUE;
  1704.     case EOF:
  1705.       close_file (p);
  1706.       return TRUE;
  1707.     }
  1708.  
  1709.       last_input_position = input_position;
  1710.       chars = char_to_clump (c);
  1711.       if (truncate_lines && input_position > chars_per_column)
  1712.     {
  1713.       input_position = last_input_position;
  1714.       return FALSE;
  1715.     }
  1716.  
  1717.       print_clump (p, chars, clump_buff);
  1718.     }
  1719. }
  1720.  
  1721. /* Print a line from buff.
  1722.  
  1723.    If this function has been called, we know we have something to
  1724.    print.  Therefore we set pad_vertically to TRUE, print
  1725.    a header if necessary, pad across if necessary, and print
  1726.    separators if necessary.
  1727.  
  1728.    Return TRUE, meaning there is no need to call read_rest_of_line. */
  1729.  
  1730. static int
  1731. print_stored (p)
  1732.      COLUMN *p;
  1733. {
  1734.   int line = p->current_line++;
  1735.   register char *first = &buff[line_vector[line]];
  1736.   register char *last = &buff[line_vector[line + 1]];
  1737.  
  1738.   pad_vertically = TRUE;
  1739.  
  1740.   if (print_a_header)
  1741.     print_header ();
  1742.  
  1743.   if (padding_not_printed != ANYWHERE)
  1744.     {
  1745.       pad_across_to (padding_not_printed);
  1746.       padding_not_printed = ANYWHERE;
  1747.     }
  1748.  
  1749.   if (use_column_separator)
  1750.     print_separators ();
  1751.  
  1752.   while (first != last)
  1753.     print_char (*first++);
  1754.  
  1755.   if (spaces_not_printed == 0)
  1756.     output_position = p->start_position + end_vector[line];
  1757.  
  1758.   return TRUE;
  1759. }
  1760.  
  1761. /* Convert a character to the proper format and return the number of
  1762.    characters in the resulting clump.  Increment input_position by
  1763.    the width of the clump.
  1764.  
  1765.    Tabs are converted to clumps of spaces.
  1766.    Nonprintable characters may be converted to clumps of escape
  1767.    sequences or control prefixes.
  1768.  
  1769.    Note: the width of a clump is not necessarily equal to the number of
  1770.    characters in clump_buff.  (e.g, the width of '\b' is -1, while the
  1771.    number of characters is 1.) */
  1772.  
  1773. static int
  1774. char_to_clump (c)
  1775.      int c;
  1776. {
  1777.   register int *s = clump_buff;
  1778.   register int i;
  1779.   char esc_buff[4];
  1780.   int width;
  1781.   int chars;
  1782.  
  1783.   if (c == input_tab_char)
  1784.     {
  1785.       width = tab_width (chars_per_input_tab, input_position);
  1786.  
  1787.       if (untabify_input)
  1788.     {
  1789.       for (i = width; i; --i)
  1790.         *s++ = ' ';
  1791.       chars = width;
  1792.     }
  1793.       else
  1794.     {
  1795.       *s = c;
  1796.       chars = 1;
  1797.     }
  1798.  
  1799.     }
  1800.   else if (!ISPRINT (c))
  1801.     {
  1802.       if (use_esc_sequence)
  1803.     {
  1804.       width = 4;
  1805.       chars = 4;
  1806.       *s++ = '\\';
  1807.       sprintf (esc_buff, "%03o", c);
  1808.       for (i = 0; i <= 2; ++i)
  1809.         *s++ = (int) esc_buff[i];
  1810.     }
  1811.       else if (use_cntrl_prefix)
  1812.     {
  1813.       if (c < 0200)
  1814.         {
  1815.           width = 2;
  1816.           chars = 2;
  1817.           *s++ = '^';
  1818.           *s++ = c ^ 0100;
  1819.         }
  1820.       else
  1821.         {
  1822.           width = 4;
  1823.           chars = 4;
  1824.           *s++ = '\\';
  1825.           sprintf (esc_buff, "%03o", c);
  1826.           for (i = 0; i <= 2; ++i)
  1827.         *s++ = (int) esc_buff[i];
  1828.         }
  1829.     }
  1830.       else if (c == '\b')
  1831.     {
  1832.       width = -1;
  1833.       chars = 1;
  1834.       *s = c;
  1835.     }
  1836.       else
  1837.     {
  1838.       width = 0;
  1839.       chars = 1;
  1840.       *s = c;
  1841.     }
  1842.     }
  1843.   else
  1844.     {
  1845.       width = 1;
  1846.       chars = 1;
  1847.       *s = c;
  1848.     }
  1849.  
  1850.   input_position += width;
  1851.   return chars;
  1852. }
  1853.  
  1854. /* We've just printed some files and need to clean up things before
  1855.    looking for more options and printing the next batch of files.
  1856.  
  1857.    Free everything we've xmalloc'ed, except `header'. */
  1858.  
  1859. static void
  1860. cleanup ()
  1861. {
  1862.   if (number_buff)
  1863.     free (number_buff);
  1864.   if (clump_buff)
  1865.     free (clump_buff);
  1866.   if (column_vector)
  1867.     free (column_vector);
  1868.   if (line_vector)
  1869.     free (line_vector);
  1870.   if (end_vector)
  1871.     free (end_vector);
  1872.   if (buff)
  1873.     free (buff);
  1874. }
  1875.  
  1876. /* Complain, print a usage message, and die. */
  1877.  
  1878. static void
  1879. usage (status)
  1880.      int status;
  1881. {
  1882.   if (status != 0)
  1883.     fprintf (stderr, "Try `%s --help' for more information.\n",
  1884.          program_name);
  1885.   else
  1886.     {
  1887.       printf ("\
  1888. Usage: %s [OPTION]... [FILE]...\n\
  1889. ",
  1890.           program_name);
  1891.       printf ("\
  1892. \n\
  1893.   +PAGE             begin printing with page PAGE\n\
  1894.   -COLUMN           produce COLUMN-column output and print columns down\n\
  1895.   -F, -f            simulate formfeed with newlines on output\n\
  1896.   -a                print columns across rather than down\n\
  1897.   -b                balance columns on the last page\n\
  1898.   -c                use hat notation (^G) and octal backslash notation\n\
  1899.   -d                double space the output\n\
  1900.   -e[CHAR[WIDTH]]   expand input CHARs (TABs) to tab WIDTH (8)\n\
  1901.   -h HEADER         use HEADER instead of filename in page headers\n\
  1902.   -i[CHAR[WIDTH]]   replace spaces with CHARs (TABs) to tab WIDTH (8)\n\
  1903.   -l PAGE_LENGTH    set the page length to PAGE_LENGTH (66) lines\n\
  1904.   -m                print all files in parallel, one in each column\n\
  1905.   -n[SEP[DIGITS]]   number lines, use DIGITS (5) digits, then SEP (TAB)\n\
  1906.   -o MARGIN         offset each line with MARGIN spaces (do not affect -w)\n\
  1907.   -r                inhibit warning when a file cannot be opened\n\
  1908.   -s[SEP]           separate columns by character SEP (TAB)\n\
  1909.   -t                inhibit 5-line page headers and trailers\n\
  1910.   -v                use octal backslash notation\n\
  1911.   -w PAGE_WIDTH     set page width to PAGE_WIDTH (72) columns\n\
  1912.       --help        display this help and exit\n\
  1913.       --version     output version information and exit\n\
  1914. \n\
  1915. -t implied by -l N when N < 10.  Without -s, columns are separated by\n\
  1916. spaces.  With no FILE, or when FILE is -, read standard input.\n\
  1917. ");
  1918.     }
  1919.   exit (status);
  1920. }
  1921.