Statistics
| Branch: | Tag: | Revision:

root / htools / mon-collector.hs @ 55abd2c7

History | View | Annotate | Download (1.9 kB)

1
{-| Main binary for all stand-alone data collectors
2

    
3
-}
4

    
5
{-
6

    
7
Copyright (C) 2012 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.Environment
30
import System.IO
31

    
32
import Ganeti.Common
33
import Ganeti.Utils
34
import Ganeti.DataCollectors.CLI (genericOptions, defaultOptions)
35
import Ganeti.DataCollectors.Program (personalities)
36

    
37
-- | Display usage and exit.
38
usage :: String -> IO ()
39
usage name = do
40
  hPutStrLn stderr $ "Unrecognised personality '" ++ name ++ "'."
41
  hPutStrLn stderr "This program must be executed specifying one of the \
42
                    \following names as the first parameter:"
43
  mapM_ (hPutStrLn stderr . ("  - " ++) . fst) personalities
44
  exitErr "Please specify the desired role."
45

    
46
main :: IO ()
47
main = do
48
  cmd_args <- getArgs
49
  let binary =
50
        if null cmd_args
51
          then ""
52
          else head cmd_args
53
      name = map toLower binary
54
      boolnames = map (\(x, y) -> (x == name, Just y)) personalities
55
  case select Nothing boolnames of
56
    Nothing -> usage name
57
    Just (fn, options, arguments) -> do
58
         let actual_args = tail cmd_args
59
         real_options <- options
60
         (opts, args) <- parseOpts defaultOptions actual_args name
61
                           (real_options ++ genericOptions) arguments
62
         fn opts args