1 /* nl -- number lines of files
2 Copyright (C) 1989-2016 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 3 of the License, or
7 (at your option) 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, see <http://www.gnu.org/licenses/>. */
17 /* Written by Scott Bartram (nancy!scott@uunet.uu.net)
18 Revised by David MacKenzie (djm@gnu.ai.mit.edu) */
23 #include <sys/types.h>
33 #include "linebuffer.h"
35 #include "xdectoint.h"
37 /* The official name of this program (e.g., no 'g' prefix). */
38 #define PROGRAM_NAME "nl"
41 proper_name ("Scott Bartram"), \
42 proper_name ("David MacKenzie")
44 /* Line-number formats. They are given an int width, an intmax_t
45 value, and a string separator. */
47 /* Right justified, no leading zeroes. */
48 static char const FORMAT_RIGHT_NOLZ
[] = "%*" PRIdMAX
"%s";
50 /* Right justified, leading zeroes. */
51 static char const FORMAT_RIGHT_LZ
[] = "%0*" PRIdMAX
"%s";
53 /* Left justified, no leading zeroes. */
54 static char const FORMAT_LEFT
[] = "%-*" PRIdMAX
"%s";
56 /* Default section delimiter characters. */
57 static char const DEFAULT_SECTION_DELIMITERS
[] = "\\:";
59 /* Types of input lines: either one of the section delimiters,
63 Header
, Body
, Footer
, Text
66 /* Format of body lines (-b). */
67 static char const *body_type
= "t";
69 /* Format of header lines (-h). */
70 static char const *header_type
= "n";
72 /* Format of footer lines (-f). */
73 static char const *footer_type
= "n";
75 /* Format currently being used (body, header, or footer). */
76 static char const *current_type
;
78 /* Regex for body lines to number (-bp). */
79 static struct re_pattern_buffer body_regex
;
81 /* Regex for header lines to number (-hp). */
82 static struct re_pattern_buffer header_regex
;
84 /* Regex for footer lines to number (-fp). */
85 static struct re_pattern_buffer footer_regex
;
87 /* Fastmaps for the above. */
88 static char body_fastmap
[UCHAR_MAX
+ 1];
89 static char header_fastmap
[UCHAR_MAX
+ 1];
90 static char footer_fastmap
[UCHAR_MAX
+ 1];
92 /* Pointer to current regex, if any. */
93 static struct re_pattern_buffer
*current_regex
= NULL
;
95 /* Separator string to print after line number (-s). */
96 static char const *separator_str
= "\t";
98 /* Input section delimiter string (-d). */
99 static char const *section_del
= DEFAULT_SECTION_DELIMITERS
;
101 /* Header delimiter string. */
102 static char *header_del
= NULL
;
104 /* Header section delimiter length. */
105 static size_t header_del_len
;
107 /* Body delimiter string. */
108 static char *body_del
= NULL
;
110 /* Body section delimiter length. */
111 static size_t body_del_len
;
113 /* Footer delimiter string. */
114 static char *footer_del
= NULL
;
116 /* Footer section delimiter length. */
117 static size_t footer_del_len
;
120 static struct linebuffer line_buf
;
122 /* printf format string for unnumbered lines. */
123 static char *print_no_line_fmt
= NULL
;
125 /* Starting line number on each page (-v). */
126 static intmax_t starting_line_number
= 1;
128 /* Line number increment (-i). */
129 static intmax_t page_incr
= 1;
131 /* If true, reset line number at start of each page (-p). */
132 static bool reset_numbers
= true;
134 /* Number of blank lines to consider to be one line for numbering (-l). */
135 static intmax_t blank_join
= 1;
137 /* Width of line numbers (-w). */
138 static int lineno_width
= 6;
140 /* Line number format (-n). */
141 static char const *lineno_format
= FORMAT_RIGHT_NOLZ
;
143 /* Current print line number. */
144 static intmax_t line_no
;
146 /* True if we have ever read standard input. */
147 static bool have_read_stdin
;
149 static struct option
const longopts
[] =
151 {"header-numbering", required_argument
, NULL
, 'h'},
152 {"body-numbering", required_argument
, NULL
, 'b'},
153 {"footer-numbering", required_argument
, NULL
, 'f'},
154 {"starting-line-number", required_argument
, NULL
, 'v'},
155 {"line-increment", required_argument
, NULL
, 'i'},
156 {"no-renumber", no_argument
, NULL
, 'p'},
157 {"join-blank-lines", required_argument
, NULL
, 'l'},
158 {"number-separator", required_argument
, NULL
, 's'},
159 {"number-width", required_argument
, NULL
, 'w'},
160 {"number-format", required_argument
, NULL
, 'n'},
161 {"section-delimiter", required_argument
, NULL
, 'd'},
162 {GETOPT_HELP_OPTION_DECL
},
163 {GETOPT_VERSION_OPTION_DECL
},
167 /* Print a usage message and quit. */
172 if (status
!= EXIT_SUCCESS
)
177 Usage: %s [OPTION]... [FILE]...\n\
181 Write each FILE to standard output, with line numbers added.\n\
185 emit_mandatory_arg_note ();
188 -b, --body-numbering=STYLE use STYLE for numbering body lines\n\
189 -d, --section-delimiter=CC use CC for logical page delimiters\n\
190 -f, --footer-numbering=STYLE use STYLE for numbering footer lines\n\
193 -h, --header-numbering=STYLE use STYLE for numbering header lines\n\
194 -i, --line-increment=NUMBER line number increment at each line\n\
195 -l, --join-blank-lines=NUMBER group of NUMBER empty lines counted as one\n\
196 -n, --number-format=FORMAT insert line numbers according to FORMAT\n\
197 -p, --no-renumber do not reset line numbers for each section\n\
198 -s, --number-separator=STRING add STRING after (possible) line number\n\
201 -v, --starting-line-number=NUMBER first line number for each section\n\
202 -w, --number-width=NUMBER use NUMBER columns for line numbers\n\
204 fputs (HELP_OPTION_DESCRIPTION
, stdout
);
205 fputs (VERSION_OPTION_DESCRIPTION
, stdout
);
208 By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn.\n\
209 CC are two delimiter characters used to construct logical page delimiters,\n\
210 a missing second character implies :. Type \\\\ for \\. STYLE is one of:\n\
214 a number all lines\n\
215 t number only nonempty lines\n\
217 pBRE number only lines that contain a match for the basic regular\n\
222 ln left justified, no leading zeros\n\
223 rn right justified, no leading zeros\n\
224 rz right justified, leading zeros\n\
227 emit_ancillary_info (PROGRAM_NAME
);
232 /* Set the command line flag TYPEP and possibly the regex pointer REGEXP,
233 according to 'optarg'. */
236 build_type_arg (char const **typep
,
237 struct re_pattern_buffer
*regexp
, char *fastmap
)
251 regexp
->buffer
= NULL
;
252 regexp
->allocated
= 0;
253 regexp
->fastmap
= fastmap
;
254 regexp
->translate
= NULL
;
256 RE_SYNTAX_POSIX_BASIC
& ~RE_CONTEXT_INVALID_DUP
& ~RE_NO_EMPTY_RANGES
;
257 errmsg
= re_compile_pattern (optarg
, strlen (optarg
), regexp
);
259 die (EXIT_FAILURE
, 0, "%s", (errmsg
));
268 /* Print the line number and separator; increment the line number. */
273 intmax_t next_line_no
;
275 printf (lineno_format
, lineno_width
, line_no
, separator_str
);
277 next_line_no
= line_no
+ page_incr
;
278 if (next_line_no
< line_no
)
279 die (EXIT_FAILURE
, 0, _("line number overflow"));
280 line_no
= next_line_no
;
283 /* Switch to a header section. */
288 current_type
= header_type
;
289 current_regex
= &header_regex
;
291 line_no
= starting_line_number
;
295 /* Switch to a body section. */
300 current_type
= body_type
;
301 current_regex
= &body_regex
;
303 line_no
= starting_line_number
;
307 /* Switch to a footer section. */
312 current_type
= footer_type
;
313 current_regex
= &footer_regex
;
315 line_no
= starting_line_number
;
319 /* Process a regular text line in 'line_buf'. */
324 static intmax_t blank_lines
= 0; /* Consecutive blank lines so far. */
326 switch (*current_type
)
331 if (1 < line_buf
.length
|| ++blank_lines
== blank_join
)
337 fputs (print_no_line_fmt
, stdout
);
343 if (1 < line_buf
.length
)
346 fputs (print_no_line_fmt
, stdout
);
349 fputs (print_no_line_fmt
, stdout
);
352 switch (re_search (current_regex
, line_buf
.buffer
, line_buf
.length
- 1,
353 0, line_buf
.length
- 1, NULL
))
356 die (EXIT_FAILURE
, errno
, _("error in regular expression search"));
359 fputs (print_no_line_fmt
, stdout
);
367 fwrite (line_buf
.buffer
, sizeof (char), line_buf
.length
, stdout
);
370 /* Return the type of line in 'line_buf'. */
375 size_t len
= line_buf
.length
- 1;
377 if (len
< 2 || memcmp (line_buf
.buffer
, section_del
, 2))
379 if (len
== header_del_len
380 && !memcmp (line_buf
.buffer
, header_del
, header_del_len
))
382 if (len
== body_del_len
383 && !memcmp (line_buf
.buffer
, body_del
, body_del_len
))
385 if (len
== footer_del_len
386 && !memcmp (line_buf
.buffer
, footer_del
, footer_del_len
))
391 /* Read and process the file pointed to by FP. */
394 process_file (FILE *fp
)
396 while (readlinebuffer (&line_buf
, fp
))
398 switch (check_section ())
416 /* Process file FILE to standard output.
417 Return true if successful. */
420 nl_file (char const *file
)
424 if (STREQ (file
, "-"))
426 have_read_stdin
= true;
431 stream
= fopen (file
, "r");
434 error (0, errno
, "%s", quotef (file
));
439 fadvise (stream
, FADVISE_SEQUENTIAL
);
441 process_file (stream
);
445 error (0, errno
, "%s", quotef (file
));
448 if (STREQ (file
, "-"))
449 clearerr (stream
); /* Also clear EOF. */
450 else if (fclose (stream
) == EOF
)
452 error (0, errno
, "%s", quotef (file
));
459 main (int argc
, char **argv
)
465 initialize_main (&argc
, &argv
);
466 set_program_name (argv
[0]);
467 setlocale (LC_ALL
, "");
468 bindtextdomain (PACKAGE
, LOCALEDIR
);
469 textdomain (PACKAGE
);
471 atexit (close_stdout
);
473 have_read_stdin
= false;
475 while ((c
= getopt_long (argc
, argv
, "h:b:f:v:i:pl:s:w:n:d:", longopts
,
481 if (! build_type_arg (&header_type
, &header_regex
, header_fastmap
))
483 error (0, 0, _("invalid header numbering style: %s"),
489 if (! build_type_arg (&body_type
, &body_regex
, body_fastmap
))
491 error (0, 0, _("invalid body numbering style: %s"),
497 if (! build_type_arg (&footer_type
, &footer_regex
, footer_fastmap
))
499 error (0, 0, _("invalid footer numbering style: %s"),
505 starting_line_number
= xdectoimax (optarg
, INTMAX_MIN
, INTMAX_MAX
, "",
506 _("invalid starting line number"),
510 page_incr
= xdectoimax (optarg
, 1, INTMAX_MAX
, "",
511 _("invalid line number increment"), 0);
514 reset_numbers
= false;
517 blank_join
= xdectoimax (optarg
, 1, INTMAX_MAX
, "",
518 _("invalid line number of blank lines"), 0);
521 separator_str
= optarg
;
524 lineno_width
= xdectoimax (optarg
, 1, INT_MAX
, "",
525 _("invalid line number field width"), 0);
528 if (STREQ (optarg
, "ln"))
529 lineno_format
= FORMAT_LEFT
;
530 else if (STREQ (optarg
, "rn"))
531 lineno_format
= FORMAT_RIGHT_NOLZ
;
532 else if (STREQ (optarg
, "rz"))
533 lineno_format
= FORMAT_RIGHT_LZ
;
536 error (0, 0, _("invalid line numbering format: %s"),
542 section_del
= optarg
;
544 case_GETOPT_HELP_CHAR
;
545 case_GETOPT_VERSION_CHAR (PROGRAM_NAME
, AUTHORS
);
553 usage (EXIT_FAILURE
);
555 /* Initialize the section delimiters. */
556 len
= strlen (section_del
);
558 header_del_len
= len
* 3;
559 header_del
= xmalloc (header_del_len
+ 1);
560 stpcpy (stpcpy (stpcpy (header_del
, section_del
), section_del
), section_del
);
562 body_del_len
= len
* 2;
563 body_del
= xmalloc (body_del_len
+ 1);
564 stpcpy (stpcpy (body_del
, section_del
), section_del
);
566 footer_del_len
= len
;
567 footer_del
= xmalloc (footer_del_len
+ 1);
568 stpcpy (footer_del
, section_del
);
570 /* Initialize the input buffer. */
571 initbuffer (&line_buf
);
573 /* Initialize the printf format for unnumbered lines. */
574 len
= strlen (separator_str
);
575 print_no_line_fmt
= xmalloc (lineno_width
+ len
+ 1);
576 memset (print_no_line_fmt
, ' ', lineno_width
+ len
);
577 print_no_line_fmt
[lineno_width
+ len
] = '\0';
579 line_no
= starting_line_number
;
580 current_type
= body_type
;
581 current_regex
= &body_regex
;
583 /* Main processing. */
588 for (; optind
< argc
; optind
++)
589 ok
&= nl_file (argv
[optind
]);
591 if (have_read_stdin
&& fclose (stdin
) == EOF
)
592 die (EXIT_FAILURE
, errno
, "-");
594 return ok
? EXIT_SUCCESS
: EXIT_FAILURE
;