Statistics
| Branch: | Tag: | Revision:

root / src / Ganeti / Utils.hs @ 7b6996a8

History | View | Annotate | Download (16.1 kB)

1 525bfb36 Iustin Pop
{-| Utility functions. -}
2 e4f08c46 Iustin Pop
3 e2fa2baf Iustin Pop
{-
4 e2fa2baf Iustin Pop
5 a7f0953a Iustin Pop
Copyright (C) 2009, 2010, 2011, 2012, 2013 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 26d62e4c Iustin Pop
module Ganeti.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 79eef90b Agata Murawska
  , ensureQuoted
35 ebf38064 Iustin Pop
  , tryRead
36 ebf38064 Iustin Pop
  , formatTable
37 c3024b7e René Nussbaumer
  , printTable
38 ebf38064 Iustin Pop
  , parseUnit
39 19e310cc René Nussbaumer
  , plural
40 04edfc99 Iustin Pop
  , niceSort
41 04edfc99 Iustin Pop
  , niceSortKey
42 88a10df5 Iustin Pop
  , exitIfBad
43 88a10df5 Iustin Pop
  , exitErr
44 88a10df5 Iustin Pop
  , exitWhen
45 88a10df5 Iustin Pop
  , exitUnless
46 256e28c4 Iustin Pop
  , rStripSpace
47 80a0546b Michele Tartara
  , newUUID
48 ace37e24 Michele Tartara
  , getCurrentTime
49 a6e054a8 Iustin Pop
  , getCurrentTimeUSec
50 b6aeda4a Dato Simó
  , clockTimeToString
51 b009f682 Dato Simó
  , chompPrefix
52 7dbe4c72 Klaus Aehlig
  , warn
53 9fb621af Yiannis Tsiouris
  , wrap
54 9fb621af Yiannis Tsiouris
  , trim
55 72747d91 Iustin Pop
  , defaultHead
56 72747d91 Iustin Pop
  , exitIfEmpty
57 da9e2aff Iustin Pop
  , splitEithers
58 da9e2aff Iustin Pop
  , recombineEithers
59 986a8671 Michele Tartara
  , resolveAddr
60 a39cd547 Michele Tartara
  , setOwnerAndGroupFromNames
61 ebf38064 Iustin Pop
  ) where
62 e4f08c46 Iustin Pop
63 256e28c4 Iustin Pop
import Data.Char (toUpper, isAlphaNum, isDigit, isSpace)
64 04edfc99 Iustin Pop
import Data.Function (on)
65 29ac5975 Iustin Pop
import Data.List
66 a39cd547 Michele Tartara
import qualified Data.Map as M
67 da9e2aff Iustin Pop
import Control.Monad (foldM)
68 e4f08c46 Iustin Pop
69 e4f08c46 Iustin Pop
import Debug.Trace
70 986a8671 Michele Tartara
import Network.Socket
71 e4f08c46 Iustin Pop
72 88a10df5 Iustin Pop
import Ganeti.BasicTypes
73 80a0546b Michele Tartara
import qualified Ganeti.Constants as C
74 a39cd547 Michele Tartara
import Ganeti.Runtime
75 88a10df5 Iustin Pop
import System.IO
76 88a10df5 Iustin Pop
import System.Exit
77 a39cd547 Michele Tartara
import System.Posix.Files
78 b6aeda4a Dato Simó
import System.Time
79 88a10df5 Iustin Pop
80 9188aeef Iustin Pop
-- * Debug functions
81 9188aeef Iustin Pop
82 e4f08c46 Iustin Pop
-- | To be used only for debugging, breaks referential integrity.
83 e4f08c46 Iustin Pop
debug :: Show a => a -> a
84 e4f08c46 Iustin Pop
debug x = trace (show x) x
85 e4f08c46 Iustin Pop
86 525bfb36 Iustin Pop
-- | Displays a modified form of the second parameter before returning
87 525bfb36 Iustin Pop
-- it.
88 adc5c176 Iustin Pop
debugFn :: Show b => (a -> b) -> a -> a
89 adc5c176 Iustin Pop
debugFn fn x = debug (fn x) `seq` x
90 adc5c176 Iustin Pop
91 525bfb36 Iustin Pop
-- | Show the first parameter before returning the second one.
92 adc5c176 Iustin Pop
debugXy :: Show a => a -> b -> b
93 05ff7a00 Agata Murawska
debugXy = seq . debug
94 adc5c176 Iustin Pop
95 525bfb36 Iustin Pop
-- * Miscellaneous
96 1b7cf8ca Iustin Pop
97 61bbbed7 Agata Murawska
-- | Apply the function if condition holds, otherwise use default value.
98 61bbbed7 Agata Murawska
applyIf :: Bool -> (a -> a) -> a -> a
99 61bbbed7 Agata Murawska
applyIf b f x = if b then f x else x
100 61bbbed7 Agata Murawska
101 e4f08c46 Iustin Pop
-- | Comma-join a string list.
102 e4f08c46 Iustin Pop
commaJoin :: [String] -> String
103 e4f08c46 Iustin Pop
commaJoin = intercalate ","
104 e4f08c46 Iustin Pop
105 748d5d50 Iustin Pop
-- | Split a list on a separator and return an array.
106 748d5d50 Iustin Pop
sepSplit :: Eq a => a -> [a] -> [[a]]
107 e4f08c46 Iustin Pop
sepSplit sep s
108 ebf38064 Iustin Pop
  | null s    = []
