1 /* nl -- number lines of files
2 Copyright (C) 1989, 1992, 1995 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)
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
16 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18 /* Written by Scott Bartram (nancy!scott@uunet.uu.net)
19 Revised by David MacKenzie (djm@gnu.ai.mit.edu) */
24 #include <sys/types.h>
27 #include "linebuffer.h"
37 /* Line-number formats. */
40 FORMAT_RIGHT_NOLZ
, /* Right justified, no leading zeroes. */
41 FORMAT_RIGHT_LZ
, /* Right justified, leading zeroes. */
42 FORMAT_LEFT
/* Left justified, no leading zeroes. */
45 /* Default section delimiter characters. */
46 #define DEFAULT_SECTION_DELIMITERS "\\:"
48 /* Types of input lines: either one of the section delimiters,
52 Header
, Body
, Footer
, Text
58 /* The name this program was run with. */
61 /* Format of body lines (-b). */
62 static char *body_type
= "t";
64 /* Format of header lines (-h). */
65 static char *header_type
= "n";
67 /* Format of footer lines (-f). */
68 static char *footer_type
= "n";
70 /* Format currently being used (body, header, or footer). */
71 static char *current_type
;
73 /* Regex for body lines to number (-bp). */
74 static struct re_pattern_buffer body_regex
;
76 /* Regex for header lines to number (-hp). */
77 static struct re_pattern_buffer header_regex
;
79 /* Regex for footer lines to number (-fp). */
80 static struct re_pattern_buffer footer_regex
;
82 /* Pointer to current regex, if any. */
83 static struct re_pattern_buffer
*current_regex
= NULL
;
85 /* Separator string to print after line number (-s). */
86 static char *separator_str
= "\t";
88 /* Input section delimiter string (-d). */
89 static char *section_del
= DEFAULT_SECTION_DELIMITERS
;
91 /* Header delimiter string. */
92 static char *header_del
= NULL
;
94 /* Header section delimiter length. */
95 static int header_del_len
;
97 /* Body delimiter string. */
98 static char *body_del
= NULL
;
100 /* Body section delimiter length. */
101 static int body_del_len
;
103 /* Footer delimiter string. */
104 static char *footer_del
= NULL
;
106 /* Footer section delimiter length. */
107 static int footer_del_len
;
110 static struct linebuffer line_buf
;
112 /* printf format string for line number. */
113 static char *print_fmt
;
115 /* printf format string for unnumbered lines. */
116 static char *print_no_line_fmt
= NULL
;
118 /* Starting line number on each page (-v). */
119 static int page_start
= 1;
121 /* Line number increment (-i). */
122 static int page_incr
= 1;
124 /* If TRUE, reset line number at start of each page (-p). */
125 static int reset_numbers
= TRUE
;
127 /* Number of blank lines to consider to be one line for numbering (-l). */
128 static int blank_join
= 1;
130 /* Width of line numbers (-w). */
131 static int lineno_width
= 6;
133 /* Line number format (-n). */
134 static enum number_format lineno_format
= FORMAT_RIGHT_NOLZ
;
136 /* Current print line number. */
139 /* Nonzero if we have ever read standard input. */
140 static int have_read_stdin
;
142 /* If nonzero, display usage information and exit. */
143 static int show_help
;
145 /* If nonzero, print the version on standard output then exit. */
146 static int show_version
;
148 static struct option
const longopts
[] =
150 {"header-numbering", required_argument
, NULL
, 'h'},
151 {"body-numbering", required_argument
, NULL
, 'b'},
152 {"footer-numbering", required_argument
, NULL
, 'f'},
153 {"first-page", required_argument
, NULL
, 'v'},
154 {"page-increment", required_argument
, NULL
, 'i'},
155 {"no-renumber", no_argument
, NULL
, 'p'},
156 {"join-blank-lines", required_argument
, NULL
, 'l'},
157 {"number-separator", required_argument
, NULL
, 's'},
158 {"number-width", required_argument
, NULL
, 'w'},
159 {"number-format", required_argument
, NULL
, 'n'},
160 {"section-delimiter", required_argument
, NULL
, 'd'},
161 {"help", no_argument
, &show_help
, 1},
162 {"version", no_argument
, &show_version
, 1},
166 /* Print a usage message and quit. */
172 fprintf (stderr
, _("Try `%s --help' for more information.\n"),
177 Usage: %s [OPTION]... [FILE]...\n\
181 Write each FILE to standard output, with line numbers added.\n\
182 With no FILE, or when FILE is -, read standard input.\n\
184 -b, --body-numbering=STYLE use STYLE for numbering body lines\n\
185 -d, --section-delimiter=CC use CC for separating logical pages\n\
186 -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n\
187 -h, --header-numbering=STYLE use STYLE for numbering header lines\n\
188 -i, --page-increment=NUMBER line number increment at each line\n\
189 -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as one\n\
190 -n, --number-format=FORMAT insert line numbers according to FORMAT\n\
191 -p, --no-renumber do not reset line numbers at logical pages\n\
192 -s, --number-separator=STRING add STRING after (possible) line number\n\
193 -v, --first-page=NUMBER first line number on each logical page\n\
194 -w, --number-width=NUMBER use NUMBER columns for line numbers\n\
195 --help display this help and exit\n\
196 --version output version information and exit\n\
198 By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are\n\
199 two delimiter characters for separating logical pages, a missing\n\
200 second character implies :. Type \\\\ for \\. STYLE is one of:\n\
202 a number all lines\n\
203 t number only nonempty lines\n\
205 pREGEXP number only lines that contain a match for REGEXP\n\
209 ln left justified, no leading zeros\n\
210 rn right justified, no leading zeros\n\
211 rz right justified, leading zeros\n\
218 /* Build the printf format string, based on `lineno_format'. */
221 build_print_fmt (void)
223 /* 12 = 10 chars for lineno_width, 1 for %, 1 for \0. */
224 print_fmt
= xmalloc (strlen (separator_str
) + 12);
225 switch (lineno_format
)
227 case FORMAT_RIGHT_NOLZ
:
228 sprintf (print_fmt
, "%%%dd%s", lineno_width
, separator_str
);
230 case FORMAT_RIGHT_LZ
:
231 sprintf (print_fmt
, "%%0%dd%s", lineno_width
, separator_str
);
234 sprintf (print_fmt
, "%%-%dd%s", lineno_width
, separator_str
);
239 /* Set the command line flag TYPEP and possibly the regex pointer REGEXP,
240 according to `optarg'. */
243 build_type_arg (char **typep
, struct re_pattern_buffer
*regexp
)
258 optlen
= strlen (optarg
);
259 regexp
->allocated
= optlen
* 2;
260 regexp
->buffer
= (unsigned char *) xmalloc (regexp
->allocated
);
261 regexp
->translate
= NULL
;
262 regexp
->fastmap
= xmalloc (256);
263 regexp
->fastmap_accurate
= 0;
264 errmsg
= re_compile_pattern (optarg
, optlen
, regexp
);
266 error (1, 0, "%s", errmsg
);
275 /* Print and increment the line number. */
280 printf (print_fmt
, line_no
);
281 line_no
+= page_incr
;
284 /* Switch to a header section. */
289 current_type
= header_type
;
290 current_regex
= &header_regex
;
292 line_no
= page_start
;
296 /* Switch to a body section. */
301 current_type
= body_type
;
302 current_regex
= &body_regex
;
306 /* Switch to a footer section. */
311 current_type
= footer_type
;
312 current_regex
= &footer_regex
;
316 /* Process a regular text line in `line_buf'. */
321 static int blank_lines
= 0; /* Consecutive blank lines so far. */
323 switch (*current_type
)
328 if (line_buf
.length
|| ++blank_lines
== blank_join
)
334 printf (print_no_line_fmt
);
343 printf (print_no_line_fmt
);
346 printf (print_no_line_fmt
);
349 if (re_search (current_regex
, line_buf
.buffer
, line_buf
.length
,
350 0, line_buf
.length
, (struct re_registers
*) 0) < 0)
351 printf (print_no_line_fmt
);
356 fwrite (line_buf
.buffer
, sizeof (char), line_buf
.length
, stdout
);
360 /* Return the type of line in `line_buf'. */
365 if (line_buf
.length
< 2 || memcmp (line_buf
.buffer
, section_del
, 2))
367 if (line_buf
.length
== header_del_len
368 && !memcmp (line_buf
.buffer
, header_del
, header_del_len
))
370 if (line_buf
.length
== body_del_len
371 && !memcmp (line_buf
.buffer
, body_del
, body_del_len
))
373 if (line_buf
.length
== footer_del_len
374 && !memcmp (line_buf
.buffer
, footer_del
, footer_del_len
))
379 /* Read and process the file pointed to by FP. */
382 process_file (FILE *fp
)
384 while (readline (&line_buf
, fp
))
386 switch ((int) check_section ())
404 /* Process file FILE to standard output.
405 Return 0 if successful, 1 if not. */
408 nl_file (const char *file
)
412 if (!strcmp (file
, "-"))
419 stream
= fopen (file
, "r");
422 error (0, errno
, "%s", file
);
427 process_file (stream
);
431 error (0, errno
, "%s", file
);
434 if (!strcmp (file
, "-"))
435 clearerr (stream
); /* Also clear EOF. */
436 else if (fclose (stream
) == EOF
)
438 error (0, errno
, "%s", file
);
445 main (int argc
, char **argv
)
447 int c
, exit_status
= 0;
449 program_name
= argv
[0];
452 while ((c
= getopt_long (argc
, argv
, "h:b:f:v:i:pl:s:w:n:d:", longopts
,
461 if (build_type_arg (&header_type
, &header_regex
) != TRUE
)
465 if (build_type_arg (&body_type
, &body_regex
) != TRUE
)
469 if (build_type_arg (&footer_type
, &footer_regex
) != TRUE
)
473 page_start
= atoi (optarg
);
476 page_incr
= atoi (optarg
);
481 reset_numbers
= FALSE
;
484 blank_join
= atoi (optarg
);
487 separator_str
= optarg
;
490 lineno_width
= atoi (optarg
);
491 if (lineno_width
< 1)
498 if (optarg
[1] == 'n')
499 lineno_format
= FORMAT_LEFT
;
507 lineno_format
= FORMAT_RIGHT_NOLZ
;
510 lineno_format
= FORMAT_RIGHT_LZ
;
523 section_del
= optarg
;
533 printf ("nl - %s\n", version_string
);
540 /* Initialize the section delimiters. */
541 c
= strlen (section_del
);
543 header_del_len
= c
* 3;
544 header_del
= xmalloc (header_del_len
+ 1);
545 strcat (strcat (strcpy (header_del
, section_del
), section_del
), section_del
);
547 body_del_len
= c
* 2;
548 body_del
= xmalloc (body_del_len
+ 1);
549 strcat (strcpy (body_del
, section_del
), section_del
);
552 footer_del
= xmalloc (footer_del_len
+ 1);
553 strcpy (footer_del
, section_del
);
555 /* Initialize the input buffer. */
556 initbuffer (&line_buf
);
558 /* Initialize the printf format for unnumbered lines. */
559 c
= strlen (separator_str
);
560 print_no_line_fmt
= xmalloc (lineno_width
+ c
+ 1);
561 memset (print_no_line_fmt
, ' ', lineno_width
+ c
);
562 print_no_line_fmt
[lineno_width
+ c
] = '\0';
564 line_no
= page_start
;
565 current_type
= body_type
;
566 current_regex
= &body_regex
;
569 /* Main processing. */
572 exit_status
|= nl_file ("-");
574 for (; optind
< argc
; optind
++)
575 exit_status
|= nl_file (argv
[optind
]);
577 if (have_read_stdin
&& fclose (stdin
) == EOF
)
579 error (0, errno
, "-");
582 if (ferror (stdout
) || fclose (stdout
) == EOF
)
583 error (1, errno
, _("write error"));