]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/findlib/protos.h
JobStatus updates
[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, struct stat *statp);
28 void      decode_stat            (char *buf, struct stat *statp);
29 int       encode_attribsEx       (void *jcr, char *attribsEx, FF_PKT *ff_pkt);
30 int set_attributes(void *jcr, char *fname, char *ofile, char *lname,
31                    int type, int stream, struct stat *statp, 
32                    char *attribsEx, int *ofd);
33
34 /* from create_file.c */
35 int create_file(void *jcr, char *fname, char *ofile, char *lname,
36                 int type, int stream, struct stat *statp, 
37                 char *attribsEx, int *ofd, int replace);
38
39 /* From find.c */
40 FF_PKT *init_find_files();
41 void set_find_options(FF_PKT *ff, int incremental, time_t mtime);
42 int find_files(JCR *jcr, FF_PKT *ff, int sub(FF_PKT *ff_pkt, void *hpkt), void *pkt);
43 int term_find_files(FF_PKT *ff);
44
45 /* From match.c */
46 void init_include_exclude_files(FF_PKT *ff);
47 void term_include_exclude_files(FF_PKT *ff);
48 void add_fname_to_include_list(FF_PKT *ff, int prefixed, char *fname);
49 void add_fname_to_exclude_list(FF_PKT *ff, char *fname);
50 int file_is_excluded(FF_PKT *ff, char *file);
51 int file_is_included(FF_PKT *ff, char *file);
52 struct s_included_file *get_next_included_file(FF_PKT *ff, 
53                            struct s_included_file *inc);
54
55 /* From find_one.c */
56 int find_one_file(JCR *jcr, FF_PKT *ff, int handle_file(FF_PKT *ff_pkt, void *hpkt), 
57                void *pkt, char *p, dev_t parent_device, int top_level);
58 int term_find_one(FF_PKT *ff);
59
60
61 /* from makepath.c */
62 int make_path(void *jcr, const char *argpath, int mode,
63            int parent_mode, uid_t owner, gid_t group,
64            int preserve_existing, char *verbose_fmt_string);