109 ebf38064 Iustin Pop
  | null xs   = [x]
110 ebf38064 Iustin Pop
  | null ys   = [x,[]]
111 ebf38064 Iustin Pop
  | otherwise = x:sepSplit sep ys
112 ebf38064 Iustin Pop
  where (x, xs) = break (== sep) s
113 ebf38064 Iustin Pop
        ys = drop 1 xs
114 e4f08c46 Iustin Pop
115 19e310cc René Nussbaumer
-- | Simple pluralize helper
116 19e310cc René Nussbaumer
plural :: Int -> String -> String -> String
117 19e310cc René Nussbaumer
plural 1 s _ = s
118 19e310cc René Nussbaumer
plural _ _ p = p
119 19e310cc René Nussbaumer
120 79eef90b Agata Murawska
-- | Ensure a value is quoted if needed.
121 79eef90b Agata Murawska
ensureQuoted :: String -> String
122 79eef90b Agata Murawska
ensureQuoted v = if not (all (\c -> isAlphaNum c || c == '.') v)
123 79eef90b Agata Murawska
                 then '\'':v ++ "'"
124 79eef90b Agata Murawska
                 else v
125 79eef90b Agata Murawska
126 9188aeef Iustin Pop
-- * Mathematical functions
127 9188aeef Iustin Pop
128 185297fa Iustin Pop
-- Simple and slow statistical functions, please replace with better
129 185297fa Iustin Pop
-- versions
130 e4f08c46 Iustin Pop
131 525bfb36 Iustin Pop
-- | Standard deviation function.
132 4715711d Iustin Pop
stdDev :: [Double] -> Double
133 4715711d Iustin Pop
stdDev lst =
134 7570569e Iustin Pop
  -- first, calculate the list length and sum lst in a single step,
135 7570569e Iustin Pop
  -- for performance reasons
