]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/tools/testfind.c
fca5d95a27ff30d236e854c22125b2a8cbad5686
[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_DIR:
210       if (debug_level == 1) {
211          printf("%s\n", ff->fname);
212       } else if (debug_level > 1) {
213          printf("Dir: %s\n", ff->fname);
214       }
215       count_files(ff);
216       break;
217    case FT_SPEC:
218       if (debug_level == 1) {
219          printf("%s\n", ff->fname);
220       } else if (debug_level > 1) {
221          printf("Spec: %s\n", ff->fname);
222       }
223       count_files(ff);
224       break;
225    case FT_NOACCESS:
226       printf(_("Err: Could not access %s: %s\n"), ff->fname, strerror(errno));
227       break;
228    case FT_NOFOLLOW:
229       printf(_("Err: Could not follow ff->link %s: %s\n"), ff->fname, strerror(errno));
230       break;
231    case FT_NOSTAT:
232       printf(_("Err: Could not stat %s: %s\n"), ff->fname, strerror(errno));
233       break;
234    case FT_NOCHG:
235       printf(_("Skip: File not saved. No change. %s\n"), ff->fname);
236       break;
237    case FT_ISARCH:
238       printf(_("Err: Attempt to backup archive. Not saved. %s\n"), ff->fname);
239       break;
240    case FT_NORECURSE:
241       printf(_("Recursion turned off. Directory not entered. %s\n"), ff->fname);
242       break;
243    case FT_NOFSCHG:
244       printf(_("Skip: File system change prohibited. Directory not entered. %s\n"), ff->fname);
245       break;
246    case FT_NOOPEN:
247       printf(_("Err: Could not open directory %s: %s\n"), ff->fname, strerror(errno));
248       break;
249    default:
250       printf(_("Err: Unknown file ff->type %d: %s\n"), ff->type, ff->fname);
251       break;
252    }
253    if (attrs) {
254       char attr[200];
255       encode_attribsEx(NULL, attr, ff);
256       if (*attr != 0) {
257          printf("AttrEx=%s\n", attr);
258       }
259 //    set_attribsEx(NULL, ff->fname, NULL, NULL, ff->type, attr);
260    }
261    return 1;
262 }
263
264 static void count_files(FF_PKT *ar) 
265 {
266    int fnl, pnl;
267    char *l, *p;
268    char file[MAXSTRING];
269    char spath[MAXSTRING];
270
271    num_files++;
272
273    /* Find path without the filename.  
274     * I.e. everything after the last / is a "filename".
275     * OK, maybe it is a directory name, but we treat it like
276     * a filename. If we don't find a / then the whole name
277     * must be a path name (e.g. c:).
278     */
279    for (p=l=ar->fname; *p; p++) {
280       if (*p == '/') {
281          l = p;                       /* set pos of last slash */
282       }
283    }
284    if (*l == '/') {                   /* did we find a slash? */
285       l++;                            /* yes, point to filename */
286    } else {                           /* no, whole thing must be path name */
287       l = p;
288    }
289
290    /* If filename doesn't exist (i.e. root directory), we
291     * simply create a blank name consisting of a single 
292     * space. This makes handling zero length filenames
293     * easier.
294     */
295    fnl = p - l;
296    if (fnl > max_file_len) {
297       max_file_len = fnl;
298    }
299    if (fnl > 255) {
300       printf(_("===== Filename truncated to 255 chars: %s\n"), l);
301       fnl = 255;
302       trunc_fname++;
303    }
304    if (fnl > 0) {
305       strncpy(file, l, fnl);          /* copy filename */
306       file[fnl] = 0;
307    } else {
308       file[0] = ' ';                  /* blank filename */
309       file[1] = 0;
310    }
311
312    pnl = l - ar->fname;    
313    if (pnl > max_path_len) {
314       max_path_len = pnl;
315    }
316    if (pnl > 255) {
317       printf(_("========== Path name truncated to 255 chars: %s\n"), ar->fname);
318       pnl = 255;
319       trunc_path++;
320    }
321    strncpy(spath, ar->fname, pnl);
322    spath[pnl] = 0;
323    if (pnl == 0) {
324       spath[0] = ' ';
325       spath[1] = 0;
326       printf(_("========== Path length is zero. File=%s\n"), ar->fname);
327    }
328    if (debug_level >= 10) {
329       printf("Path: %s\n", spath);
330       printf("File: %s\n", file);
331    }
332
333 }