]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/tools/testfind.c
61e64a271780ab1a24c60f92bde3fdaa581a1f9e
[bacula/bacula] / bacula / src / tools / testfind.c
1 /*  
2  * Test program for find files
3  */
4
5 /*
6    Copyright (C) 2000-2003 Kern Sibbald and John Walker
7
8    This program is free software; you can redistribute it and/or
9    modify it under the terms of the GNU General Public License as
10    published by the Free Software Foundation; either version 2 of
11    the License, or (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
19    License along with this program; if not, write to the Free
20    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
21    MA 02111-1307, USA.
22
23  */
24
25 #include "bacula.h"
26 #include "findlib/find.h"
27
28
29 #if defined(HAVE_CYGWIN) || defined(HAVE_WIN32)
30 int win32_client = 1;
31 #else
32 int win32_client = 0;
33 #endif
34
35
36 /* Global variables */
37 static int num_files = 0;
38 static int max_file_len = 0;
39 static int max_path_len = 0;
40 static int trunc_fname = 0;
41 static int trunc_path = 0;
42 static int attrs = 0;
43
44 static JCR *jcr;
45
46 static int print_file(FF_PKT *ff, void *pkt);
47 static void count_files(FF_PKT *ff);
48
49 static void usage()
50 {
51    fprintf(stderr, _(
52 "\n"
53 "Usage: testfind [-d debug_level] [-] [pattern1 ...]\n"
54 "       -a          print extended attributes (Win32 debug)\n"
55 "       -dnn        set debug level to nn\n"
56 "       -e          specify file of exclude patterns\n"
57 "       -i          specify file of include patterns\n"
58 "       -           read pattern(s) from stdin\n"
59 "       -?          print this message.\n"
60 "\n"
61 "Patterns are used for file inclusion -- normally directories.\n"
62 "Debug level >= 1 prints each file found.\n"
63 "Debug level >= 10 prints path/file for catalog.\n"
64 "Errors are always printed.\n"
65 "Files/paths truncated is the number of files/paths with len > 255.\n"
66 "Truncation is only in the catalog.\n"
67 "\n"));
68
69    exit(1);
70 }
71
72
73 int
74 main (int argc, char *const *argv)
75 {
76    FF_PKT *ff;
77    char name[1000];
78    int i, ch, hard_links;
79    char *inc = NULL;
80    char *exc = NULL;
81    FILE *fd;
82
83    while ((ch = getopt(argc, argv, "ad:e:i:?")) != -1) {
84       switch (ch) {
85          case 'a':                    /* print extended attributes *debug* */
86             attrs = 1;
87             break;
88
89          case 'd':                    /* set debug level */
90             debug_level = atoi(optarg);
91             if (debug_level <= 0) {
92                debug_level = 1; 
93             }
94             break;
95
96          case 'e':                    /* exclude patterns */
97             exc = optarg;
98             break;
99
100          case 'i':                    /* include patterns */
101             inc = optarg;
102             break;
103
104          case '?':
105          default:
106             usage();
107
108       }  
109    }
110    argc -= optind;
111    argv += optind;
112
113    jcr = new_jcr(sizeof(JCR), NULL);
114
115    ff = init_find_files();
116    if (argc == 0 && !inc) {
117       add_fname_to_include_list(ff, 0, "/"); /* default to / */
118    } else {   
119       for (i=0; i < argc; i++) {
120          if (strcmp(argv[i], "-") == 0) {
121              while (fgets(name, sizeof(name)-1, stdin)) {
122                 strip_trailing_junk(name);
123                 add_fname_to_include_list(ff, 0, name); 
124               }
125               continue;
126          }
127          add_fname_to_include_list(ff, 0, argv[i]); 
128       }
129    }
130    if (inc) {
131       fd = fopen(inc, "r");
132       if (!fd) {
133          printf("Could not open include file: %s\n", inc);
134          exit(1);
135       }
136       while (fgets(name, sizeof(name)-1, fd)) {
137          strip_trailing_junk(name);
138          add_fname_to_include_list(ff, 0, name);
139       }
140       fclose(fd);
141    }
142
143    if (exc) {
144       fd = fopen(exc, "r");
145       if (!fd) {
146          printf("Could not open exclude file: %s\n", exc);
147          exit(1);
148       }
149       while (fgets(name, sizeof(name)-1, fd)) {
150          strip_trailing_junk(name);
151          add_fname_to_exclude_list(ff, name);
152       }
153       fclose(fd);
154    }
155    find_files(jcr, ff, print_file, NULL);
156    hard_links = term_find_files(ff);
157   
158    printf(_("\
159 Total files    : %d\n\
160 Max file length: %d\n\
161 Max path length: %d\n\
162 Files truncated: %d\n\
163 Paths truncated: %d\n\
164 Hard links     : %d\n"),
165      num_files, max_file_len, max_path_len,
166      trunc_fname, trunc_path, hard_links);
167   
168   free_jcr(jcr);
169   close_memory_pool();
170   sm_dump(false);
171   exit(0);
172 }
173
174 static int print_file(FF_PKT *ff, void *pkt)
175 {
176
177    switch (ff->type) {
178    case FT_LNKSAVED:
179       if (debug_level == 1) {
180          printf("%s\n", ff->fname);
181       } else if (debug_level > 1) {
182          printf("Lnka: %s -> %s\n", ff->fname, ff->link);
183       }
184       break;
185    case FT_REGE:
186       if (debug_level == 1) {
187          printf("%s\n", ff->fname);
188       } else if (debug_level > 1) {
189          printf("Empty: %s\n", ff->fname);
190       }
191       count_files(ff);
192       break; 
193    case FT_REG:
194       if (debug_level == 1) {
195          printf("%s\n", ff->fname);
196       } else if (debug_level > 1) {
197          printf("Reg: %s\n", ff->fname);
198       }
199       count_files(ff);
200       break;
201    case FT_LNK:
202       if (debug_level == 1) {
203          printf("%s\n", ff->fname);
204       } else if (debug_level > 1) {
205          printf("Lnk: %s -> %s\n", ff->fname, ff->link);
206       }
207       count_files(ff);
208       break;
209    case FT_DIRBEGIN:
210       return 1;
211    case FT_DIREND:
212       if (debug_level == 1) {
213          printf("%s\n", ff->fname);
214       } else if (debug_level > 1) {
215          printf("Dir: %s\n", ff->fname);
216       }
217       count_files(ff);
218       break;
219    case FT_SPEC:
220       if (debug_level == 1) {
221          printf("%s\n", ff->fname);
222       } else if (debug_level > 1) {
223          printf("Spec: %s\n", ff->fname);
224       }
225       count_files(ff);
226       break;
227    case FT_NOACCESS:
228       printf(_("Err: Could not access %s: %s\n"), ff->fname, strerror(errno));
229       break;
230    case FT_NOFOLLOW:
231       printf(_("Err: Could not follow ff->link %s: %s\n"), ff->fname, strerror(errno));
232       break;
233    case FT_NOSTAT:
234       printf(_("Err: Could not stat %s: %s\n"), ff->fname, strerror(errno));
235       break;
236    case FT_NOCHG:
237       printf(_("Skip: File not saved. No change. %s\n"), ff->fname);
238       break;
239    case FT_ISARCH:
240       printf(_("Err: Attempt to backup archive. Not saved. %s\n"), ff->fname);
241       break;
242    case FT_NORECURSE:
243       printf(_("Recursion turned off. Directory not entered. %s\n"), ff->fname);
244       break;
245    case FT_NOFSCHG:
246       printf(_("Skip: File system change prohibited. Directory not entered. %s\n"), ff->fname);
247       break;
248    case FT_NOOPEN:
249       printf(_("Err: Could not open directory %s: %s\n"), ff->fname, strerror(errno));
250       break;
251    default:
252       printf(_("Err: Unknown file ff->type %d: %s\n"), ff->type, ff->fname);
253       break;
254    }
255    if (attrs) {
256       char attr[200];
257       encode_attribsEx(NULL, attr, ff);
258       if (*attr != 0) {
259          printf("AttrEx=%s\n", attr);
260       }
261 //    set_attribsEx(NULL, ff->fname, NULL, NULL, ff->type, attr);
262    }
263    return 1;
264 }
265
266 static void count_files(FF_PKT *ar) 
267 {
268    int fnl, pnl;
269    char *l, *p;
270    char file[MAXSTRING];
271    char spath[MAXSTRING];
272
273    num_files++;
274
275    /* Find path without the filename.  
276     * I.e. everything after the last / is a "filename".
277     * OK, maybe it is a directory name, but we treat it like
278     * a filename. If we don't find a / then the whole name
279     * must be a path name (e.g. c:).
280     */
281    for (p=l=ar->fname; *p; p++) {
282       if (*p == '/') {
283          l = p;                       /* set pos of last slash */
284       }
285    }
286    if (*l == '/') {                   /* did we find a slash? */
287       l++;                            /* yes, point to filename */
288    } else {                           /* no, whole thing must be path name */
289       l = p;
290    }
291
292    /* If filename doesn't exist (i.e. root directory), we
293     * simply create a blank name consisting of a single 
294     * space. This makes handling zero length filenames
295     * easier.
296     */
297    fnl = p - l;
298    if (fnl > max_file_len) {
299       max_file_len = fnl;
300    }
301    if (fnl > 255) {
302       printf(_("===== Filename truncated to 255 chars: %s\n"), l);
303       fnl = 255;
304       trunc_fname++;
305    }
306    if (fnl > 0) {
307       strncpy(file, l, fnl);          /* copy filename */
308       file[fnl] = 0;
309    } else {
310       file[0] = ' ';                  /* blank filename */
311       file[1] = 0;
312    }
313
314    pnl = l - ar->fname;    
315    if (pnl > max_path_len) {
316       max_path_len = pnl;
317    }
318    if (pnl > 255) {
319       printf(_("========== Path name truncated to 255 chars: %s\n"), ar->fname);
320       pnl = 255;
321       trunc_path++;
322    }
323    strncpy(spath, ar->fname, pnl);
324    spath[pnl] = 0;
325    if (pnl == 0) {
326       spath[0] = ' ';
327       spath[1] = 0;
328       printf(_("========== Path length is zero. File=%s\n"), ar->fname);
329    }
330    if (debug_level >= 10) {
331       printf("Path: %s\n", spath);
332       printf("File: %s\n", file);
333    }
334
335 }