Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (12 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 = ipol
132
      strings = [ owner
133
                , serializeISpec stdspec
134
                , serializeISpec minspec
135
                , serializeISpec maxspec
136
                , serializeDiskTemplates dts
137
                ]
138
  in intercalate "|" strings
139

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

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

    
160
-- * Parsing functions
161

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

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

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

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

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

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

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

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

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

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

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

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

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