(jm_PREREQ): Also forbid the gl_[A-Z] prefix.
[coreutils.git] / src / pr.c
blob13d5d7eaebaef83486f2c7488e89a64c06ed053e
1 /* pr -- convert text files for printing.
2 Copyright (C) 88, 91, 1995-2002 Free Software Foundation, Inc.
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.
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.
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 Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18 /* By Pete TerMaat, with considerable refinement by Roland Huebner. */
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
25 Ideas:
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.
30 Improve the printing of control prefixes.
32 Expand the filename in the centered header line to a full pathname.
35 Concept:
37 If the input_tab_char differs from the default value TAB
38 (`-e[CHAR[...]]' is used), any input text tab is expanded to the
39 default width of 8 spaces (compare char_to_clump). - Same as SunOS
40 does.
42 The treatment of the number_separator (compare add_line_number):
43 The default value TAB of the number_separator (`-n[SEP[...]]') doesn't
44 be thought to be an input character. An optional `-e'-input has no
45 effect.
46 - With single column output
47 only one POSIX requirement has to be met:
48 The default n-separator should be a TAB. The consequence is a
49 different width between the number and the text if the output position
50 of the separator changes, i.e. it depends upon the left margin used.
51 That's not nice but easy-to-use together with the defaults of other
52 utilities, e.g. sort or cut. - Same as SunOS does.
53 - With multicolumn output
54 two conflicting POSIX requirements exist:
55 First `default n-separator is TAB', second `output text columns shall
56 be of equal width'. Moreover POSIX specifies the number+separator a
57 part of the column, together with `-COLUMN' and `-a -COLUMN'.
58 (With -m output the number shall occupy each line only once. Exactly
59 the same situation as single column output exists.)
60 GNU pr gives priority to the 2nd requirement and observes POSIX
61 column definition. The n-separator TAB is expanded to the same number
62 of spaces in each column using the default value 8. Tabification is
63 only performed if it is compatible with the output position.
64 Consequence: The output text columns are of equal width. The layout
65 of a page does not change if the left margin varies. - Looks better
66 than the SunOS approach.
67 SunOS pr gives priority to the 1st requirement. n-separator TAB
68 width varies with each column. Only the width of text part of the
69 column is fixed.
70 Consequence: The output text columns don't have equal width. The
71 widths and the layout of the whole page varies with the left margin.
72 An overflow of the line length (without margin) over the input value
73 PAGE_WIDTH may occur.
75 The interference of the POSIX-compliant small letter options -w and -s:
76 (`interference' means `setting a _separator_ with -s switches off the
77 column sturctur and the default - not generally - page_width,
78 acts on -w option')
79 options: text form / separator: equivalent new options:
80 -w l -s[x]
81 --------------------------------------------------------------------
82 1. -- -- columns / space --
83 trunc. to page_width = 72
84 2. -- -s[:] full lines / TAB[:] -J --sep-string[="<TAB>"|:]
85 no truncation
86 3. -w l -- columns / space -W l
87 trunc. to page_width = l
88 4. -w l -s[:] columns / no sep.[:] -W l --sep-string[=:]
89 trunc. to page_width = l
90 --------------------------------------------------------------------
93 Options:
95 Including version 1.22i:
96 Some SMALL LETTER options has been redefined with the object of a
97 better POSIX compliance. The output of some further cases has been
98 adapted to other UNIXes. A violation of downward compatibility has to
99 be accepted.
100 Some NEW CAPITAL LETTER options ( -J, -S, -W) has been introduced to
101 turn off unexpected interferences of small letter options (-s and -w
102 together with the three column options).
103 -N option and the second argument LAST_PAGE of +FIRST_PAGE offer more
104 flexibility; The detailed handling of form feeds set in the input
105 files requires -T option.
107 Capital letter options dominate small letter ones.
109 Some of the option-arguments cannot be specified as separate arguments
110 from the preceding option letter (already stated in POSIX specification).
112 Form feeds in the input cause page breaks in the output. Multiple
113 form feeds produce empty pages.
115 +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]
116 begin [stop] printing with page FIRST_[LAST_]PAGE
118 -COLUMN, --columns=COLUMN
119 Produce output that is COLUMN columns wide and
120 print columns down, unless -a is used. Balance number of
121 lines in the columns on each page.
123 -a, --across Print columns across rather than down, used
124 together with -COLUMN. The input
127 three
128 four
129 will be printed with `-a -3' as
130 one two three
131 four
133 -b Balance columns on the last page.
134 -b is no longer an independent option. It's always used
135 together with -COLUMN (unless -a is used) to get a
136 consistent formulation with "FF set by hand" in input
137 files. Each formfeed found terminates the number of lines
138 to be read with the actual page. The situation for
139 printing columns down is equivalent to that on the last
140 page. So we need a balancing.
142 Keeping -b as an underground option guarantees some
143 downward compatibility. Utilities using pr with -b
144 (a most frequently used form) still work as usual.
146 -c, --show-control-chars
147 Print unprintable characters as control prefixes.
148 Control-g is printed as ^G (use hat notation) and
149 octal backslash notation.
151 -d, --double-space Double space the output.
153 -D FORMAT, --date-format=FORMAT Use FORMAT for the header date.
155 -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]
156 Expand tabs to spaces on input. Optional argument CHAR
157 is the input TAB character. (Default is TAB). Optional
158 argument WIDTH is the input TAB character's width.
159 (Default is 8.)
161 -F, -f, --form-feed Use formfeeds instead of newlines to separate
162 pages. A three line HEADER is used, no TRAILER with -F,
163 without -F both HEADER and TRAILER are made of five lines.
165 -h HEADER, --header=HEADER
166 Replace the filename in the header with the string HEADER.
167 A centered header is used.
169 -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]
170 Replace spaces with tabs on output. Optional argument
171 CHAR is the output TAB character. (Default is TAB).
172 Optional argument WIDTH is the output TAB character's
173 width. (Default is 8)
175 -J, --join-lines Merge lines of full length, turns off -W/-w
176 line truncation, no column alignment, --sep-string[=STRING]
177 sets separators, works with all column options
178 (-COLUMN | -a -COLUMN | -m).
179 -J has been introduced (together with -W and --sep-string) to
180 disentangle the old (POSIX compliant) options -w, -s
181 along with the 3 column options.
183 -l PAGE_LENGTH, --length=PAGE_LENGTH
184 Set the page length to PAGE_LENGTH lines. Default is 66,
185 including 5 lines of HEADER and 5 lines of TRAILER
186 without -F, but only 3 lines of HEADER and no TRAILER
187 with -F (i.e the number of text lines defaults to 56 or
188 63 respectively).
190 -m, --merge Print files in parallel; pad_across_to align
191 columns; truncate lines and print separator strings;
192 Do it also with empty columns to get a continuous line
193 numbering and column marking by separators throughout
194 the whole merged file.
196 Empty pages in some input files produce empty columns
197 [marked by separators] in the merged pages. Completely
198 empty merged pages show no column separators at all.
200 The layout of a merged page is ruled by the largest form
201 feed distance of the single pages at that page. Shorter
202 columns will be filled up with empty lines.
204 Together with -J option join lines of full length and
205 set separators when -S option is used.
207 -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]
208 Provide DIGITS digit line numbering (default for DIGITS
209 is 5). With multicolumn output the number occupies the
210 first DIGITS column positions of each text column or only
211 each line of -m output.
212 With single column output the number precedes each line
213 just as -m output.
214 Optional argument SEP is the character appended to the
215 line number to separate it from the text followed.
216 The default separator is a TAB. In a strict sense a TAB
217 is always printed with single column output only. The
218 TAB-width varies with the TAB-position, e.g. with the
219 left margin specified by -o option.
220 With multicolumn output priority is given to `equal width
221 of output columns' (a POSIX specification). The TAB-width
222 is fixed to the value of the 1st column and does not
223 change with different values of left margin. That means a
224 fixed number of spaces is always printed in the place of
225 a TAB. The tabification depends upon the output
226 position.
228 Default counting of the line numbers starts with 1st
229 line of the input file (not the 1st line printed,
230 compare the --page option and -N option).
232 -N NUMBER, --first-line-number=NUMBER
233 Start line counting with the number NUMBER at the 1st
234 line of first page printed (mostly not the 1st line of
235 the input file).
237 -o MARGIN, --indent=MARGIN
238 Offset each line with a margin MARGIN spaces wide.
239 Total page width is the size of the margin plus the
240 PAGE_WIDTH set with -W/-w option.
242 -r, --no-file-warnings
243 Omit warning when a file cannot be opened.
245 -s[CHAR], --separator[=CHAR]
246 Separate columns by a single character CHAR, default for
247 CHAR is the TAB character without -w and 'no char' with -w.
248 Without `-s' default separator `space' is set.
249 -s[CHAR] turns off line truncation of all 3 column options
250 (-COLUMN|-a -COLUMN|-m) except -w is set. That is a POSIX
251 compliant formulation. The source code translates -s into
252 the new options -S and -J, also -W if required.
254 -S STRING, --sep-string[=STRING]
255 Separate columns by any string STRING. The -S option
256 doesn't react upon the -W/-w option (unlike -s option
257 does). It defines a separator nothing else.
258 Without -S: Default separator TAB is used with -J and
259 `space' otherwise (same as -S" ").
260 With -S "": No separator is used.
261 Quotes should be used with blanks and some shell active
262 characters.
263 -S is problematic because in its obsolete form you
264 cannot use -S "STRING", but in its standard form you
265 must use -S "STRING" if STRING is empty. Use
266 --sep-string to avoid the ambiguity.
268 -t, --omit-header Do not print headers or footers but retain form
269 feeds set in the input files.
271 -T, --omit-pagination
272 Do not print headers or footers, eliminate any pagination
273 by form feeds set in the input files.
275 -v, --show-nonprinting
276 Print unprintable characters as escape sequences. Use
277 octal backslash notation. Control-G becomes \007.
279 -w PAGE_WIDTH, --width=PAGE_WIDTH
280 Set page width to PAGE_WIDTH characters for multiple
281 text-column output only (default for PAGE_WIDTH is 72).
282 -s[CHAR] turns off the default page width and any line
283 truncation. Lines of full length will be merged,
284 regardless of the column options set. A POSIX compliant
285 formulation.
287 -W PAGE_WIDTH, --page-width=PAGE_WIDTH
288 Set the page width to PAGE_WIDTH characters. That's valid
289 with and without a column option. Text lines will be
290 truncated, unless -J is used. Together with one of the
291 column options (-COLUMN| -a -COLUMN| -m) column alignment
292 is always used.
293 Default is 72 characters.
294 Without -W PAGE_WIDTH
295 - but with one of the column options default truncation of
296 72 characters is used (to keep downward compatibility
297 and to simplify most frequently met column tasks).
298 Column alignment and column separators are used.
299 - and without any of the column options NO line truncation
300 is used (to keep downward compatibility and to meet most
301 frequent tasks). That's equivalent to -W 72 -J .
303 With/without -W PAGE_WIDTH the header line is always
304 truncated to avoid line overflow.
306 (In pr versions newer than 1.14 -S option does no longer
307 affect -W option.)
312 #include <config.h>
314 #include <stdio.h>
315 #include <getopt.h>
316 #include <sys/types.h>
317 #include <time.h>
318 #include "system.h"
319 #include "closeout.h"
320 #include "error.h"
321 #include "mbswidth.h"
322 #include "posixver.h"
323 #include "xstrtol.h"
325 /* The official name of this program (e.g., no `g' prefix). */
326 #define PROGRAM_NAME "pr"
328 #define AUTHORS N_ ("Pete TerMaat and Roland Huebner")
330 #ifndef TRUE
331 # define TRUE 1
332 # define FALSE 0
333 #endif
335 /* Used with start_position in the struct COLUMN described below.
336 If start_position == ANYWHERE, we aren't truncating columns and
337 can begin printing a column anywhere. Otherwise we must pad to
338 the horizontal position start_position. */
339 #define ANYWHERE 0
341 /* Each column has one of these structures allocated for it.
342 If we're only dealing with one file, fp is the same for all
343 columns.
345 The general strategy is to spend time setting up these column
346 structures (storing columns if necessary), after which printing
347 is a matter of flitting from column to column and calling
348 print_func.
350 Parallel files, single files printing across in multiple
351 columns, and single files printing down in multiple columns all
352 fit the same printing loop.
354 print_func Function used to print lines in this column.
355 If we're storing this column it will be
356 print_stored(), Otherwise it will be read_line().
358 char_func Function used to process characters in this column.
359 If we're storing this column it will be store_char(),
360 otherwise it will be print_char().
362 current_line Index of the current entry in line_vector, which
363 contains the index of the first character of the
364 current line in buff[].
366 lines_stored Number of lines in this column which are stored in
367 buff.
369 lines_to_print If we're storing this column, lines_to_print is
370 the number of stored_lines which remain to be
371 printed. Otherwise it is the number of lines
372 we can print without exceeding lines_per_body.
374 start_position The horizontal position we want to be in before we
375 print the first character in this column.
377 numbered True means precede this column with a line number. */
379 struct COLUMN;
380 struct COLUMN
382 FILE *fp; /* Input stream for this column. */
383 char const *name; /* File name. */
384 enum
386 OPEN,
387 FF_FOUND, /* used with -b option, set with \f, changed
388 to ON_HOLD after print_header */
389 ON_HOLD, /* Hit a form feed. */
390 CLOSED
392 status; /* Status of the file pointer. */
394 /* Func to print lines in this col. */
395 int (*print_func) (struct COLUMN *);
397 /* Func to print/store chars in this col. */
398 void (*char_func) (int);
400 int current_line; /* Index of current place in line_vector. */
401 int lines_stored; /* Number of lines stored in buff. */
402 int lines_to_print; /* No. lines stored or space left on page. */
403 int start_position; /* Horizontal position of first char. */
404 int numbered;
405 int full_page_printed; /* True means printed without a FF found. */
407 /* p->full_page_printed controls a special case of "FF set by hand":
408 True means a full page has been printed without FF found. To avoid an
409 additional empty page we have to ignore a FF immediately following in
410 the next line. */
413 typedef struct COLUMN COLUMN;
415 #define NULLCOL (COLUMN *)0
417 static int char_to_clump (int c);
418 static int read_line (COLUMN *p);
419 static int print_page (void);
420 static int print_stored (COLUMN *p);
421 static int open_file (char *name, COLUMN *p);
422 static int skip_to_page (int page);
423 static void print_header (void);
424 static void pad_across_to (int position);
425 static void add_line_number (COLUMN *p);
426 static void getoptarg (char *arg, char switch_char, char *character,
427 int *number);
428 void usage (int status);
429 static void print_files (int number_of_files, char **av);
430 static void init_parameters (int number_of_files);
431 static void init_header (char *filename, int desc);
432 static int init_fps (int number_of_files, char **av);
433 static void init_funcs (void);
434 static void init_store_cols (void);
435 static void store_columns (void);
436 static void balance (int total_stored);
437 static void store_char (int c);
438 static void pad_down (int lines);
439 static void read_rest_of_line (COLUMN *p);
440 static void skip_read (COLUMN *p, int column_number);
441 static void print_char (int c);
442 static void cleanup (void);
443 static void first_last_page (char *pages);
444 static void print_sep_string (void);
445 static void separator_string (const char *optarg_S);
447 /* The name under which this program was invoked. */
448 char *program_name;
450 /* All of the columns to print. */
451 static COLUMN *column_vector;
453 /* When printing a single file in multiple downward columns,
454 we store the leftmost columns contiguously in buff.
455 To print a line from buff, get the index of the first character
456 from line_vector[i], and print up to line_vector[i + 1]. */
457 static char *buff;
459 /* Index of the position in buff where the next character
460 will be stored. */
461 static int buff_current;
463 /* The number of characters in buff.
464 Used for allocation of buff and to detect overflow of buff. */
465 static int buff_allocated;
467 /* Array of indices into buff.
468 Each entry is an index of the first character of a line.
469 This is used when storing lines to facilitate shuffling when
470 we do column balancing on the last page. */
471 static int *line_vector;
473 /* Array of horizonal positions.
474 For each line in line_vector, end_vector[line] is the horizontal
475 position we are in after printing that line. We keep track of this
476 so that we know how much we need to pad to prepare for the next
477 column. */
478 static int *end_vector;
480 /* (-m) True means we're printing multiple files in parallel. */
481 static int parallel_files = FALSE;
483 /* (-m) True means a line starts with some empty columns (some files
484 already CLOSED or ON_HOLD) which we have to align. */
485 static int align_empty_cols;
487 /* (-m) True means we have not yet found any printable column in a line.
488 align_empty_cols = TRUE has to be maintained. */
489 static int empty_line;
491 /* (-m) False means printable column output precedes a form feed found.
492 Column alignment is done only once. No additional action with that form
493 feed.
494 True means we found only a form feed in a column. Maybe we have to do
495 some column alignment with that form feed. */
496 static int FF_only;
498 /* (-[0-9]+) True means we're given an option explicitly specifying
499 number of columns. Used to detect when this option is used with -m
500 and when translating old options to new/long options. */
501 static int explicit_columns = FALSE;
503 /* (-t|-T) False means we aren't printing headers and footers. */
504 static int extremities = TRUE;
506 /* (-t) True means we retain all FF set by hand in input files.
507 False is set with -T option. */
508 static int keep_FF = FALSE;
509 static int print_a_FF = FALSE;
511 /* True means we need to print a header as soon as we know we've got input
512 to print after it. */
513 static int print_a_header;
515 /* (-f) True means use formfeeds instead of newlines to separate pages. */
516 static int use_form_feed = FALSE;
518 /* True means we have read the standard input. */
519 static int have_read_stdin = FALSE;
521 /* True means the -a flag has been given. */
522 static int print_across_flag = FALSE;
524 /* True means we're printing one file in multiple (>1) downward columns. */
525 static int storing_columns = TRUE;
527 /* (-b) True means balance columns on the last page as Sys V does. */
528 /* That's no longer an independent option. With storing_columns = TRUE
529 balance_columns = TRUE is used too (s. function init_parameters).
530 We get a consistent formulation with "FF set by hand" in input files. */
531 static int balance_columns = FALSE;
533 /* (-l) Number of lines on a page, including header and footer lines. */
534 static int lines_per_page = 66;
536 /* Number of lines in the header and footer can be reset to 0 using
537 the -t flag. */
538 static int lines_per_header = 5;
539 static int lines_per_body;
540 static int lines_per_footer = 5;
542 /* (-w|-W) Width in characters of the page. Does not include the width of
543 the margin. */
544 static int chars_per_line = 72;
546 /* (-w|W) True means we truncate lines longer than chars_per_column. */
547 static int truncate_lines = FALSE;
549 /* (-J) True means we join lines without any line truncation. -J
550 dominates -w option. */
551 static int join_lines = FALSE;
553 /* Number of characters in a column. Based on col_sep_length and
554 page width. */
555 static int chars_per_column;
557 /* (-e) True means convert tabs to spaces on input. */
558 static int untabify_input = FALSE;
560 /* (-e) The input tab character. */
561 static char input_tab_char = '\t';
563 /* (-e) Tabstops are at chars_per_tab, 2*chars_per_tab, 3*chars_per_tab, ...
564 where the leftmost column is 1. */
565 static int chars_per_input_tab = 8;
567 /* (-i) True means convert spaces to tabs on output. */
568 static int tabify_output = FALSE;
570 /* (-i) The output tab character. */
571 static char output_tab_char = '\t';
573 /* (-i) The width of the output tab. */
574 static int chars_per_output_tab = 8;
576 /* Keeps track of pending white space. When we hit a nonspace
577 character after some whitespace, we print whitespace, tabbing
578 if necessary to get to output_position + spaces_not_printed. */
579 static int spaces_not_printed;
581 /* (-o) Number of spaces in the left margin (tabs used when possible). */
582 static int chars_per_margin = 0;
584 /* Position where the next character will fall.
585 Leftmost position is 0 + chars_per_margin.
586 Rightmost position is chars_per_margin + chars_per_line - 1.
587 This is important for converting spaces to tabs on output. */
588 static int output_position;
590 /* Horizontal position relative to the current file.
591 (output_position depends on where we are on the page;
592 input_position depends on where we are in the file.)
593 Important for converting tabs to spaces on input. */
594 static int input_position;
596 /* Count number of failed opens so we can exit with nonzero
597 status if there were any. */
598 static int failed_opens = 0;
600 /* The number of spaces taken up if we print a tab character with width
601 c_ from position h_. */
602 #define TAB_WIDTH(c_, h_) ((c_) - ((h_) % (c_)))
604 /* The horizontal position we'll be at after printing a tab character
605 of width c_ from the position h_. */
606 #define POS_AFTER_TAB(c_, h_) ((h_) + TAB_WIDTH (c_, h_))
608 /* (-NNN) Number of columns of text to print. */
609 static int columns = 1;
611 /* (+NNN:MMM) Page numbers on which to begin and stop printing.
612 first_page_number = 0 will be used to check input only. */
613 static int first_page_number = 0;
614 static int last_page_number = 0;
616 /* Number of files open (not closed, not on hold). */
617 static int files_ready_to_read = 0;
619 /* Current page number. Displayed in header. */
620 static int page_number;
622 /* Current line number. Displayed when -n flag is specified.
624 When printing files in parallel (-m flag), line numbering is as follows:
625 1 foo goo moo
626 2 hoo too zoo
628 When printing files across (-a flag), ...
629 1 foo 2 moo 3 goo
630 4 hoo 5 too 6 zoo
632 Otherwise, line numbering is as follows:
633 1 foo 3 goo 5 too
634 2 moo 4 hoo 6 zoo */
635 static int line_number;
637 /* With line_number overflow, we use power_10 to cut off the higher-order
638 digits of the line_number */
639 static int power_10;
641 /* (-n) True means lines should be preceded by numbers. */
642 static int numbered_lines = FALSE;
644 /* (-n) Character which follows each line number. */
645 static char number_separator = '\t';
647 /* (-n) line counting starts with 1st line of input file (not with 1st
648 line of 1st page printed). */
649 static int line_count = 1;
651 /* (-n) True means counting of skipped lines starts with 1st line of
652 input file. False means -N option is used in addition, counting of
653 skipped lines not required. */
654 static int skip_count = TRUE;
656 /* (-N) Counting starts with start_line_number = NUMBER at 1st line of
657 first page printed, usually not 1st page of input file. */
658 static int start_line_num = 1;
660 /* (-n) Width in characters of a line number. */
661 static int chars_per_number = 5;
663 /* Used when widening the first column to accommodate numbers -- only
664 needed when printing files in parallel. Includes width of both the
665 number and the number_separator. */
666 static int number_width;
668 /* Buffer sprintf uses to format a line number. */
669 static char *number_buff;
671 /* (-v) True means unprintable characters are printed as escape sequences.
672 control-g becomes \007. */
673 static int use_esc_sequence = FALSE;
675 /* (-c) True means unprintable characters are printed as control prefixes.
676 control-g becomes ^G. */
677 static int use_cntrl_prefix = FALSE;
679 /* (-d) True means output is double spaced. */
680 static int double_space = FALSE;
682 /* Number of files opened initially in init_files. Should be 1
683 unless we're printing multiple files in parallel. */
684 static int total_files = 0;
686 /* (-r) True means don't complain if we can't open a file. */
687 static int ignore_failed_opens = FALSE;
689 /* (-S) True means we separate columns with a specified string.
690 -S option does not affect line truncation nor column alignment. */
691 static int use_col_separator = FALSE;
693 /* String used to separate columns if the -S option has been specified.
694 Default without -S but together with one of the column options
695 -a|COLUMN|-m is a `space' and with the -J option a `tab'. */
696 static char *col_sep_string = "";
697 static int col_sep_length = 0;
698 static char *column_separator = " ";
699 static char *line_separator = "\t";
701 /* Number of separator characters waiting to be printed as soon as we
702 know that we have any input remaining to be printed. */
703 static int separators_not_printed;
705 /* Position we need to pad to, as soon as we know that we have input
706 remaining to be printed. */
707 static int padding_not_printed;
709 /* True means we should pad the end of the page. Remains false until we
710 know we have a page to print. */
711 static int pad_vertically;
713 /* (-h) String of characters used in place of the filename in the header. */
714 static char *custom_header;
716 /* (-D) Date format for the header. */
717 static char const *date_format;
719 /* Date and file name for the header. */
720 static char *date_text;
721 static char const *file_text;
723 /* Output columns available, not counting the date and file name. */
724 static int header_width_available;
726 static int *clump_buff;
728 /* True means we read the line no. lines_per_body in skip_read
729 called by skip_to_page. That variable controls the coincidence of a
730 "FF set by hand" and "full_page_printed", see above the definition of
731 structure COLUMN. */
732 static int last_line = FALSE;
734 /* For long options that have no equivalent short option, use a
735 non-character as a pseudo short option, starting with CHAR_MAX + 1. */
736 enum
738 COLUMNS_OPTION = CHAR_MAX + 1,
739 PAGES_OPTION
742 #define COMMON_SHORT_OPTIONS \
743 "-0123456789D:FJN:TW:abcde::fh:i::l:mn::o:rs::tvw:"
745 static struct option const long_options[] =
747 {"pages", required_argument, NULL, PAGES_OPTION},
748 {"columns", required_argument, NULL, COLUMNS_OPTION},
749 {"across", no_argument, NULL, 'a'},
750 {"show-control-chars", no_argument, NULL, 'c'},
751 {"double-space", no_argument, NULL, 'd'},
752 {"date-format", required_argument, NULL, 'D'},
753 {"expand-tabs", optional_argument, NULL, 'e'},
754 {"form-feed", no_argument, NULL, 'f'},
755 {"header", required_argument, NULL, 'h'},
756 {"output-tabs", optional_argument, NULL, 'i'},
757 {"join-lines", no_argument, NULL, 'J'},
758 {"length", required_argument, NULL, 'l'},
759 {"merge", no_argument, NULL, 'm'},
760 {"number-lines", optional_argument, NULL, 'n'},
761 {"first-line-number", required_argument, NULL, 'N'},
762 {"indent", required_argument, NULL, 'o'},
763 {"no-file-warnings", no_argument, NULL, 'r'},
764 {"separator", optional_argument, NULL, 's'},
765 {"sep-string", optional_argument, NULL, 'S'},
766 {"omit-header", no_argument, NULL, 't'},
767 {"omit-pagination", no_argument, NULL, 'T'},
768 {"show-nonprinting", no_argument, NULL, 'v'},
769 {"width", required_argument, NULL, 'w'},
770 {"page-width", required_argument, NULL, 'W'},
771 {GETOPT_HELP_OPTION_DECL},
772 {GETOPT_VERSION_OPTION_DECL},
773 {0, 0, 0, 0}
776 /* Return the number of columns that have either an open file or
777 stored lines. */
779 static int
780 cols_ready_to_print (void)
782 COLUMN *q;
783 int i;
784 int n;
786 n = 0;
787 for (q = column_vector, i = 0; i < columns; ++q, ++i)
788 if (q->status == OPEN ||
789 q->status == FF_FOUND || /* With -b: To print a header only */
790 (storing_columns && q->lines_stored > 0 && q->lines_to_print > 0))
791 ++n;
792 return n;
795 /* Estimate first_ / last_page_number
796 using option +FIRST_PAGE:LAST_PAGE */
798 static void
799 first_last_page (char *pages)
801 char *str1;
803 if (*pages == ':')
805 error (0, 0, _("`--pages' invalid range of page numbers: `%s'"), pages);
806 usage (2);
809 str1 = strchr (pages, ':');
810 if (str1 != NULL)
811 *str1 = '\0';
814 long int tmp_long;
815 if (xstrtol (pages, NULL, 10, &tmp_long, "") != LONGINT_OK
816 || tmp_long < 1 || tmp_long > INT_MAX)
817 error (EXIT_FAILURE, 0, _("`--pages' invalid starting page number: `%s'"),
818 pages);
819 first_page_number = (int) tmp_long;
822 if (str1 == NULL)
823 return;
826 long int tmp_long;
827 if (xstrtol (str1 + 1, NULL, 10, &tmp_long, "") != LONGINT_OK
828 || tmp_long <= 0 || tmp_long > INT_MAX)
829 error (EXIT_FAILURE, 0, _("`--pages' invalid ending page number: `%s'"),
830 str1 + 1);
831 last_page_number = (int) tmp_long;
834 if (first_page_number > last_page_number)
835 error (EXIT_FAILURE, 0,
836 _("`--pages' starting page number is larger than ending page number"));
839 /* Estimate length of col_sep_string with option -S. */
841 static void
842 separator_string (const char *optarg_S)
844 col_sep_length = (int) strlen (optarg_S);
845 col_sep_string = (char *) xmalloc (col_sep_length + 1);
846 strcpy (col_sep_string, optarg_S);
850 main (int argc, char **argv)
852 int c;
853 int accum = 0;
854 int n_files;
855 int old_options = FALSE;
856 int old_w = FALSE;
857 int old_s = FALSE;
858 char **file_names;
859 char const *short_options = (posix2_version () < 200112
860 ? COMMON_SHORT_OPTIONS "S::"
861 : COMMON_SHORT_OPTIONS "S:");
863 program_name = argv[0];
864 setlocale (LC_ALL, "");
865 bindtextdomain (PACKAGE, LOCALEDIR);
866 textdomain (PACKAGE);
868 atexit (close_stdout);
870 n_files = 0;
871 file_names = (argc > 1
872 ? (char **) xmalloc ((argc - 1) * sizeof (char *))
873 : NULL);
875 while ((c = getopt_long (argc, argv, short_options, long_options, NULL))
876 != -1)
878 if (ISDIGIT (c))
880 accum = accum * 10 + c - '0';
881 columns = accum;
882 explicit_columns = TRUE;
883 continue;
886 if (accum > 0) /* reset for subsequent params */
887 accum = 0;
889 switch (c)
891 case 0: /* getopt long option */
892 break;
894 case 1: /* Non-option argument. */
895 if (*optarg == '+')
897 /* long option --page dominates old `+FIRST_PAGE ...' */
898 if (first_page_number <= 0 && last_page_number <= 0)
899 first_last_page (optarg);
901 else
902 file_names[n_files++] = optarg;
903 break;
905 case PAGES_OPTION: /* --pages=FIRST_PAGE[:LAST_PAGE] */
906 { /* dominates old opt +... */
907 if (optarg)
908 first_last_page (optarg);
909 else
910 error (EXIT_FAILURE, 0,
911 _("`--pages=FIRST_PAGE[:LAST_PAGE]' missing argument"));
912 break;
915 case COLUMNS_OPTION: /* --columns=COLUMN */
917 long int tmp_long;
918 if (xstrtol (optarg, NULL, 10, &tmp_long, "") != LONGINT_OK
919 || tmp_long <= 0 || tmp_long > INT_MAX)
921 error (EXIT_FAILURE, 0,
922 _("`--columns=COLUMN' invalid number of columns: `%s'"),
923 optarg);
925 columns = (int) tmp_long;
926 break;
929 case 'a':
930 print_across_flag = TRUE;
931 storing_columns = FALSE;
932 break;
933 case 'b':
934 balance_columns = TRUE;
935 break;
936 case 'c':
937 use_cntrl_prefix = TRUE;
938 break;
939 case 'd':
940 double_space = TRUE;
941 break;
942 case 'D':
943 date_format = optarg;
944 break;
945 case 'e':
946 if (optarg)
947 getoptarg (optarg, 'e', &input_tab_char,
948 &chars_per_input_tab);
949 /* Could check tab width > 0. */
950 untabify_input = TRUE;
951 break;
952 case 'f':
953 case 'F':
954 use_form_feed = TRUE;
955 break;
956 case 'h':
957 custom_header = optarg;
958 break;
959 case 'i':
960 if (optarg)
961 getoptarg (optarg, 'i', &output_tab_char,
962 &chars_per_output_tab);
963 /* Could check tab width > 0. */
964 tabify_output = TRUE;
965 break;
966 case 'J':
967 join_lines = TRUE;
968 break;
969 case 'l':
971 long int tmp_long;
972 if (xstrtol (optarg, NULL, 10, &tmp_long, "") != LONGINT_OK
973 || tmp_long <= 0 || tmp_long > INT_MAX)
975 error (EXIT_FAILURE, 0,
976 _("`-l PAGE_LENGTH' invalid number of lines: `%s'"),
977 optarg);
979 lines_per_page = (int) tmp_long;
980 break;
982 case 'm':
983 parallel_files = TRUE;
984 storing_columns = FALSE;
985 break;
986 case 'n':
987 numbered_lines = TRUE;
988 if (optarg)
989 getoptarg (optarg, 'n', &number_separator,
990 &chars_per_number);
991 break;
992 case 'N':
993 skip_count = FALSE;
995 long int tmp_long;
996 if (xstrtol (optarg, NULL, 10, &tmp_long, "") != LONGINT_OK
997 || tmp_long > INT_MAX)
999 error (EXIT_FAILURE, 0,
1000 _("`-N NUMBER' invalid starting line number: `%s'"),
1001 optarg);
1003 start_line_num = (int) tmp_long;
1004 break;
1006 case 'o':
1008 long int tmp_long;
1009 if (xstrtol (optarg, NULL, 10, &tmp_long, "") != LONGINT_OK
1010 || tmp_long < 0 || tmp_long > INT_MAX)
1011 error (EXIT_FAILURE, 0,
1012 _("`-o MARGIN' invalid line offset: `%s'"), optarg);
1013 chars_per_margin = (int) tmp_long;
1014 break;
1016 case 'r':
1017 ignore_failed_opens = TRUE;
1018 break;
1019 case 's':
1020 old_options = TRUE;
1021 old_s = TRUE;
1022 if (!use_col_separator && optarg)
1023 separator_string (optarg);
1024 break;
1025 case 'S':
1026 old_s = FALSE;
1027 /* Reset an additional input of -s, -S dominates -s */
1028 col_sep_string = "";
1029 col_sep_length = 0;
1030 use_col_separator = TRUE;
1031 if (optarg)
1032 separator_string (optarg);
1033 break;
1034 case 't':
1035 extremities = FALSE;
1036 keep_FF = TRUE;
1037 break;
1038 case 'T':
1039 extremities = FALSE;
1040 keep_FF = FALSE;
1041 break;
1042 case 'v':
1043 use_esc_sequence = TRUE;
1044 break;
1045 case 'w':
1046 old_options = TRUE;
1047 old_w = TRUE;
1049 long int tmp_long;
1050 if (xstrtol (optarg, NULL, 10, &tmp_long, "") != LONGINT_OK
1051 || tmp_long <= 0 || tmp_long > INT_MAX)
1052 error (EXIT_FAILURE, 0,
1053 _("`-w PAGE_WIDTH' invalid number of characters: `%s'"), optarg);
1054 if (!truncate_lines) chars_per_line = (int) tmp_long;
1055 break;
1057 case 'W':
1058 old_w = FALSE; /* dominates -w */
1059 truncate_lines = TRUE;
1061 long int tmp_long;
1062 if (xstrtol (optarg, NULL, 10, &tmp_long, "") != LONGINT_OK
1063 || tmp_long <= 0 || tmp_long > INT_MAX)
1064 error (EXIT_FAILURE, 0,
1065 _("`-W PAGE_WIDTH' invalid number of characters: `%s'"), optarg);
1066 chars_per_line = (int) tmp_long;
1067 break;
1069 case_GETOPT_HELP_CHAR;
1070 case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
1071 default:
1072 usage (2);
1073 break;
1077 if (! date_format)
1078 date_format = (getenv ("POSIXLY_CORRECT")
1079 ? dcgettext (NULL, "%b %e %H:%M %Y", LC_TIME)
1080 : "%Y-%m-%d %H:%M");
1082 /* Now we can set a reasonable initial value: */
1083 if (first_page_number == 0)
1084 first_page_number = 1;
1086 if (parallel_files && explicit_columns)
1087 error (EXIT_FAILURE, 0,
1088 _("Cannot specify number of columns when printing in parallel."));
1090 if (parallel_files && print_across_flag)
1091 error (EXIT_FAILURE, 0,
1092 _("Cannot specify both printing across and printing in parallel."));
1094 /* Translate some old short options to new/long options.
1095 To meet downward compatibility with other UNIX pr utilities
1096 and some POSIX specifications. */
1098 if (old_options)
1100 if (old_w)
1102 if (parallel_files || explicit_columns)
1104 /* activate -W */
1105 truncate_lines = TRUE;
1106 if (old_s)
1107 /* adapt HP-UX and SunOS: -s = no separator;
1108 activate -S */
1109 use_col_separator = TRUE;
1111 else
1112 /* old -w sets width with columns only
1113 activate -J */
1114 join_lines = TRUE;
1116 else if (!use_col_separator)
1118 /* No -S option read */
1119 if (old_s && (parallel_files || explicit_columns))
1121 if (!truncate_lines)
1123 /* old -s (without -w and -W) annuls column alignment,
1124 uses fields, activate -J */
1125 join_lines = TRUE;
1126 if (col_sep_length > 0)
1127 /* activate -S */
1128 use_col_separator = TRUE;
1130 else
1131 /* with -W */
1132 /* adapt HP-UX and SunOS: -s = no separator;
1133 activate -S */
1134 use_col_separator = TRUE;
1139 for (; optind < argc; optind++)
1141 file_names[n_files++] = argv[optind];
1144 if (n_files == 0)
1146 /* No file arguments specified; read from standard input. */
1147 print_files (0, NULL);
1149 else
1151 if (parallel_files)
1152 print_files (n_files, file_names);
1153 else
1155 int i;
1156 for (i = 0; i < n_files; i++)
1157 print_files (1, &file_names[i]);
1161 cleanup ();
1163 if (have_read_stdin && fclose (stdin) == EOF)
1164 error (EXIT_FAILURE, errno, _("standard input"));
1165 if (failed_opens > 0)
1166 exit (EXIT_FAILURE);
1167 exit (EXIT_SUCCESS);
1170 /* Parse options of the form -scNNN.
1172 Example: -nck, where 'n' is the option, c is the optional number
1173 separator, and k is the optional width of the field used when printing
1174 a number. */
1176 static void
1177 getoptarg (char *arg, char switch_char, char *character, int *number)
1179 if (!ISDIGIT (*arg))
1180 *character = *arg++;
1181 if (*arg)
1183 long int tmp_long;
1184 if (xstrtol (arg, NULL, 10, &tmp_long, "") != LONGINT_OK
1185 || tmp_long <= 0 || tmp_long > INT_MAX)
1187 error (0, 0,
1188 _("`-%c' extra characters or invalid number in the argument: `%s'"),
1189 switch_char, arg);
1190 usage (2);
1192 *number = (int) tmp_long;
1196 /* Set parameters related to formatting. */
1198 static void
1199 init_parameters (int number_of_files)
1201 int chars_used_by_number = 0;
1203 if (use_form_feed)
1205 lines_per_header = 3;
1206 lines_per_footer = 0;
1209 lines_per_body = lines_per_page - lines_per_header - lines_per_footer;
1210 if (lines_per_body <= 0)
1212 extremities = FALSE;
1213 keep_FF = TRUE;
1215 if (extremities == FALSE)
1216 lines_per_body = lines_per_page;
1218 if (double_space)
1219 lines_per_body = lines_per_body / 2;
1221 /* If input is stdin, cannot print parallel files. BSD dumps core
1222 on this. */
1223 if (number_of_files == 0)
1224 parallel_files = FALSE;
1226 if (parallel_files)
1227 columns = number_of_files;
1229 /* One file, multi columns down: -b option is set to get a consistent
1230 formulation with "FF set by hand" in input files. */
1231 if (storing_columns)
1232 balance_columns = TRUE;
1234 /* Tabification is assumed for multiple columns. */
1235 if (columns > 1)
1237 if (!use_col_separator)
1239 /* Use default separator */
1240 if (join_lines)
1241 col_sep_string = line_separator;
1242 else
1243 col_sep_string = column_separator;
1245 col_sep_length = 1;
1246 use_col_separator = TRUE;
1248 /* It's rather pointless to define a TAB separator with column
1249 alignment */
1250 else if (!join_lines && *col_sep_string == '\t')
1251 col_sep_string = column_separator;
1253 truncate_lines = TRUE;
1254 untabify_input = TRUE;
1255 tabify_output = TRUE;
1257 else
1258 storing_columns = FALSE;
1260 /* -J dominates -w in any case */
1261 if (join_lines)
1262 truncate_lines = FALSE;
1264 if (numbered_lines)
1266 int tmp_i;
1267 int chars_per_default_tab = 8;
1269 line_count = start_line_num;
1271 /* To allow input tab-expansion (-e sensitive) use:
1272 if (number_separator == input_tab_char)
1273 number_width = chars_per_number +
1274 TAB_WIDTH (chars_per_input_tab, chars_per_number); */
1276 /* Estimate chars_per_text without any margin and keep it constant. */
1277 if (number_separator == '\t')
1278 number_width = chars_per_number +
1279 TAB_WIDTH (chars_per_default_tab, chars_per_number);
1280 else
1281 number_width = chars_per_number + 1;
1283 /* The number is part of the column width unless we are
1284 printing files in parallel. */
1285 if (parallel_files)
1286 chars_used_by_number = number_width;
1288 /* We use power_10 to cut off the higher-order digits of the
1289 line_number in function add_line_number */
1290 tmp_i = chars_per_number;
1291 for (power_10 = 1; tmp_i > 0; --tmp_i)
1292 power_10 = 10 * power_10;
1295 chars_per_column = (chars_per_line - chars_used_by_number -
1296 (columns - 1) * col_sep_length) / columns;
1298 if (chars_per_column < 1)
1299 error (EXIT_FAILURE, 0, _("page width too narrow"));
1301 if (numbered_lines)
1303 if (number_buff != NULL)
1304 free (number_buff);
1305 number_buff = (char *) xmalloc (2 * chars_per_number);
1308 /* Pick the maximum between the tab width and the width of an
1309 escape sequence.
1310 The width of an escape sequence (4) isn't the lower limit any longer.
1311 We've to use 8 as the lower limit, if we use chars_per_default_tab = 8
1312 to expand a tab which is not an input_tab-char. */
1313 if (clump_buff != NULL)
1314 free (clump_buff);
1315 clump_buff = (int *) xmalloc ((chars_per_input_tab > 8
1316 ? chars_per_input_tab : 8) * sizeof (int));
1319 /* Open the necessary files,
1320 maintaining a COLUMN structure for each column.
1322 With multiple files, each column p has a different p->fp.
1323 With single files, each column p has the same p->fp.
1324 Return 1 if (number_of_files > 0) and no files can be opened,
1325 0 otherwise.
1327 With each column/file p, p->full_page_printed is initialized,
1328 see also open_file. */
1330 static int
1331 init_fps (int number_of_files, char **av)
1333 int i, files_left;
1334 COLUMN *p;
1335 FILE *firstfp;
1336 char const *firstname;
1338 total_files = 0;
1340 if (column_vector != NULLCOL)
1341 free ((char *) column_vector);
1342 column_vector = (COLUMN *) xmalloc (columns * sizeof (COLUMN));
1344 if (parallel_files)
1346 files_left = number_of_files;
1347 for (p = column_vector; files_left--; ++p, ++av)
1349 if (open_file (*av, p) == 0)
1351 --p;
1352 --columns;
1355 if (columns == 0)
1356 return 1;
1357 init_header ("", -1);
1359 else
1361 p = column_vector;
1362 if (number_of_files > 0)
1364 if (open_file (*av, p) == 0)
1365 return 1;
1366 init_header (*av, fileno (p->fp));
1367 p->lines_stored = 0;
1369 else
1371 p->name = _("standard input");
1372 p->fp = stdin;
1373 have_read_stdin = TRUE;
1374 p->status = OPEN;
1375 p->full_page_printed = FALSE;
1376 ++total_files;
1377 init_header ("", -1);
1378 p->lines_stored = 0;
1381 firstname = p->name;
1382 firstfp = p->fp;
1383 for (i = columns - 1, ++p; i; --i, ++p)
1385 p->name = firstname;
1386 p->fp = firstfp;
1387 p->status = OPEN;
1388 p->full_page_printed = FALSE;
1389 p->lines_stored = 0;
1392 files_ready_to_read = total_files;
1393 return 0;
1396 /* Determine print_func and char_func, the functions
1397 used by each column for printing and/or storing.
1399 Determine the horizontal position desired when we begin
1400 printing a column (p->start_position). */
1402 static void
1403 init_funcs (void)
1405 int i, h, h_next;
1406 COLUMN *p;
1408 h = chars_per_margin;
1410 if (!truncate_lines)
1411 h_next = ANYWHERE;
1412 else
1414 /* When numbering lines of parallel files, we enlarge the
1415 first column to accomodate the number. Looks better than
1416 the Sys V approach. */
1417 if (parallel_files && numbered_lines)
1418 h_next = h + chars_per_column + number_width;
1419 else
1420 h_next = h + chars_per_column;
1423 /* Enlarge p->start_position of first column to use the same form of
1424 padding_not_printed with all columns. */
1425 h = h + col_sep_length;
1427 /* This loop takes care of all but the rightmost column. */
1429 for (p = column_vector, i = 1; i < columns; ++p, ++i)
1431 if (storing_columns) /* One file, multi columns down. */
1433 p->char_func = store_char;
1434 p->print_func = print_stored;
1436 else
1437 /* One file, multi columns across; or parallel files. */
1439 p->char_func = print_char;
1440 p->print_func = read_line;
1443 /* Number only the first column when printing files in
1444 parallel. */
1445 p->numbered = numbered_lines && (!parallel_files || i == 1);
1446 p->start_position = h;
1448 /* If we don't truncate lines, all start_positions are
1449 ANYWHERE, except the first column's start_position when
1450 using a margin. */
1452 if (!truncate_lines)
1454 h = ANYWHERE;
1455 h_next = ANYWHERE;
1457 else
1459 h = h_next + col_sep_length;
1460 h_next = h + chars_per_column;
1464 /* The rightmost column.
1466 Doesn't need to be stored unless we intend to balance
1467 columns on the last page. */
1468 if (storing_columns && balance_columns)
1470 p->char_func = store_char;
1471 p->print_func = print_stored;
1473 else
1475 p->char_func = print_char;
1476 p->print_func = read_line;
1479 p->numbered = numbered_lines && (!parallel_files || i == 1);
1480 p->start_position = h;
1483 /* Open a file. Return nonzero if successful, zero if failed.
1485 With each file p, p->full_page_printed is initialized,
1486 see also init_fps. */
1488 static int
1489 open_file (char *name, COLUMN *p)
1491 if (STREQ (name, "-"))
1493 p->name = _("standard input");
1494 p->fp = stdin;
1495 have_read_stdin = 1;
1497 else
1499 p->name = name;
1500 p->fp = fopen (name, "r");
1502 if (p->fp == NULL)
1504 ++failed_opens;
1505 if (!ignore_failed_opens)
1506 error (0, errno, "%s", name);
1507 return 0;
1509 p->status = OPEN;
1510 p->full_page_printed = FALSE;
1511 ++total_files;
1512 return 1;
1515 /* Close the file in P.
1517 If we aren't dealing with multiple files in parallel, we change
1518 the status of all columns in the column list to reflect the close. */
1520 static void
1521 close_file (COLUMN *p)
1523 COLUMN *q;
1524 int i;
1526 if (p->status == CLOSED)
1527 return;
1528 if (ferror (p->fp))
1529 error (EXIT_FAILURE, errno, "%s", p->name);
1530 if (p->fp != stdin && fclose (p->fp) == EOF)
1531 error (EXIT_FAILURE, errno, "%s", p->name);
1533 if (!parallel_files)
1535 for (q = column_vector, i = columns; i; ++q, --i)
1537 q->status = CLOSED;
1538 if (q->lines_stored == 0)
1540 q->lines_to_print = 0;
1544 else
1546 p->status = CLOSED;
1547 p->lines_to_print = 0;
1550 --files_ready_to_read;
1553 /* Put a file on hold until we start a new page,
1554 since we've hit a form feed.
1556 If we aren't dealing with parallel files, we must change the
1557 status of all columns in the column list. */
1559 static void
1560 hold_file (COLUMN *p)
1562 COLUMN *q;
1563 int i;
1565 if (!parallel_files)
1566 for (q = column_vector, i = columns; i; ++q, --i)
1568 if (storing_columns)
1569 q->status = FF_FOUND;
1570 else
1571 q->status = ON_HOLD;
1573 else
1574 p->status = ON_HOLD;
1576 p->lines_to_print = 0;
1577 --files_ready_to_read;
1580 /* Undo hold_file -- go through the column list and change any
1581 ON_HOLD columns to OPEN. Used at the end of each page. */
1583 static void
1584 reset_status (void)
1586 int i = columns;
1587 COLUMN *p;
1589 for (p = column_vector; i; --i, ++p)
1590 if (p->status == ON_HOLD)
1592 p->status = OPEN;
1593 files_ready_to_read++;
1596 if (storing_columns)
1598 if (column_vector->status == CLOSED)
1599 /* We use the info to output an error message in skip_to_page. */
1600 files_ready_to_read = 0;
1601 else
1602 files_ready_to_read = 1;
1606 /* Print a single file, or multiple files in parallel.
1608 Set up the list of columns, opening the necessary files.
1609 Allocate space for storing columns, if necessary.
1610 Skip to first_page_number, if user has asked to skip leading pages.
1611 Determine which functions are appropriate to store/print lines
1612 in each column.
1613 Print the file(s). */
1615 static void
1616 print_files (int number_of_files, char **av)
1618 init_parameters (number_of_files);
1619 if (init_fps (number_of_files, av))
1620 return;
1621 if (storing_columns)
1622 init_store_cols ();
1624 if (first_page_number > 1)
1626 if (!skip_to_page (first_page_number))
1627 return;
1628 else
1629 page_number = first_page_number;
1631 else
1632 page_number = 1;
1634 init_funcs ();
1636 line_number = line_count;
1637 while (print_page ())
1641 /* Initialize header information.
1642 If DESC is non-negative, it is a file descriptor open to
1643 FILENAME for reading. */
1645 static void
1646 init_header (char *filename, int desc)
1648 char *buf;
1649 char initbuf[MAX (256, INT_STRLEN_BOUND (long) + 1)];
1650 struct stat st;
1651 struct tm *tm;
1653 /* If parallel files or standard input, use current date. */
1654 if (STREQ (filename, "-"))
1655 desc = -1;
1656 if (desc < 0 || fstat (desc, &st) != 0)
1657 st.st_mtime = time (NULL);
1659 buf = initbuf;
1660 tm = localtime (&st.st_mtime);
1661 if (! tm)
1662 sprintf (buf, "%ld", (long) st.st_mtime);
1663 else
1665 size_t bufsize = sizeof initbuf;
1666 for (;;)
1668 *buf = '\1';
1669 if (strftime (buf, bufsize, date_format, tm) || ! *buf)
1670 break;
1671 buf = alloca (bufsize *= 2);
1675 if (date_text)
1676 free (date_text);
1677 date_text = xstrdup (buf);
1678 file_text = custom_header ? custom_header : desc < 0 ? "" : filename;
1679 header_width_available = (chars_per_line
1680 - mbswidth (date_text, 0)
1681 - mbswidth (file_text, 0));
1684 /* Set things up for printing a page
1686 Scan through the columns ...
1687 Determine which are ready to print
1688 (i.e., which have lines stored or open files)
1689 Set p->lines_to_print appropriately
1690 (to p->lines_stored if we're storing, or lines_per_body
1691 if we're reading straight from the file)
1692 Keep track of this total so we know when to stop printing */
1694 static void
1695 init_page (void)
1697 int j;
1698 COLUMN *p;
1700 if (storing_columns)
1702 store_columns ();
1703 for (j = columns - 1, p = column_vector; j; --j, ++p)
1705 p->lines_to_print = p->lines_stored;
1708 /* Last column. */
1709 if (balance_columns)
1711 p->lines_to_print = p->lines_stored;
1713 /* Since we're not balancing columns, we don't need to store
1714 the rightmost column. Read it straight from the file. */
1715 else
1717 if (p->status == OPEN)
1719 p->lines_to_print = lines_per_body;
1721 else
1722 p->lines_to_print = 0;
1725 else
1726 for (j = columns, p = column_vector; j; --j, ++p)
1727 if (p->status == OPEN)
1729 p->lines_to_print = lines_per_body;
1731 else
1732 p->lines_to_print = 0;
1735 /* Align empty columns and print separators.
1736 Empty columns will be formed by files with status ON_HOLD or CLOSED
1737 when printing multiple files in parallel. */
1739 static void
1740 align_column (COLUMN *p)
1742 padding_not_printed = p->start_position;
1743 if (padding_not_printed - col_sep_length > 0)
1745 pad_across_to (padding_not_printed - col_sep_length);
1746 padding_not_printed = ANYWHERE;
1749 if (use_col_separator)
1750 print_sep_string ();
1752 if (p->numbered)
1753 add_line_number (p);
1756 /* Print one page.
1758 As long as there are lines left on the page and columns ready to print,
1759 Scan across the column list
1760 if the column has stored lines or the file is open
1761 pad to the appropriate spot
1762 print the column
1763 pad the remainder of the page with \n or \f as requested
1764 reset the status of all files -- any files which where on hold because
1765 of formfeeds are now put back into the lineup. */
1767 static int
1768 print_page (void)
1770 int j;
1771 int lines_left_on_page;
1772 COLUMN *p;
1774 /* Used as an accumulator (with | operator) of successive values of
1775 pad_vertically. The trick is to set pad_vertically
1776 to zero before each run through the inner loop, then after that
1777 loop, it tells us whether a line was actually printed (whether a
1778 newline needs to be output -- or two for double spacing). But those
1779 values have to be accumulated (in pv) so we can invoke pad_down
1780 properly after the outer loop completes. */
1781 int pv;
1783 init_page ();
1785 if (cols_ready_to_print () == 0)
1786 return FALSE;
1788 if (extremities)
1789 print_a_header = TRUE;
1791 /* Don't pad unless we know a page was printed. */
1792 pad_vertically = FALSE;
1793 pv = FALSE;
1795 lines_left_on_page = lines_per_body;
1796 if (double_space)
1797 lines_left_on_page *= 2;
1799 while (lines_left_on_page > 0 && cols_ready_to_print () > 0)
1801 output_position = 0;
1802 spaces_not_printed = 0;
1803 separators_not_printed = 0;
1804 pad_vertically = FALSE;
1805 align_empty_cols = FALSE;
1806 empty_line = TRUE;
1808 for (j = 1, p = column_vector; j <= columns; ++j, ++p)
1810 input_position = 0;
1811 if (p->lines_to_print > 0 || p->status == FF_FOUND)
1813 FF_only = FALSE;
1814 padding_not_printed = p->start_position;
1815 if (!(p->print_func) (p))
1816 read_rest_of_line (p);
1817 pv |= pad_vertically;
1819 --p->lines_to_print;
1820 if (p->lines_to_print <= 0)
1822 if (cols_ready_to_print () <= 0)
1823 break;
1826 /* File p changed its status to ON_HOLD or CLOSED */
1827 if (parallel_files && p->status != OPEN)
1829 if (empty_line)
1830 align_empty_cols = TRUE;
1831 else if (p->status == CLOSED ||
1832 (p->status == ON_HOLD && FF_only))
1833 align_column (p);
1836 else if (parallel_files)
1838 /* File status ON_HOLD or CLOSED */
1839 if (empty_line)
1840 align_empty_cols = TRUE;
1841 else
1842 align_column (p);
1845 /* We need it also with an empty column */
1846 if (use_col_separator)
1847 ++separators_not_printed;
1850 if (pad_vertically)
1852 putchar ('\n');
1853 --lines_left_on_page;
1856 if (cols_ready_to_print () <= 0 && !extremities)
1857 break;
1859 if (double_space && pv)
1861 putchar ('\n');
1862 --lines_left_on_page;
1866 if (lines_left_on_page == 0)
1867 for (j = 1, p = column_vector; j <= columns; ++j, ++p)
1868 if (p->status == OPEN)
1869 p->full_page_printed = TRUE;
1871 pad_vertically = pv;
1873 if (pad_vertically && extremities)
1874 pad_down (lines_left_on_page + lines_per_footer);
1875 else if (keep_FF && print_a_FF)
1877 putchar ('\f');
1878 print_a_FF = FALSE;
1881 if (last_page_number && page_number > last_page_number)
1882 return FALSE; /* Stop printing with LAST_PAGE */
1884 reset_status (); /* Change ON_HOLD to OPEN. */
1886 return TRUE; /* More pages to go. */
1889 /* Allocate space for storing columns.
1891 This is necessary when printing multiple columns from a single file.
1892 Lines are stored consecutively in buff, separated by '\0'.
1894 The following doesn't apply any longer - any tuning possible?
1895 (We can't use a fixed offset since with the '-s' flag lines aren't
1896 truncated.)
1898 We maintain a list (line_vector) of pointers to the beginnings
1899 of lines in buff. We allocate one more than the number of lines
1900 because the last entry tells us the index of the last character,
1901 which we need to know in order to print the last line in buff. */
1903 static void
1904 init_store_cols (void)
1906 int total_lines = lines_per_body * columns;
1907 int chars_if_truncate = total_lines * (chars_per_column + 1);
1909 if (line_vector != NULL)
1910 free ((int *) line_vector);
1911 /* FIXME: here's where it was allocated. */
1912 line_vector = (int *) xmalloc ((total_lines + 1) * sizeof (int *));
1914 if (end_vector != NULL)
1915 free ((int *) end_vector);
1916 end_vector = (int *) xmalloc (total_lines * sizeof (int *));
1918 if (buff != NULL)
1919 free (buff);
1920 buff_allocated = (use_col_separator
1921 ? 2 * chars_if_truncate
1922 : chars_if_truncate); /* Tune this. */
1923 buff = (char *) xmalloc (buff_allocated);
1926 /* Store all but the rightmost column.
1927 (Used when printing a single file in multiple downward columns)
1929 For each column
1930 set p->current_line to be the index in line_vector of the
1931 first line in the column
1932 For each line in the column
1933 store the line in buff
1934 add to line_vector the index of the line's first char
1935 buff_start is the index in buff of the first character in the
1936 current line. */
1938 static void
1939 store_columns (void)
1941 int i, j;
1942 int line = 0;
1943 int buff_start;
1944 int last_col; /* The rightmost column which will be saved in buff */
1945 COLUMN *p;
1947 buff_current = 0;
1948 buff_start = 0;
1950 if (balance_columns)
1951 last_col = columns;
1952 else
1953 last_col = columns - 1;
1955 for (i = 1, p = column_vector; i <= last_col; ++i, ++p)
1956 p->lines_stored = 0;
1958 for (i = 1, p = column_vector; i <= last_col && files_ready_to_read;
1959 ++i, ++p)
1961 p->current_line = line;
1962 for (j = lines_per_body; j && files_ready_to_read; --j)
1964 if (p->status == OPEN) /* Redundant. Clean up. */
1966 input_position = 0;
1968 if (!read_line (p))
1969 read_rest_of_line (p);
1971 if (p->status == OPEN
1972 || buff_start != buff_current)
1974 ++p->lines_stored;
1975 line_vector[line] = buff_start;
1976 end_vector[line++] = input_position;
1977 buff_start = buff_current;
1982 /* Keep track of the location of the last char in buff. */
1983 line_vector[line] = buff_start;
1985 if (balance_columns)
1986 balance (line);
1989 static void
1990 balance (int total_stored)
1992 COLUMN *p;
1993 int i, lines;
1994 int first_line = 0;
1996 for (i = 1, p = column_vector; i <= columns; ++i, ++p)
1998 lines = total_stored / columns;
1999 if (i <= total_stored % columns)
2000 ++lines;
2002 p->lines_stored = lines;
2003 p->current_line = first_line;
2005 first_line += lines;
2009 /* Store a character in the buffer. */
2011 static void
2012 store_char (int c)
2014 if (buff_current >= buff_allocated)
2016 /* May be too generous. */
2017 buff_allocated = 2 * buff_allocated;
2018 buff = (char *) xrealloc (buff, buff_allocated * sizeof (char));
2020 buff[buff_current++] = (char) c;
2023 static void
2024 add_line_number (COLUMN *p)
2026 int i;
2027 char *s;
2028 int left_cut;
2030 /* Cutting off the higher-order digits is more informative than
2031 lower-order cut off*/
2032 if (line_number < power_10)
2033 sprintf (number_buff, "%*d", chars_per_number, line_number);
2034 else
2036 left_cut = line_number % power_10;
2037 sprintf (number_buff, "%0*d", chars_per_number, left_cut);
2039 line_number++;
2040 s = number_buff;
2041 for (i = chars_per_number; i > 0; i--)
2042 (p->char_func) ((int) *s++);
2044 if (columns > 1)
2046 /* Tabification is assumed for multiple columns, also for n-separators,
2047 but `default n-separator = TAB' hasn't been given priority over
2048 equal column_width also specified by POSIX. */
2049 if (number_separator == '\t')
2051 i = number_width - chars_per_number;
2052 while (i-- > 0)
2053 (p->char_func) ((int) ' ');
2055 else
2056 (p->char_func) ((int) number_separator);
2058 else
2059 /* To comply with POSIX, we avoid any expansion of default TAB
2060 separator with a single column output. No column_width requirement
2061 has to be considered. */
2063 (p->char_func) ((int) number_separator);
2064 if (number_separator == '\t')
2065 output_position = POS_AFTER_TAB (chars_per_output_tab,
2066 output_position);
2069 if (truncate_lines && !parallel_files)
2070 input_position += number_width;
2073 /* Print (or store) padding until the current horizontal position
2074 is position. */
2076 static void
2077 pad_across_to (int position)
2079 register int h = output_position;
2081 if (tabify_output)
2082 spaces_not_printed = position - output_position;
2083 else
2085 while (++h <= position)
2086 putchar (' ');
2087 output_position = position;
2091 /* Pad to the bottom of the page.
2093 If the user has requested a formfeed, use one.
2094 Otherwise, use newlines. */
2096 static void
2097 pad_down (int lines)
2099 register int i;
2101 if (use_form_feed)
2102 putchar ('\f');
2103 else
2104 for (i = lines; i; --i)
2105 putchar ('\n');
2108 /* Read the rest of the line.
2110 Read from the current column's file until an end of line is
2111 hit. Used when we've truncated a line and we no longer need
2112 to print or store its characters. */
2114 static void
2115 read_rest_of_line (COLUMN *p)
2117 register int c;
2118 FILE *f = p->fp;
2120 while ((c = getc (f)) != '\n')
2122 if (c == '\f')
2124 if ((c = getc (f)) != '\n')
2125 ungetc (c, f);
2126 if (keep_FF)
2127 print_a_FF = TRUE;
2128 hold_file (p);
2129 break;
2131 else if (c == EOF)
2133 close_file (p);
2134 break;
2139 /* Read a line with skip_to_page.
2141 Read from the current column's file until an end of line is
2142 hit. Used when we read full lines to skip pages.
2143 With skip_to_page we have to check for FF-coincidence which is done
2144 in function read_line otherwise.
2145 Count lines of skipped pages to find the line number of 1st page
2146 printed relative to 1st line of input file (start_line_num). */
2148 static void
2149 skip_read (COLUMN *p, int column_number)
2151 register int c;
2152 FILE *f = p->fp;
2153 int i, single_ff = FALSE;
2154 COLUMN *q;
2156 /* Read 1st character in a line or any character succeeding a FF */
2157 if ((c = getc (f)) == '\f' && p->full_page_printed)
2158 /* A FF-coincidence with a previous full_page_printed.
2159 To avoid an additional empty page, eliminate the FF */
2160 if ((c = getc (f)) == '\n')
2161 c = getc (f);
2163 p->full_page_printed = FALSE;
2165 /* 1st character a FF means a single FF without any printable
2166 characters. Don't count it as a line with -n option. */
2167 if (c == '\f')
2168 single_ff = TRUE;
2170 /* Preparing for a FF-coincidence: Maybe we finish that page
2171 without a FF found */
2172 if (last_line)
2173 p->full_page_printed = TRUE;
2175 while (c != '\n')
2177 if (c == '\f')
2179 /* No FF-coincidence possible,
2180 no catching up of a FF-coincidence with next page */
2181 if (last_line)
2183 if (!parallel_files)
2184 for (q = column_vector, i = columns; i; ++q, --i)
2185 q->full_page_printed = FALSE;
2186 else
2187 p->full_page_printed = FALSE;
2190 if ((c = getc (f)) != '\n')
2191 ungetc (c, f);
2192 hold_file (p);
2193 break;
2195 else if (c == EOF)
2197 close_file (p);
2198 break;
2200 c = getc (f);
2203 if (skip_count)
2204 if ((!parallel_files || column_number == 1) && !single_ff)
2205 ++line_count;
2208 /* If we're tabifying output,
2210 When print_char encounters white space it keeps track
2211 of our desired horizontal position and delays printing
2212 until this function is called. */
2214 static void
2215 print_white_space (void)
2217 register int h_new;
2218 register int h_old = output_position;
2219 register int goal = h_old + spaces_not_printed;
2221 while (goal - h_old > 1
2222 && (h_new = POS_AFTER_TAB (chars_per_output_tab, h_old)) <= goal)
2224 putchar (output_tab_char);
2225 h_old = h_new;
2227 while (++h_old <= goal)
2228 putchar (' ');
2230 output_position = goal;
2231 spaces_not_printed = 0;
2234 /* Print column separators.
2236 We keep a count until we know that we'll be printing a line,
2237 then print_sep_string() is called. */
2239 static void
2240 print_sep_string ()
2242 char *s;
2243 int l = col_sep_length;
2245 s = col_sep_string;
2247 if (separators_not_printed <= 0)
2249 /* We'll be starting a line with chars_per_margin, anything else? */
2250 if (spaces_not_printed > 0)
2251 print_white_space ();
2253 else
2255 for (; separators_not_printed > 0; --separators_not_printed)
2257 while (l-- > 0)
2259 /* 3 types of sep_strings: spaces only, spaces and chars,
2260 chars only */
2261 if (*s == ' ')
2263 /* We're tabifying output; consecutive spaces in
2264 sep_string may have to be converted to tabs */
2265 s++;
2266 ++spaces_not_printed;
2268 else
2270 if (spaces_not_printed > 0)
2271 print_white_space ();
2272 putchar (*s++);
2273 ++output_position;
2276 /* sep_string ends with some spaces */
2277 if (spaces_not_printed > 0)
2278 print_white_space ();
2283 /* Print (or store, depending on p->char_func) a clump of N
2284 characters. */
2286 static void
2287 print_clump (COLUMN *p, int n, int *clump)
2289 while (n--)
2290 (p->char_func) (*clump++);
2293 /* Print a character.
2295 Update the following comment: process-char hasn't been used any
2296 longer.
2297 If we're tabifying, all tabs have been converted to spaces by
2298 process_char(). Keep a count of consecutive spaces, and when
2299 a nonspace is encountered, call print_white_space() to print the
2300 required number of tabs and spaces. */
2302 static void
2303 print_char (int c)
2305 if (tabify_output)
2307 if (c == ' ')
2309 ++spaces_not_printed;
2310 return;
2312 else if (spaces_not_printed > 0)
2313 print_white_space ();
2315 /* Nonprintables are assumed to have width 0, except '\b'. */
2316 if (!ISPRINT (c))
2318 if (c == '\b')
2319 --output_position;
2321 else
2322 ++output_position;
2324 putchar (c);
2327 /* Skip to page PAGE before printing.
2328 PAGE may be larger than total number of pages. */
2330 static int
2331 skip_to_page (int page)
2333 int n, i, j;
2334 COLUMN *p;
2336 for (n = 1; n < page; ++n)
2338 for (i = 1; i < lines_per_body; ++i)
2340 for (j = 1, p = column_vector; j <= columns; ++j, ++p)
2341 if (p->status == OPEN)
2342 skip_read (p, j);
2344 last_line = TRUE;
2345 for (j = 1, p = column_vector; j <= columns; ++j, ++p)
2346 if (p->status == OPEN)
2347 skip_read (p, j);
2349 if (storing_columns) /* change FF_FOUND to ON_HOLD */
2350 for (j = 1, p = column_vector; j <= columns; ++j, ++p)
2351 if (p->status != CLOSED)
2352 p->status = ON_HOLD;
2354 reset_status ();
2355 last_line = FALSE;
2357 if (files_ready_to_read < 1)
2359 /* It's very helpful, normally the total number of pages is
2360 not known in advance. */
2361 error (0, 0,
2362 _("starting page number larger than total number of pages: `%d'"),
2364 break;
2367 return files_ready_to_read > 0;
2370 /* Print a header.
2372 Formfeeds are assumed to use up two lines at the beginning of
2373 the page. */
2375 static void
2376 print_header (void)
2378 char page_text[256 + INT_STRLEN_BOUND (int)];
2379 int available_width;
2380 int lhs_spaces;
2381 int rhs_spaces;
2383 if (!use_form_feed)
2384 printf ("\n\n");
2386 output_position = 0;
2387 pad_across_to (chars_per_margin);
2388 print_white_space ();
2390 /* The translator must ensure that formatting the translation of
2391 "Page %d" does not generate more than (sizeof page_text - 1)
2392 bytes. */
2393 sprintf (page_text, _("Page %d"), page_number++);
2394 available_width = header_width_available - mbswidth (page_text, 0);
2395 available_width = MAX (0, available_width);
2396 lhs_spaces = available_width >> 1;
2397 rhs_spaces = available_width - lhs_spaces;
2399 printf ("%s%*s%s%*s%s\n\n\n",
2400 date_text, lhs_spaces, " ", file_text, rhs_spaces, " ", page_text);
2402 print_a_header = FALSE;
2403 output_position = 0;
2406 /* Print (or store, if p->char_func is store_char()) a line.
2408 Read a character to determine whether we have a line or not.
2409 (We may hit EOF, \n, or \f)
2411 Once we know we have a line,
2412 set pad_vertically = TRUE, meaning it's safe
2413 to pad down at the end of the page, since we do have a page.
2414 print a header if needed.
2415 pad across to padding_not_printed if needed.
2416 print any separators which need to be printed.
2417 print a line number if it needs to be printed.
2419 Print the clump which corresponds to the first character.
2421 Enter a loop and keep printing until an end of line condition
2422 exists, or until we exceed chars_per_column.
2424 Return FALSE if we exceed chars_per_column before reading
2425 an end of line character, TRUE otherwise. */
2427 static int
2428 read_line (COLUMN *p)
2430 int c;
2431 int chars IF_LINT (= 0);
2432 int last_input_position;
2433 int j, k;
2434 COLUMN *q;
2436 /* read 1st character in each line or any character succeeding a FF: */
2437 c = getc (p->fp);
2439 last_input_position = input_position;
2441 if (c == '\f' && p->full_page_printed)
2442 if ((c = getc (p->fp)) == '\n')
2443 c = getc (p->fp);
2444 p->full_page_printed = FALSE;
2446 switch (c)
2448 case '\f':
2449 if ((c = getc (p->fp)) != '\n')
2450 ungetc (c, p->fp);
2451 FF_only = TRUE;
2452 if (print_a_header && !storing_columns)
2454 pad_vertically = TRUE;
2455 print_header ();
2457 else if (keep_FF)
2458 print_a_FF = TRUE;
2459 hold_file (p);
2460 return TRUE;
2461 case EOF:
2462 close_file (p);
2463 return TRUE;
2464 case '\n':
2465 break;
2466 default:
2467 chars = char_to_clump (c);
2470 if (truncate_lines && input_position > chars_per_column)
2472 input_position = last_input_position;
2473 return FALSE;
2476 if (p->char_func != store_char)
2478 pad_vertically = TRUE;
2480 if (print_a_header && !storing_columns)
2481 print_header ();
2483 if (parallel_files && align_empty_cols)
2485 /* We have to align empty columns at the beginning of a line. */
2486 k = separators_not_printed;
2487 separators_not_printed = 0;
2488 for (j = 1, q = column_vector; j <= k; ++j, ++q)
2490 align_column (q);
2491 separators_not_printed += 1;
2493 padding_not_printed = p->start_position;
2494 if (truncate_lines)
2495 spaces_not_printed = chars_per_column;
2496 else
2497 spaces_not_printed = 0;
2498 align_empty_cols = FALSE;
2501 if (padding_not_printed - col_sep_length > 0)
2503 pad_across_to (padding_not_printed - col_sep_length);
2504 padding_not_printed = ANYWHERE;
2507 if (use_col_separator)
2508 print_sep_string ();
2511 if (p->numbered)
2512 add_line_number (p);
2514 empty_line = FALSE;
2515 if (c == '\n')
2516 return TRUE;
2518 print_clump (p, chars, clump_buff);
2520 for (;;)
2522 c = getc (p->fp);
2524 switch (c)
2526 case '\n':
2527 return TRUE;
2528 case '\f':
2529 if ((c = getc (p->fp)) != '\n')
2530 ungetc (c, p->fp);
2531 if (keep_FF)
2532 print_a_FF = TRUE;
2533 hold_file (p);
2534 return TRUE;
2535 case EOF:
2536 close_file (p);
2537 return TRUE;
2540 last_input_position = input_position;
2541 chars = char_to_clump (c);
2542 if (truncate_lines && input_position > chars_per_column)
2544 input_position = last_input_position;
2545 return FALSE;
2548 print_clump (p, chars, clump_buff);
2552 /* Print a line from buff.
2554 If this function has been called, we know we have "something to
2555 print". But it remains to be seen whether we have a real text page
2556 or an empty page (a single form feed) with/without a header only.
2557 Therefore first we set pad_vertically to TRUE and print a header
2558 if necessary.
2559 If FF_FOUND and we are using -t|-T option we omit any newline by
2560 setting pad_vertically to FALSE (see print_page).
2561 Otherwise we pad across if necessary, print separators if necessary
2562 and text of COLUMN *p.
2564 Return TRUE, meaning there is no need to call read_rest_of_line. */
2566 static int
2567 print_stored (COLUMN *p)
2569 COLUMN *q;
2570 int i;
2572 int line = p->current_line++;
2573 register char *first = &buff[line_vector[line]];
2574 /* FIXME
2575 UMR: Uninitialized memory read:
2576 * This is occurring while in:
2577 print_stored [pr.c:2239]
2578 * Reading 4 bytes from 0x5148c in the heap.
2579 * Address 0x5148c is 4 bytes into a malloc'd block at 0x51488 of 676 bytes
2580 * This block was allocated from:
2581 malloc [rtlib.o]
2582 xmalloc [xmalloc.c:94]
2583 init_store_cols [pr.c:1648]
2585 register char *last = &buff[line_vector[line + 1]];
2587 pad_vertically = TRUE;
2589 if (print_a_header)
2590 print_header ();
2592 if (p->status == FF_FOUND)
2594 for (i = 1, q = column_vector; i <= columns; ++i, ++q)
2595 q->status = ON_HOLD;
2596 if (column_vector->lines_to_print <= 0)
2598 if (!extremities)
2599 pad_vertically = FALSE;
2600 return TRUE; /* print a header only */
2604 if (padding_not_printed - col_sep_length > 0)
2606 pad_across_to (padding_not_printed - col_sep_length);
2607 padding_not_printed = ANYWHERE;
2610 if (use_col_separator)
2611 print_sep_string ();
2613 while (first != last)
2614 print_char (*first++);
2616 if (spaces_not_printed == 0)
2618 output_position = p->start_position + end_vector[line];
2619 if (p->start_position - col_sep_length == chars_per_margin)
2620 output_position -= col_sep_length;
2623 return TRUE;
2626 /* Convert a character to the proper format and return the number of
2627 characters in the resulting clump. Increment input_position by
2628 the width of the clump.
2630 Tabs are converted to clumps of spaces.
2631 Nonprintable characters may be converted to clumps of escape
2632 sequences or control prefixes.
2634 Note: the width of a clump is not necessarily equal to the number of
2635 characters in clump_buff. (e.g, the width of '\b' is -1, while the
2636 number of characters is 1.) */
2638 static int
2639 char_to_clump (int c)
2641 register int *s = clump_buff;
2642 register int i;
2643 char esc_buff[4];
2644 int width;
2645 int chars;
2646 int chars_per_c = 8;
2648 if (c == input_tab_char)
2649 chars_per_c = chars_per_input_tab;
2651 if (c == input_tab_char || c == '\t')
2653 width = TAB_WIDTH (chars_per_c, input_position);
2655 if (untabify_input)
2657 for (i = width; i; --i)
2658 *s++ = ' ';
2659 chars = width;
2661 else
2663 *s = c;
2664 chars = 1;
2668 else if (!ISPRINT (c))
2670 if (use_esc_sequence)
2672 width = 4;
2673 chars = 4;
2674 *s++ = '\\';
2675 sprintf (esc_buff, "%03o", c);
2676 for (i = 0; i <= 2; ++i)
2677 *s++ = (int) esc_buff[i];
2679 else if (use_cntrl_prefix)
2681 if (c < 0200)
2683 width = 2;
2684 chars = 2;
2685 *s++ = '^';
2686 *s++ = c ^ 0100;
2688 else
2690 width = 4;
2691 chars = 4;
2692 *s++ = '\\';
2693 sprintf (esc_buff, "%03o", c);
2694 for (i = 0; i <= 2; ++i)
2695 *s++ = (int) esc_buff[i];
2698 else if (c == '\b')
2700 width = -1;
2701 chars = 1;
2702 *s = c;
2704 else
2706 width = 0;
2707 chars = 1;
2708 *s = c;
2711 else
2713 width = 1;
2714 chars = 1;
2715 *s = c;
2718 input_position += width;
2719 return chars;
2722 /* We've just printed some files and need to clean up things before
2723 looking for more options and printing the next batch of files.
2725 Free everything we've xmalloc'ed, except `header'. */
2727 static void
2728 cleanup (void)
2730 if (number_buff)
2731 free (number_buff);
2732 if (clump_buff)
2733 free (clump_buff);
2734 if (column_vector)
2735 free (column_vector);
2736 if (line_vector)
2737 free (line_vector);
2738 if (end_vector)
2739 free (end_vector);
2740 if (buff)
2741 free (buff);
2744 /* Complain, print a usage message, and die. */
2746 void
2747 usage (int status)
2749 if (status != 0)
2750 fprintf (stderr, _("Try `%s --help' for more information.\n"),
2751 program_name);
2752 else
2754 printf (_("\
2755 Usage: %s [OPTION]... [FILE]...\n\
2757 program_name);
2759 fputs (_("\
2760 Paginate or columnate FILE(s) for printing.\n\
2762 "), stdout);
2763 fputs (_("\
2764 Mandatory arguments to long options are mandatory for short options too.\n\
2765 "), stdout);
2766 fputs (_("\
2767 +FIRST_PAGE[:LAST_PAGE], --pages=FIRST_PAGE[:LAST_PAGE]\n\
2768 begin [stop] printing with page FIRST_[LAST_]PAGE\n\
2769 -COLUMN, --columns=COLUMN\n\
2770 output COLUMN columns and print columns down,\n\
2771 unless -a is used. Balance number of lines in the\n\
2772 columns on each page.\n\
2773 "), stdout);
2774 fputs (_("\
2775 -a, --across print columns across rather than down, used together\n\
2776 with -COLUMN\n\
2777 -c, --show-control-chars\n\
2778 use hat notation (^G) and octal backslash notation\n\
2779 -d, --double-space\n\
2780 double space the output\n\
2781 "), stdout);
2782 fputs (_("\
2783 -D, --date-format=FORMAT\n\
2784 use FORMAT for the header date\n\
2785 -e[CHAR[WIDTH]], --expand-tabs[=CHAR[WIDTH]]\n\
2786 expand input CHARs (TABs) to tab WIDTH (8)\n\
2787 -F, -f, --form-feed\n\
2788 use form feeds instead of newlines to separate pages\n\
2789 (by a 3-line page header with -F or a 5-line header\n\
2790 and trailer without -F)\n\
2791 "), stdout);
2792 fputs (_("\
2793 -h HEADER, --header=HEADER\n\
2794 use a centered HEADER instead of filename in page header,\n\
2795 -h \"\" prints a blank line, don't use -h\"\"\n\
2796 -i[CHAR[WIDTH]], --output-tabs[=CHAR[WIDTH]]\n\
2797 replace spaces with CHARs (TABs) to tab WIDTH (8)\n\
2798 -J, --join-lines merge full lines, turns off -W line truncation, no column\n\
2799 alignment, --sep-string[=STRING] sets separators\n\
2800 "), stdout);
2801 fputs (_("\
2802 -l PAGE_LENGTH, --length=PAGE_LENGTH\n\
2803 set the page length to PAGE_LENGTH (66) lines\n\
2804 (default number of lines of text 56, and with -F 63)\n\
2805 -m, --merge print all files in parallel, one in each column,\n\
2806 truncate lines, but join lines of full length with -J\n\
2807 "), stdout);
2808 fputs (_("\
2809 -n[SEP[DIGITS]], --number-lines[=SEP[DIGITS]]\n\
2810 number lines, use DIGITS (5) digits, then SEP (TAB),\n\
2811 default counting starts with 1st line of input file\n\
2812 -N NUMBER, --first-line-number=NUMBER\n\
2813 start counting with NUMBER at 1st line of first\n\
2814 page printed (see +FIRST_PAGE)\n\
2815 "), stdout);
2816 fputs (_("\
2817 -o MARGIN, --indent=MARGIN\n\
2818 offset each line with MARGIN (zero) spaces, do not\n\
2819 affect -w or -W, MARGIN will be added to PAGE_WIDTH\n\
2820 -r, --no-file-warnings\n\
2821 omit warning when a file cannot be opened\n\
2822 "), stdout);
2823 fputs (_("\
2824 -s[CHAR],--separator[=CHAR]\n\
2825 separate columns by a single character, default for CHAR\n\
2826 is the <TAB> character without -w and \'no char\' with -w\n\
2827 -s[CHAR] turns off line truncation of all 3 column\n\
2828 options (-COLUMN|-a -COLUMN|-m) except -w is set\n\
2829 "), stdout);
2830 fputs (_("\
2831 -SSTRING, --sep-string[=STRING]\n\
2832 "), stdout);
2833 fputs (_("\
2834 separate columns by STRING,\n\
2835 without -S: Default separator <TAB> with -J and <space>\n\
2836 otherwise (same as -S\" \"), no effect on column options\n\
2837 -t, --omit-header omit page headers and trailers\n\
2838 "), stdout);
2839 fputs (_("\
2840 -T, --omit-pagination\n\
2841 omit page headers and trailers, eliminate any pagination\n\
2842 by form feeds set in input files\n\
2843 -v, --show-nonprinting\n\
2844 use octal backslash notation\n\
2845 -w PAGE_WIDTH, --width=PAGE_WIDTH\n\
2846 set page width to PAGE_WIDTH (72) characters for\n\
2847 multiple text-column output only, -s[char] turns off (72)\n\
2848 "), stdout);
2849 fputs (_("\
2850 -W PAGE_WIDTH, --page-width=PAGE_WIDTH\n\
2851 set page width to PAGE_WIDTH (72) characters always,\n\
2852 truncate lines, except -J option is set, no interference\n\
2853 with -S or -s\n\
2854 "), stdout);
2855 fputs (HELP_OPTION_DESCRIPTION, stdout);
2856 fputs (VERSION_OPTION_DESCRIPTION, stdout);
2857 fputs (_("\
2859 -T implied by -l nn when nn <= 10 or <= 3 with -F. With no FILE, or when\n\
2860 FILE is -, read standard input.\n\
2861 "), stdout);
2862 printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
2864 exit (status == 0 ? EXIT_SUCCESS : EXIT_FAILURE);