Version 0.1.0.
[guestfs-browser.git] / utils.ml
1 (* Guestfs Browser.
2  * Copyright (C) 2010 Red Hat Inc.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
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 along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  *)
18
19 open Printf
20
21 let (+^) = Int64.add
22 let (-^) = Int64.sub
23 let ( *^ ) = Int64.mul
24 let (/^) = Int64.div
25
26 type ('a, 'b) either = Left of 'a | Right of 'b
27
28 let verbose = ref false
29 let set_verbose_flag () = verbose := true
30 let verbose () = !verbose
31
32 let debug fs =
33   let f str =
34     if verbose () then (
35       prerr_string Config.package;
36       prerr_string ": tid ";
37       prerr_string (string_of_int (Thread.id (Thread.self ())));
38       prerr_string ": ";
39       prerr_string str;
40       prerr_newline ()
41     )
42   in
43   ksprintf f fs
44
45 let failwith fs =
46   let f str =
47     if verbose () then (prerr_string str; prerr_newline ());
48     raise (Failure str)
49   in
50   ksprintf f fs
51
52 let trace = ref false
53 let set_trace_flag () = trace := true
54 let trace () = !trace
55
56 let connect_uri = ref None
57 let set_connect_uri conn = connect_uri := conn
58 let connect_uri () = !connect_uri
59
60 let utf8_rarrow = "\xe2\x86\x92"
61
62 let human_size_1k i =
63   if i < 1024L then
64     sprintf "%LdK" i
65   else if i < 1024L *^ 1024L then
66     sprintf "%.1fM" (Int64.to_float i /. 1024.)
67   else
68     sprintf "%.1fG" (Int64.to_float i /. 1024. /. 1024.)
69
70 let unique = let i = ref 0 in fun () -> incr i; !i
71
72 let mklabel text =
73   (GMisc.label ~text () :> GObj.widget)
74
75 let libguestfs_version_string () =
76   let g = new Guestfs.guestfs () in
77   let v = g#version () in
78   let s =
79     sprintf "%Ld.%Ld.%Ld%s"
80       v.Guestfs.major v.Guestfs.minor v.Guestfs.release v.Guestfs.extra in
81   g#close ();
82   s
83
84 let libvirt_version_string () =
85   let v = fst (Libvirt.get_version ()) in
86   sprintf "%d.%d.%d" (v / 1_000_000) ((v / 1_000) mod 1_000) (v mod 1_000)
87
88 let (//) = Filename.concat