Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Mini find implementation for busybox |
| 3 | * |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 4 | * |
| 5 | * Copyright (C) 1999 by Lineo, inc. |
| 6 | * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org> |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 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 | */ |
| 23 | |
Eric Andersen | aa0765e | 1999-10-22 04:30:20 +0000 | [diff] [blame] | 24 | #include "internal.h" |
| 25 | #include "regexp.h" |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 26 | #include <stdio.h> |
| 27 | #include <unistd.h> |
| 28 | #include <dirent.h> |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 29 | |
| 30 | |
| 31 | static char* pattern=NULL; |
Eric Andersen | aa0765e | 1999-10-22 04:30:20 +0000 | [diff] [blame] | 32 | static char* directory="."; |
Eric Andersen | f811e07 | 1999-10-09 00:25:00 +0000 | [diff] [blame] | 33 | static int dereferenceFlag=FALSE; |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 34 | |
| 35 | static const char find_usage[] = "find [path...] [expression]\n" |
| 36 | "default path is the current directory; default expression is -print\n" |
| 37 | "expression may consist of:\n"; |
| 38 | |
| 39 | |
| 40 | |
Eric Andersen | 9b58718 | 1999-10-17 05:43:39 +0000 | [diff] [blame] | 41 | static int fileAction(const char *fileName, struct stat* statbuf) |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 42 | { |
| 43 | if (pattern==NULL) |
| 44 | fprintf(stdout, "%s\n", fileName); |
Eric Andersen | aa0765e | 1999-10-22 04:30:20 +0000 | [diff] [blame] | 45 | else if (find_match(fileName, pattern, TRUE) == TRUE) |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 46 | fprintf(stdout, "%s\n", fileName); |
| 47 | return( TRUE); |
| 48 | } |
| 49 | |
Eric Andersen | 9b58718 | 1999-10-17 05:43:39 +0000 | [diff] [blame] | 50 | static int dirAction(const char *fileName, struct stat* statbuf) |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 51 | { |
| 52 | DIR *dir; |
| 53 | struct dirent *entry; |
| 54 | |
| 55 | if (pattern==NULL) |
| 56 | fprintf(stdout, "%s\n", fileName); |
Eric Andersen | aa0765e | 1999-10-22 04:30:20 +0000 | [diff] [blame] | 57 | else if (find_match(fileName, pattern, TRUE) == TRUE) |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 58 | fprintf(stdout, "%s\n", fileName); |
| 59 | |
| 60 | dir = opendir( fileName); |
| 61 | if (!dir) { |
| 62 | perror("Can't open directory"); |
| 63 | exit(FALSE); |
| 64 | } |
| 65 | while ((entry = readdir(dir)) != NULL) { |
| 66 | char dirName[NAME_MAX]; |
| 67 | sprintf(dirName, "%s/%s", fileName, entry->d_name); |
Eric Andersen | bed30e9 | 1999-10-18 19:02:32 +0000 | [diff] [blame] | 68 | recursiveAction( dirName, TRUE, dereferenceFlag, FALSE, fileAction, dirAction); |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 69 | } |
| 70 | return( TRUE); |
| 71 | } |
| 72 | |
| 73 | int find_main(int argc, char **argv) |
| 74 | { |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 75 | /* peel off the "find" */ |
| 76 | argc--; |
| 77 | argv++; |
| 78 | |
Eric Andersen | aa0765e | 1999-10-22 04:30:20 +0000 | [diff] [blame] | 79 | if ( argc > 0 && **argv != '-') { |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 80 | directory=*argv; |
| 81 | argc--; |
| 82 | argv++; |
| 83 | } |
| 84 | |
| 85 | /* Parse any options */ |
Eric Andersen | aa0765e | 1999-10-22 04:30:20 +0000 | [diff] [blame] | 86 | while (argc > 0 && **argv == '-') { |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 87 | int stopit=FALSE; |
| 88 | while (*++(*argv) && stopit==FALSE) switch (**argv) { |
| 89 | case 'f': |
| 90 | if (strcmp(*argv, "follow")==0) { |
| 91 | argc--; |
| 92 | argv++; |
| 93 | dereferenceFlag=TRUE; |
| 94 | } |
| 95 | break; |
| 96 | case 'n': |
| 97 | if (strcmp(*argv, "name")==0) { |
| 98 | if (argc-- > 1) { |
| 99 | pattern=*(++argv); |
| 100 | stopit=-TRUE; |
| 101 | } else { |
Eric Andersen | b0e9a70 | 1999-10-18 22:28:26 +0000 | [diff] [blame] | 102 | usage (find_usage); |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 103 | } |
| 104 | } |
| 105 | break; |
| 106 | case '-': |
| 107 | /* Ignore all long options */ |
| 108 | break; |
| 109 | default: |
Eric Andersen | b0e9a70 | 1999-10-18 22:28:26 +0000 | [diff] [blame] | 110 | usage (find_usage); |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 111 | } |
| 112 | if (argc-- > 1) |
| 113 | argv++; |
| 114 | if (**argv != '-') |
| 115 | break; |
| 116 | else |
| 117 | break; |
| 118 | } |
| 119 | |
Eric Andersen | aa0765e | 1999-10-22 04:30:20 +0000 | [diff] [blame] | 120 | if (recursiveAction(directory, TRUE, FALSE, FALSE, |
| 121 | fileAction, fileAction) == FALSE) { |
| 122 | exit( FALSE); |
| 123 | } |
| 124 | |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 125 | exit(TRUE); |
| 126 | } |