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