Build libvirt and examples on Windows (MinGW).
[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
25
26 (* Note: make sure we catch any exceptions and clean up the display.
27  *
28  * Note (2): make sure all exit paths call the GC so that we can check
29  * that all allocated resources are being counted properly (by running
30  * the program under --debug ...).
31  *)
32 let error =
33   let ((_, _, script_mode, _, _, _, _) as setup) = start_up () in
34
35   try
36     main_loop setup;
37     if not script_mode then endwin ();
38     false
39   with
40   | Libvirt.Virterror err ->
41       if not script_mode then endwin ();
42       prerr_endline (Libvirt.Virterror.to_string err);
43       true
44   | exn ->
45       if not script_mode then endwin ();
46       prerr_endline ("Error: " ^ Printexc.to_string exn);
47       true
48
49 let () =
50   Gc.compact (); (* See note above. *)
51
52   exit (if error then 1 else 0)