Initial work on hail
[ganeti-local] / Ganeti / HTools / Utils.hs
index d1aa975..d26e7c7 100644 (file)
@@ -3,21 +3,33 @@
 module Ganeti.HTools.Utils
     (
       debug
-    , isLeft
-    , fromLeft
-    , fromRight
     , sepSplit
     , swapPairs
     , varianceCoeff
     , readData
     , commaJoin
+    , readEitherString
+    , loadJSArray
+    , fromObj
+    , getStringElement
+    , getIntElement
+    , getBoolElement
+    , getListElement
+    , getObjectElement
+    , asJSObject
+    , asObjectList
+    , Result(Ok, Bad)
+    , fromJResult
+    , (|+)
     ) where
 
 import Data.Either
 import Data.List
-import Monad
+import Control.Monad
 import System
 import System.IO
+import qualified Text.JSON as J
+import Text.Printf (printf)
 
 import Debug.Trace
 
@@ -25,18 +37,29 @@ import Debug.Trace
 debug :: Show a => a -> a
 debug x = trace (show x) x
 
--- | Check if the given argument is Left something
-isLeft :: Either a b -> Bool
-isLeft val =
-    case val of
-      Left _ -> True
-      _ -> False
 
-fromLeft :: Either a b -> a
-fromLeft = either (\x -> x) (\_ -> undefined)
+{-
 
-fromRight :: Either a b -> b
-fromRight = either (\_ -> undefined) id
+This is similar to the JSON library Result type - *very* similar, but
+we want to use it in multiple places, so we abstract it into a
+mini-library here
+
+-}
+
+data Result a
+    = Bad String
+    | Ok a
+    deriving (Show)
+
+instance Monad Result where
+    (>>=) (Bad x) _ = Bad x
+    (>>=) (Ok x) fn = fn x
+    return = Ok
+    fail = Bad
+
+fromJResult :: Monad m => J.Result a -> m a
+fromJResult (J.Error x) = fail x
+fromJResult (J.Ok x) = return x
 
 -- | Comma-join a string list.
 commaJoin :: [String] -> String
@@ -79,12 +102,53 @@ stdDev lst =
 varianceCoeff :: Floating a => [a] -> a
 varianceCoeff lst = (stdDev lst) / (fromIntegral $ length lst)
 
--- | Get a Right result or print the error and exit
-readData :: (String -> IO (Either String String)) -> String -> IO String
-readData fn host = do
-  nd <- fn host
-  when (isLeft nd) $
-       do
-         putStrLn $ fromLeft nd
+-- | Get an Ok result or print the error and exit
+readData :: Result a -> IO a
+readData nd =
+    (case nd of
+       Bad x -> do
+         putStrLn x
          exitWith $ ExitFailure 1
-  return $ fromRight nd
+       Ok x -> return x)
+
+readEitherString :: (Monad m) => J.JSValue -> m String
+readEitherString v =
+    case v of
+      J.JSString s -> return $ J.fromJSString s
+      _ -> fail "Wrong JSON type"
+
+loadJSArray :: (Monad m) => String -> m [J.JSObject J.JSValue]
+loadJSArray s = fromJResult $ J.decodeStrict s
+
+fromObj :: (J.JSON a, Monad m) => String -> J.JSObject J.JSValue -> m a
+fromObj k o =
+    case lookup k (J.fromJSObject o) of
+      Nothing -> fail $ printf "key '%s' not found in %s" k (show o)
+      Just val -> fromJResult $ J.readJSON val
+
+getStringElement :: (Monad m) => String -> J.JSObject J.JSValue -> m String
+getStringElement = fromObj
+
+getIntElement :: (Monad m) => String -> J.JSObject J.JSValue -> m Int
+getIntElement = fromObj
+
+getBoolElement :: (Monad m) => String -> J.JSObject J.JSValue -> m Bool
+getBoolElement = fromObj
+
+getListElement :: (Monad m) => String -> J.JSObject J.JSValue -> m [J.JSValue]
+getListElement = fromObj
+
+getObjectElement :: (Monad m) => String -> J.JSObject J.JSValue
+                 -> m (J.JSObject J.JSValue)
+getObjectElement = fromObj
+
+asJSObject :: (Monad m) => J.JSValue -> m (J.JSObject J.JSValue)
+asJSObject (J.JSObject a) = return a
+asJSObject _ = fail "not an object"
+
+asObjectList :: (Monad m) => [J.JSValue] -> m [J.JSObject J.JSValue]
+asObjectList = sequence . map asJSObject
+
+-- | Function to concat two strings with a separator under a monad
+(|+) :: (Monad m) => m String -> m String -> m String
+(|+) = liftM2 (\x y -> x ++ "|" ++ y)