]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/findlib/protos.h
Make mark run *MUCH* faster in restore tree + update copyright on changed files
[bacula/bacula] / bacula / src / findlib / protos.h
1 /*
2  * Prototypes for finlib directory of Bacula
3  *
4  *   Version $Id$
5  */
6 /*
7    Copyright (C) 2000-2003 Kern Sibbald and John Walker
8
9    This program is free software; you can redistribute it and/or
10    modify it under the terms of the GNU General Public License as
11    published by the Free Software Foundation; either version 2 of
12    the License, or (at your option) any later version.
13
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17    General Public License for more details.
18
19    You should have received a copy of the GNU General Public
20    License along with this program; if not, write to the Free
21    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
22    MA 02111-1307, USA.
23
24  */
25
26 /* from attribs.c */
27 void    encode_stat       (char *buf, FF_PKT *ff_pkt, int data_stream);
28 int     decode_stat       (char *buf, struct stat *statp, int32_t *LinkFI);
29 int32_t decode_LinkFI     (char *buf);
30 int     encode_attribsEx  (JCR *jcr, char *attribsEx, FF_PKT *ff_pkt);
31 int     set_attributes    (JCR *jcr, ATTR *attr, BFILE *ofd);
32 int     select_data_stream(FF_PKT *ff_pkt);
33
34 /* from create_file.c */
35 int    create_file       (JCR *jcr, ATTR *attr, BFILE *ofd, int replace);
36
37 /* From find.c */
38 FF_PKT *init_find_files();
39 void  set_find_options(FF_PKT *ff, int incremental, time_t mtime, int mtime_only);
40 int   find_files(JCR *jcr, FF_PKT *ff, int sub(FF_PKT *ff_pkt, void *hpkt), void *pkt);
41 int   term_find_files(FF_PKT *ff);
42
43 /* From match.c */
44 void  init_include_exclude_files(FF_PKT *ff);
45 void  term_include_exclude_files(FF_PKT *ff);
46 void  add_fname_to_include_list(FF_PKT *ff, int prefixed, char *fname);
47 void  add_fname_to_exclude_list(FF_PKT *ff, char *fname);
48 int   file_is_excluded(FF_PKT *ff, char *file);
49 int   file_is_included(FF_PKT *ff, char *file);
50 struct s_included_file *get_next_included_file(FF_PKT *ff, 
51                            struct s_included_file *inc);
52
53 /* From find_one.c */
54 int   find_one_file(JCR *jcr, FF_PKT *ff, int handle_file(FF_PKT *ff_pkt, void *hpkt), 
55                void *pkt, char *p, dev_t parent_device, int top_level);
56 int   term_find_one(FF_PKT *ff);
57
58
59 /* From get_priv.c */
60 int enable_backup_privileges(JCR *jcr, int ignore_errors);
61
62
63 /* from makepath.c */
64 int make_path(JCR *jcr, const char *argpath, int mode,
65            int parent_mode, uid_t owner, gid_t group,
66            int preserve_existing, char *verbose_fmt_string);
67
68 /* from bfile.c -- see bfile.h */