blob: d0a0924215724f999effbce761bc5ce2317c8def [file] [log] [blame]
Eric Andersenef5e8f82002-11-07 02:09:37 +00001/* vi: set sw=4 ts=4: */
2/*
3 * strings implementation for busybox
4 *
5 * Copyright (c) 1980, 1987
6 * The Regents of the University of California. All rights reserved.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 * Original copyright notice is retained at the end of this file.
23 *
Eric Andersencb81e642003-07-14 21:21:08 +000024 * Modified for BusyBox by Erik Andersen <andersen@codepoet.org>
Eric Andersen65ddf772003-01-13 23:19:31 +000025 * Badly hacked by Tito Ragusa <farmatito@tiscali.it>
Eric Andersenef5e8f82002-11-07 02:09:37 +000026 */
27
Eric Andersen65ddf772003-01-13 23:19:31 +000028#include <stdio.h>
29#include <stdlib.h>
Eric Andersen65ddf772003-01-13 23:19:31 +000030#include <getopt.h>
Eric Andersenef5e8f82002-11-07 02:09:37 +000031#include <ctype.h>
32#include "busybox.h"
33
34#define ISSTR(ch) (isprint(ch) || ch == '\t')
35
Rob Landley16cd02e2005-06-07 03:21:20 +000036#define WHOLE_FILE 1
37#define PRINT_NAME 2
38#define PRINT_OFFSET 4
39#define SIZE 8
40
Eric Andersen65ddf772003-01-13 23:19:31 +000041int strings_main(int argc, char **argv)
Eric Andersenef5e8f82002-11-07 02:09:37 +000042{
Rob Landley16cd02e2005-06-07 03:21:20 +000043 int n, c, i = 0, status = EXIT_SUCCESS;
44 unsigned long opt;
45 unsigned long count;
Glenn L McGrathe16ab472003-09-15 14:22:37 +000046 FILE *file = stdin;
Rob Landley16cd02e2005-06-07 03:21:20 +000047 char *string;
48 const char *fmt = "%s: ";
49 char *n_arg = "4";
50
51 opt = bb_getopt_ulflags (argc, argv, "afon:", &n_arg);
52 /* -a is our default behaviour */
53
Eric Andersenef5e8f82002-11-07 02:09:37 +000054 argc -= optind;
55 argv += optind;
56
Rob Landley16cd02e2005-06-07 03:21:20 +000057 n = bb_xgetlarg(n_arg, 10, 1, INT_MAX);
58 string = xcalloc(n + 1, 1);
59 n--;
60
61 if ( argc == 0) {
62 fmt = "{%s}: ";
63 *argv = (char *)bb_msg_standard_input;
64 goto PIPE;
Eric Andersen65ddf772003-01-13 23:19:31 +000065 }
Rob Landley16cd02e2005-06-07 03:21:20 +000066
67 do {
68 if ((file = bb_wfopen(*argv, "r"))) {
69PIPE:
70 count = 0;
71 do {
72 c = fgetc(file);
73 if (ISSTR(c)) {
74 if (i <= n) {
Eric Andersen92b7e7b2003-03-13 18:49:45 +000075 string[i]=c;
Rob Landley16cd02e2005-06-07 03:21:20 +000076 } else {
77 putchar(c);
78 }
79 if (i == n) {
80 if (opt & PRINT_NAME) {
81 printf(fmt, *argv);
82 }
83 if (opt & PRINT_OFFSET) {
84 printf("%7lo ", count - n );
85 }
Eric Andersen92b7e7b2003-03-13 18:49:45 +000086 printf("%s", string);
87 }
Eric Andersen92b7e7b2003-03-13 18:49:45 +000088 i++;
Rob Landley16cd02e2005-06-07 03:21:20 +000089 } else {
90 if (i > n) {
Glenn L McGrathbb136242003-08-30 12:38:13 +000091 putchar('\n');
Rob Landley16cd02e2005-06-07 03:21:20 +000092 }
93 i = 0;
Eric Andersen92b7e7b2003-03-13 18:49:45 +000094 }
95 count++;
Rob Landley16cd02e2005-06-07 03:21:20 +000096 } while (c != EOF);
Glenn L McGrathe01c5502003-08-29 15:48:37 +000097 bb_fclose_nonstdin(file);
Rob Landley16cd02e2005-06-07 03:21:20 +000098 } else {
Eric Andersen92b7e7b2003-03-13 18:49:45 +000099 status=EXIT_FAILURE;
Rob Landley16cd02e2005-06-07 03:21:20 +0000100 }
101 } while ( --argc > 0 );
102#ifdef CONFIG_FEATURE_CLEAN_UP
103 free(string);
104#endif
105 bb_fflush_stdout_and_exit(status);
Eric Andersenef5e8f82002-11-07 02:09:37 +0000106}
107
108/*
109 * Copyright (c) 1980, 1987
110 * The Regents of the University of California. All rights reserved.
111 *
112 * Redistribution and use in source and binary forms, with or without
113 * modification, are permitted provided that the following conditions
114 * are met:
115 * 1. Redistributions of source code must retain the above copyright
116 * notice, this list of conditions and the following disclaimer.
117 * 2. Redistributions in binary form must reproduce the above copyright
118 * notice, this list of conditions and the following disclaimer in the
119 * documentation and/or other materials provided with the distribution.
120 *
Eric Andersen65ddf772003-01-13 23:19:31 +0000121 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000122 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
Eric Andersenef5e8f82002-11-07 02:09:37 +0000123 *
124 * 4. Neither the name of the University nor the names of its contributors
125 * may be used to endorse or promote products derived from this software
126 * without specific prior written permission.
127 *
128 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
129 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
130 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
131 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
132 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
133 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
134 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
135 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
136 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
137 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
138 * SUCH DAMAGE.
139 */