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