blob: 3d3aaf589072c484e3f40595120bc945e0c3911a [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 *
24 * Modified for BusyBox by Erik Andersen <andersee@debian.org>
25 */
26
27#include <stdio.h>
28#include <stdlib.h>
29#include <string.h>
30#include <getopt.h>
31#include <unistd.h>
32#include <ctype.h>
33#include "busybox.h"
34
35#define ISSTR(ch) (isprint(ch) || ch == '\t')
36
37int strings_main(int argc, char **argv)
38{
39 extern char *optarg;
40 extern int optind;
41 int ch, cnt;
42 int exitcode;
43 int oflg, fflg;
44 char *file;
45 size_t foff, minlen;
46 unsigned char *bfr, *C;
47
48
49 exitcode = fflg = oflg = 0;
50 minlen = -1;
51 while ((ch = getopt(argc, argv, "an:of")) > 0)
52 switch(ch) {
Glenn L McGrathdd3461a2003-01-09 10:00:49 +000053 case 'a':
Eric Andersenef5e8f82002-11-07 02:09:37 +000054 break;
55 case 'f':
56 fflg = 1;
57 break;
58 case 'n':
59 minlen = atoi(optarg);
60 break;
61 case 'o':
62 oflg = 1;
63 break;
64 default:
65 show_usage();
66 }
67 argc -= optind;
68 argv += optind;
69
70 if (minlen == -1)
71 minlen = 4;
72
73 bfr = xmalloc(minlen);
74 bfr[minlen] = '\0';
75 file = "stdin";
76 do {
77 if (*argv) {
78 fprintf(stderr, "opening '%s'\n", *argv);
79 file = *argv++;
80 if (!freopen(file, "r", stdin)) {
81 perror_msg("%s", file);
82 exitcode = EXIT_FAILURE;
83 continue;
84 }
85 }
86 foff = 0;
87
88 for (cnt = 0; (ch = getchar()) != EOF;) {
Glenn L McGrathdd3461a2003-01-09 10:00:49 +000089 foff++;
Eric Andersenef5e8f82002-11-07 02:09:37 +000090 if (ISSTR(ch)) {
91 if (!cnt)
92 C = bfr;
93 *C++ = ch;
94 if (++cnt < minlen)
95 continue;
96 if (fflg)
97 printf("%s:", file);
98 if (oflg)
Glenn L McGrathdd3461a2003-01-09 10:00:49 +000099 printf("%7ld %s", (long)(foff - minlen), (char *)bfr);
Eric Andersenef5e8f82002-11-07 02:09:37 +0000100 else
101 printf("%s", bfr);
102 while ((ch = getchar()) != EOF && ISSTR(ch))
103 putchar((char)ch);
104 putchar('\n');
105 }
106 cnt = 0;
107 }
108 } while (*argv);
109 exit(exitcode);
110}
111
112/*
113 * Copyright (c) 1980, 1987
114 * The Regents of the University of California. All rights reserved.
115 *
116 * Redistribution and use in source and binary forms, with or without
117 * modification, are permitted provided that the following conditions
118 * are met:
119 * 1. Redistributions of source code must retain the above copyright
120 * notice, this list of conditions and the following disclaimer.
121 * 2. Redistributions in binary form must reproduce the above copyright
122 * notice, this list of conditions and the following disclaimer in the
123 * documentation and/or other materials provided with the distribution.
124 *
125 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
126 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
127 *
128 * 4. Neither the name of the University nor the names of its contributors
129 * may be used to endorse or promote products derived from this software
130 * without specific prior written permission.
131 *
132 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
133 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
134 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
135 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
136 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
137 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
138 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
139 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
140 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
141 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
142 * SUCH DAMAGE.
143 */