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