]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/findlib/bfile.h
Start FileSet filtering
[bacula/bacula] / bacula / src / findlib / bfile.h
1 /*
2  *  Bacula low level File I/O routines.  This routine simulates
3  *    open(), read(), write(), and close(), but using native routines.
4  *    I.e. on Windows, we use Windows APIs.
5  *
6  *     Kern Sibbald May MMIII
7  */
8 /*
9    Copyright (C) 2000-2004 Kern Sibbald and John Walker
10
11    This program is free software; you can redistribute it and/or
12    modify it under the terms of the GNU General Public License as
13    published by the Free Software Foundation; either version 2 of
14    the License, or (at your option) any later version.
15
16    This program is distributed in the hope that it will be useful,
17    but WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19    General Public License for more details.
20
21    You should have received a copy of the GNU General Public
22    License along with this program; if not, write to the Free
23    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
24    MA 02111-1307, USA.
25
26  */
27
28 #ifndef __BFILE_H
29 #define __BFILE_H
30
31 #if defined(HAVE_CYGWIN) || defined(HAVE_WIN32)
32
33 #include <windows.h>
34 #include "winapi.h"
35
36 enum {
37    BF_CLOSED,
38    BF_READ,                           /* BackupRead */
39    BF_WRITE                           /* BackupWrite */
40 };
41
42 /* In bfile.c */
43
44 /* Basic low level I/O file packet */
45 struct BFILE {
46    int use_backup_api;                /* set if using BackupRead/Write */
47    int mode;                          /* set if file is open */
48    HANDLE fh;                         /* Win32 file handle */
49    int fid;                           /* fd if doing Unix style */
50    LPVOID lpContext;                  /* BackupRead/Write context */
51    POOLMEM *errmsg;                   /* error message buffer */
52    DWORD rw_bytes;                    /* Bytes read or written */
53    DWORD lerror;                      /* Last error code */
54 };      
55
56 HANDLE bget_handle(BFILE *bfd);
57
58 #else   /* Linux/Unix systems */
59
60 /* Basic low level I/O file packet */
61 struct BFILE {
62    int fid;                           /* file id on Unix */
63    int berrno;
64 };      
65
66 #endif
67
68 void    binit(BFILE *bfd);
69 int     is_bopen(BFILE *bfd);
70 int     set_win32_backup(BFILE *bfd);
71 int     set_portable_backup(BFILE *bfd);
72 int     have_win32_api();
73 int     is_portable_backup(BFILE *bfd);
74 int     is_stream_supported(int stream);
75 int     is_win32_stream(int stream);
76 char   *berror(BFILE *bfd);
77 int     bopen(BFILE *bfd, const char *fname, int flags, mode_t mode);
78 int     bclose(BFILE *bfd);
79 ssize_t bread(BFILE *bfd, void *buf, size_t count);
80 ssize_t bwrite(BFILE *bfd, void *buf, size_t count);
81 off_t   blseek(BFILE *bfd, off_t offset, int whence);
82 const char   *stream_to_ascii(int stream);
83
84 #endif /* __BFILE_H */