Statistics
| Branch: | Tag: | Revision:

root / htools / Ganeti / HTools / Utils.hs @ ad0e078e

History | View | Annotate | Download (6.1 kB)

1 525bfb36 Iustin Pop
{-| Utility functions. -}
2 e4f08c46 Iustin Pop
3 e2fa2baf Iustin Pop
{-
4 e2fa2baf Iustin Pop
5 e8230242 Iustin Pop
Copyright (C) 2009, 2010, 2011 Google Inc.
6 e2fa2baf Iustin Pop
7 e2fa2baf Iustin Pop
This program is free software; you can redistribute it and/or modify
8 e2fa2baf Iustin Pop
it under the terms of the GNU General Public License as published by
9 e2fa2baf Iustin Pop
the Free Software Foundation; either version 2 of the License, or
10 e2fa2baf Iustin Pop
(at your option) any later version.
11 e2fa2baf Iustin Pop
12 e2fa2baf Iustin Pop
This program is distributed in the hope that it will be useful, but
13 e2fa2baf Iustin Pop
WITHOUT ANY WARRANTY; without even the implied warranty of
14 e2fa2baf Iustin Pop
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 e2fa2baf Iustin Pop
General Public License for more details.
16 e2fa2baf Iustin Pop
17 e2fa2baf Iustin Pop
You should have received a copy of the GNU General Public License
18 e2fa2baf Iustin Pop
along with this program; if not, write to the Free Software
19 e2fa2baf Iustin Pop
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20 e2fa2baf Iustin Pop
02110-1301, USA.
21 e2fa2baf Iustin Pop
22 e2fa2baf Iustin Pop
-}
23 e2fa2baf Iustin Pop
24 209b3711 Iustin Pop
module Ganeti.HTools.Utils
25 ebf38064 Iustin Pop
  ( debug
26 ebf38064 Iustin Pop
  , debugFn
27 ebf38064 Iustin Pop
  , debugXy
28 ebf38064 Iustin Pop
  , sepSplit
29 ebf38064 Iustin Pop
  , stdDev
30 ebf38064 Iustin Pop
  , if'
31 ebf38064 Iustin Pop
  , select
32 ebf38064 Iustin Pop
  , applyIf
33 ebf38064 Iustin Pop
  , commaJoin
34 ebf38064 Iustin Pop
  , tryRead
35 ebf38064 Iustin Pop
  , formatTable
36 ebf38064 Iustin Pop
  , parseUnit
37 ebf38064 Iustin Pop
  ) where
38 e4f08c46 Iustin Pop
39 1cb92fac Iustin Pop
import Data.Char (toUpper)
40 29ac5975 Iustin Pop
import Data.List
41 e4f08c46 Iustin Pop
42 e4f08c46 Iustin Pop
import Debug.Trace
43 e4f08c46 Iustin Pop
44 9188aeef Iustin Pop
-- * Debug functions
45 9188aeef Iustin Pop
46 e4f08c46 Iustin Pop
-- | To be used only for debugging, breaks referential integrity.
47 e4f08c46 Iustin Pop
debug :: Show a => a -> a
48 e4f08c46 Iustin Pop
debug x = trace (show x) x
49 e4f08c46 Iustin Pop
50 525bfb36 Iustin Pop
-- | Displays a modified form of the second parameter before returning
51 525bfb36 Iustin Pop
-- it.
52 adc5c176 Iustin Pop
debugFn :: Show b => (a -> b) -> a -> a
53 adc5c176 Iustin Pop
debugFn fn x = debug (fn x) `seq` x
54 adc5c176 Iustin Pop
55 525bfb36 Iustin Pop
-- | Show the first parameter before returning the second one.
56 adc5c176 Iustin Pop
debugXy :: Show a => a -> b -> b
57 05ff7a00 Agata Murawska
debugXy = seq . debug
58 adc5c176 Iustin Pop
59 525bfb36 Iustin Pop
-- * Miscellaneous
60 1b7cf8ca Iustin Pop
61 61bbbed7 Agata Murawska
-- | Apply the function if condition holds, otherwise use default value.
62 61bbbed7 Agata Murawska
applyIf :: Bool -> (a -> a) -> a -> a
63 61bbbed7 Agata Murawska
applyIf b f x = if b then f x else x
64 61bbbed7 Agata Murawska
65 e4f08c46 Iustin Pop
-- | Comma-join a string list.
66 e4f08c46 Iustin Pop
commaJoin :: [String] -> String
67 e4f08c46 Iustin Pop
commaJoin = intercalate ","
68 e4f08c46 Iustin Pop
69 748d5d50 Iustin Pop
-- | Split a list on a separator and return an array.
70 748d5d50 Iustin Pop
sepSplit :: Eq a => a -> [a] -> [[a]]
71 e4f08c46 Iustin Pop
sepSplit sep s
72 ebf38064 Iustin Pop
  | null s    = []
