9d8012aa22f4b76d21d8ad8644419c45d63b923d
[oweals/busybox.git] / miscutils / strings.c
1 /* 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  * Badly hacked by Tito Ragusa <farmatito@tiscali.it>
26  */
27
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <getopt.h>
32 #include <unistd.h>
33 #include <ctype.h>
34 #include "busybox.h"
35
36 #define ISSTR(ch)       (isprint(ch) || ch == '\t')
37
38 int strings_main(int argc, char **argv)
39 {
40         extern char *optarg;
41         extern int optind;
42         int n=4, c, i, opt=0, a=0;
43         long    t, count;
44         FILE *file;
45         char *string;
46         
47         while ((i = getopt(argc, argv, "an:of")) > 0)
48                 switch(i)
49                 {
50                         case 'a':
51                                 break;
52                         case 'f':
53                                 opt++;
54                                 break;
55                         case 'n':
56                                 n = atoi(optarg);
57                                 if(!(n/1))
58                                         show_usage();
59                                 break;
60                         case 'o':
61                                 opt++;
62                                 opt++;
63                                 break;
64                         default:
65                                 show_usage();
66                 }
67
68         argc -= optind;
69         argv += optind;
70
71         i=0;
72
73         if(!argc )
74         {
75                 file = stdin;
76                 goto pipe;
77         }
78
79         for(a=0;a<argc;a++)
80         {
81                 file=xfopen(argv[a],"r");
82
83                 pipe:
84                 
85                 count=0;
86                 string=xmalloc(n);
87                 string[n]='\0';
88                 n--;
89                 while(1)
90                 {
91                         c=fgetc(file);
92                         if(ISSTR(c))
93                         {
94                                 if(i==0)
95                                         t=count;
96                                 if(i<=n)
97                                         string[i]=c;
98                                 if(i==n)
99                                 {
100                                         if(opt == 1 || opt == 3 )
101                                                 printf("%s: ",(!argv[a])?"{stdin}":argv[a]);
102                                         if(opt >= 2 )
103                                                 printf("%7lo ",t);
104                                         printf("%s",string);
105                                 }
106                                 if(i>n)
107                                         putchar(c);
108                                 i++;
109                         }
110                         else
111                         {
112                                 if(i>n)
113                                         puts("");
114                                 i=0;
115                         }
116                         count++;
117                         if(c==EOF)
118                                 break;
119                 }
120                 if(file!=stdin)
121                         fclose(file);
122         }
123         free(string);
124         exit(EXIT_SUCCESS);
125 }
126
127 /*
128  * Copyright (c) 1980, 1987
129  *      The Regents of the University of California.  All rights reserved.
130  *
131  * Redistribution and use in source and binary forms, with or without
132  * modification, are permitted provided that the following conditions
133  * are met:
134  * 1. Redistributions of source code must retain the above copyright
135  *    notice, this list of conditions and the following disclaimer.
136  * 2. Redistributions in binary form must reproduce the above copyright
137  *    notice, this list of conditions and the following disclaimer in the
138  *    documentation and/or other materials provided with the distribution.
139  *
140  * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
141  *              ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change> 
142  *
143  * 4. Neither the name of the University nor the names of its contributors
144  *    may be used to endorse or promote products derived from this software
145  *    without specific prior written permission.
146  *
147  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
148  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
149  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
150  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
151  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
152  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
153  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
154  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
155  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
156  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
157  * SUCH DAMAGE.
158  */