1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484
|
{-# LANGUAGE CPP, TypeSynonymInstances, FlexibleInstances #-}
-- | Serialising Haskell values to and from JSON values.
module Text.JSON (
-- * JSON Types
JSValue(..)
-- * Serialization to and from JSValues
, JSON(..)
-- * Encoding and Decoding
, Result(..)
, encode -- :: JSON a => a -> String
, decode -- :: JSON a => String -> Either String a
, encodeStrict -- :: JSON a => a -> String
, decodeStrict -- :: JSON a => String -> Either String a
-- * Wrapper Types
, JSString
, toJSString
, fromJSString
, JSObject
, toJSObject
, fromJSObject
, resultToEither
-- * Serialization to and from Strings.
-- ** Reading JSON
, readJSNull, readJSBool, readJSString, readJSRational
, readJSArray, readJSObject, readJSValue
-- ** Writing JSON
, showJSNull, showJSBool, showJSArray
, showJSRational, showJSRational'
, showJSObject, showJSValue
-- ** Instance helpers
, makeObj, valFromObj
, JSKey(..), encJSDict, decJSDict
) where
import Text.JSON.Types
import Text.JSON.String
import Data.Int
import Data.Word
import Control.Monad.Fail (MonadFail (..))
import Control.Monad(liftM,ap,MonadPlus(..))
import Control.Applicative
import qualified Data.ByteString.Char8 as S
import qualified Data.ByteString.Lazy.Char8 as L
import qualified Data.IntSet as I
import qualified Data.Set as Set
import qualified Data.Map as M
import qualified Data.IntMap as IntMap
import qualified Data.Array as Array
import qualified Data.Text as T
------------------------------------------------------------------------
-- | Decode a String representing a JSON value
-- (either an object, array, bool, number, null)
--
-- This is a superset of JSON, as types other than
-- Array and Object are allowed at the top level.
--
decode :: (JSON a) => String -> Result a
decode s = case runGetJSON readJSValue s of
Right a -> readJSON a
Left err -> Error err
-- | Encode a Haskell value into a string, in JSON format.
--
-- This is a superset of JSON, as types other than
-- Array and Object are allowed at the top level.
--
encode :: (JSON a) => a -> String
encode = (flip showJSValue [] . showJSON)
------------------------------------------------------------------------
-- | Decode a String representing a strict JSON value.
-- This follows the spec, and requires top level
-- JSON types to be an Array or Object.
decodeStrict :: (JSON a) => String -> Result a
decodeStrict s = case runGetJSON readJSTopType s of
Right a -> readJSON a
Left err -> Error err
-- | Encode a value as a String in strict JSON format.
-- This follows the spec, and requires all values
-- at the top level to be wrapped in either an Array or Object.
-- JSON types to be an Array or Object.
encodeStrict :: (JSON a) => a -> String
encodeStrict = (flip showJSTopType [] . showJSON)
------------------------------------------------------------------------
-- | The class of types serialisable to and from JSON
class JSON a where
readJSON :: JSValue -> Result a
showJSON :: a -> JSValue
readJSONs :: JSValue -> Result [a]
readJSONs (JSArray as) = mapM readJSON as
readJSONs _ = mkError "Unable to read list"
showJSONs :: [a] -> JSValue
showJSONs = JSArray . map showJSON
-- | A type for parser results
data Result a = Ok a | Error String
deriving (Eq,Show)
-- | Map Results to Eithers
resultToEither :: Result a -> Either String a
resultToEither (Ok a) = Right a
resultToEither (Error s) = Left s
instance Functor Result where fmap = liftM
instance Applicative Result where
(<*>) = ap
pure = return
instance Alternative Result where
Ok a <|> _ = Ok a
Error _ <|> b = b
empty = Error "empty"
instance MonadPlus Result where
Ok a `mplus` _ = Ok a
_ `mplus` x = x
mzero = Error "Result: MonadPlus.empty"
instance Monad Result where
return x = Ok x
Ok a >>= f = f a
Error x >>= _ = Error x
instance MonadFail Result where
fail x = Error x
-- | Convenient error generation
mkError :: String -> Result a
mkError s = Error s
--------------------------------------------------------------------
--
-- | To ensure we generate valid JSON, we map Haskell types to JSValue
-- internally, then pretty print that.
--
instance JSON JSValue where
showJSON = id
readJSON = return
second :: (a -> b) -> (x,a) -> (x,b)
second f (a,b) = (a, f b)
--------------------------------------------------------------------
-- Some simple JSON wrapper types, to avoid overlapping instances
instance JSON JSString where
readJSON (JSString s) = return s
readJSON _ = mkError "Unable to read JSString"
showJSON = JSString
instance (JSON a) => JSON (JSObject a) where
readJSON (JSObject o) =
let f (x,y) = do y' <- readJSON y; return (x,y')
in toJSObject `fmap` mapM f (fromJSObject o)
readJSON _ = mkError "Unable to read JSObject"
showJSON = JSObject . toJSObject . map (second showJSON) . fromJSObject
-- -----------------------------------------------------------------
-- Instances
--
instance JSON Bool where
showJSON = JSBool
readJSON (JSBool b) = return b
readJSON _ = mkError "Unable to read Bool"
instance JSON Char where
showJSON = JSString . toJSString . (:[])
showJSONs = JSString . toJSString
readJSON (JSString s) = case fromJSString s of
[c] -> return c
_ -> mkError "Unable to read Char"
readJSON _ = mkError "Unable to read Char"
readJSONs (JSString s) = return (fromJSString s)
readJSONs (JSArray a) = mapM readJSON a
readJSONs _ = mkError "Unable to read String"
instance JSON Ordering where
showJSON = encJSString show
readJSON = decJSString "Ordering" readOrd
where
readOrd x =
case x of
"LT" -> return Prelude.LT
"EQ" -> return Prelude.EQ
"GT" -> return Prelude.GT
_ -> mkError ("Unable to read Ordering")
-- -----------------------------------------------------------------
-- Integral types
instance JSON Integer where
showJSON = JSRational False . fromIntegral
readJSON (JSRational _ i) = return $ round i
readJSON _ = mkError "Unable to read Integer"
-- constrained:
instance JSON Int where
showJSON = JSRational False . fromIntegral
readJSON (JSRational _ i) = return $ round i
readJSON _ = mkError "Unable to read Int"
-- constrained:
instance JSON Word where
showJSON = JSRational False . toRational
readJSON (JSRational _ i) = return $ truncate i
readJSON _ = mkError "Unable to read Word"
-- -----------------------------------------------------------------
instance JSON Word8 where
showJSON = JSRational False . fromIntegral
readJSON (JSRational _ i) = return $ truncate i
readJSON _ = mkError "Unable to read Word8"
instance JSON Word16 where
showJSON = JSRational False . fromIntegral
readJSON (JSRational _ i) = return $ truncate i
readJSON _ = mkError "Unable to read Word16"
instance JSON Word32 where
showJSON = JSRational False . fromIntegral
readJSON (JSRational _ i) = return $ truncate i
readJSON _ = mkError "Unable to read Word32"
instance JSON Word64 where
showJSON = JSRational False . fromIntegral
readJSON (JSRational _ i) = return $ truncate i
readJSON _ = mkError "Unable to read Word64"
instance JSON Int8 where
showJSON = JSRational False . fromIntegral
readJSON (JSRational _ i) = return $ truncate i
readJSON _ = mkError "Unable to read Int8"
instance JSON Int16 where
showJSON = JSRational False . fromIntegral
readJSON (JSRational _ i) = return $ truncate i
readJSON _ = mkError "Unable to read Int16"
instance JSON Int32 where
showJSON = JSRational False . fromIntegral
readJSON (JSRational _ i) = return $ truncate i
readJSON _ = mkError "Unable to read Int32"
instance JSON Int64 where
showJSON = JSRational False . fromIntegral
readJSON (JSRational _ i) = return $ truncate i
readJSON _ = mkError "Unable to read Int64"
-- -----------------------------------------------------------------
instance JSON Double where
showJSON = JSRational False . toRational
readJSON (JSRational _ r) = return $ fromRational r
readJSON _ = mkError "Unable to read Double"
-- can't use JSRational here, due to ambiguous '0' parse
-- it will parse as Integer.
instance JSON Float where
showJSON = JSRational True . toRational
readJSON (JSRational _ r) = return $ fromRational r
readJSON _ = mkError "Unable to read Float"
-- -----------------------------------------------------------------
-- Sums
instance (JSON a) => JSON (Maybe a) where
readJSON (JSObject o) = case "Just" `lookup` as of
Just x -> Just <$> readJSON x
_ -> case ("Nothing" `lookup` as) of
Just JSNull -> return Nothing
_ -> mkError "Unable to read Maybe"
where as = fromJSObject o
readJSON _ = mkError "Unable to read Maybe"
showJSON (Just x) = JSObject $ toJSObject [("Just", showJSON x)]
showJSON Nothing = JSObject $ toJSObject [("Nothing", JSNull)]
instance (JSON a, JSON b) => JSON (Either a b) where
readJSON (JSObject o) = case "Left" `lookup` as of
Just a -> Left <$> readJSON a
Nothing -> case "Right" `lookup` as of
Just b -> Right <$> readJSON b
Nothing -> mkError "Unable to read Either"
where as = fromJSObject o
readJSON _ = mkError "Unable to read Either"
showJSON (Left a) = JSObject $ toJSObject [("Left", showJSON a)]
showJSON (Right b) = JSObject $ toJSObject [("Right", showJSON b)]
-- -----------------------------------------------------------------
-- Products
instance JSON () where
showJSON _ = JSArray []
readJSON (JSArray []) = return ()
readJSON _ = mkError "Unable to read ()"
instance (JSON a, JSON b) => JSON (a,b) where
showJSON (a,b) = JSArray [ showJSON a, showJSON b ]
readJSON (JSArray [a,b]) = (,) `fmap` readJSON a `ap` readJSON b
readJSON _ = mkError "Unable to read Pair"
instance (JSON a, JSON b, JSON c) => JSON (a,b,c) where
showJSON (a,b,c) = JSArray [ showJSON a, showJSON b, showJSON c ]
readJSON (JSArray [a,b,c]) = (,,) `fmap`
readJSON a `ap`
readJSON b `ap`
readJSON c
readJSON _ = mkError "Unable to read Triple"
instance (JSON a, JSON b, JSON c, JSON d) => JSON (a,b,c,d) where
showJSON (a,b,c,d) = JSArray [showJSON a, showJSON b, showJSON c, showJSON d]
readJSON (JSArray [a,b,c,d]) = (,,,) `fmap`
readJSON a `ap`
readJSON b `ap`
readJSON c `ap`
readJSON d
readJSON _ = mkError "Unable to read 4 tuple"
-- -----------------------------------------------------------------
-- List-like types
instance JSON a => JSON [a] where
showJSON = showJSONs
readJSON = readJSONs
-- container types:
#if !defined(MAP_AS_DICT)
instance (Ord a, JSON a, JSON b) => JSON (M.Map a b) where
showJSON = encJSArray M.toList
readJSON = decJSArray "Map" M.fromList
instance (JSON a) => JSON (IntMap.IntMap a) where
showJSON = encJSArray IntMap.toList
readJSON = decJSArray "IntMap" IntMap.fromList
#else
instance (Ord a, JSKey a, JSON b) => JSON (M.Map a b) where
showJSON = encJSDict . M.toList
readJSON o = M.fromList <$> decJSDict "Map" o
instance (JSON a) => JSON (IntMap.IntMap a) where
{- alternate (dict) mapping: -}
showJSON = encJSDict . IntMap.toList
readJSON o = IntMap.fromList <$> decJSDict "IntMap" o
#endif
instance (Ord a, JSON a) => JSON (Set.Set a) where
showJSON = encJSArray Set.toList
readJSON = decJSArray "Set" Set.fromList
instance (Array.Ix i, JSON i, JSON e) => JSON (Array.Array i e) where
showJSON = encJSArray Array.assocs
readJSON = decJSArray "Array" arrayFromList
instance JSON I.IntSet where
showJSON = encJSArray I.toList
readJSON = decJSArray "IntSet" I.fromList
-- helper functions for array / object serializers:
arrayFromList :: (Array.Ix i) => [(i,e)] -> Array.Array i e
arrayFromList [] = Array.array undefined []
arrayFromList ls@((i,_):xs) = Array.array bnds ls
where
bnds = foldr step (i,i) xs
step (ix,_) (mi,ma) =
let mi1 = min ix mi
ma1 = max ix ma
in mi1 `seq` ma1 `seq` (mi1,ma1)
-- -----------------------------------------------------------------
-- ByteStrings
instance JSON S.ByteString where
showJSON = encJSString S.unpack
readJSON = decJSString "ByteString" (return . S.pack)
instance JSON L.ByteString where
showJSON = encJSString L.unpack
readJSON = decJSString "Lazy.ByteString" (return . L.pack)
-- -----------------------------------------------------------------
-- Data.Text
instance JSON T.Text where
readJSON (JSString s) = return (T.pack . fromJSString $ s)
readJSON _ = mkError "Unable to read JSString"
showJSON = JSString . toJSString . T.unpack
-- -----------------------------------------------------------------
-- Instance Helpers
makeObj :: [(String, JSValue)] -> JSValue
makeObj = JSObject . toJSObject
-- | Pull a value out of a JSON object.
valFromObj :: JSON a => String -> JSObject JSValue -> Result a
valFromObj k o = maybe (Error $ "valFromObj: Could not find key: " ++ show k)
readJSON
(lookup k (fromJSObject o))
encJSString :: (a -> String) -> a -> JSValue
encJSString f v = JSString (toJSString (f v))
decJSString :: String -> (String -> Result a) -> JSValue -> Result a
decJSString _ f (JSString s) = f (fromJSString s)
decJSString l _ _ = mkError ("readJSON{"++l++"}: unable to parse string value")
encJSArray :: (JSON a) => (b-> [a]) -> b -> JSValue
encJSArray f v = showJSON (f v)
decJSArray :: (JSON a) => String -> ([a] -> b) -> JSValue -> Result b
decJSArray _ f a@JSArray{} = f <$> readJSON a
decJSArray l _ _ = mkError ("readJSON{"++l++"}: unable to parse array value")
-- | Haskell types that can be used as keys in JSON objects.
class JSKey a where
toJSKey :: a -> String
fromJSKey :: String -> Maybe a
instance JSKey JSString where
toJSKey x = fromJSString x
fromJSKey x = Just (toJSString x)
instance JSKey Int where
toJSKey = show
fromJSKey key = case reads key of
[(a,"")] -> Just a
_ -> Nothing
-- NOTE: This prevents us from making other instances for lists but,
-- our guess is that strings are used as keys more often then other list types.
instance JSKey String where
toJSKey = id
fromJSKey = Just
-- | Encode an association list as 'JSObject' value.
encJSDict :: (JSKey a, JSON b) => [(a,b)] -> JSValue
encJSDict v = makeObj [ (toJSKey x, showJSON y) | (x,y) <- v ]
-- | Decode a 'JSObject' value into an association list.
decJSDict :: (JSKey a, JSON b)
=> String
-> JSValue
-> Result [(a,b)]
decJSDict l (JSObject o) = mapM rd (fromJSObject o)
where rd (a,b) = case fromJSKey a of
Just pa -> readJSON b >>= \pb -> return (pa,pb)
Nothing -> mkError ("readJSON{" ++ l ++ "}:" ++
"unable to read dict; invalid object key")
decJSDict l _ = mkError ("readJSON{"++l ++ "}: unable to read dict; expected JSON object")
|