73 ebf38064 Iustin Pop
  | null xs   = [x]
74 ebf38064 Iustin Pop
  | null ys   = [x,[]]
75 ebf38064 Iustin Pop
  | otherwise = x:sepSplit sep ys
76 ebf38064 Iustin Pop
  where (x, xs) = break (== sep) s
77 ebf38064 Iustin Pop
        ys = drop 1 xs
78 e4f08c46 Iustin Pop
79 9188aeef Iustin Pop
-- * Mathematical functions
80 9188aeef Iustin Pop
81 185297fa Iustin Pop
-- Simple and slow statistical functions, please replace with better
82 185297fa Iustin Pop
-- versions
83 e4f08c46 Iustin Pop
84 525bfb36 Iustin Pop
-- | Standard deviation function.
85 4715711d Iustin Pop
stdDev :: [Double] -> Double
86 4715711d Iustin Pop
stdDev lst =
87 7570569e Iustin Pop
  -- first, calculate the list length and sum lst in a single step,
88 7570569e Iustin Pop
  -- for performance reasons
89 7570569e Iustin Pop
  let (ll', sx) = foldl' (\(rl, rs) e ->
90 7570569e Iustin Pop
                           let rl' = rl + 1
91 7570569e Iustin Pop
                               rs' = rs + e
92 7570569e Iustin Pop
                           in rl' `seq` rs' `seq` (rl', rs')) (0::Int, 0) lst
93 7570569e Iustin Pop
      ll = fromIntegral ll'::Double
94 7570569e Iustin Pop
      mv = sx / ll
95 7570569e Iustin Pop
      av = foldl' (\accu em -> let d = em - mv in accu + d * d) 0.0 lst
96 4715711d Iustin Pop
  in sqrt (av / ll) -- stddev
97 dd4c56ed Iustin Pop
98 bfe6c954 Guido Trotter
-- *  Logical functions
99 bfe6c954 Guido Trotter
100 bfe6c954 Guido Trotter
-- Avoid syntactic sugar and enhance readability. These functions are proposed
101 bfe6c954 Guido Trotter
-- by some for inclusion in the Prelude, and at the moment they are present
102 bfe6c954 Guido Trotter
-- (with various definitions) in the utility-ht package. Some rationale and
103 bfe6c954 Guido Trotter
-- discussion is available at <http://www.haskell.org/haskellwiki/If-then-else>
104 bfe6c954 Guido Trotter
105 bfe6c954 Guido Trotter
-- | \"if\" as a function, rather than as syntactic sugar.
106 bfe6c954 Guido Trotter
if' :: Bool -- ^ condition
107 bfe6c954 Guido Trotter
    -> a    -- ^ \"then\" result
108 bfe6c954 Guido Trotter
    -> a    -- ^ \"else\" result
109 bfe6c954 Guido Trotter
    -> a    -- ^ \"then\" or "else" result depending on the condition
110 bfe6c954 Guido Trotter
if' True x _ = x
111 bfe6c954 Guido Trotter
if' _    _ y = y
112 bfe6c954 Guido Trotter
113 bfe6c954 Guido Trotter
-- | Return the first result with a True condition, or the default otherwise.
114 bfe6c954 Guido Trotter
select :: a            -- ^ default result
115 bfe6c954 Guido Trotter
       -> [(Bool, a)]  -- ^ list of \"condition, result\"
116 bfe6c954 Guido Trotter
       -> a            -- ^ first result which has a True condition, or default
117 bfe6c954 Guido Trotter
select def = maybe def snd . find fst
118 bfe6c954 Guido Trotter
119 5b763470 Iustin Pop
120 5b763470 Iustin Pop
-- * Parsing utility functions
121 5b763470 Iustin Pop
122 525bfb36 Iustin Pop
-- | Parse results from readsPrec.
123 5b763470 Iustin Pop
parseChoices :: (Monad m, Read a) => String -> String -> [(a, String)] -> m a
124 5b763470 Iustin Pop
parseChoices _ _ ((v, ""):[]) = return v
125 5b763470 Iustin Pop
parseChoices name s ((_, e):[]) =
126 5b763470 Iustin Pop
    fail $ name ++ ": leftover characters when parsing '"
127 5b763470 Iustin Pop
           ++ s ++ "': '" ++ e ++ "'"
128 5b763470 Iustin Pop
parseChoices name s _ = fail $ name ++ ": cannot parse string '" ++ s ++ "'"
129 5b763470 Iustin Pop
130 5b763470 Iustin Pop
-- | Safe 'read' function returning data encapsulated in a Result.
131 5b763470 Iustin Pop
tryRead :: (Monad m, Read a) => String -> String -> m a
132 5b763470 Iustin Pop
tryRead name s = parseChoices name s $ reads s
133 c5f7412e Iustin Pop
134 525bfb36 Iustin Pop
-- | Format a table of strings to maintain consistent length.
135 c5f7412e Iustin Pop
formatTable :: [[String]] -> [Bool] -> [[String]]
136 c5f7412e Iustin Pop
formatTable vals numpos =
137 c5f7412e Iustin Pop
    let vtrans = transpose vals  -- transpose, so that we work on rows
138 c5f7412e Iustin Pop
                                 -- rather than columns
139 c5f7412e Iustin Pop
        mlens = map (maximum . map length) vtrans
140 c5f7412e Iustin Pop
        expnd = map (\(flds, isnum, ml) ->
141 c5f7412e Iustin Pop
                         map (\val ->
142 c5f7412e Iustin Pop
                                  let delta = ml - length val
143 c5f7412e Iustin Pop
                                      filler = replicate delta ' '
144 c5f7412e Iustin Pop
                                  in if delta > 0
145 c5f7412e Iustin Pop
                                     then if isnum
146 c5f7412e Iustin Pop
                                          then filler ++ val
147 c5f7412e Iustin Pop
                                          else val ++ filler
148 c5f7412e Iustin Pop
                                     else val
149 c5f7412e Iustin Pop
                             ) flds
150 c5f7412e Iustin Pop
                    ) (zip3 vtrans numpos mlens)
151 c5f7412e Iustin Pop
   in transpose expnd
152 9b9da389 Iustin Pop
153 1cb92fac Iustin Pop
-- | Tries to extract number and scale from the given string.
154 1cb92fac Iustin Pop
--
155 1cb92fac Iustin Pop
-- Input must be in the format NUMBER+ SPACE* [UNIT]. If no unit is
156 1cb92fac Iustin Pop
-- specified, it defaults to MiB. Return value is always an integral
157 1cb92fac Iustin Pop
-- value in MiB.
158 1cb92fac Iustin Pop
parseUnit :: (Monad m, Integral a, Read a) => String -> m a
159 1cb92fac Iustin Pop
parseUnit str =
160 ebf38064 Iustin Pop
  -- TODO: enhance this by splitting the unit parsing code out and
161 ebf38064 Iustin Pop
  -- accepting floating-point numbers
162 ebf38064 Iustin Pop
  case reads str of
163 ebf38064 Iustin Pop
    [(v, suffix)] ->
164 ebf38064 Iustin Pop
      let unit = dropWhile (== ' ') suffix
165 ebf38064 Iustin Pop
          upper = map toUpper unit
166 ebf38064 Iustin Pop
          siConvert x = x * 1000000 `div` 1048576
167 ebf38064 Iustin Pop
      in case () of
168 ebf38064 Iustin Pop
           _ | null unit -> return v
169 ebf38064 Iustin Pop
             | unit == "m" || upper == "MIB" -> return v
170 ebf38064 Iustin Pop
             | unit == "M" || upper == "MB"  -> return $ siConvert v
171 ebf38064 Iustin Pop
             | unit == "g" || upper == "GIB" -> return $ v * 1024
172 ebf38064 Iustin Pop
             | unit == "G" || upper == "GB"  -> return $ siConvert
173 ebf38064 Iustin Pop
                                                (v * 1000)
174 ebf38064 Iustin Pop
             | unit == "t" || upper == "TIB" -> return $ v * 1048576
175 ebf38064 Iustin Pop
             | unit == "T" || upper == "TB"  -> return $
176 ebf38064 Iustin Pop
                                                siConvert (v * 1000000)
177 ebf38064 Iustin Pop
             | otherwise -> fail $ "Unknown unit '" ++ unit ++ "'"
178 ebf38064 Iustin Pop
    _ -> fail $ "Can't parse string '" ++ str ++ "'"