136 7570569e Iustin Pop
  let (ll', sx) = foldl' (\(rl, rs) e ->
137 7570569e Iustin Pop
                           let rl' = rl + 1
138 7570569e Iustin Pop
                               rs' = rs + e
139 7570569e Iustin Pop
                           in rl' `seq` rs' `seq` (rl', rs')) (0::Int, 0) lst
140 7570569e Iustin Pop
      ll = fromIntegral ll'::Double
141 7570569e Iustin Pop
      mv = sx / ll
142 7570569e Iustin Pop
      av = foldl' (\accu em -> let d = em - mv in accu + d * d) 0.0 lst
143 4715711d Iustin Pop
  in sqrt (av / ll) -- stddev
144 dd4c56ed Iustin Pop
145 bfe6c954 Guido Trotter
-- *  Logical functions
146 bfe6c954 Guido Trotter
147 bfe6c954 Guido Trotter
-- Avoid syntactic sugar and enhance readability. These functions are proposed
148 bfe6c954 Guido Trotter
-- by some for inclusion in the Prelude, and at the moment they are present
149 bfe6c954 Guido Trotter
-- (with various definitions) in the utility-ht package. Some rationale and
150 bfe6c954 Guido Trotter
-- discussion is available at <http://www.haskell.org/haskellwiki/If-then-else>
151 bfe6c954 Guido Trotter
152 bfe6c954 Guido Trotter
-- | \"if\" as a function, rather than as syntactic sugar.
153 bfe6c954 Guido Trotter
if' :: Bool -- ^ condition
154 bfe6c954 Guido Trotter
    -> a    -- ^ \"then\" result
155 bfe6c954 Guido Trotter
    -> a    -- ^ \"else\" result
156 bfe6c954 Guido Trotter
    -> a    -- ^ \"then\" or "else" result depending on the condition
157 bfe6c954 Guido Trotter
if' True x _ = x
158 bfe6c954 Guido Trotter
if' _    _ y = y
159 bfe6c954 Guido Trotter
160 5b763470 Iustin Pop
-- * Parsing utility functions
161 5b763470 Iustin Pop
162 525bfb36 Iustin Pop
-- | Parse results from readsPrec.
163 5b763470 Iustin Pop
parseChoices :: (Monad m, Read a) => String -> String -> [(a, String)] -> m a
164 5b763470 Iustin Pop
parseChoices _ _ ((v, ""):[]) = return v
165 5b763470 Iustin Pop
parseChoices name s ((_, e):[]) =
166 5b763470 Iustin Pop
    fail $ name ++ ": leftover characters when parsing '"
167 5b763470 Iustin Pop
           ++ s ++ "': '" ++ e ++ "'"
168 5b763470 Iustin Pop
parseChoices name s _ = fail $ name ++ ": cannot parse string '" ++ s ++ "'"
169 5b763470 Iustin Pop
170 5b763470 Iustin Pop
-- | Safe 'read' function returning data encapsulated in a Result.
171 5b763470 Iustin Pop
tryRead :: (Monad m, Read a) => String -> String -> m a
172 5b763470 Iustin Pop
tryRead name s = parseChoices name s $ reads s
173 c5f7412e Iustin Pop
174 525bfb36 Iustin Pop
-- | Format a table of strings to maintain consistent length.
175 c5f7412e Iustin Pop
formatTable :: [[String]] -> [Bool] -> [[String]]
176 c5f7412e Iustin Pop
formatTable vals numpos =
177 c5f7412e Iustin Pop
    let vtrans = transpose vals  -- transpose, so that we work on rows
178 c5f7412e Iustin Pop
                                 -- rather than columns
179 c5f7412e Iustin Pop
        mlens = map (maximum . map length) vtrans
180 c5f7412e Iustin Pop
        expnd = map (\(flds, isnum, ml) ->
181 c5f7412e Iustin Pop
                         map (\val ->
182 c5f7412e Iustin Pop
                                  let delta = ml - length val
183 c5f7412e Iustin Pop
                                      filler = replicate delta ' '
184 c5f7412e Iustin Pop
                                  in if delta > 0
185 c5f7412e Iustin Pop
                                     then if isnum
186 c5f7412e Iustin Pop
                                          then filler ++ val
187 c5f7412e Iustin Pop
                                          else val ++ filler
188 c5f7412e Iustin Pop
                                     else val
189 c5f7412e Iustin Pop
                             ) flds
190 c5f7412e Iustin Pop
                    ) (zip3 vtrans numpos mlens)
191 c5f7412e Iustin Pop
   in transpose expnd
192 9b9da389 Iustin Pop
193 c3024b7e René Nussbaumer
-- | Constructs a printable table from given header and rows
194 c3024b7e René Nussbaumer
printTable :: String -> [String] -> [[String]] -> [Bool] -> String
195 c3024b7e René Nussbaumer
printTable lp header rows isnum =
196 2cdaf225 Iustin Pop
  unlines . map ((++) lp . (:) ' ' . unwords) $
197 c3024b7e René Nussbaumer
  formatTable (header:rows) isnum
198 c3024b7e René Nussbaumer
199 1cdcf8f3 Iustin Pop
-- | Converts a unit (e.g. m or GB) into a scaling factor.
200 1cdcf8f3 Iustin Pop
parseUnitValue :: (Monad m) => String -> m Rational
201 1cdcf8f3 Iustin Pop
parseUnitValue unit
202 1cdcf8f3 Iustin Pop
  -- binary conversions first
203 1cdcf8f3 Iustin Pop
  | null unit                     = return 1
204 1cdcf8f3 Iustin Pop
  | unit == "m" || upper == "MIB" = return 1
205 1cdcf8f3 Iustin Pop
  | unit == "g" || upper == "GIB" = return kbBinary
206 1cdcf8f3 Iustin Pop
  | unit == "t" || upper == "TIB" = return $ kbBinary * kbBinary
207 1cdcf8f3 Iustin Pop
  -- SI conversions
208 1cdcf8f3 Iustin Pop
  | unit == "M" || upper == "MB"  = return mbFactor
209 1cdcf8f3 Iustin Pop
  | unit == "G" || upper == "GB"  = return $ mbFactor * kbDecimal
210 1cdcf8f3 Iustin Pop
  | unit == "T" || upper == "TB"  = return $ mbFactor * kbDecimal * kbDecimal
211 1cdcf8f3 Iustin Pop
  | otherwise = fail $ "Unknown unit '" ++ unit ++ "'"
212 1cdcf8f3 Iustin Pop
  where upper = map toUpper unit
213 5850e990 Iustin Pop
        kbBinary = 1024 :: Rational
214 5850e990 Iustin Pop
        kbDecimal = 1000 :: Rational
215 1cdcf8f3 Iustin Pop
        decToBin = kbDecimal / kbBinary -- factor for 1K conversion
216 1cdcf8f3 Iustin Pop
        mbFactor = decToBin * decToBin -- twice the factor for just 1K
217 1cdcf8f3 Iustin Pop
218 1cb92fac Iustin Pop
-- | Tries to extract number and scale from the given string.
219 1cb92fac Iustin Pop
--
220 1cb92fac Iustin Pop
-- Input must be in the format NUMBER+ SPACE* [UNIT]. If no unit is
221 1cb92fac Iustin Pop
-- specified, it defaults to MiB. Return value is always an integral
222 1cb92fac Iustin Pop
-- value in MiB.
223 1cb92fac Iustin Pop
parseUnit :: (Monad m, Integral a, Read a) => String -> m a
224 1cb92fac Iustin Pop
parseUnit str =
225 ebf38064 Iustin Pop
  -- TODO: enhance this by splitting the unit parsing code out and
226 ebf38064 Iustin Pop
  -- accepting floating-point numbers
227 1cdcf8f3 Iustin Pop
  case (reads str::[(Int, String)]) of
228 ebf38064 Iustin Pop
    [(v, suffix)] ->
229 ebf38064 Iustin Pop
      let unit = dropWhile (== ' ') suffix
230 1cdcf8f3 Iustin Pop
      in do
231 1cdcf8f3 Iustin Pop
        scaling <- parseUnitValue unit
232 1cdcf8f3 Iustin Pop
        return $ truncate (fromIntegral v * scaling)
233 ebf38064 Iustin Pop
    _ -> fail $ "Can't parse string '" ++ str ++ "'"
234 88a10df5 Iustin Pop
235 88a10df5 Iustin Pop
-- | Unwraps a 'Result', exiting the program if it is a 'Bad' value,
236 88a10df5 Iustin Pop
-- otherwise returning the actual contained value.
237 88a10df5 Iustin Pop
exitIfBad :: String -> Result a -> IO a
238 707cd3d7 Helga Velroyen
exitIfBad msg (Bad s) = exitErr (msg ++ ": " ++ s)
239 88a10df5 Iustin Pop
exitIfBad _ (Ok v) = return v
240 88a10df5 Iustin Pop
241 88a10df5 Iustin Pop
-- | Exits immediately with an error message.
242 88a10df5 Iustin Pop
exitErr :: String -> IO a
243 88a10df5 Iustin Pop
exitErr errmsg = do
244 707cd3d7 Helga Velroyen
  hPutStrLn stderr $ "Error: " ++ errmsg
245 88a10df5 Iustin Pop
  exitWith (ExitFailure 1)
246 88a10df5 Iustin Pop
247 88a10df5 Iustin Pop
-- | Exits with an error message if the given boolean condition if true.
248 88a10df5 Iustin Pop
exitWhen :: Bool -> String -> IO ()
249 88a10df5 Iustin Pop
exitWhen True msg = exitErr msg
250 88a10df5 Iustin Pop
exitWhen False _  = return ()
251 88a10df5 Iustin Pop
252 88a10df5 Iustin Pop
-- | Exits with an error message /unless/ the given boolean condition
253 88a10df5 Iustin Pop
-- if true, the opposite of 'exitWhen'.
254 88a10df5 Iustin Pop
exitUnless :: Bool -> String -> IO ()
255 88a10df5 Iustin Pop
exitUnless cond = exitWhen (not cond)
256 04edfc99 Iustin Pop
257 7dbe4c72 Klaus Aehlig
-- | Print a warning, but do not exit.
258 7dbe4c72 Klaus Aehlig
warn :: String -> IO ()
259 7dbe4c72 Klaus Aehlig
warn = hPutStrLn stderr . (++) "Warning: "
260 7dbe4c72 Klaus Aehlig
261 04edfc99 Iustin Pop
-- | Helper for 'niceSort'. Computes the key element for a given string.
262 04edfc99 Iustin Pop
extractKey :: [Either Integer String]  -- ^ Current (partial) key, reversed
263 04edfc99 Iustin Pop
           -> String                   -- ^ Remaining string
264 04edfc99 Iustin Pop
           -> ([Either Integer String], String)
265 04edfc99 Iustin Pop
extractKey ek [] = (reverse ek, [])
266 04edfc99 Iustin Pop
extractKey ek xs@(x:_) =
267 04edfc99 Iustin Pop
  let (span_fn, conv_fn) = if isDigit x
268 04edfc99 Iustin Pop
                             then (isDigit, Left . read)
269 04edfc99 Iustin Pop
                             else (not . isDigit, Right)
270 04edfc99 Iustin Pop
      (k, rest) = span span_fn xs
271 04edfc99 Iustin Pop
  in extractKey (conv_fn k:ek) rest
272 04edfc99 Iustin Pop
273 04edfc99 Iustin Pop
{-| Sort a list of strings based on digit and non-digit groupings.
274 04edfc99 Iustin Pop
275 04edfc99 Iustin Pop
Given a list of names @['a1', 'a10', 'a11', 'a2']@ this function
276 04edfc99 Iustin Pop
will sort the list in the logical order @['a1', 'a2', 'a10', 'a11']@.
277 04edfc99 Iustin Pop
278 04edfc99 Iustin Pop
The sort algorithm breaks each name in groups of either only-digits or
279 04edfc99 Iustin Pop
no-digits, and sorts based on each group.
280 04edfc99 Iustin Pop
281 04edfc99 Iustin Pop
Internally, this is not implemented via regexes (like the Python
282 04edfc99 Iustin Pop
version), but via actual splitting of the string in sequences of
283 04edfc99 Iustin Pop
either digits or everything else, and converting the digit sequences
284 04edfc99 Iustin Pop
in /Left Integer/ and the non-digit ones in /Right String/, at which
285 04edfc99 Iustin Pop
point sorting becomes trivial due to the built-in 'Either' ordering;
286 04edfc99 Iustin Pop
we only need one extra step of dropping the key at the end.
287 04edfc99 Iustin Pop
288 04edfc99 Iustin Pop
-}
289 04edfc99 Iustin Pop
niceSort :: [String] -> [String]
290 a7f0953a Iustin Pop
niceSort = niceSortKey id
291 04edfc99 Iustin Pop
292 04edfc99 Iustin Pop
-- | Key-version of 'niceSort'. We use 'sortBy' and @compare `on` fst@
293 04edfc99 Iustin Pop
-- since we don't want to add an ordering constraint on the /a/ type,
294 04edfc99 Iustin Pop
-- hence the need to only compare the first element of the /(key, a)/
295 04edfc99 Iustin Pop
-- tuple.
296 04edfc99 Iustin Pop
niceSortKey :: (a -> String) -> [a] -> [a]
297 04edfc99 Iustin Pop
niceSortKey keyfn =
298 04edfc99 Iustin Pop
  map snd . sortBy (compare `on` fst) .
299 04edfc99 Iustin Pop
  map (\s -> (fst . extractKey [] $ keyfn s, s))
300 256e28c4 Iustin Pop
301 256e28c4 Iustin Pop
-- | Strip space characthers (including newline). As this is
302 256e28c4 Iustin Pop
-- expensive, should only be run on small strings.
303 256e28c4 Iustin Pop
rStripSpace :: String -> String
304 256e28c4 Iustin Pop
rStripSpace = reverse . dropWhile isSpace . reverse
305 80a0546b Michele Tartara
306 80a0546b Michele Tartara
-- | Returns a random UUID.
307 80a0546b Michele Tartara
-- This is a Linux-specific method as it uses the /proc filesystem.
308 80a0546b Michele Tartara
newUUID :: IO String
309 80a0546b Michele Tartara
newUUID = do
310 80a0546b Michele Tartara
  contents <- readFile C.randomUuidFile
311 37dfcacb Iustin Pop
  return $! rStripSpace $ take 128 contents
312 b6aeda4a Dato Simó
313 a6e054a8 Iustin Pop
-- | Returns the current time as an 'Integer' representing the number
314 a6e054a8 Iustin Pop
-- of seconds from the Unix epoch.
315 ace37e24 Michele Tartara
getCurrentTime :: IO Integer
316 ace37e24 Michele Tartara
getCurrentTime = do
317 ace37e24 Michele Tartara
  TOD ctime _ <- getClockTime
318 ace37e24 Michele Tartara
  return ctime
319 ace37e24 Michele Tartara
320 a6e054a8 Iustin Pop
-- | Returns the current time as an 'Integer' representing the number
321 a6e054a8 Iustin Pop
-- of microseconds from the Unix epoch (hence the need for 'Integer').
322 a6e054a8 Iustin Pop
getCurrentTimeUSec :: IO Integer
323 a6e054a8 Iustin Pop
getCurrentTimeUSec = do
324 a6e054a8 Iustin Pop
  TOD ctime pico <- getClockTime
325 a6e054a8 Iustin Pop
  -- pico: 10^-12, micro: 10^-6, so we have to shift seconds left and
326 a6e054a8 Iustin Pop
  -- picoseconds right
327 a6e054a8 Iustin Pop
  return $ ctime * 1000000 + pico `div` 1000000
328 a6e054a8 Iustin Pop
329 b6aeda4a Dato Simó
-- | Convert a ClockTime into a (seconds-only) timestamp.
330 b6aeda4a Dato Simó
clockTimeToString :: ClockTime -> String
331 b6aeda4a Dato Simó
clockTimeToString (TOD t _) = show t
332 b009f682 Dato Simó
333 b009f682 Dato Simó
{-| Strip a prefix from a string, allowing the last character of the prefix
334 b009f682 Dato Simó
(which is assumed to be a separator) to be absent from the string if the string
335 b009f682 Dato Simó
terminates there.
336 b009f682 Dato Simó
337 94042ae4 Michele Tartara
\>>> chompPrefix \"foo:bar:\" \"a:b:c\"
338 b009f682 Dato Simó
Nothing
339 b009f682 Dato Simó
340 94042ae4 Michele Tartara
\>>> chompPrefix \"foo:bar:\" \"foo:bar:baz\"
341 94042ae4 Michele Tartara
Just \"baz\"
342 b009f682 Dato Simó
343 94042ae4 Michele Tartara
\>>> chompPrefix \"foo:bar:\" \"foo:bar:\"
344 94042ae4 Michele Tartara
Just \"\"
345 b009f682 Dato Simó
346 94042ae4 Michele Tartara
\>>> chompPrefix \"foo:bar:\" \"foo:bar\"
347 94042ae4 Michele Tartara
Just \"\"
348 b009f682 Dato Simó
349 94042ae4 Michele Tartara
\>>> chompPrefix \"foo:bar:\" \"foo:barbaz\"
350 b009f682 Dato Simó
Nothing
351 b009f682 Dato Simó
-}
352 b009f682 Dato Simó
chompPrefix :: String -> String -> Maybe String
353 b009f682 Dato Simó
chompPrefix pfx str =
354 b009f682 Dato Simó
  if pfx `isPrefixOf` str || str == init pfx
355 b009f682 Dato Simó
    then Just $ drop (length pfx) str
356 b009f682 Dato Simó
    else Nothing
357 9fb621af Yiannis Tsiouris
358 9fb621af Yiannis Tsiouris
-- | Breaks a string in lines with length \<= maxWidth.
359 9fb621af Yiannis Tsiouris
--
360 9fb621af Yiannis Tsiouris
-- NOTE: The split is OK if:
361 9fb621af Yiannis Tsiouris
--
362 9fb621af Yiannis Tsiouris
-- * It doesn't break a word, i.e. the next line begins with space
363 9fb621af Yiannis Tsiouris
--   (@isSpace . head $ rest@) or the current line ends with space
364 9fb621af Yiannis Tsiouris
--   (@null revExtra@);
365 9fb621af Yiannis Tsiouris
--
366 9fb621af Yiannis Tsiouris
-- * It breaks a very big word that doesn't fit anyway (@null revLine@).
367 9fb621af Yiannis Tsiouris
wrap :: Int      -- ^ maxWidth
368 9fb621af Yiannis Tsiouris
     -> String   -- ^ string that needs wrapping
369 9fb621af Yiannis Tsiouris
     -> [String] -- ^ string \"broken\" in lines
370 9fb621af Yiannis Tsiouris
wrap maxWidth = filter (not . null) . map trim . wrap0
371 9fb621af Yiannis Tsiouris
  where wrap0 :: String -> [String]
372 9fb621af Yiannis Tsiouris
        wrap0 text
373 9fb621af Yiannis Tsiouris
          | length text <= maxWidth = [text]
374 9fb621af Yiannis Tsiouris
          | isSplitOK               = line : wrap0 rest
375 9fb621af Yiannis Tsiouris
          | otherwise               = line' : wrap0 rest'
376 9fb621af Yiannis Tsiouris
          where (line, rest) = splitAt maxWidth text
377 9fb621af Yiannis Tsiouris
                (revExtra, revLine) = break isSpace . reverse $ line
378 9fb621af Yiannis Tsiouris
                (line', rest') = (reverse revLine, reverse revExtra ++ rest)
379 9fb621af Yiannis Tsiouris
                isSplitOK =
380 9fb621af Yiannis Tsiouris
                  null revLine || null revExtra || startsWithSpace rest
381 9fb621af Yiannis Tsiouris
                startsWithSpace (x:_) = isSpace x
382 9fb621af Yiannis Tsiouris
                startsWithSpace _     = False
383 9fb621af Yiannis Tsiouris
384 9fb621af Yiannis Tsiouris
-- | Removes surrounding whitespace. Should only be used in small
385 9fb621af Yiannis Tsiouris
-- strings.
386 9fb621af Yiannis Tsiouris
trim :: String -> String
387 9fb621af Yiannis Tsiouris
trim = reverse . dropWhile isSpace . reverse . dropWhile isSpace
388 72747d91 Iustin Pop
389 72747d91 Iustin Pop
-- | A safer head version, with a default value.
390 72747d91 Iustin Pop
defaultHead :: a -> [a] -> a
391 72747d91 Iustin Pop
defaultHead def []    = def
392 72747d91 Iustin Pop
defaultHead _   (x:_) = x
393 72747d91 Iustin Pop
394 72747d91 Iustin Pop
-- | A 'head' version in the I/O monad, for validating parameters
395 72747d91 Iustin Pop
-- without which we cannot continue.
396 72747d91 Iustin Pop
exitIfEmpty :: String -> [a] -> IO a
397 72747d91 Iustin Pop
exitIfEmpty _ (x:_) = return x
398 72747d91 Iustin Pop
exitIfEmpty s []    = exitErr s
399 da9e2aff Iustin Pop
400 da9e2aff Iustin Pop
-- | Split an 'Either' list into two separate lists (containing the
401 da9e2aff Iustin Pop
-- 'Left' and 'Right' elements, plus a \"trail\" list that allows
402 da9e2aff Iustin Pop
-- recombination later.
403 da9e2aff Iustin Pop
--
404 da9e2aff Iustin Pop
-- This is splitter; for recombination, look at 'recombineEithers'.
405 da9e2aff Iustin Pop
-- The sum of \"left\" and \"right\" lists should be equal to the
406 da9e2aff Iustin Pop
-- original list length, and the trail list should be the same length
407 da9e2aff Iustin Pop
-- as well. The entries in the resulting lists are reversed in
408 da9e2aff Iustin Pop
-- comparison with the original list.
409 da9e2aff Iustin Pop
splitEithers :: [Either a b] -> ([a], [b], [Bool])
410 da9e2aff Iustin Pop
splitEithers = foldl' splitter ([], [], [])
411 da9e2aff Iustin Pop
  where splitter (l, r, t) e =
412 da9e2aff Iustin Pop
          case e of
413 da9e2aff Iustin Pop
            Left  v -> (v:l, r, False:t)
414 da9e2aff Iustin Pop
            Right v -> (l, v:r, True:t)
415 da9e2aff Iustin Pop
416 da9e2aff Iustin Pop
-- | Recombines two \"left\" and \"right\" lists using a \"trail\"
417 da9e2aff Iustin Pop
-- list into a single 'Either' list.
418 da9e2aff Iustin Pop
--
419 da9e2aff Iustin Pop
-- This is the counterpart to 'splitEithers'. It does the opposite
420 da9e2aff Iustin Pop
-- transformation, and the output list will be the reverse of the
421 da9e2aff Iustin Pop
-- input lists. Since 'splitEithers' also reverses the lists, calling
422 da9e2aff Iustin Pop
-- these together will result in the original list.
423 da9e2aff Iustin Pop
--
424 da9e2aff Iustin Pop
-- Mismatches in the structure of the lists (e.g. inconsistent
425 da9e2aff Iustin Pop
-- lengths) are represented via 'Bad'; normally this function should
426 da9e2aff Iustin Pop
-- not fail, if lists are passed as generated by 'splitEithers'.
427 da9e2aff Iustin Pop
recombineEithers :: (Show a, Show b) =>
428 da9e2aff Iustin Pop
                    [a] -> [b] -> [Bool] -> Result [Either a b]
429 da9e2aff Iustin Pop
recombineEithers lefts rights trail =
430 da9e2aff Iustin Pop
  foldM recombiner ([], lefts, rights) trail >>= checker
431 da9e2aff Iustin Pop
    where checker (eithers, [], []) = Ok eithers
432 da9e2aff Iustin Pop
          checker (_, lefts', rights') =
433 da9e2aff Iustin Pop
            Bad $ "Inconsistent results after recombination, l'=" ++
434 da9e2aff Iustin Pop
                show lefts' ++ ", r'=" ++ show rights'
435 da9e2aff Iustin Pop
          recombiner (es, l:ls, rs) False = Ok (Left l:es,  ls, rs)
436 da9e2aff Iustin Pop
          recombiner (es, ls, r:rs) True  = Ok (Right r:es, ls, rs)
437 da9e2aff Iustin Pop
          recombiner (_,  ls, rs) t = Bad $ "Inconsistent trail log: l=" ++
438 da9e2aff Iustin Pop
                                      show ls ++ ", r=" ++ show rs ++ ",t=" ++
439 da9e2aff Iustin Pop
                                      show t
440 986a8671 Michele Tartara
441 986a8671 Michele Tartara
-- | Default hints for the resolver
442 986a8671 Michele Tartara
resolveAddrHints :: Maybe AddrInfo
443 986a8671 Michele Tartara
resolveAddrHints =
444 986a8671 Michele Tartara
  Just defaultHints { addrFlags = [AI_NUMERICHOST, AI_NUMERICSERV] }
445 986a8671 Michele Tartara
446 986a8671 Michele Tartara
-- | Resolves a numeric address.
447 986a8671 Michele Tartara
resolveAddr :: Int -> String -> IO (Result (Family, SockAddr))
448 986a8671 Michele Tartara
resolveAddr port str = do
449 986a8671 Michele Tartara
  resolved <- getAddrInfo resolveAddrHints (Just str) (Just (show port))
450 986a8671 Michele Tartara
  return $ case resolved of
451 986a8671 Michele Tartara
             [] -> Bad "Invalid results from lookup?"
452 986a8671 Michele Tartara
             best:_ -> Ok (addrFamily best, addrAddress best)
453 858ecf2b Klaus Aehlig
454 a39cd547 Michele Tartara
-- | Set the owner and the group of a file (given as names, not numeric id).
455 a39cd547 Michele Tartara
setOwnerAndGroupFromNames :: FilePath -> GanetiDaemon -> GanetiGroup -> IO ()
456 a39cd547 Michele Tartara
setOwnerAndGroupFromNames filename daemon dGroup = do
457 a39cd547 Michele Tartara
  -- TODO: it would be nice to rework this (or getEnts) so that runtimeEnts
458 a39cd547 Michele Tartara
  -- is read only once per daemon startup, and then cached for further usage.
459 a39cd547 Michele Tartara
  runtimeEnts <- getEnts
460 a39cd547 Michele Tartara
  ents <- exitIfBad "Can't find required user/groups" runtimeEnts
461 a39cd547 Michele Tartara
  -- note: we use directly ! as lookup failures shouldn't happen, due
462 a39cd547 Michele Tartara
  -- to the map construction
463 a39cd547 Michele Tartara
  let uid = fst ents M.! daemon
464 a39cd547 Michele Tartara
  let gid = snd ents M.! dGroup
465 a39cd547 Michele Tartara
  setOwnerAndGroup filename uid gid