a2c2b482899e3ff2fa7c8ee490448782c03eaa12
[ganeti-local] / htools / htools.hs
1 {-| Main htools binary.
2
3 -}
4
5 {-
6
7 Copyright (C) 2011 Google Inc.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22 02110-1301, USA.
23
24 -}
25
26 module Main (main) where
27
28 import Data.Char (toLower)
29 import System
30 import System.IO
31
32 import Ganeti.HTools.Utils
33 import qualified Ganeti.HTools.Program.Hail as Hail
34 import qualified Ganeti.HTools.Program.Hbal as Hbal
35
36 -- | Supported binaries.
37 personalities :: [(String, IO ())]
38 personalities = [ ("hail", Hail.main)
39                 , ("hbal", Hbal.main)
40                 ]
41
42 -- | Display usage and exit.
43 usage :: String -> IO ()
44 usage name = do
45   hPutStrLn stderr $ "Unrecognised personality '" ++ name ++ "'."
46   hPutStrLn stderr "This program must be installed under one of the following\
47                    \ names:"
48   mapM_ (hPutStrLn stderr . ("  - " ++) . fst) personalities
49   hPutStrLn stderr "Please either rename/symlink the program or set\n\
50                    \the environment variable HTOOLS to the desired role."
51   exitWith $ ExitFailure 1
52
53 main :: IO ()
54 main = do
55   binary <- getEnv "HTOOLS" `catch` (\_ -> getProgName)
56   let name = map toLower binary
57       boolnames = map (\(x, y) -> (x == name, y)) personalities
58   select (usage name) boolnames