Imported Upstream version 3.1.0
[debian/amanda] / device-src / vfs-device.h
1 /*
2  * Copyright (c) 2005-2008 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
50     /* Properties */
51     guint64 volume_bytes;
52     guint64 volume_limit;
53 } VfsDevice;
54
55 /*
56  * Class definition
57  */
58 typedef struct {
59     DeviceClass __parent__;
60 } VfsDeviceClass;
61
62 /* Implementation functions */
63 void delete_vfs_files(VfsDevice * self);
64
65 #endif