Workaround FUSE missing the generally broken Linux kernel charset support.
[captive.git] / src / client / fuse / op_statfs.c
1 /* $Id$
2  * Client fuse interface operation "statfs" for libcaptive
3  * Copyright (C) 2005 Jan Kratochvil <project-captive@jankratochvil.net>
4  * 
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; exactly version 2 of June 1991 is required
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19
20 #include "config.h"
21
22 #include <glib/gmessages.h>
23 #include <sys/statfs.h>
24 #include <fuse.h>
25 #include <libgnomevfs/gnome-vfs-result.h>
26 #include <errno.h>
27 #include <captive/client-vfs.h>
28
29 #include "op_statfs.h"  /* self */
30 #include "main.h"
31 #include "gnomevfsresult.h"
32
33
34 int op_statfs(const char *path,struct statfs *stbuf)
35 {
36 CaptiveVfsVolumeInfo volume_info;
37 GnomeVFSResult errvfsresult;
38
39         g_return_val_if_fail(path!=NULL,-EINVAL);
40         g_return_val_if_fail(stbuf!=NULL,-EINVAL);
41
42         if (GNOME_VFS_OK!=(errvfsresult=captive_vfs_volume_info_get(capfuse_captive_vfs_object,&volume_info)))
43                 return -gnomevfsresult_to_errno(errvfsresult);
44
45         /* <fuse.h>: The 'f_type' and 'f_fsid' fields are ignored */
46         stbuf->f_bsize  =volume_info.block_size;
47         /* Some rounding? Which way? */
48         stbuf->f_blocks =volume_info.bytes          /volume_info.block_size;
49         stbuf->f_bfree  =volume_info.bytes_free     /volume_info.block_size;
50         stbuf->f_bavail =volume_info.bytes_available/volume_info.block_size;
51         stbuf->f_files  =0;
52         stbuf->f_ffree  =0;
53         /* For NTFS: http://en.wikipedia.org/wiki/Comparison_of_file_systems */
54         stbuf->f_namelen=255;
55         return 0;
56 }