* src/dircolors.hin: Add .flv. Move .svgz to "image formats".
[coreutils.git] / src / seq.c
blob7fc89ad5d6baabe1842e82b1af5ea81c9311c219
1 /* seq - print sequence of numbers to standard output.
2 Copyright (C) 1994-2008 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 Ulrich Drepper. */
19 #include <config.h>
20 #include <getopt.h>
21 #include <stdio.h>
22 #include <sys/types.h>
23 #include <math.h>
24 #include <float.h>
26 #include "system.h"
27 #include "c-strtod.h"
28 #include "error.h"
29 #include "quote.h"
30 #include "xstrtod.h"
32 /* Roll our own isfinite rather than using <math.h>, so that we don't
33 have to worry about linking -lm just for isfinite. */
34 #ifndef isfinite
35 # define isfinite(x) ((x) * 0 == 0)
36 #endif
38 /* The official name of this program (e.g., no `g' prefix). */
39 #define PROGRAM_NAME "seq"
41 #define AUTHORS "Ulrich Drepper"
43 /* If true print all number with equal width. */
44 static bool equal_width;
46 /* The name that this program was run with. */
47 char *program_name;
49 /* The string used to separate two numbers. */
50 static char const *separator;
52 /* The string output after all numbers have been output.
53 Usually "\n" or "\0". */
54 /* FIXME: make this an option. */
55 static char const terminator[] = "\n";
57 static struct option const long_options[] =
59 { "equal-width", no_argument, NULL, 'w'},
60 { "format", required_argument, NULL, 'f'},
61 { "separator", required_argument, NULL, 's'},
62 {GETOPT_HELP_OPTION_DECL},
63 {GETOPT_VERSION_OPTION_DECL},
64 { NULL, 0, NULL, 0}
67 void
68 usage (int status)
70 if (status != EXIT_SUCCESS)
71 fprintf (stderr, _("Try `%s --help' for more information.\n"),
72 program_name);
73 else
75 printf (_("\
76 Usage: %s [OPTION]... LAST\n\
77 or: %s [OPTION]... FIRST LAST\n\
78 or: %s [OPTION]... FIRST INCREMENT LAST\n\
79 "), program_name, program_name, program_name);
80 fputs (_("\
81 Print numbers from FIRST to LAST, in steps of INCREMENT.\n\
82 \n\
83 -f, --format=FORMAT use printf style floating-point FORMAT\n\
84 -s, --separator=STRING use STRING to separate numbers (default: \\n)\n\
85 -w, --equal-width equalize width by padding with leading zeroes\n\
86 "), stdout);
87 fputs (HELP_OPTION_DESCRIPTION, stdout);
88 fputs (VERSION_OPTION_DESCRIPTION, stdout);
89 fputs (_("\
90 \n\
91 If FIRST or INCREMENT is omitted, it defaults to 1. That is, an\n\
92 omitted INCREMENT defaults to 1 even when LAST is smaller than FIRST.\n\
93 FIRST, INCREMENT, and LAST are interpreted as floating point values.\n\
94 INCREMENT is usually positive if FIRST is smaller than LAST, and\n\
95 INCREMENT is usually negative if FIRST is greater than LAST.\n\
96 "), stdout);
97 fputs (_("\
98 FORMAT must be suitable for printing one argument of type `double';\n\
99 it defaults to %.PRECf if FIRST, INCREMENT, and LAST are all fixed point\n\
100 decimal numbers with maximum precision PREC, and to %g otherwise.\n\
101 "), stdout);
102 emit_bug_reporting_address ();
104 exit (status);
107 /* A command-line operand. */
108 struct operand
110 /* Its value, converted to 'long double'. */
111 long double value;
113 /* Its print width, if it were printed out in a form similar to its
114 input form. An input like "-.1" is treated like "-0.1", and an
115 input like "1." is treated like "1", but otherwise widths are
116 left alone. */
117 size_t width;
119 /* Number of digits after the decimal point, or INT_MAX if the
120 number can't easily be expressed as a fixed-point number. */
121 int precision;
123 typedef struct operand operand;
125 /* Description of what a number-generating format will generate. */
126 struct layout
128 /* Number of bytes before and after the number. */
129 size_t prefix_len;
130 size_t suffix_len;
133 /* Read a long double value from the command line.
134 Return if the string is correct else signal error. */
136 static operand
137 scan_arg (const char *arg)
139 operand ret;
141 if (! xstrtold (arg, NULL, &ret.value, c_strtold))
143 error (0, 0, _("invalid floating point argument: %s"), arg);
144 usage (EXIT_FAILURE);
147 /* We don't output spaces or '+' so don't include in width */
148 while (isspace (*arg) || *arg == '+')
149 arg++;
151 ret.width = strlen (arg);
152 ret.precision = INT_MAX;
154 if (! arg[strcspn (arg, "xX")] && isfinite (ret.value))
156 char const *decimal_point = strchr (arg, '.');
157 if (! decimal_point)
158 ret.precision = 0;
159 else
161 size_t fraction_len = strcspn (decimal_point + 1, "eE");
162 if (fraction_len <= INT_MAX)
163 ret.precision = fraction_len;
164 ret.width += (fraction_len == 0 /* #. -> # */
165 ? -1
166 : (decimal_point == arg /* .# -> 0.# */
167 || ! ISDIGIT (decimal_point[-1]))); /* -.# -> 0.# */
169 char const *e = strchr (arg, 'e');
170 if (! e)
171 e = strchr (arg, 'E');
172 if (e)
174 long exponent = strtol (e + 1, NULL, 10);
175 ret.precision += exponent < 0 ? -exponent : 0;
179 return ret;
182 /* Validate the format, FMT. Print a diagnostic and exit
183 if there is not exactly one %-directive. */
185 static void
186 validate_format (char const *fmt)
188 unsigned int n_directives = 0;
189 char const *p;
191 for (p = fmt; *p; p++)
193 if (p[0] == '%' && p[1] != '%' && p[1] != '\0')
195 ++n_directives;
196 ++p;
199 if (n_directives == 0)
201 error (0, 0, _("no %% directive in format string %s"), quote (fmt));
202 usage (EXIT_FAILURE);
204 else if (1 < n_directives)
205 error (EXIT_FAILURE, 0, _("too many %% directives in format string %s"),
206 quote (fmt));
209 /* If FORMAT is a valid printf format for a double argument, return
210 its long double equivalent, possibly allocated from dynamic
211 storage, and store into *LAYOUT a description of the output layout;
212 otherwise, return NULL. */
214 static char const *
215 long_double_format (char const *fmt, struct layout *layout)
217 size_t i;
218 size_t prefix_len = 0;
219 size_t suffix_len = 0;
220 size_t length_modifier_offset;
221 bool has_L;
223 for (i = 0; ! (fmt[i] == '%' && fmt[i + 1] != '%'); i += (fmt[i] == '%') + 1)
224 if (fmt[i])
225 prefix_len++;
226 else
227 return NULL;
229 i++;
230 i += strspn (fmt + i, "-+#0 '");
231 i += strspn (fmt + i, "0123456789");
232 if (fmt[i] == '.')
234 i++;
235 i += strspn (fmt + i, "0123456789");
238 length_modifier_offset = i;
239 has_L = (fmt[i] == 'L');
240 i += has_L;
241 /* In a valid format string, fmt[i] must be one of these specifiers. */
242 if (fmt[i] == '\0' || ! strchr ("efgaEFGA", fmt[i]))
243 return NULL;
245 for (i++; ! (fmt[i] == '%' && fmt[i + 1] != '%'); i += (fmt[i] == '%') + 1)
246 if (fmt[i])
247 suffix_len++;
248 else
250 size_t format_size = i + 1;
251 char *ldfmt = xmalloc (format_size + 1);
252 memcpy (ldfmt, fmt, length_modifier_offset);
253 ldfmt[length_modifier_offset] = 'L';
254 strcpy (ldfmt + length_modifier_offset + 1,
255 fmt + length_modifier_offset + has_L);
256 layout->prefix_len = prefix_len;
257 layout->suffix_len = suffix_len;
258 return ldfmt;
261 return NULL;
264 /* Return the absolute relative difference from x to y. */
265 static double
266 abs_rel_diff (double x, double y)
268 double s = (y == 0.0 ? 1 : y);
269 return fabs ((y - x) / s);
272 /* Actually print the sequence of numbers in the specified range, with the
273 given or default stepping and format. */
275 static void
276 print_numbers (char const *fmt, struct layout layout,
277 long double first, long double step, long double last)
279 bool out_of_range = (step < 0 ? first < last : last < first);
281 if (! out_of_range)
283 long double x = first;
284 long double i;
286 for (i = 1; ; i++)
288 long double x0 = x;
289 printf (fmt, x);
290 if (out_of_range)
291 break;
292 x = first + i * step;
293 out_of_range = (step < 0 ? x < last : last < x);
295 if (out_of_range)
297 /* If the number just past LAST prints as a value equal
298 to LAST, and prints differently from the previous
299 number, then print the number. This avoids problems
300 with rounding. For example, with the x86 it causes
301 "seq 0 0.000001 0.000003" to print 0.000003 instead
302 of stopping at 0.000002. */
304 bool print_extra_number = false;
305 long double x_val;
306 char *x_str;
307 int x_strlen = asprintf (&x_str, fmt, x);
308 if (x_strlen < 0)
309 xalloc_die ();
310 x_str[x_strlen - layout.suffix_len] = '\0';
312 if (xstrtold (x_str + layout.prefix_len, NULL, &x_val, c_strtold)
313 && abs_rel_diff (x_val, last) < DBL_EPSILON)
315 char *x0_str = NULL;
316 if (asprintf (&x0_str, fmt, x0) < 0)
317 xalloc_die ();
318 print_extra_number = !STREQ (x0_str, x_str);
319 free (x0_str);
322 free (x_str);
323 if (! print_extra_number)
324 break;
327 fputs (separator, stdout);
330 fputs (terminator, stdout);
334 /* Return the default format given FIRST, STEP, and LAST. */
335 static char const *
336 get_default_format (operand first, operand step, operand last)
338 static char format_buf[sizeof "%0.Lf" + 2 * INT_STRLEN_BOUND (int)];
340 int prec = MAX (first.precision, step.precision);
342 if (prec != INT_MAX && last.precision != INT_MAX)
344 if (equal_width)
346 /* increase first_width by any increased precision in step */
347 size_t first_width = first.width + (prec - first.precision);
348 /* adjust last_width to use precision from first/step */
349 size_t last_width = last.width + (prec - last.precision);
350 if (last.precision && prec == 0)
351 last_width--; /* don't include space for '.' */
352 size_t width = MAX (first_width, last_width);
353 if (width <= INT_MAX)
355 int w = width;
356 sprintf (format_buf, "%%0%d.%dLf", w, prec);
357 return format_buf;
360 else
362 sprintf (format_buf, "%%.%dLf", prec);
363 return format_buf;
367 return "%Lg";
371 main (int argc, char **argv)
373 int optc;
374 operand first = { 1, 1, 0 };
375 operand step = { 1, 1, 0 };
376 operand last;
377 struct layout layout = { 0, 0 };
379 /* The printf(3) format used for output. */
380 char const *format_str = NULL;
382 initialize_main (&argc, &argv);
383 program_name = argv[0];
384 setlocale (LC_ALL, "");
385 bindtextdomain (PACKAGE, LOCALEDIR);
386 textdomain (PACKAGE);
388 atexit (close_stdout);
390 equal_width = false;
391 separator = "\n";
393 /* We have to handle negative numbers in the command line but this
394 conflicts with the command line arguments. So explicitly check first
395 whether the next argument looks like a negative number. */
396 while (optind < argc)
398 if (argv[optind][0] == '-'
399 && ((optc = argv[optind][1]) == '.' || ISDIGIT (optc)))
401 /* means negative number */
402 break;
405 optc = getopt_long (argc, argv, "+f:s:w", long_options, NULL);
406 if (optc == -1)
407 break;
409 switch (optc)
411 case 'f':
412 format_str = optarg;
413 break;
415 case 's':
416 separator = optarg;
417 break;
419 case 'w':
420 equal_width = true;
421 break;
423 case_GETOPT_HELP_CHAR;
425 case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
427 default:
428 usage (EXIT_FAILURE);
432 if (argc - optind < 1)
434 error (0, 0, _("missing operand"));
435 usage (EXIT_FAILURE);
438 if (3 < argc - optind)
440 error (0, 0, _("extra operand %s"), quote (argv[optind + 3]));
441 usage (EXIT_FAILURE);
444 if (format_str)
446 validate_format (format_str);
447 char const *f = long_double_format (format_str, &layout);
448 if (! f)
450 error (0, 0, _("invalid format string: %s"), quote (format_str));
451 usage (EXIT_FAILURE);
453 format_str = f;
456 last = scan_arg (argv[optind++]);
458 if (optind < argc)
460 first = last;
461 last = scan_arg (argv[optind++]);
463 if (optind < argc)
465 step = last;
466 last = scan_arg (argv[optind++]);
470 if (format_str != NULL && equal_width)
472 error (0, 0, _("\
473 format string may not be specified when printing equal width strings"));
474 usage (EXIT_FAILURE);
477 if (format_str == NULL)
478 format_str = get_default_format (first, step, last);
480 print_numbers (format_str, layout, first.value, step.value, last.value);
482 exit (EXIT_SUCCESS);