Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (2.6 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, isJust)
30
import System.IO
31
import System.Exit
32

    
33
import qualified Ganeti.HTools.Cluster as Cluster
34

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

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

    
50
wrapReadRequest :: Options -> [String] -> IO Request
51
wrapReadRequest opts args = do
52
  when (null args) $ do
53
    hPutStrLn stderr "Error: this program needs an input file."
54
    exitWith $ ExitFailure 1
55

    
56
  r1 <- readRequest (head args)
57
  if isJust (optDataFile opts) ||  (not . null . optNodeSim) opts
58
    then do
59
      cdata <- loadExternalData opts
60
      let Request rqt _ = r1
61
      return $ Request rqt cdata
62
    else return r1
63

    
64

    
65
-- | Main function.
66
main :: Options -> [String] -> IO ()
67
main opts args = do
68
  let shownodes = optShowNodes opts
69
      verbose = optVerbose opts
70
      savecluster = optSaveCluster opts
71

    
72
  request <- wrapReadRequest opts args
73

    
74
  let Request rq cdata = request
75

    
76
  when (verbose > 1) .
77
       hPutStrLn stderr $ "Received request: " ++ show rq
78

    
79
  when (verbose > 2) .
80
       hPutStrLn stderr $ "Received cluster data: " ++ show cdata
81

    
82
  maybePrintNodes shownodes "Initial cluster"
83
       (Cluster.printNodes (cdNodes cdata))
84

    
85
  maybeSaveData savecluster "pre-ialloc" "before iallocator run" cdata
86

    
87
  let (maybe_ni, resp) = runIAllocator request
88
      (fin_nl, fin_il) = fromMaybe (cdNodes cdata, cdInstances cdata) maybe_ni
89
  putStrLn resp
90

    
91
  maybePrintNodes shownodes "Final cluster" (Cluster.printNodes fin_nl)
92

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