I tried to run code from http://gregorycollins.net/posts/2011/10/01/cufp2011/index.html#(43) in GHCi, but got "Floating point exception, and GHCi quits.
{-# LANGUAGE OverloadedStrings #-}
import Control.Applicative
import Data.Aeson
import Data.Attoparsec (parseOnly)
import Data.ByteString.Char8 (ByteString)
import qualified Data.ByteString.Char8 as S
import qualified Data.ByteString.Lazy.Char8 as L
------------------------------------------------------------------------------
example1 :: ByteString -> Either String Coord
example1 bs = parseOnly json bs >>= convert
where
convert value = case fromJSON value of
(Error e) -> Left e
(Success a) -> Right a
example2 :: Coord -> ByteString
example2 c = S.concat $ L.toChunks $ encode c
------------------------------------------------------------------------------
data Coord = Coord { _x :: Double, _y :: Double }
deriving (Show, Eq)
instance ToJSON Coord where
toJSON (Coord x y) = object ["x" .= x, "y" .= y]
instance FromJSON Coord where
parseJSON (Object v) = Coord <$>
v .: "x" <*>
v .: "y"
-- A non-Object value is of the wrong type, so use mzero to fail.
parseJSON _ = empty
λ> :l JsonExample.hs
[1 of 1] Compiling Main ( JsonExample.hs, interpreted )
Ok, modules loaded: Main.
λ> example2 $ Coord 1 1
"Floating point exception
Linux myhost 3.0-ARCH #1 SMP PREEMPT Tue Aug 30 07:32:23 UTC 2011 i686 Intel(R) Core(TM)2 Duo CPU E8400 @ 3.00GHz GenuineIntel GNU/Linux– wenlong Oct 8 '11 at 7:28