Statistics
| Branch: | Tag: | Revision:

root / Ganeti / HTools / Loader.hs @ 39f979b8

History | View | Annotate | Download (8.1 kB)

1
{-| Generic data loader
2

    
3
This module holds the common code for parsing the input data after it
4
has been loaded from external sources.
5

    
6
-}
7

    
8
{-
9

    
10
Copyright (C) 2009 Google Inc.
11

    
12
This program is free software; you can redistribute it and/or modify
13
it under the terms of the GNU General Public License as published by
14
the Free Software Foundation; either version 2 of the License, or
15
(at your option) any later version.
16

    
17
This program is distributed in the hope that it will be useful, but
18
WITHOUT ANY WARRANTY; without even the implied warranty of
19
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20
General Public License for more details.
21

    
22
You should have received a copy of the GNU General Public License
23
along with this program; if not, write to the Free Software
24
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
25
02110-1301, USA.
26

    
27
-}
28

    
29
module Ganeti.HTools.Loader
30
    ( mergeData
31
    , checkData
32
    , assignIndices
33
    , lookupNode
34
    , lookupInstance
35
    , stripSuffix
36
    , RqType(..)
37
    , Request(..)
38
    ) where
39

    
40
import Data.Function (on)
41
import Data.List
42
import Data.Maybe (fromJust)
43
import Text.Printf (printf)
44

    
45
import qualified Ganeti.HTools.Container as Container
46
import qualified Ganeti.HTools.Instance as Instance
47
import qualified Ganeti.HTools.Node as Node
48

    
49
import Ganeti.HTools.Types
50

    
51
-- * Constants
52

    
53
-- | The exclusion tag prefix
54
exTagsPrefix :: String
55
exTagsPrefix = "htools:iextags:"
56

    
57
-- * Types
58

    
59
{-| The iallocator request type.
60

    
61
This type denotes what request we got from Ganeti and also holds
62
request-specific fields.
63

    
64
-}
65
data RqType
66
    = Allocate Instance.Instance Int -- ^ A new instance allocation
67
    | Relocate Idx Int [Ndx]         -- ^ Move an instance to a new
68
                                     -- secondary node
69
    | Evacuate [Ndx]                 -- ^ Evacuate nodes
70
    deriving (Show)
71

    
72
-- | A complete request, as received from Ganeti.
73
data Request = Request RqType Node.List Instance.List [String] String
74
    deriving (Show)
75

    
76
-- * Functions
77

    
78
-- | Lookups a node into an assoc list.
79
lookupNode :: (Monad m) => [(String, Ndx)] -> String -> String -> m Ndx
80
lookupNode ktn inst node =
81
    case lookup node ktn of
82
      Nothing -> fail $ "Unknown node '" ++ node ++ "' for instance " ++ inst
83
      Just idx -> return idx
84

    
85
-- | Lookups an instance into an assoc list.
86
lookupInstance :: (Monad m) => [(String, Idx)] -> String -> m Idx
87
lookupInstance kti inst =
88
    case lookup inst kti of
89
      Nothing -> fail $ "Unknown instance '" ++ inst ++ "'"
90
      Just idx -> return idx
91

    
92
-- | Given a list of elements (and their names), assign indices to them.
93
assignIndices :: (Element a) =>
94
                 [(String, a)]
95
              -> (NameAssoc, [(Int, a)])
96
assignIndices =
97
    unzip . map (\ (idx, (k, v)) -> ((k, idx), (idx, setIdx v idx)))
98
          . zip [0..]
99

    
100
-- | Assoc element comparator
101
assocEqual :: (Eq a) => (a, b) -> (a, b) -> Bool
102
assocEqual = (==) `on` fst
103

    
104
-- | For each instance, add its index to its primary and secondary nodes.
105
fixNodes :: [(Ndx, Node.Node)]
106
         -> Instance.Instance
107
         -> [(Ndx, Node.Node)]
108
fixNodes accu inst =
109
    let
110
        pdx = Instance.pNode inst
111
        sdx = Instance.sNode inst
112
        pold = fromJust $ lookup pdx accu
113
        pnew = Node.setPri pold inst
114
        ac1 = deleteBy assocEqual (pdx, pold) accu
115
        ac2 = (pdx, pnew):ac1
116
    in
117
      if sdx /= Node.noSecondary
118
      then let sold = fromJust $ lookup sdx accu
119
               snew = Node.setSec sold inst
120
               ac3 = deleteBy assocEqual (sdx, sold) ac2
121
           in (sdx, snew):ac3
122
      else ac2
123

    
124
-- | Remove non-selected tags from the exclusion list
125
filterExTags :: [String] -> Instance.Instance -> Instance.Instance
126
filterExTags tl inst =
127
    let old_tags = Instance.tags inst
128
        new_tags = filter (\tag -> any (\extag -> isPrefixOf extag tag) tl)
