1fbeac487bf7059b36d12697ff234a54e346c630
[virt-df.git] / lib / diskimage_fat.ml
1 (* 'df' command for virtual domains.
2    (C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
3    http://libvirt.org/
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; either version 2 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19    Support for FAT32.
20 *)
21
22 open Unix
23 open Printf
24
25 open Diskimage_impl
26
27 (* Private data functions. *)
28 let attach_private_data, get_private_data =
29   private_data_functions (fun {fs_cb = {fs_cb_uq = u}} -> u)
30
31 let id = "fat"
32
33 let rec probe dev =
34   raise Not_found                       (* XXX *)
35
36 and offset_is_free _ _ = false
37
38 and callbacks =
39   let i = ref 0 in
40   fun () -> {
41     fs_cb_uq = (incr i; !i);
42     fs_cb_name = id;
43     fs_cb_printable_name = "DOS/Windows";
44     fs_cb_offset_is_free = offset_is_free;
45   }
46
47 (* Register the plugin. *)
48 let () = register_plugin ~filesystem:probe id