Skip to content
Snippets Groups Projects
Commit c12a68e2 authored by Iustin Pop's avatar Iustin Pop
Browse files

Improve error reporting in our JSON conversions


Reporting things such as the following in our error messages
(indentation added by me, not originally present, so it's even worse):

  JSArray [JSArray [JSRational False (1 % 1),JSString
                    (JSONString {fromJSString = "a"})],
           JSArray [JSRational False (2 % 1),
                    JSString (JSONString {fromJSString = "b"})]]

Is not really nice. This patch adds more 'pp_value' conversions so
that the above becomes:

  [[1, "a"], [2, "b"]]

Signed-off-by: default avatarIustin Pop <iustin@google.com>
Reviewed-by: default avatarAgata Murawska <agatamurawska@google.com>
parent 0d0ac025
No related branches found
No related tags found
No related merge requests found
......@@ -46,6 +46,7 @@ import qualified Data.Map as Map
import Text.Printf (printf)
import qualified Text.JSON as J
import Text.JSON.Pretty (pp_value)
import Ganeti.BasicTypes
......@@ -120,7 +121,7 @@ fromKeyValue k val =
fromJVal :: (Monad m, J.JSON a) => J.JSValue -> m a
fromJVal v =
case J.readJSON v of
J.Error s -> fail ("Cannot convert value '" ++ show v ++
J.Error s -> fail ("Cannot convert value '" ++ show (pp_value v) ++
"', error: " ++ s)
J.Ok x -> return x
......@@ -145,7 +146,8 @@ tryFromObj t o = annotateResult t . fromObj o
-- | Ensure a given JSValue is actually a JSArray.
toArray :: (Monad m) => J.JSValue -> m [J.JSValue]
toArray (J.JSArray arr) = return arr
toArray o = fail $ "Invalid input, expected array but got " ++ show o
toArray o =
fail $ "Invalid input, expected array but got " ++ show (pp_value o)
-- * Container type (special type for JSON serialisation)
......@@ -170,4 +172,4 @@ instance (J.JSON a) => J.JSON (Container a) where
showJSON = showContainer
readJSON (J.JSObject o) = readContainer o
readJSON v = fail $ "Failed to load container, expected object but got "
++ show v
++ show (pp_value v)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment