]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/filed/estimate.c
ebl move Errors count up to be more easy to parse with Bweb
[bacula/bacula] / bacula / src / filed / estimate.c
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2001-2007 Free Software Foundation Europe e.V.
5
6    The main author of Bacula is Kern Sibbald, with contributions from
7    many others, a complete list can be found in the file AUTHORS.
8    This program is Free Software; you can redistribute it and/or
9    modify it under the terms of version two of the GNU General Public
10    License as published by the Free Software Foundation and included
11    in the file LICENSE.
12
13    This program is distributed in the hope that it will be useful, but
14    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., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23    Bacula® is a registered trademark of John Walker.
24    The licensor of Bacula is the Free Software Foundation Europe
25    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
26    Switzerland, email:ftf@fsfeurope.org.
27 */
28 /*
29  *  Bacula File Daemon estimate.c
30  *   Make and estimate of the number of files and size to be saved.
31  *
32  *    Kern Sibbald, September MMI
33  *
34  *   Version $Id$
35  *
36  */
37
38 #include "bacula.h"
39 #include "filed.h"
40
41 static int tally_file(FF_PKT *ff_pkt, void *pkt, bool);
42
43 /*
44  * Find all the requested files and count them.
45  */
46 int make_estimate(JCR *jcr)
47 {
48    int stat;
49
50    set_jcr_job_status(jcr, JS_Running);
51
52    set_find_options((FF_PKT *)jcr->ff, jcr->incremental, jcr->mtime);
53    stat = find_files(jcr, (FF_PKT *)jcr->ff, tally_file, (void *)jcr);
54
55    return stat;
56 }
57
58 /*
59  * Called here by find() for each file included.
60  *
61  */
62 static int tally_file(FF_PKT *ff_pkt, void *ijcr, bool top_level) 
63 {
64    JCR *jcr = (JCR *)ijcr;
65    ATTR attr;
66
67    if (job_canceled(jcr)) {
68       return 0;
69    }
70    switch (ff_pkt->type) {
71    case FT_LNKSAVED:                  /* Hard linked, file already saved */
72    case FT_REGE:
73    case FT_REG:
74    case FT_LNK:
75    case FT_NORECURSE:
76    case FT_NOFSCHG:
77    case FT_INVALIDFS:
78    case FT_INVALIDDT:
79    case FT_REPARSE:
80    case FT_DIREND:
81    case FT_SPEC:
82    case FT_RAW:
83    case FT_FIFO:
84       break;
85    case FT_DIRBEGIN:
86    case FT_NOACCESS:
87    case FT_NOFOLLOW:
88    case FT_NOSTAT:
89    case FT_DIRNOCHG:
90    case FT_NOCHG:
91    case FT_ISARCH:
92    case FT_NOOPEN:
93    default:
94       return 1;
95    }
96
97    if (ff_pkt->type != FT_LNKSAVED && S_ISREG(ff_pkt->statp.st_mode)) {
98       if (ff_pkt->statp.st_size > 0) {
99          jcr->JobBytes += ff_pkt->statp.st_size;
100       }
101 #ifdef HAVE_DARWIN_OS
102       if (ff_pkt->flags & FO_HFSPLUS) {
103          if (ff_pkt->hfsinfo.rsrclength > 0) {
104             jcr->JobBytes += ff_pkt->hfsinfo.rsrclength;
105          }
106          jcr->JobBytes += 32;    /* Finder info */
107       }
108 #endif
109    }
110    jcr->num_files_examined++;
111    jcr->JobFiles++;                  /* increment number of files seen */
112    if (jcr->listing) {
113       memcpy(&attr.statp, &ff_pkt->statp, sizeof(struct stat));
114       attr.type = ff_pkt->type;
115       attr.ofname = (POOLMEM *)ff_pkt->fname;
116       attr.olname = (POOLMEM *)ff_pkt->link;
117       print_ls_output(jcr, &attr);
118    }
119    return 1;
120 }