Replace failwith (sprintf...) with failwithf
[virt-top.git] / virt-top / virt_top_main.ml
1 (* 'top'-like tool for libvirt 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    Just contains the main function.
20 *)
21
22 open Curses
23
24 open Virt_top_gettext.Gettext
25 open Virt_top
26
27 (* Note: make sure we catch any exceptions and clean up the display.
28  *
29  * Note (2): make sure all exit paths call the GC so that we can check
30  * that all allocated resources are being counted properly (by running
31  * the program under --debug ...).
32  *)
33 let error =
34   let ((_, _, script_mode, _, _, _, _) as setup) = start_up () in
35
36   try
37     main_loop setup;
38     if not script_mode then endwin ();
39     false
40   with
41   | Libvirt.Virterror err ->
42       if not script_mode then endwin ();
43       prerr_endline (Libvirt.Virterror.to_string err);
44       true
45   | exn ->
46       if not script_mode then endwin ();
47       prerr_endline (s_ "Error" ^ ": " ^ Printexc.to_string exn);
48       true
49
50 let () =
51   Gc.compact (); (* See note above. *)
52
53   exit (if error then 1 else 0)