129
                   old_tags
130
    in inst { Instance.tags = new_tags }
131

    
132
-- | Update the movable attribute
133
updateMovable :: [String] -> Instance.Instance -> Instance.Instance
134
updateMovable exinst inst =
135
    if Instance.sNode inst == Node.noSecondary ||
136
       Instance.name inst `elem` exinst
137
    then Instance.setMovable inst False
138
    else inst
139

    
140
-- | Compute the longest common suffix of a list of strings that
141
-- | starts with a dot.
142
longestDomain :: [String] -> String
143
longestDomain [] = ""
144
longestDomain (x:xs) =
145
      foldr (\ suffix accu -> if all (isSuffixOf suffix) xs
146
                              then suffix
147
                              else accu)
148
      "" $ filter (isPrefixOf ".") (tails x)
149

    
150
-- | Remove tail suffix from a string.
151
stripSuffix :: Int -> String -> String
152
stripSuffix sflen name = take (length name - sflen) name
153

    
154
-- | Extracts the exclusion tags from the cluster configuration
155
extractExTags :: [String] -> [String]
156
extractExTags =
157
    map (drop (length exTagsPrefix)) .
158
    filter (isPrefixOf exTagsPrefix)
159

    
160
-- | Initializer function that loads the data from a node and instance
161
-- list and massages it into the correct format.
162
mergeData :: [(String, DynUtil)]  -- ^ Instance utilisation data
163
          -> [String]             -- ^ Exclusion tags
164
          -> [String]             -- ^ Untouchable instances
165
          -> (Node.AssocList, Instance.AssocList, [String])
166
          -- ^ Data from backends
167
          -> Result (Node.List, Instance.List, [String], String)
168
mergeData um extags exinsts (nl, il, tags) =
169
  let il2 = Container.fromAssocList il
170
      il3 = foldl' (\im (name, n_util) ->
171
                        case Container.findByName im name of
172
                          Nothing -> im -- skipping unknown instance
173
                          Just inst ->
174
                              let new_i = inst { Instance.util = n_util }
175
                              in Container.add (Instance.idx inst) new_i im
176
                   ) il2 um
177
      allextags = extags ++ extractExTags tags
178
      il4 = Container.map (filterExTags allextags .
179
                           updateMovable exinsts) il3
180
      nl2 = foldl' fixNodes nl (Container.elems il4)
181
      nl3 = Container.fromAssocList
182
            (map (\ (k, v) -> (k, Node.buildPeers v il4)) nl2)
183
      node_names = map (Node.name . snd) nl
184
      inst_names = map (Instance.name . snd) il
185
      common_suffix = longestDomain (node_names ++ inst_names)
186
      csl = length common_suffix
187
      snl = Container.map (\n -> setName n (stripSuffix csl $ nameOf n)) nl3
188
      sil = Container.map (\i -> setName i (stripSuffix csl $ nameOf i)) il4
189
  in Ok (snl, sil, tags, common_suffix)
190

    
191
-- | Checks the cluster data for consistency.
192
checkData :: Node.List -> Instance.List
193
          -> ([String], Node.List)
194
checkData nl il =
195
    Container.mapAccum
196
        (\ msgs node ->
197
             let nname = Node.name node
198
                 nilst = map (flip Container.find il) (Node.pList node)
199
                 dilst = filter (not . Instance.running) nilst
200
                 adj_mem = sum . map Instance.mem $ dilst
201
                 delta_mem = truncate (Node.tMem node)
202
                             - Node.nMem node
203
                             - Node.fMem node
204
                             - nodeImem node il
205
                             + adj_mem
206
                 delta_dsk = truncate (Node.tDsk node)
207
                             - Node.fDsk node
208
                             - nodeIdsk node il
209
                 newn = Node.setFmem (Node.setXmem node delta_mem)
210
                        (Node.fMem node - adj_mem)
211
                 umsg1 = [printf "node %s is missing %d MB ram \
212
                                 \and %d GB disk"
213
                                 nname delta_mem (delta_dsk `div` 1024) |
214
                                 delta_mem > 512 || delta_dsk > 1024]::[String]
215
             in (msgs ++ umsg1, newn)
216
        ) [] nl
217

    
218
-- | Compute the amount of memory used by primary instances on a node.
219
nodeImem :: Node.Node -> Instance.List -> Int
220
nodeImem node il =
221
    let rfind = flip Container.find il
222
    in sum . map (Instance.mem . rfind)
223
           $ Node.pList node
224

    
225
-- | Compute the amount of disk used by instances on a node (either primary
226
-- or secondary).
227
nodeIdsk :: Node.Node -> Instance.List -> Int
228
nodeIdsk node il =
229
    let rfind = flip Container.find il
230
    in sum . map (Instance.dsk . rfind)
231
           $ Node.pList node ++ Node.sList node