Statistics
| Branch: | Tag: | Revision:

root / htools / Ganeti / HTools / Node.hs @ b7743258

History | View | Annotate | Download (22.7 kB)

1
{-| Module describing a node.
2

    
3
    All updates are functional (copy-based) and return a new node with
4
    updated value.
5
-}
6

    
7
{-
8

    
9
Copyright (C) 2009, 2010, 2011, 2012 Google Inc.
10

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

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

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

    
26
-}
27

    
28
module Ganeti.HTools.Node
29
  ( Node(..)
30
  , List
31
  -- * Constructor
32
  , create
33
  -- ** Finalization after data loading
34
  , buildPeers
35
  , setIdx
36
  , setAlias
37
  , setOffline
38
  , setXmem
39
  , setFmem
40
  , setPri
41
  , setSec
42
  , setMdsk
43
  , setMcpu
44
  , setPolicy
45
  -- * Tag maps
46
  , addTags
47
  , delTags
48
  , rejectAddTags
49
  -- * Instance (re)location
50
  , removePri
51
  , removeSec
52
  , addPri
53
  , addPriEx
54
  , addSec
55
  , addSecEx
56
  -- * Stats
57
  , availDisk
58
  , availMem
59
  , availCpu
60
  , iMem
61
  , iDsk
62
  , conflictingPrimaries
63
  -- * Formatting
64
  , defaultFields
65
  , showHeader
66
  , showField
67
  , list
68
  -- * Misc stuff
69
  , AssocList
70
  , AllocElement
71
  , noSecondary
72
  , computeGroups
73
  ) where
