Statistics
| Branch: | Tag: | Revision:

root / htools / Ganeti / HTools / Text.hs @ e8fa4ff6

History | View | Annotate | Download (12.1 kB)

1
{-| Parsing data from text-files.
2

    
3
This module holds the code for loading the cluster state from text
4
files, as produced by @gnt-node@ and @gnt-instance@ @list@ command.
5

    
6
-}
7

    
8
{-
9

    
10
Copyright (C) 2009, 2010, 2011, 2012 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.Text
30
  ( loadData
31
  , parseData
32
  , loadInst
33
  , loadNode
34
  , loadISpec
35
  , loadIPolicy
36
  , serializeInstances
37
  , serializeNode
38
  , serializeNodes
39
  , serializeGroup
40
  , serializeISpec
41
  , serializeIPolicy
42
  , serializeCluster
43
  ) where
44

    
45
import Control.Monad
46
import Data.List
47

    
48
import Text.Printf (printf)
49

    
50
import Ganeti.HTools.Utils
51
import Ganeti.HTools.Loader
52
import Ganeti.HTools.Types
53
import qualified Ganeti.HTools.Container as Container
54
import qualified Ganeti.HTools.Group as Group
55
import qualified Ganeti.HTools.Node as Node
56
import qualified Ganeti.HTools.Instance as Instance
57

    
58
-- * Helper functions
59

    
60
-- | Simple wrapper over sepSplit
61
commaSplit :: String -> [String]
62
commaSplit = sepSplit ','
63

    
64
-- * Serialisation functions
65

    
66
-- | Serialize a single group.
67
serializeGroup :: Group.Group -> String
68
serializeGroup grp =
69
  printf "%s|%s|%s" (Group.name grp) (Group.uuid grp)
70
           (allocPolicyToRaw (Group.allocPolicy grp))
71

    
72
-- | Generate group file data from a group list.
73
serializeGroups :: Group.List -> String
74
serializeGroups = unlines . map serializeGroup . Container.elems
75

    
76
-- | Serialize a single node.
77
serializeNode :: Group.List -- ^ The list of groups (needed for group uuid)
78
              -> Node.Node  -- ^ The node to be serialised
79
              -> String
80
serializeNode gl node =
81
  printf "%s|%.0f|%d|%d|%.0f|%d|%.0f|%c|%s" (Node.name node)
82
           (Node.tMem node) (Node.nMem node) (Node.fMem node)
83
           (Node.tDsk node) (Node.fDsk node) (Node.tCpu node)
84
           (if Node.offline node then 'Y' else 'N')
85
           (Group.uuid grp)
86
    where grp = Container.find (Node.group node) gl
87

    
88
-- | Generate node file data from node objects.
89
serializeNodes :: Group.List -> Node.List -> String
90
serializeNodes gl = unlines . map (serializeNode gl) . Container.elems
91

    
92
-- | Serialize a single instance.
93
serializeInstance :: Node.List         -- ^ The node list (needed for
94
                                       -- node names)
95
                  -> Instance.Instance -- ^ The instance to be serialised
96
                  -> String
97
serializeInstance nl inst =
98
  let iname = Instance.name inst
99
      pnode = Container.nameOf nl (Instance.pNode inst)
100
      sidx = Instance.sNode inst
101
      snode = (if sidx == Node.noSecondary
102
                 then ""
103
                 else Container.nameOf nl sidx)
104
  in printf "%s|%d|%d|%d|%s|%s|%s|%s|%s|%s"
105
       iname (Instance.mem inst) (Instance.dsk inst)
106
       (Instance.vcpus inst) (instanceStatusToRaw (Instance.runSt inst))
107
       (if Instance.autoBalance inst then "Y" else "N")
108
       pnode snode (diskTemplateToRaw (Instance.diskTemplate inst))
109
       (intercalate "," (Instance.tags inst))
110

    
111
-- | Generate instance file data from instance objects.
112
serializeInstances :: Node.List -> Instance.List -> String
113
serializeInstances nl =
114
  unlines . map (serializeInstance nl) . Container.elems
115

    
116
-- | Generate a spec data from a given ISpec object.
117
serializeISpec :: ISpec -> String
118
serializeISpec ispec =
119
  -- this needs to be kept in sync with the object definition
120
  let ISpec mem_s cpu_c disk_s disk_c nic_c = ispec
121
      strings = [show mem_s, show cpu_c, show disk_s, show disk_c, show nic_c]
122
  in intercalate "," strings
123

    
124
-- | Generate disk template data.
125
serializeDiskTemplates :: [DiskTemplate] -> String
126
serializeDiskTemplates = intercalate "," . map diskTemplateToRaw
127

    
128
-- | Generate policy data from a given policy object.
129
serializeIPolicy :: String -> IPolicy -> String
130
serializeIPolicy owner ipol =
131
  let IPolicy stdspec minspec maxspec dts vcpu_ratio = ipol
132
      strings = [ owner
133
                , serializeISpec stdspec
134
                , serializeISpec minspec
135
                , serializeISpec maxspec
136
                , serializeDiskTemplates dts
137
                , show vcpu_ratio
138
                ]
139
  in intercalate "|" strings
140

    
141
-- | Generates the entire ipolicy section from the cluster and group
142
-- objects.
143
serializeAllIPolicies :: IPolicy -> Group.List -> String
144
serializeAllIPolicies cpol gl =
145
  let groups = Container.elems gl
146
      allpolicies = [("", cpol)] ++
147
                    map (\g -> (Group.name g, Group.iPolicy g)) groups
148
      strings = map (uncurry serializeIPolicy) allpolicies
149
  in unlines strings
150

    
151
-- | Generate complete cluster data from node and instance lists.
152
serializeCluster :: ClusterData -> String
153
serializeCluster (ClusterData gl nl il ctags cpol) =
154
  let gdata = serializeGroups gl
155
      ndata = serializeNodes gl nl
156
      idata = serializeInstances nl il
157
      pdata = serializeAllIPolicies cpol gl
158
  -- note: not using 'unlines' as that adds too many newlines
159
  in intercalate "\n" [gdata, ndata, idata, unlines ctags, pdata]
160

    
161
-- * Parsing functions
162

    
163
-- | Load a group from a field list.
164
loadGroup :: (Monad m) => [String]
165
          -> m (String, Group.Group) -- ^ The result, a tuple of group
166
                                     -- UUID and group object
167
loadGroup [name, gid, apol] = do
168
  xapol <- allocPolicyFromRaw apol
169
  return (gid, Group.create name gid xapol defIPolicy)
170

    
171
loadGroup s = fail $ "Invalid/incomplete group data: '" ++ show s ++ "'"
172

    
173
-- | Load a node from a field list.
174
loadNode :: (Monad m) =>
175
            NameAssoc             -- ^ Association list with current groups
176
         -> [String]              -- ^ Input data as a list of fields
177
         -> m (String, Node.Node) -- ^ The result, a tuple o node name
178
                                  -- and node object
179
loadNode ktg [name, tm, nm, fm, td, fd, tc, fo, gu] = do
180
  gdx <- lookupGroup ktg name gu
181
  new_node <-
182
      if any (== "?") [tm,nm,fm,td,fd,tc] || fo == "Y" then
183
          return $ Node.create name 0 0 0 0 0 0 True gdx
184
      else do
185
        vtm <- tryRead name tm
186
        vnm <- tryRead name nm
187
        vfm <- tryRead name fm
188
        vtd <- tryRead name td
189
        vfd <- tryRead name fd
190
        vtc <- tryRead name tc
191
        return $ Node.create name vtm vnm vfm vtd vfd vtc False gdx
192
  return (name, new_node)
193
loadNode _ s = fail $ "Invalid/incomplete node data: '" ++ show s ++ "'"
194

    
195
-- | Load an instance from a field list.
196
loadInst :: NameAssoc -- ^ Association list with the current nodes
197
         -> [String]  -- ^ Input data as a list of fields
198
         -> Result (String, Instance.Instance) -- ^ A tuple of
199
                                               -- instance name and
200
                                               -- the instance object
201
loadInst ktn [ name, mem, dsk, vcpus, status, auto_bal, pnode, snode
202
             , dt, tags ] = do
203
  pidx <- lookupNode ktn name pnode
204
  sidx <- if null snode
205
            then return Node.noSecondary
206
            else lookupNode ktn name snode
207
  vmem <- tryRead name mem
208
  vdsk <- tryRead name dsk
209
  vvcpus <- tryRead name vcpus
210
  vstatus <- instanceStatusFromRaw status
211
  auto_balance <- case auto_bal of
212
                    "Y" -> return True
213
                    "N" -> return False
214
                    _ -> fail $ "Invalid auto_balance value '" ++ auto_bal ++
215
                         "' for instance " ++ name
216
  disk_template <- annotateResult ("Instance " ++ name)
217
                   (diskTemplateFromRaw dt)
218
  when (sidx == pidx) $ fail $ "Instance " ++ name ++
219
           " has same primary and secondary node - " ++ pnode
220
  let vtags = commaSplit tags
221
      newinst = Instance.create name vmem vdsk vvcpus vstatus vtags
222
                auto_balance pidx sidx disk_template
223
  return (name, newinst)
224
loadInst _ s = fail $ "Invalid/incomplete instance data: '" ++ show s ++ "'"
225

    
226
-- | Loads a spec from a field list.
227
loadISpec :: String -> [String] -> Result ISpec
228
loadISpec owner [mem_s, cpu_c, dsk_s, dsk_c, nic_c] = do
229
  xmem_s <- tryRead (owner ++ "/memsize") mem_s
230
  xcpu_c <- tryRead (owner ++ "/cpucount") cpu_c
231
  xdsk_s <- tryRead (owner ++ "/disksize") dsk_s
232
  xdsk_c <- tryRead (owner ++ "/diskcount") dsk_c
233
  xnic_c <- tryRead (owner ++ "/niccount") nic_c
234
  return $ ISpec xmem_s xcpu_c xdsk_s xdsk_c xnic_c
235
loadISpec owner s = fail $ "Invalid ispec data for " ++ owner ++ ": " ++ show s
236

    
237
-- | Loads an ipolicy from a field list.
238
loadIPolicy :: [String] -> Result (String, IPolicy)
239
loadIPolicy [owner, stdspec, minspec, maxspec, dtemplates, vcpu_ratio] = do
240
  xstdspec <- loadISpec (owner ++ "/stdspec") (commaSplit stdspec)
241
  xminspec <- loadISpec (owner ++ "/minspec") (commaSplit minspec)
242
  xmaxspec <- loadISpec (owner ++ "/maxspec") (commaSplit maxspec)
243
  xdts <- mapM diskTemplateFromRaw $ commaSplit dtemplates
244
  xvcpu_ratio <- tryRead (owner ++ "/vcpu_ratio") vcpu_ratio
245
  return $ (owner, IPolicy xstdspec xminspec xmaxspec xdts xvcpu_ratio)
246
loadIPolicy s = fail $ "Invalid ipolicy data: '" ++ show s ++ "'"
247

    
248
loadOnePolicy :: (IPolicy, Group.List) -> String
249
              -> Result (IPolicy, Group.List)
250
loadOnePolicy (cpol, gl) line = do
251
  (owner, ipol) <- loadIPolicy (sepSplit '|' line)
252
  case owner of
253
    "" -> return (ipol, gl) -- this is a cluster policy (no owner)
254
    _ -> do
255
      grp <- Container.findByName gl owner
256
      let grp' = grp { Group.iPolicy = ipol }
257
          gl' = Container.add (Group.idx grp') grp' gl
