1 /* seq - print sequence of numbers to standard output.
2 Copyright (C) 1994-2010 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. */
22 #include <sys/types.h>
30 /* Roll our own isfinite rather than using <math.h>, so that we don't
31 have to worry about linking -lm just for isfinite. */
33 # define isfinite(x) ((x) * 0 == 0)
36 /* The official name of this program (e.g., no `g' prefix). */
37 #define PROGRAM_NAME "seq"
39 #define AUTHORS proper_name ("Ulrich Drepper")
41 /* If true print all number with equal width. */
42 static bool equal_width
;
44 /* The string used to separate two numbers. */
45 static char const *separator
;
47 /* The string output after all numbers have been output.
48 Usually "\n" or "\0". */
49 static char const terminator
[] = "\n";
51 static struct option
const long_options
[] =
53 { "equal-width", no_argument
, NULL
, 'w'},
54 { "format", required_argument
, NULL
, 'f'},
55 { "separator", required_argument
, NULL
, 's'},
56 {GETOPT_HELP_OPTION_DECL
},
57 {GETOPT_VERSION_OPTION_DECL
},
64 if (status
!= EXIT_SUCCESS
)
65 fprintf (stderr
, _("Try `%s --help' for more information.\n"),
70 Usage: %s [OPTION]... LAST\n\
71 or: %s [OPTION]... FIRST LAST\n\
72 or: %s [OPTION]... FIRST INCREMENT LAST\n\
73 "), program_name
, program_name
, program_name
);
75 Print numbers from FIRST to LAST, in steps of INCREMENT.\n\
77 -f, --format=FORMAT use printf style floating-point FORMAT\n\
78 -s, --separator=STRING use STRING to separate numbers (default: \\n)\n\
79 -w, --equal-width equalize width by padding with leading zeroes\n\
81 fputs (HELP_OPTION_DESCRIPTION
, stdout
);
82 fputs (VERSION_OPTION_DESCRIPTION
, stdout
);
85 If FIRST or INCREMENT is omitted, it defaults to 1. That is, an\n\
86 omitted INCREMENT defaults to 1 even when LAST is smaller than FIRST.\n\
87 FIRST, INCREMENT, and LAST are interpreted as floating point values.\n\
88 INCREMENT is usually positive if FIRST is smaller than LAST, and\n\
89 INCREMENT is usually negative if FIRST is greater than LAST.\n\
92 FORMAT must be suitable for printing one argument of type `double';\n\
93 it defaults to %.PRECf if FIRST, INCREMENT, and LAST are all fixed point\n\
94 decimal numbers with maximum precision PREC, and to %g otherwise.\n\
96 emit_ancillary_info ();
101 /* A command-line operand. */
104 /* Its value, converted to 'long double'. */
107 /* Its print width, if it were printed out in a form similar to its
108 input form. An input like "-.1" is treated like "-0.1", and an
109 input like "1." is treated like "1", but otherwise widths are
113 /* Number of digits after the decimal point, or INT_MAX if the
114 number can't easily be expressed as a fixed-point number. */
117 typedef struct operand operand
;
119 /* Description of what a number-generating format will generate. */
122 /* Number of bytes before and after the number. */
127 /* Read a long double value from the command line.
128 Return if the string is correct else signal error. */
131 scan_arg (const char *arg
)
135 if (! xstrtold (arg
, NULL
, &ret
.value
, c_strtold
))
137 error (0, 0, _("invalid floating point argument: %s"), arg
);
138 usage (EXIT_FAILURE
);
141 /* We don't output spaces or '+' so don't include in width */
142 while (isspace (to_uchar (*arg
)) || *arg
== '+')
145 ret
.width
= strlen (arg
);
146 ret
.precision
= INT_MAX
;
148 if (! arg
[strcspn (arg
, "xX")] && isfinite (ret
.value
))
150 char const *decimal_point
= strchr (arg
, '.');
155 size_t fraction_len
= strcspn (decimal_point
+ 1, "eE");
156 if (fraction_len
<= INT_MAX
)
157 ret
.precision
= fraction_len
;
158 ret
.width
+= (fraction_len
== 0 /* #. -> # */
160 : (decimal_point
== arg
/* .# -> 0.# */
161 || ! ISDIGIT (decimal_point
[-1]))); /* -.# -> 0.# */
163 char const *e
= strchr (arg
, 'e');
165 e
= strchr (arg
, 'E');
168 long exponent
= strtol (e
+ 1, NULL
, 10);
169 ret
.precision
+= exponent
< 0 ? -exponent
: 0;
176 /* If FORMAT is a valid printf format for a double argument, return
177 its long double equivalent, allocated from dynamic storage, and
178 store into *LAYOUT a description of the output layout; otherwise,
179 report an error and exit. */
182 long_double_format (char const *fmt
, struct layout
*layout
)
185 size_t prefix_len
= 0;
186 size_t suffix_len
= 0;
187 size_t length_modifier_offset
;
190 for (i
= 0; ! (fmt
[i
] == '%' && fmt
[i
+ 1] != '%'); i
+= (fmt
[i
] == '%') + 1)
193 error (EXIT_FAILURE
, 0,
194 _("format %s has no %% directive"), quote (fmt
));
199 i
+= strspn (fmt
+ i
, "-+#0 '");
200 i
+= strspn (fmt
+ i
, "0123456789");
204 i
+= strspn (fmt
+ i
, "0123456789");
207 length_modifier_offset
= i
;
208 has_L
= (fmt
[i
] == 'L');
211 error (EXIT_FAILURE
, 0, _("format %s ends in %%"), quote (fmt
));
212 if (! strchr ("efgaEFGA", fmt
[i
]))
213 error (EXIT_FAILURE
, 0,
214 _("format %s has unknown %%%c directive"), quote (fmt
), fmt
[i
]);
216 for (i
++; ; i
+= (fmt
[i
] == '%') + 1)
217 if (fmt
[i
] == '%' && fmt
[i
+ 1] != '%')
218 error (EXIT_FAILURE
, 0, _("format %s has too many %% directives"),
224 size_t format_size
= i
+ 1;
225 char *ldfmt
= xmalloc (format_size
+ 1);
226 memcpy (ldfmt
, fmt
, length_modifier_offset
);
227 ldfmt
[length_modifier_offset
] = 'L';
228 strcpy (ldfmt
+ length_modifier_offset
+ 1,
229 fmt
+ length_modifier_offset
+ has_L
);
230 layout
->prefix_len
= prefix_len
;
231 layout
->suffix_len
= suffix_len
;
236 /* Actually print the sequence of numbers in the specified range, with the
237 given or default stepping and format. */
240 print_numbers (char const *fmt
, struct layout layout
,
241 long double first
, long double step
, long double last
)
243 bool out_of_range
= (step
< 0 ? first
< last
: last
< first
);
247 long double x
= first
;
256 x
= first
+ i
* step
;
257 out_of_range
= (step
< 0 ? x
< last
: last
< x
);
261 /* If the number just past LAST prints as a value equal
262 to LAST, and prints differently from the previous
263 number, then print the number. This avoids problems
264 with rounding. For example, with the x86 it causes
265 "seq 0 0.000001 0.000003" to print 0.000003 instead
266 of stopping at 0.000002. */
268 bool print_extra_number
= false;
272 setlocale (LC_NUMERIC
, "C");
273 x_strlen
= asprintf (&x_str
, fmt
, x
);
274 setlocale (LC_NUMERIC
, "");
277 x_str
[x_strlen
- layout
.suffix_len
] = '\0';
279 if (xstrtold (x_str
+ layout
.prefix_len
, NULL
, &x_val
, c_strtold
)
283 if (asprintf (&x0_str
, fmt
, x0
) < 0)
285 print_extra_number
= !STREQ (x0_str
, x_str
);
290 if (! print_extra_number
)
294 fputs (separator
, stdout
);
297 fputs (terminator
, stdout
);
301 /* Return the default format given FIRST, STEP, and LAST. */
303 get_default_format (operand first
, operand step
, operand last
)
305 static char format_buf
[sizeof "%0.Lf" + 2 * INT_STRLEN_BOUND (int)];
307 int prec
= MAX (first
.precision
, step
.precision
);
309 if (prec
!= INT_MAX
&& last
.precision
!= INT_MAX
)
313 /* increase first_width by any increased precision in step */
314 size_t first_width
= first
.width
+ (prec
- first
.precision
);
315 /* adjust last_width to use precision from first/step */
316 size_t last_width
= last
.width
+ (prec
- last
.precision
);
317 if (last
.precision
&& prec
== 0)
318 last_width
--; /* don't include space for '.' */
319 if (last
.precision
== 0 && prec
)
320 last_width
++; /* include space for '.' */
321 size_t width
= MAX (first_width
, last_width
);
322 if (width
<= INT_MAX
)
325 sprintf (format_buf
, "%%0%d.%dLf", w
, prec
);
331 sprintf (format_buf
, "%%.%dLf", prec
);
340 main (int argc
, char **argv
)
343 operand first
= { 1, 1, 0 };
344 operand step
= { 1, 1, 0 };
346 struct layout layout
= { 0, 0 };
348 /* The printf(3) format used for output. */
349 char const *format_str
= NULL
;
351 initialize_main (&argc
, &argv
);
352 set_program_name (argv
[0]);
353 setlocale (LC_ALL
, "");
354 bindtextdomain (PACKAGE
, LOCALEDIR
);
355 textdomain (PACKAGE
);
357 atexit (close_stdout
);
362 /* We have to handle negative numbers in the command line but this
363 conflicts with the command line arguments. So explicitly check first
364 whether the next argument looks like a negative number. */
365 while (optind
< argc
)
367 if (argv
[optind
][0] == '-'
368 && ((optc
= argv
[optind
][1]) == '.' || ISDIGIT (optc
)))
370 /* means negative number */
374 optc
= getopt_long (argc
, argv
, "+f:s:w", long_options
, NULL
);
392 case_GETOPT_HELP_CHAR
;
394 case_GETOPT_VERSION_CHAR (PROGRAM_NAME
, AUTHORS
);
397 usage (EXIT_FAILURE
);
401 if (argc
- optind
< 1)
403 error (0, 0, _("missing operand"));
404 usage (EXIT_FAILURE
);
407 if (3 < argc
- optind
)
409 error (0, 0, _("extra operand %s"), quote (argv
[optind
+ 3]));
410 usage (EXIT_FAILURE
);
414 format_str
= long_double_format (format_str
, &layout
);
416 last
= scan_arg (argv
[optind
++]);
421 last
= scan_arg (argv
[optind
++]);
426 last
= scan_arg (argv
[optind
++]);
430 if (format_str
!= NULL
&& equal_width
)
433 format string may not be specified when printing equal width strings"));
434 usage (EXIT_FAILURE
);
437 if (format_str
== NULL
)
438 format_str
= get_default_format (first
, step
, last
);
440 print_numbers (format_str
, layout
, first
.value
, step
.value
, last
.value
);