Statistics
| Branch: | Tag: | Revision:

root / htools / Ganeti / HTools / Program / Hail.hs @ ad0e078e

History | View | Annotate | Download (2.2 kB)

1
{-| IAllocator plugin for Ganeti.
2

    
3
-}
4

    
5
{-
6

    
7
Copyright (C) 2009, 2010, 2011, 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 Ganeti.HTools.Program.Hail (main, options) where
27

    
28
import Control.Monad
29
import Data.Maybe (fromMaybe)
30
import System.IO
31

    
32
import qualified Ganeti.HTools.Cluster as Cluster
33

    
34
import Ganeti.HTools.CLI
35
import Ganeti.HTools.IAlloc
36
import Ganeti.HTools.Loader (Request(..), ClusterData(..))
37
import Ganeti.HTools.ExtLoader (maybeSaveData)
38

    
39
-- | Options list and functions.
40
options :: [OptType]
41
options =
42
  [ oPrintNodes
43
  , oSaveCluster
44
  , oDataFile
45
  , oNodeSim
46
  , oVerbose
47
  , oShowVer
48
  , oShowHelp
49
  ]
50

    
51
-- | Main function.
52
main :: Options -> [String] -> IO ()
53
main opts args = do
54
  let shownodes = optShowNodes opts
55
      verbose = optVerbose opts
56
      savecluster = optSaveCluster opts
57

    
58
  request <- readRequest opts args
59

    
60
  let Request rq cdata = request
61

    
62
  when (verbose > 1) $
63
       hPutStrLn stderr $ "Received request: " ++ show rq
64

    
65
  when (verbose > 2) $
66
       hPutStrLn stderr $ "Received cluster data: " ++ show cdata
67

    
68
  maybePrintNodes shownodes "Initial cluster"
69
       (Cluster.printNodes (cdNodes cdata))
70

    
71
  maybeSaveData savecluster "pre-ialloc" "before iallocator run" cdata
72

    
73
  let (maybe_ni, resp) = runIAllocator request
74
      (fin_nl, fin_il) = fromMaybe (cdNodes cdata, cdInstances cdata) maybe_ni
75
  putStrLn resp
76

    
77
  maybePrintNodes shownodes "Final cluster" (Cluster.printNodes fin_nl)
78

    
79
  maybeSaveData savecluster "post-ialloc" "after iallocator run"
80
       (cdata { cdNodes = fin_nl, cdInstances = fin_il})