strings.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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 <andersen@codepoet.org>
  25. * Badly hacked by Tito Ragusa <farmatito@tiscali.it>
  26. */
  27. #include <stdio.h>
  28. #include <stdlib.h>
  29. #include <getopt.h>
  30. #include <ctype.h>
  31. #include "busybox.h"
  32. #define ISSTR(ch) (isprint(ch) || ch == '\t')
  33. #define WHOLE_FILE 1
  34. #define PRINT_NAME 2
  35. #define PRINT_OFFSET 4
  36. #define SIZE 8
  37. int strings_main(int argc, char **argv)
  38. {
  39. int n, c, i = 0, status = EXIT_SUCCESS;
  40. unsigned long opt;
  41. unsigned long count;
  42. FILE *file = stdin;
  43. char *string;
  44. const char *fmt = "%s: ";
  45. char *n_arg = "4";
  46. opt = bb_getopt_ulflags (argc, argv, "afon:", &n_arg);
  47. /* -a is our default behaviour */
  48. argc -= optind;
  49. argv += optind;
  50. n = bb_xgetlarg(n_arg, 10, 1, INT_MAX);
  51. string = xcalloc(n + 1, 1);
  52. n--;
  53. if ( argc == 0) {
  54. fmt = "{%s}: ";
  55. *argv = (char *)bb_msg_standard_input;
  56. goto PIPE;
  57. }
  58. do {
  59. if ((file = bb_wfopen(*argv, "r"))) {
  60. PIPE:
  61. count = 0;
  62. do {
  63. c = fgetc(file);
  64. if (ISSTR(c)) {
  65. if (i <= n) {
  66. string[i]=c;
  67. } else {
  68. putchar(c);
  69. }
  70. if (i == n) {
  71. if (opt & PRINT_NAME) {
  72. printf(fmt, *argv);
  73. }
  74. if (opt & PRINT_OFFSET) {
  75. printf("%7lo ", count - n );
  76. }
  77. printf("%s", string);
  78. }
  79. i++;
  80. } else {
  81. if (i > n) {
  82. putchar('\n');
  83. }
  84. i = 0;
  85. }
  86. count++;
  87. } while (c != EOF);
  88. bb_fclose_nonstdin(file);
  89. } else {
  90. status=EXIT_FAILURE;
  91. }
  92. } while ( --argc > 0 );
  93. #ifdef CONFIG_FEATURE_CLEAN_UP
  94. free(string);
  95. #endif
  96. bb_fflush_stdout_and_exit(status);
  97. }
  98. /*
  99. * Copyright (c) 1980, 1987
  100. * The Regents of the University of California. All rights reserved.
  101. *
  102. * Redistribution and use in source and binary forms, with or without
  103. * modification, are permitted provided that the following conditions
  104. * are met:
  105. * 1. Redistributions of source code must retain the above copyright
  106. * notice, this list of conditions and the following disclaimer.
  107. * 2. Redistributions in binary form must reproduce the above copyright
  108. * notice, this list of conditions and the following disclaimer in the
  109. * documentation and/or other materials provided with the distribution.
  110. *
  111. * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
  112. * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
  113. *
  114. * 4. Neither the name of the University nor the names of its contributors
  115. * may be used to endorse or promote products derived from this software
  116. * without specific prior written permission.
  117. *
  118. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  119. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  120. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  121. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  122. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  123. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  124. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  125. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  126. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  127. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  128. * SUCH DAMAGE.
  129. */