74

    
75
import Data.List hiding (group)
76
import qualified Data.Map as Map
77
import qualified Data.Foldable as Foldable
78
import Data.Ord (comparing)
79
import Text.Printf (printf)
80

    
81
import qualified Ganeti.HTools.Container as Container
82
import qualified Ganeti.HTools.Instance as Instance
83
import qualified Ganeti.HTools.PeerMap as P
84

    
85
import qualified Ganeti.HTools.Types as T
86

    
87
-- * Type declarations
88

    
89
-- | The tag map type.
90
type TagMap = Map.Map String Int
91

    
92
-- | The node type.
93
data Node = Node
94
  { name     :: String    -- ^ The node name
95
  , alias    :: String    -- ^ The shortened name (for display purposes)
96
  , tMem     :: Double    -- ^ Total memory (MiB)
97
  , nMem     :: Int       -- ^ Node memory (MiB)
98
  , fMem     :: Int       -- ^ Free memory (MiB)
99
  , xMem     :: Int       -- ^ Unaccounted memory (MiB)
100
  , tDsk     :: Double    -- ^ Total disk space (MiB)
101
  , fDsk     :: Int       -- ^ Free disk space (MiB)
102
  , tCpu     :: Double    -- ^ Total CPU count
103
  , uCpu     :: Int       -- ^ Used VCPU count
104
  , spindleCount :: Int   -- ^ Node spindles (spindle_count node parameter)
105
  , pList    :: [T.Idx]   -- ^ List of primary instance indices
106
  , sList    :: [T.Idx]   -- ^ List of secondary instance indices
107
  , idx      :: T.Ndx     -- ^ Internal index for book-keeping
108
  , peers    :: P.PeerMap -- ^ Pnode to instance mapping
109
  , failN1   :: Bool      -- ^ Whether the node has failed n1
110
  , rMem     :: Int       -- ^ Maximum memory needed for failover by
111
                          -- primaries of this node
112
  , pMem     :: Double    -- ^ Percent of free memory
113
  , pDsk     :: Double    -- ^ Percent of free disk
114
  , pRem     :: Double    -- ^ Percent of reserved memory
115
  , pCpu     :: Double    -- ^ Ratio of virtual to physical CPUs
116
  , mDsk     :: Double    -- ^ Minimum free disk ratio
117
  , loDsk    :: Int       -- ^ Autocomputed from mDsk low disk
118
                          -- threshold
119
  , hiCpu    :: Int       -- ^ Autocomputed from mCpu high cpu
120
                          -- threshold
121
  , hiSpindles :: Double  -- ^ Auto-computed from policy spindle_ratio
122
                          -- and the node spindle count
123
  , instSpindles :: Double -- ^ Spindles used by instances
124
  , offline  :: Bool      -- ^ Whether the node should not be used for
125
                          -- allocations and skipped from score
126
                          -- computations
127
  , utilPool :: T.DynUtil -- ^ Total utilisation capacity
128
  , utilLoad :: T.DynUtil -- ^ Sum of instance utilisation
129
  , pTags    :: TagMap    -- ^ Map of primary instance tags and their count
130
  , group    :: T.Gdx     -- ^ The node's group (index)
131
  , iPolicy  :: T.IPolicy -- ^ The instance policy (of the node's group)
132
  } deriving (Show, Read, Eq)
133

    
134
instance T.Element Node where
135
  nameOf = name
136
  idxOf = idx
137
  setAlias = setAlias
138
  setIdx = setIdx
139
  allNames n = [name n, alias n]
140

    
141
-- | A simple name for the int, node association list.
142
type AssocList = [(T.Ndx, Node)]
143

    
144
-- | A simple name for a node map.
145
type List = Container.Container Node
146

    
147
-- | A simple name for an allocation element (here just for logistic
148
-- reasons).
149
type AllocElement = (List, Instance.Instance, [Node], T.Score)
150

    
151
-- | Constant node index for a non-moveable instance.
152
noSecondary :: T.Ndx
153
noSecondary = -1
154

    
155
-- * Helper functions
156

    
157
-- | Add a tag to a tagmap.
158
addTag :: TagMap -> String -> TagMap
159
addTag t s = Map.insertWith (+) s 1 t
160

    
161
-- | Add multiple tags.
162
addTags :: TagMap -> [String] -> TagMap
163
addTags = foldl' addTag
164

    
165
-- | Adjust or delete a tag from a tagmap.
166
delTag :: TagMap -> String -> TagMap
167
delTag t s = Map.update (\v -> if v > 1
168
                                 then Just (v-1)
169
                                 else Nothing)
170
             s t
171

    
172
-- | Remove multiple tags.
173
delTags :: TagMap -> [String] -> TagMap
174
delTags = foldl' delTag
175

    
176
-- | Check if we can add a list of tags to a tagmap.
177
rejectAddTags :: TagMap -> [String] -> Bool
178
rejectAddTags t = any (`Map.member` t)
179

    
180
-- | Check how many primary instances have conflicting tags. The
181
-- algorithm to compute this is to sum the count of all tags, then
182
-- subtract the size of the tag map (since each tag has at least one,
183
-- non-conflicting instance); this is equivalent to summing the
184
-- values in the tag map minus one.
185
conflictingPrimaries :: Node -> Int
186
conflictingPrimaries (Node { pTags = t }) = Foldable.sum t - Map.size t
187

    
188
-- | Helper function to increment a base value depending on the passed
189
-- boolean argument.
190
incIf :: (Num a) => Bool -> a -> a -> a
191
incIf True  base delta = base + delta
192
incIf False base _     = base
193

    
194
-- | Helper function to decrement a base value depending on the passed
195
-- boolean argument.
196
decIf :: (Num a) => Bool -> a -> a -> a
197
decIf True  base delta = base - delta
198
decIf False base _     = base
199

    
200
-- * Initialization functions
201

    
202
-- | Create a new node.
203
--
204
-- The index and the peers maps are empty, and will be need to be
205
-- update later via the 'setIdx' and 'buildPeers' functions.
206
create :: String -> Double -> Int -> Int -> Double
207
       -> Int -> Double -> Bool -> Int -> T.Gdx -> Node
208
create name_init mem_t_init mem_n_init mem_f_init
209
       dsk_t_init dsk_f_init cpu_t_init offline_init spindles_init
210
       group_init =
211
  Node { name = name_init
212
       , alias = name_init
213
       , tMem = mem_t_init
214
       , nMem = mem_n_init
215
       , fMem = mem_f_init
216
       , tDsk = dsk_t_init
217
       , fDsk = dsk_f_init
218
       , tCpu = cpu_t_init
219
       , spindleCount = spindles_init
220
       , uCpu = 0
221
       , pList = []
222
       , sList = []
223
       , failN1 = True
224
       , idx = -1
225
       , peers = P.empty
226
       , rMem = 0
227
       , pMem = fromIntegral mem_f_init / mem_t_init
228
       , pDsk = computePDsk dsk_f_init dsk_t_init
229
       , pRem = 0
230
       , pCpu = 0
231
       , offline = offline_init
232
       , xMem = 0
233
       , mDsk = T.defReservedDiskRatio
234
       , loDsk = mDskToloDsk T.defReservedDiskRatio dsk_t_init
235
       , hiCpu = mCpuTohiCpu (T.iPolicyVcpuRatio T.defIPolicy) cpu_t_init
236
       , hiSpindles = computeHiSpindles (T.iPolicySpindleRatio T.defIPolicy)
237
                      spindles_init
238
       , instSpindles = 0
239
       , utilPool = T.baseUtil
240
       , utilLoad = T.zeroUtil
241
       , pTags = Map.empty
242
       , group = group_init
243
       , iPolicy = T.defIPolicy
244
       }
245

    
246
-- | Conversion formula from mDsk\/tDsk to loDsk.
247
mDskToloDsk :: Double -> Double -> Int
248
mDskToloDsk mval = floor . (mval *)
249

    
250
-- | Conversion formula from mCpu\/tCpu to hiCpu.
251
mCpuTohiCpu :: Double -> Double -> Int
252
mCpuTohiCpu mval = floor . (mval *)
253

    
254
-- | Conversiojn formula from spindles and spindle ratio to hiSpindles.
255
computeHiSpindles :: Double -> Int -> Double
256
computeHiSpindles spindle_ratio = (spindle_ratio *) . fromIntegral
257

    
258
-- | Changes the index.
259
--
260
-- This is used only during the building of the data structures.
261
setIdx :: Node -> T.Ndx -> Node
262
setIdx t i = t {idx = i}
263

    
264
-- | Changes the alias.
265
--
266
-- This is used only during the building of the data structures.
267
setAlias :: Node -> String -> Node
268
setAlias t s = t { alias = s }
269

    
270
-- | Sets the offline attribute.
271
setOffline :: Node -> Bool -> Node
272
setOffline t val = t { offline = val }
273

    
274
-- | Sets the unnaccounted memory.
275
setXmem :: Node -> Int -> Node
276
setXmem t val = t { xMem = val }
277

    
278
-- | Sets the max disk usage ratio.
279
setMdsk :: Node -> Double -> Node
280
setMdsk t val = t { mDsk = val, loDsk = mDskToloDsk val (tDsk t) }
281

    
282
-- | Sets the max cpu usage ratio. This will update the node's
283
-- ipolicy, losing sharing (but it should be a seldomly done operation).
284
setMcpu :: Node -> Double -> Node
285
setMcpu t val =
286
  let new_ipol = (iPolicy t) { T.iPolicyVcpuRatio = val }
287
  in t { hiCpu = mCpuTohiCpu val (tCpu t), iPolicy = new_ipol }
288

    
289
-- | Sets the policy.
290
setPolicy :: T.IPolicy -> Node -> Node
291
setPolicy pol node =
292
  node { iPolicy = pol
293
       , hiCpu = mCpuTohiCpu (T.iPolicyVcpuRatio pol) (tCpu node)
294
       , hiSpindles = computeHiSpindles (T.iPolicySpindleRatio pol)
295
                      (spindleCount node)
296
       }
297

    
298
-- | Computes the maximum reserved memory for peers from a peer map.
299
computeMaxRes :: P.PeerMap -> P.Elem
300
computeMaxRes = P.maxElem
301

    
302
-- | Builds the peer map for a given node.
303
buildPeers :: Node -> Instance.List -> Node
304
buildPeers t il =
305
  let mdata = map
306
              (\i_idx -> let inst = Container.find i_idx il
307
                             mem = if Instance.usesSecMem inst
308
                                     then Instance.mem inst
309
                                     else 0
310
                         in (Instance.pNode inst, mem))
311
              (sList t)
312
      pmap = P.accumArray (+) mdata
313
      new_rmem = computeMaxRes pmap
314
      new_failN1 = fMem t <= new_rmem
315
      new_prem = fromIntegral new_rmem / tMem t
316
  in t {peers=pmap, failN1 = new_failN1, rMem = new_rmem, pRem = new_prem}
317

    
318
-- | Assigns an instance to a node as primary and update the used VCPU
319
-- count, utilisation data and tags map.
320
setPri :: Node -> Instance.Instance -> Node
321
setPri t inst = t { pList = Instance.idx inst:pList t
322
                  , uCpu = new_count
323
                  , pCpu = fromIntegral new_count / tCpu t
324
                  , utilLoad = utilLoad t `T.addUtil` Instance.util inst
325
                  , pTags = addTags (pTags t) (Instance.tags inst)
326
                  , instSpindles = new_spindles
327
                  }
328
  where new_count = Instance.applyIfOnline inst (+ Instance.vcpus inst)
329
                    (uCpu t )
330
        new_spindles = instSpindles t + if Instance.usesLocalStorage inst
331
                                          then 1 else 0
332

    
333
-- | Assigns an instance to a node as secondary without other updates.
334
setSec :: Node -> Instance.Instance -> Node
335
setSec t inst = t { sList = Instance.idx inst:sList t
336
                  , utilLoad = old_load { T.dskWeight = T.dskWeight old_load +
337
                                          T.dskWeight (Instance.util inst) }
338
                  , instSpindles = new_spindles
339
                  }
340
  where old_load = utilLoad t
341
        new_spindles = instSpindles t + if Instance.usesLocalStorage inst
342
                                          then 1 else 0
343

    
344
-- | Computes the new 'pDsk' value, handling nodes without local disk
345
-- storage (we consider all their disk used).
346
computePDsk :: Int -> Double -> Double
347
computePDsk _    0     = 1
348
computePDsk used total = fromIntegral used / total
349

    
350
-- * Update functions
351

    
352
-- | Sets the free memory.
353
setFmem :: Node -> Int -> Node
354
setFmem t new_mem =
355
  let new_n1 = new_mem <= rMem t
356
      new_mp = fromIntegral new_mem / tMem t
357
  in t { fMem = new_mem, failN1 = new_n1, pMem = new_mp }
358

    
359
-- | Removes a primary instance.
360
removePri :: Node -> Instance.Instance -> Node
361
removePri t inst =
362
  let iname = Instance.idx inst
363
      i_online = Instance.notOffline inst
364
      uses_disk = Instance.usesLocalStorage inst
365
      new_plist = delete iname (pList t)
366
      new_mem = incIf i_online (fMem t) (Instance.mem inst)
367
      new_dsk = incIf uses_disk (fDsk t) (Instance.dsk inst)
368
      new_spindles = decIf uses_disk (instSpindles t) 1
369
      new_mp = fromIntegral new_mem / tMem t
370
      new_dp = computePDsk new_dsk (tDsk t)
371
      new_failn1 = new_mem <= rMem t
372
      new_ucpu = decIf i_online (uCpu t) (Instance.vcpus inst)
373
      new_rcpu = fromIntegral new_ucpu / tCpu t
374
      new_load = utilLoad t `T.subUtil` Instance.util inst
375
  in t { pList = new_plist, fMem = new_mem, fDsk = new_dsk
376
       , failN1 = new_failn1, pMem = new_mp, pDsk = new_dp
377
       , uCpu = new_ucpu, pCpu = new_rcpu, utilLoad = new_load
378
       , pTags = delTags (pTags t) (Instance.tags inst)
379
       , instSpindles = new_spindles
380
       }
381

    
382
-- | Removes a secondary instance.
383
removeSec :: Node -> Instance.Instance -> Node
384
removeSec t inst =
385
  let iname = Instance.idx inst
386
      uses_disk = Instance.usesLocalStorage inst
387
      cur_dsk = fDsk t
388
      pnode = Instance.pNode inst
389
      new_slist = delete iname (sList t)
390
      new_dsk = incIf uses_disk cur_dsk (Instance.dsk inst)
391
      new_spindles = decIf uses_disk (instSpindles t) 1
392
      old_peers = peers t
393
      old_peem = P.find pnode old_peers
394
      new_peem = decIf (Instance.usesSecMem inst) old_peem (Instance.mem inst)
395
      new_peers = if new_peem > 0
396
                    then P.add pnode new_peem old_peers
397
                    else P.remove pnode old_peers
398
      old_rmem = rMem t
399
      new_rmem = if old_peem < old_rmem
400
                   then old_rmem
401
                   else computeMaxRes new_peers
402
      new_prem = fromIntegral new_rmem / tMem t
403
      new_failn1 = fMem t <= new_rmem
404
      new_dp = computePDsk new_dsk (tDsk t)
405
      old_load = utilLoad t
406
      new_load = old_load { T.dskWeight = T.dskWeight old_load -
407
                                          T.dskWeight (Instance.util inst) }
408
  in t { sList = new_slist, fDsk = new_dsk, peers = new_peers
409
       , failN1 = new_failn1, rMem = new_rmem, pDsk = new_dp
410
       , pRem = new_prem, utilLoad = new_load
411
       , instSpindles = new_spindles
412
       }
413

    
414
-- | Adds a primary instance (basic version).
415
addPri :: Node -> Instance.Instance -> T.OpResult Node
416
addPri = addPriEx False
417

    
418
-- | Adds a primary instance (extended version).
419
addPriEx :: Bool               -- ^ Whether to override the N+1 and
420
                               -- other /soft/ checks, useful if we
421
                               -- come from a worse status
422
                               -- (e.g. offline)
423
         -> Node               -- ^ The target node
424
         -> Instance.Instance  -- ^ The instance to add
425
         -> T.OpResult Node    -- ^ The result of the operation,
426
                               -- either the new version of the node
427
                               -- or a failure mode
428
addPriEx force t inst =
429
  let iname = Instance.idx inst
430
      i_online = Instance.notOffline inst
431
      uses_disk = Instance.usesLocalStorage inst
432
      cur_dsk = fDsk t
433
      new_mem = decIf i_online (fMem t) (Instance.mem inst)
434
      new_dsk = decIf uses_disk cur_dsk (Instance.dsk inst)
435
      new_spindles = incIf uses_disk (instSpindles t) 1
436
      new_failn1 = new_mem <= rMem t
437
      new_ucpu = incIf i_online (uCpu t) (Instance.vcpus inst)
438
      new_pcpu = fromIntegral new_ucpu / tCpu t
439
      new_dp = computePDsk new_dsk (tDsk t)
440
      l_cpu = T.iPolicyVcpuRatio $ iPolicy t
441
      new_load = utilLoad t `T.addUtil` Instance.util inst
442
      inst_tags = Instance.tags inst
443
      old_tags = pTags t
444
      strict = not force
445
  in case () of
446
       _ | new_mem <= 0 -> T.OpFail T.FailMem
447
         | uses_disk && new_dsk <= 0 -> T.OpFail T.FailDisk
448
         | uses_disk && mDsk t > new_dp && strict -> T.OpFail T.FailDisk
449
         | uses_disk && new_spindles > hiSpindles t
450
             && strict -> T.OpFail T.FailDisk
451
         | new_failn1 && not (failN1 t) && strict -> T.OpFail T.FailMem
452
         | l_cpu >= 0 && l_cpu < new_pcpu && strict -> T.OpFail T.FailCPU
453
         | rejectAddTags old_tags inst_tags -> T.OpFail T.FailTags
454
         | otherwise ->
455
           let new_plist = iname:pList t
456
               new_mp = fromIntegral new_mem / tMem t
457
               r = t { pList = new_plist, fMem = new_mem, fDsk = new_dsk
458
                     , failN1 = new_failn1, pMem = new_mp, pDsk = new_dp
459
                     , uCpu = new_ucpu, pCpu = new_pcpu
460
                     , utilLoad = new_load
461
                     , pTags = addTags old_tags inst_tags
462
                     , instSpindles = new_spindles
463
                     }
464
           in T.OpGood r
465

    
466
-- | Adds a secondary instance (basic version).
467
addSec :: Node -> Instance.Instance -> T.Ndx -> T.OpResult Node
468
addSec = addSecEx False
469

    
470
-- | Adds a secondary instance (extended version).
471
addSecEx :: Bool -> Node -> Instance.Instance -> T.Ndx -> T.OpResult Node
472
addSecEx force t inst pdx =
473
  let iname = Instance.idx inst
474
      old_peers = peers t
475
      old_mem = fMem t
476
      new_dsk = fDsk t - Instance.dsk inst
477
      new_spindles = instSpindles t + 1
478
      secondary_needed_mem = if Instance.usesSecMem inst
479
                               then Instance.mem inst
480
                               else 0
481
      new_peem = P.find pdx old_peers + secondary_needed_mem
482
      new_peers = P.add pdx new_peem old_peers
483
      new_rmem = max (rMem t) new_peem
484
      new_prem = fromIntegral new_rmem / tMem t
485
      new_failn1 = old_mem <= new_rmem
486
      new_dp = computePDsk new_dsk (tDsk t)
487
      old_load = utilLoad t
488
      new_load = old_load { T.dskWeight = T.dskWeight old_load +
489
                                          T.dskWeight (Instance.util inst) }
490
      strict = not force
491
  in case () of
492
       _ | not (Instance.hasSecondary inst) -> T.OpFail T.FailDisk
493
         | new_dsk <= 0 -> T.OpFail T.FailDisk
494
         | mDsk t > new_dp && strict -> T.OpFail T.FailDisk
495
         | new_spindles > hiSpindles t && strict -> T.OpFail T.FailDisk
496
         | secondary_needed_mem >= old_mem && strict -> T.OpFail T.FailMem
497
         | new_failn1 && not (failN1 t) && strict -> T.OpFail T.FailMem
498
         | otherwise ->
499
           let new_slist = iname:sList t
500
               r = t { sList = new_slist, fDsk = new_dsk
501
                     , peers = new_peers, failN1 = new_failn1
502
                     , rMem = new_rmem, pDsk = new_dp
503
                     , pRem = new_prem, utilLoad = new_load
504
                     , instSpindles = new_spindles
505
                     }
506
           in T.OpGood r
507

    
508
-- * Stats functions
509

    
510
-- | Computes the amount of available disk on a given node.
511
availDisk :: Node -> Int
512
availDisk t =
513
  let _f = fDsk t
514
      _l = loDsk t
515
  in if _f < _l
516
       then 0
517
       else _f - _l
518

    
519
-- | Computes the amount of used disk on a given node.
520
iDsk :: Node -> Int
521
iDsk t = truncate (tDsk t) - fDsk t
522

    
523
-- | Computes the amount of available memory on a given node.
524
availMem :: Node -> Int
525
availMem t =
526
  let _f = fMem t
527
      _l = rMem t
528
  in if _f < _l
529
       then 0
530
       else _f - _l
531

    
532
-- | Computes the amount of available memory on a given node.
533
availCpu :: Node -> Int
534
availCpu t =
535
  let _u = uCpu t
536
      _l = hiCpu t
537
  in if _l >= _u
538
       then _l - _u
539
       else 0
540

    
541
-- | The memory used by instances on a given node.
542
iMem :: Node -> Int
543
iMem t = truncate (tMem t) - nMem t - xMem t - fMem t
544

    
545
-- * Display functions
546

    
547
-- | Return a field for a given node.
548
showField :: Node   -- ^ Node which we're querying
549
          -> String -- ^ Field name
550
          -> String -- ^ Field value as string
551
showField t field =
552
  case field of
553
    "idx"  -> printf "%4d" $ idx t
554
    "name" -> alias t
555
    "fqdn" -> name t
556
    "status" -> case () of
557
                  _ | offline t -> "-"
558
                    | failN1 t -> "*"
559
                    | otherwise -> " "
560
    "tmem" -> printf "%5.0f" $ tMem t
561
    "nmem" -> printf "%5d" $ nMem t
562
    "xmem" -> printf "%5d" $ xMem t
563
    "fmem" -> printf "%5d" $ fMem t
564
    "imem" -> printf "%5d" $ iMem t
565
    "rmem" -> printf "%5d" $ rMem t
566
    "amem" -> printf "%5d" $ fMem t - rMem t
567
    "tdsk" -> printf "%5.0f" $ tDsk t / 1024
568
    "fdsk" -> printf "%5d" $ fDsk t `div` 1024
569
    "tcpu" -> printf "%4.0f" $ tCpu t
570
    "ucpu" -> printf "%4d" $ uCpu t
571
    "pcnt" -> printf "%3d" $ length (pList t)
572
    "scnt" -> printf "%3d" $ length (sList t)
573
    "plist" -> show $ pList t
574
    "slist" -> show $ sList t
575
    "pfmem" -> printf "%6.4f" $ pMem t
576
    "pfdsk" -> printf "%6.4f" $ pDsk t
577
    "rcpu"  -> printf "%5.2f" $ pCpu t
578
    "cload" -> printf "%5.3f" uC
579
    "mload" -> printf "%5.3f" uM
580
    "dload" -> printf "%5.3f" uD
581
    "nload" -> printf "%5.3f" uN
582
    "ptags" -> intercalate "," . map (uncurry (printf "%s=%d")) .
583
               Map.toList $ pTags t
584
    "peermap" -> show $ peers t
585
    "spindle_count" -> show $ spindleCount t
586
    "hi_spindles" -> show $ hiSpindles t
587
    "inst_spindles" -> show $ instSpindles t
588
    _ -> T.unknownField
589
  where
590
    T.DynUtil { T.cpuWeight = uC, T.memWeight = uM,
591
                T.dskWeight = uD, T.netWeight = uN } = utilLoad t
592

    
593
-- | Returns the header and numeric propery of a field.
594
showHeader :: String -> (String, Bool)
595
showHeader field =
596
  case field of
597
    "idx" -> ("Index", True)
598
    "name" -> ("Name", False)
599
    "fqdn" -> ("Name", False)
600
    "status" -> ("F", False)
601
    "tmem" -> ("t_mem", True)
602
    "nmem" -> ("n_mem", True)
603
    "xmem" -> ("x_mem", True)
604
    "fmem" -> ("f_mem", True)
605
    "imem" -> ("i_mem", True)
606
    "rmem" -> ("r_mem", True)
607
    "amem" -> ("a_mem", True)
608
    "tdsk" -> ("t_dsk", True)
609
    "fdsk" -> ("f_dsk", True)
610
    "tcpu" -> ("pcpu", True)
611
    "ucpu" -> ("vcpu", True)
612
    "pcnt" -> ("pcnt", True)
613
    "scnt" -> ("scnt", True)
614
    "plist" -> ("primaries", True)
615
    "slist" -> ("secondaries", True)
616
    "pfmem" -> ("p_fmem", True)
617
    "pfdsk" -> ("p_fdsk", True)
618
    "rcpu"  -> ("r_cpu", True)
619
    "cload" -> ("lCpu", True)
620
    "mload" -> ("lMem", True)
621
    "dload" -> ("lDsk", True)
622
    "nload" -> ("lNet", True)
623
    "ptags" -> ("PrimaryTags", False)
624
    "peermap" -> ("PeerMap", False)
625
    "spindle_count" -> ("NodeSpindles", True)
626
    "hi_spindles" -> ("MaxSpindles", True)
627
    "inst_spindles" -> ("InstSpindles", True)
628
    -- TODO: add node fields (group.uuid, group)
629
    _ -> (T.unknownField, False)
630

    
631
-- | String converter for the node list functionality.
632
list :: [String] -> Node -> [String]
633
list fields t = map (showField t) fields
634

    
635
-- | Constant holding the fields we're displaying by default.
636
defaultFields :: [String]
637
defaultFields =
638
  [ "status", "name", "tmem", "nmem", "imem", "xmem", "fmem"
639
  , "rmem", "tdsk", "fdsk", "tcpu", "ucpu", "pcnt", "scnt"
640
  , "pfmem", "pfdsk", "rcpu"
641
  , "cload", "mload", "dload", "nload" ]
642

    
643
-- | Split a list of nodes into a list of (node group UUID, list of
644
-- associated nodes).
645
computeGroups :: [Node] -> [(T.Gdx, [Node])]
646
computeGroups nodes =
647
  let nodes' = sortBy (comparing group) nodes
648
      nodes'' = groupBy (\a b -> group a == group b) nodes'
649
  in map (\nl -> (group (head nl), nl)) nodes''