yaml-marked-0.2.0.0: src/Data/Yaml/Marked/Parse.hs
module Data.Yaml.Marked.Parse
( withObject
, withArray
, withText
, withScientific
, withBool
, (.:)
, (.:?)
, array
, json
, value
, text
, double
, int
, bool
-- * Lower-level
, withPrependedPath
) where
import Prelude
import Data.Aeson.Compat (FromJSON, Key)
import qualified Data.Aeson.Compat as Aeson
import qualified Data.Aeson.Compat.Key as Key
import qualified Data.Aeson.Compat.KeyMap as KeyMap
import Data.Aeson.Types (formatRelativePath)
import Data.Bifunctor (first)
import Data.Foldable (toList)
import Data.Scientific (Scientific)
import Data.Text (Text)
import Data.Yaml.Marked
import Data.Yaml.Marked.Value
withObject
:: String
-> (MarkedObject -> Either String a)
-> Marked Value
-> Either String (Marked a)
withObject label f = withPrependedPath $ \case
Object hm -> f hm
v -> prependContext label $ typeMismatch "Object" v
withArray
:: String
-> (MarkedArray -> Either String a)
-> Marked Value
-> Either String (Marked a)
withArray label f = withPrependedPath $ \case
Array v -> f v
v -> prependContext label $ typeMismatch "Array" v
withText
:: String
-> (Text -> Either String a)
-> Marked Value
-> Either String (Marked a)
withText label f = withPrependedPath $ \case
String t -> f t
v -> prependContext label $ typeMismatch "String" v
withScientific
:: String
-> (Scientific -> Either String a)
-> Marked Value
-> Either String (Marked a)
withScientific label f = withPrependedPath $ \case
Number s -> f s
v -> prependContext label $ typeMismatch "Number" v
withBool
:: String
-> (Bool -> Either String a)
-> Marked Value
-> Either String (Marked a)
withBool label f = withPrependedPath $ \case
Bool b -> f b
v -> prependContext label $ typeMismatch "Bool" v
prependContext :: String -> Either String a -> Either String a
prependContext label = first (prefix <>)
where
prefix = "parsing " <> label <> " failed, "
typeMismatch :: String -> Value -> Either String a
typeMismatch expected =
Left . (prefix <>) . \case
Object {} -> "Object"
Array {} -> "Array"
String {} -> "String"
Number {} -> "Number"
Bool {} -> "Bool"
Null -> "Null"
where
prefix = "expected " <> expected <> ", but encountered "
(.:) :: MarkedObject -> Key -> Either String (Marked Value)
(.:) km k = maybe (Left $ "Key not found: " <> Key.toString k) Right $ KeyMap.lookup k km
(.:?) :: MarkedObject -> Key -> Either String (Maybe (Marked Value))
(.:?) km k = Right $ KeyMap.lookup k km
array
:: (Marked Value -> Either String (Marked a))
-> Marked Value
-> Either String (Marked [Marked a])
array f = withArray "an array" $ traverse f . toList
-- | Parse the value using its 'FromJSON' instance, passing along the marks
json :: FromJSON a => Marked Value -> Either String (Marked a)
json = withPrependedPath valueAsJSON
value :: Marked Value -> Either String (Marked Aeson.Value)
value = json
text :: Marked Value -> Either String (Marked Text)
text = json
double :: Marked Value -> Either String (Marked Double)
double = json
int :: Marked Value -> Either String (Marked Int)
int = json
bool :: Marked Value -> Either String (Marked Bool)
bool = json
-- | Prepend an error with an item's 'markedJSONPath', when present
--
-- All of the functions above do this already. You would only need this if
-- you're writing something that doesn't us them.
withPrependedPath
:: (val -> Either String a)
-> Marked val
-> Either String (Marked a)
withPrependedPath f mv = first format $ traverse f mv
where
format :: String -> String
format = case markedJSONPath mv of
Nothing -> id
Just [] -> prependPathElem "Error in $"
Just xs -> prependPathElem $ formatRelativePath [last xs]
prependPathElem :: String -> String -> String
prependPathElem prefix = \case
ys@('[' : _) -> prefix <> ys -- ys is "[k]", make it (e.g.) "$[k]"
ys -> prefix <> ": " <> ys -- ys is "{...}", make it (e.g.) "$: {...}"