Imported Upstream version 3.2.0
[debian/amanda] / device-src / vfs-device.h
1 /*
2  * Copyright (c) 2005-2008, 2010 Zmanda Inc.  All Rights Reserved.
3  *
4  * This library is free software; you can redistribute it and/or modify it
5  * under the terms of the GNU Lesser General Public License version 2.1 as
6  * published by the Free Software Foundation.
7  *
8  * This library is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
10  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
11  * License for more details.
12  *
13  * You should have received a copy of the GNU Lesser General Public License
14  * along with this library; if not, write to the Free Software Foundation,
15  * Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA.
16  *
17  * Contact information: Zmanda Inc., 465 S Mathlida Ave, Suite 300
18  * Sunnyvale, CA 94086, USA, or: http://www.zmanda.com
19  */
20
21 #ifndef __VFS_DEVICE_H__
22 #define __VFS_DEVICE_H__
23
24 #include "device.h"
25
26 /*
27  * Type checking and casting macros
28  */
29 #define TYPE_VFS_DEVICE (vfs_device_get_type())
30 #define VFS_DEVICE(obj) G_TYPE_CHECK_INSTANCE_CAST((obj), vfs_device_get_type(), VfsDevice)
31 #define VFS_DEVICE_CONST(obj)   G_TYPE_CHECK_INSTANCE_CAST((obj), vfs_device_get_type(), VfsDevice const)
32 #define VFS_DEVICE_CLASS(klass) G_TYPE_CHECK_CLASS_CAST((klass), vfs_device_get_type(), VfsDeviceClass)
33 #define IS_VFS_DEVICE(obj)      G_TYPE_CHECK_INSTANCE_TYPE((obj), vfs_device_get_type ())
34
35 #define VFS_DEVICE_GET_CLASS(obj)       G_TYPE_INSTANCE_GET_CLASS((obj), vfs_device_get_type(), VfsDeviceClass)
36
37 GType   vfs_device_get_type     (void);
38
39 /*
40  * Main object structure
41  */
42 typedef struct {
43     Device __parent__;
44
45     /*< private >*/
46     char * dir_name;
47     char * file_name;
48     int open_file_fd;
49     gboolean leom;
50
51     /* Properties */
52     guint64 volume_bytes;
53     guint64 volume_limit;
54
55     /* should we monitor free space? (controlled by MONITOR_FREE_SPACE property) */
56     gboolean monitor_free_space;
57
58     /* how many bytes were free at last check */
59     guint64 checked_fs_free_bytes;
60
61     /* when was that check performed? */
62     time_t checked_fs_free_time;
63
64     /* and how many bytes have been written since the last check? */
65     guint64 checked_bytes_used;
66 } VfsDevice;
67
68 /*
69  * Class definition
70  */
71 typedef struct {
72     DeviceClass __parent__;
73 } VfsDeviceClass;
74
75 /* Implementation functions */
76 void delete_vfs_files(VfsDevice * self);
77
78 #endif