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> |
Eric Andersen | 65ddf77 | 2003-01-13 23:19:31 +0000 | [diff] [blame] | 30 | #include <getopt.h> |
Eric Andersen | ef5e8f8 | 2002-11-07 02:09:37 +0000 | [diff] [blame] | 31 | #include <ctype.h> |
| 32 | #include "busybox.h" |
| 33 | |
| 34 | #define ISSTR(ch) (isprint(ch) || ch == '\t') |
| 35 | |
Rob Landley | 16cd02e | 2005-06-07 03:21:20 +0000 | [diff] [blame] | 36 | #define WHOLE_FILE 1 |
| 37 | #define PRINT_NAME 2 |
| 38 | #define PRINT_OFFSET 4 |
| 39 | #define SIZE 8 |
| 40 | |
Eric Andersen | 65ddf77 | 2003-01-13 23:19:31 +0000 | [diff] [blame] | 41 | int strings_main(int argc, char **argv) |
Eric Andersen | ef5e8f8 | 2002-11-07 02:09:37 +0000 | [diff] [blame] | 42 | { |
Rob Landley | 16cd02e | 2005-06-07 03:21:20 +0000 | [diff] [blame] | 43 | int n, c, i = 0, status = EXIT_SUCCESS; |
| 44 | unsigned long opt; |
| 45 | unsigned long count; |
Glenn L McGrath | e16ab47 | 2003-09-15 14:22:37 +0000 | [diff] [blame] | 46 | FILE *file = stdin; |
Rob Landley | 16cd02e | 2005-06-07 03:21:20 +0000 | [diff] [blame] | 47 | 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 Andersen | ef5e8f8 | 2002-11-07 02:09:37 +0000 | [diff] [blame] | 54 | argc -= optind; |
| 55 | argv += optind; |
| 56 | |
Rob Landley | 16cd02e | 2005-06-07 03:21:20 +0000 | [diff] [blame] | 57 | 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 Andersen | 65ddf77 | 2003-01-13 23:19:31 +0000 | [diff] [blame] | 65 | } |
Rob Landley | 16cd02e | 2005-06-07 03:21:20 +0000 | [diff] [blame] | 66 | |
| 67 | do { |
| 68 | if ((file = bb_wfopen(*argv, "r"))) { |
| 69 | PIPE: |
| 70 | count = 0; |
| 71 | do { |
| 72 | c = fgetc(file); |
| 73 | if (ISSTR(c)) { |
| 74 | if (i <= n) { |
Eric Andersen | 92b7e7b | 2003-03-13 18:49:45 +0000 | [diff] [blame] | 75 | string[i]=c; |
Rob Landley | 16cd02e | 2005-06-07 03:21:20 +0000 | [diff] [blame] | 76 | } 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 Andersen | 92b7e7b | 2003-03-13 18:49:45 +0000 | [diff] [blame] | 86 | printf("%s", string); |
| 87 | } |
Eric Andersen | 92b7e7b | 2003-03-13 18:49:45 +0000 | [diff] [blame] | 88 | i++; |
Rob Landley | 16cd02e | 2005-06-07 03:21:20 +0000 | [diff] [blame] | 89 | } else { |
| 90 | if (i > n) { |
Glenn L McGrath | bb13624 | 2003-08-30 12:38:13 +0000 | [diff] [blame] | 91 | putchar('\n'); |
Rob Landley | 16cd02e | 2005-06-07 03:21:20 +0000 | [diff] [blame] | 92 | } |
| 93 | i = 0; |
Eric Andersen | 92b7e7b | 2003-03-13 18:49:45 +0000 | [diff] [blame] | 94 | } |
| 95 | count++; |
Rob Landley | 16cd02e | 2005-06-07 03:21:20 +0000 | [diff] [blame] | 96 | } while (c != EOF); |
Glenn L McGrath | e01c550 | 2003-08-29 15:48:37 +0000 | [diff] [blame] | 97 | bb_fclose_nonstdin(file); |
Rob Landley | 16cd02e | 2005-06-07 03:21:20 +0000 | [diff] [blame] | 98 | } else { |
Eric Andersen | 92b7e7b | 2003-03-13 18:49:45 +0000 | [diff] [blame] | 99 | status=EXIT_FAILURE; |
Rob Landley | 16cd02e | 2005-06-07 03:21:20 +0000 | [diff] [blame] | 100 | } |
| 101 | } while ( --argc > 0 ); |
Rob Landley | 658d2cf | 2005-09-08 03:11:58 +0000 | [diff] [blame] | 102 | |
| 103 | if (ENABLE_FEATURE_CLEAN_UP) free(string); |
| 104 | |
Rob Landley | 16cd02e | 2005-06-07 03:21:20 +0000 | [diff] [blame] | 105 | bb_fflush_stdout_and_exit(status); |
Eric Andersen | ef5e8f8 | 2002-11-07 02:09:37 +0000 | [diff] [blame] | 106 | } |
| 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 Andersen | 65ddf77 | 2003-01-13 23:19:31 +0000 | [diff] [blame] | 121 | * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 122 | * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change> |
Eric Andersen | ef5e8f8 | 2002-11-07 02:09:37 +0000 | [diff] [blame] | 123 | * |
| 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 | */ |