2002-11-07 02:09:37 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* strings implementation for busybox
|
|
|
|
*
|
2006-07-31 16:37:57 +00:00
|
|
|
* Copyright Tito Ragusa <farmatito@tiscali.it>
|
2006-09-17 16:28:10 +00:00
|
|
|
*
|
2006-02-27 22:34:41 +00:00
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
2002-11-07 02:09:37 +00:00
|
|
|
*/
|
|
|
|
|
2003-01-13 23:19:31 +00:00
|
|
|
#include <getopt.h>
|
2007-05-26 19:00:18 +00:00
|
|
|
|
|
|
|
#include "libbb.h"
|
2002-11-07 02:09:37 +00:00
|
|
|
|
2005-06-07 03:21:20 +00:00
|
|
|
#define WHOLE_FILE 1
|
|
|
|
#define PRINT_NAME 2
|
|
|
|
#define PRINT_OFFSET 4
|
|
|
|
#define SIZE 8
|
|
|
|
|
2007-02-03 17:28:39 +00:00
|
|
|
int strings_main(int argc, char **argv);
|
2003-01-13 23:19:31 +00:00
|
|
|
int strings_main(int argc, char **argv)
|
2002-11-07 02:09:37 +00:00
|
|
|
{
|
2007-06-17 12:19:07 +00:00
|
|
|
int n, c, status = EXIT_SUCCESS;
|
2006-10-03 21:00:06 +00:00
|
|
|
unsigned opt;
|
2007-06-17 12:19:07 +00:00
|
|
|
unsigned count;
|
|
|
|
off_t offset;
|
2003-09-15 14:22:37 +00:00
|
|
|
FILE *file = stdin;
|
2005-06-07 03:21:20 +00:00
|
|
|
char *string;
|
|
|
|
const char *fmt = "%s: ";
|
2007-01-29 22:51:25 +00:00
|
|
|
const char *n_arg = "4";
|
2006-01-25 00:08:53 +00:00
|
|
|
|
2007-08-18 15:32:12 +00:00
|
|
|
opt = getopt32(argv, "afon:", &n_arg);
|
2005-06-07 03:21:20 +00:00
|
|
|
/* -a is our default behaviour */
|
2007-06-17 12:19:07 +00:00
|
|
|
/*argc -= optind;*/
|
2002-11-07 02:09:37 +00:00
|
|
|
argv += optind;
|
|
|
|
|
2007-06-17 12:19:07 +00:00
|
|
|
n = xatou_range(n_arg, 1, INT_MAX);
|
2006-05-29 06:43:55 +00:00
|
|
|
string = xzalloc(n + 1);
|
2005-06-07 03:21:20 +00:00
|
|
|
n--;
|
2006-01-25 00:08:53 +00:00
|
|
|
|
2007-06-17 12:19:07 +00:00
|
|
|
if (!*argv) {
|
2005-06-07 03:21:20 +00:00
|
|
|
fmt = "{%s}: ";
|
2007-06-17 12:19:07 +00:00
|
|
|
*--argv = (char *)bb_msg_standard_input;
|
2005-06-07 03:21:20 +00:00
|
|
|
goto PIPE;
|
2003-01-13 23:19:31 +00:00
|
|
|
}
|
2006-01-25 00:08:53 +00:00
|
|
|
|
2005-06-07 03:21:20 +00:00
|
|
|
do {
|
2006-10-26 23:25:17 +00:00
|
|
|
file = fopen_or_warn(*argv, "r");
|
2007-06-17 12:19:07 +00:00
|
|
|
if (!file) {
|
|
|
|
status = EXIT_FAILURE;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
PIPE:
|
|
|
|
offset = 0;
|
|
|
|
count = 0;
|
|
|
|
do {
|
|
|
|
c = fgetc(file);
|
|
|
|
if (isprint(c) || c == '\t') {
|
|
|
|
if (count > n) {
|
2007-09-27 10:20:47 +00:00
|
|
|
bb_putchar(c);
|
2007-06-17 12:19:07 +00:00
|
|
|
} else {
|
|
|
|
string[count] = c;
|
|
|
|
if (count == n) {
|
2005-06-07 03:21:20 +00:00
|
|
|
if (opt & PRINT_NAME) {
|
|
|
|
printf(fmt, *argv);
|
|
|
|
}
|
|
|
|
if (opt & PRINT_OFFSET) {
|
2007-06-17 12:19:07 +00:00
|
|
|
printf("%7"OFF_FMT"o ", offset - n);
|
2005-06-07 03:21:20 +00:00
|
|
|
}
|
2007-06-17 12:19:07 +00:00
|
|
|
fputs(string, stdout);
|
2003-03-13 18:49:45 +00:00
|
|
|
}
|
2007-06-17 12:19:07 +00:00
|
|
|
count++;
|
2003-03-13 18:49:45 +00:00
|
|
|
}
|
2007-06-17 12:19:07 +00:00
|
|
|
} else {
|
|
|
|
if (count > n) {
|
2007-09-27 10:20:47 +00:00
|
|
|
bb_putchar('\n');
|
2007-06-17 12:19:07 +00:00
|
|
|
}
|
|
|
|
count = 0;
|
|
|
|
}
|
|
|
|
offset++;
|
|
|
|
} while (c != EOF);
|
|
|
|
fclose_if_not_stdin(file);
|
|
|
|
} while (*++argv);
|
2005-09-08 03:11:58 +00:00
|
|
|
|
2006-02-27 22:34:41 +00:00
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
|
|
|
free(string);
|
2005-09-08 03:11:58 +00:00
|
|
|
|
2006-10-26 23:21:47 +00:00
|
|
|
fflush_stdout_and_exit(status);
|
2002-11-07 02:09:37 +00:00
|
|
|
}
|