258
      return (cpol, gl')
259

    
260
-- | Loads all policies from the policy section
261
loadAllIPolicies :: Group.List -> [String] -> Result (IPolicy, Group.List)
262
loadAllIPolicies gl =
263
  foldM loadOnePolicy (defIPolicy, gl)
264

    
265
-- | Convert newline and delimiter-separated text.
266
--
267
-- This function converts a text in tabular format as generated by
268
-- @gnt-instance list@ and @gnt-node list@ to a list of objects using
269
-- a supplied conversion function.
270
loadTabular :: (Monad m, Element a) =>
271
               [String] -- ^ Input data, as a list of lines
272
            -> ([String] -> m (String, a)) -- ^ Conversion function
273
            -> m ( NameAssoc
274
                 , Container.Container a ) -- ^ A tuple of an
275
                                           -- association list (name
276
                                           -- to object) and a set as
277
                                           -- used in
278
                                           -- "Ganeti.HTools.Container"
279

    
280
loadTabular lines_data convert_fn = do
281
  let rows = map (sepSplit '|') lines_data
282
  kerows <- mapM convert_fn rows
283
  return $ assignIndices kerows
284

    
285
-- | Load the cluser data from disk.
286
--
287
-- This is an alias to 'readFile' just for consistency with the other
288
-- modules.
289
readData :: String    -- ^ Path to the text file
290
         -> IO String -- ^ Contents of the file
291
readData = readFile
292

    
293
-- | Builds the cluster data from text input.
294
parseData :: String -- ^ Text data
295
          -> Result ClusterData
296
parseData fdata = do
297
  let flines = lines fdata
298
  (glines, nlines, ilines, ctags, pollines) <-
299
      case sepSplit "" flines of
300
        [a, b, c, d, e] -> Ok (a, b, c, d, e)
301
        [a, b, c, d] -> Ok (a, b, c, d, [])
302
        xs -> Bad $ printf "Invalid format of the input file: %d sections\
303
                           \ instead of 4 or 5" (length xs)
304
  {- group file: name uuid -}
305
  (ktg, gl) <- loadTabular glines loadGroup
306
  {- node file: name t_mem n_mem f_mem t_disk f_disk -}
307
  (ktn, nl) <- loadTabular nlines (loadNode ktg)
308
  {- instance file: name mem disk status pnode snode -}
309
  (_, il) <- loadTabular ilines (loadInst ktn)
310
  {- the tags are simply line-based, no processing needed -}
311
  {- process policies -}
312
  (cpol, gl') <- loadAllIPolicies gl pollines
313
  return (ClusterData gl' nl il ctags cpol)
314

    
315
-- | Top level function for data loading.
316
loadData :: String -- ^ Path to the text file
317
         -> IO (Result ClusterData)
318
loadData = fmap parseData . readData