microlens-aeson-2.5.2: src/Lens/Micro/Aeson.hs
{-# LANGUAGE CPP #-}
{-# LANGUAGE DefaultSignatures #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE RankNTypes #-}
-- |
-- Module : Lens.Micro.Aeson
-- Copyright : (c) Colin Woodbury 2015-2024, (c) Edward Kmett 2013-2014, (c) Paul Wilson 2012
-- License : BSD3
-- Maintainer: Colin Woodbury <colin@fosskers.ca>
--
-- Traversals for Data.Aeson, based on microlens for minimal dependencies.
--
-- For basic manipulation of Aeson values, full `Prism` functionality isn't
-- necessary. Since all Prisms are inherently Traversals, we provide Traversals
-- that mimic the behaviour of the Prisms found in the original Data.Aeson.Lens.
module Lens.Micro.Aeson
(
-- * Numbers
AsNumber(..)
, _Integral
, nonNull
-- * Objects and Arrays
, AsValue(..)
, key, members
, nth, values
-- * Decoding
, AsJSON(..)
) where
import Data.Aeson
import qualified Data.Aeson.KeyMap as KM
import qualified Data.ByteString as Strict
import Data.ByteString.Lazy.Char8 as Lazy
import Data.Scientific (Scientific)
import qualified Data.Scientific as Scientific
import Data.Text as Text
import qualified Data.Text.Encoding as StrictText
import qualified Data.Text.Lazy as LazyText
import qualified Data.Text.Lazy.Encoding as LazyText
import Data.Vector (Vector)
import qualified Data.Vector as V
import Lens.Micro
import Lens.Micro.Aeson.Internal ()
import Prelude
#if !MIN_VERSION_aeson(2,2,0)
import Data.Aeson.Parser (value)
import Data.Attoparsec.ByteString.Lazy (maybeResult, parse)
#endif
------------------------------------------------------------------------------
-- Scientific Traversals
------------------------------------------------------------------------------
-- | Traverse into various number types.
class AsNumber t where
-- |
-- >>> "[1, \"x\"]" ^? nth 0 . _Number
-- Just 1.0
--
-- >>> "[1, \"x\"]" ^? nth 1 . _Number
-- Nothing
_Number :: Traversal' t Scientific
default _Number :: AsValue t => Traversal' t Scientific
_Number = _Value . _Number
{-# INLINE _Number #-}
-- |
-- Traversal into an 'Double' over a 'Value' or 'Scientific'
--
-- >>> "[10.2]" ^? nth 0 . _Double
-- Just 10.2
_Double :: Traversal' t Double
_Double = _Number . lens Scientific.toRealFloat (const realToFrac)
{-# INLINE _Double #-}
-- |
-- Traversal into an 'Integer' over a 'Value' or 'Scientific'
--
-- >>> "[10]" ^? nth 0 . _Integer
-- Just 10
--
-- >>> "[10.5]" ^? nth 0 . _Integer
-- Just 10
--
-- >>> "42" ^? _Integer
-- Just 42
_Integer :: Traversal' t Integer
_Integer = _Number . lens floor (const fromIntegral)
{-# INLINE _Integer #-}
instance AsNumber Value where
_Number f (Number n) = Number <$> f n
_Number _ v = pure v
{-# INLINE _Number #-}
instance AsNumber Scientific where
_Number = id
{-# INLINE _Number #-}
instance AsNumber Strict.ByteString
instance AsNumber Lazy.ByteString
instance AsNumber Text
instance AsNumber LazyText.Text
instance AsNumber String
------------------------------------------------------------------------------
-- Conversion Traversals
------------------------------------------------------------------------------
-- | Access Integer 'Value's as Integrals.
--
-- >>> "[10]" ^? nth 0 . _Integral
-- Just 10
--
-- >>> "[10.5]" ^? nth 0 . _Integral
-- Just 10
_Integral :: (AsNumber t, Integral a) => Traversal' t a
_Integral = _Number . lens floor (const fromIntegral)
{-# INLINE _Integral #-}
------------------------------------------------------------------------------
-- Null values
------------------------------------------------------------------------------
-- | Traversal into non-'Null' values
--
-- >>> "{\"a\": \"xyz\", \"b\": null}" ^? key "a" . nonNull
-- Just (String "xyz")
--
-- >>> "{\"a\": {}, \"b\": null}" ^? key "a" . nonNull
-- Just (Object (fromList []))
--
-- >>> "{\"a\": \"xyz\", \"b\": null}" ^? key "b" . nonNull
-- Nothing
nonNull :: Traversal' Value Value
nonNull _ Null = pure Null
nonNull f v = _Value f v
{-# INLINE nonNull #-}
------------------------------------------------------------------------------
-- Non-number traversals
------------------------------------------------------------------------------
-- | Traverse into JSON Objects and Arrays.
class AsNumber t => AsValue t where
-- | Traverse into data that encodes a `Value`
_Value :: Traversal' t Value
-- |
-- >>> "{\"a\": \"xyz\", \"b\": true}" ^? key "a" . _String
-- Just "xyz"
--
-- >>> "{\"a\": \"xyz\", \"b\": true}" ^? key "b" . _String
-- Nothing
_String :: Traversal' t Text
_String = _Value . trav
where trav f (String s) = String <$> f s
trav _ v = pure v
{-# INLINE _String #-}
-- |
-- >>> "{\"a\": \"xyz\", \"b\": true}" ^? key "b" . _Bool
-- Just True
--
-- >>> "{\"a\": \"xyz\", \"b\": true}" ^? key "a" . _Bool
-- Nothing
_Bool :: Traversal' t Bool
_Bool = _Value . trav
where trav f (Bool b) = Bool <$> f b
trav _ v = pure v
{-# INLINE _Bool #-}
-- |
-- >>> "{\"a\": \"xyz\", \"b\": null}" ^? key "b" . _Null
-- Just ()
--
-- >>> "{\"a\": \"xyz\", \"b\": null}" ^? key "a" . _Null
-- Nothing
_Null :: Traversal' t ()
_Null = _Value . trav
where trav f Null = Null <$ f ()
trav _ v = pure v
{-# INLINE _Null #-}
-- |
-- >>> "{\"a\": {}, \"b\": null}" ^? key "a" . _Object
-- Just (fromList [])
--
-- >>> "{\"a\": {}, \"b\": null}" ^? key "b" . _Object
-- Nothing
_Object :: Traversal' t (KM.KeyMap Value)
_Object = _Value . \f v -> case v of Object o -> Object <$> f o; _ -> pure v
{-# INLINE _Object #-}
_Array :: Traversal' t (Vector Value)
_Array = _Value . \f v -> case v of Array a -> Array <$> f a; _ -> pure v
{-# INLINE _Array #-}
instance AsValue Value where
_Value = id
{-# INLINE _Value #-}
instance AsValue Strict.ByteString where
_Value = _JSON
{-# INLINE _Value #-}
instance AsValue Lazy.ByteString where
_Value = _JSON
{-# INLINE _Value #-}
instance AsValue String where
_Value = strictUtf8 . _JSON
{-# INLINE _Value #-}
instance AsValue Text where
_Value = strictTextUtf8 . _JSON
{-# INLINE _Value #-}
instance AsValue LazyText.Text where
_Value = lazyTextUtf8 . _JSON
{-# INLINE _Value #-}
-- |
-- Like 'ix', but for 'Object' with 'Key' indices. This often has better
-- inference than 'ix' when used with OverloadedStrings.
--
-- >>> "{\"a\": 100, \"b\": 200}" ^? key "a"
-- Just (Number 100.0)
--
-- >>> "[1,2,3]" ^? key "a"
-- Nothing
key :: AsValue t => Key -> Traversal' t Value
key i = _Object . ix i
{-# INLINE key #-}
-- | A Traversal into Object properties
--
-- >>> "{\"a\": 4, \"b\": 7}" ^.. members
-- [Number 4.0,Number 7.0]
--
-- >>> "{\"a\": 4, \"b\": 7}" & members . _Number %~ (* 10)
-- "{\"a\":40,\"b\":70}"
members :: AsValue t => Traversal' t Value
members = _Object . traverse
{-# INLINE members #-}
-- | Like 'ix', but for Arrays with Int indexes
--
-- >>> "[1,2,3]" ^? nth 1
-- Just (Number 2.0)
--
-- >>> "{\"a\": 100, \"b\": 200}" ^? nth 1
-- Nothing
--
-- >>> "[1,2,3]" & nth 1 .~ Number 20
-- "[1,20,3]"
nth :: AsValue t => Int -> Traversal' t Value
nth i = _Array . vectorIxI
where
vectorIxI f a
| 0 <= i && i < V.length a = f (a V.! i) <&> \v -> a V.// [(i, v)]
| otherwise = pure a
{-# INLINE nth #-}
-- | A Traversal into Array elements
--
-- >>> "[1,2,3]" ^.. values
-- [Number 1.0,Number 2.0,Number 3.0]
--
-- >>> "[1,2,3]" & values . _Number %~ (* 10)
-- "[10,20,30]"
values :: AsValue t => Traversal' t Value
values = _Array . traverse
{-# INLINE values #-}
strictUtf8 :: Lens' String Strict.ByteString
strictUtf8 = lens Text.pack (const Text.unpack) . strictTextUtf8
lazyUtf8 :: Lens' Strict.ByteString Lazy.ByteString
lazyUtf8 = lens Lazy.fromStrict (const Lazy.toStrict)
strictTextUtf8 :: Lens' Text.Text Strict.ByteString
strictTextUtf8 = lens StrictText.encodeUtf8 (const StrictText.decodeUtf8)
lazyTextUtf8 :: Lens' LazyText.Text Lazy.ByteString
lazyTextUtf8 = lens LazyText.encodeUtf8 (const LazyText.decodeUtf8)
-- | Traverse into actual encoded JSON.
class AsJSON t where
-- | '_JSON' is a 'Traversal' from something containing JSON
-- to something encoded in that structure.
_JSON :: (FromJSON a, ToJSON a) => Traversal' t a
instance AsJSON Strict.ByteString where
_JSON = lazyUtf8 . _JSON
{-# INLINE _JSON #-}
instance AsJSON Lazy.ByteString where
#if MIN_VERSION_aeson(2,2,0)
_JSON f b = maybe (pure b) (fmap encode . f) (decode b)
#else
_JSON f b = maybe (pure b) (fmap encode . f) v
where v = maybeResult (parse value b) >>= \x -> case fromJSON x of
Success x' -> Just x'
_ -> Nothing
#endif
{-# INLINE _JSON #-}
instance AsJSON String where
_JSON = strictUtf8 . _JSON
{-# INLINE _JSON #-}
instance AsJSON Text where
_JSON = strictTextUtf8 . _JSON
{-# INLINE _JSON #-}
instance AsJSON LazyText.Text where
_JSON = lazyTextUtf8 . _JSON
{-# INLINE _JSON #-}
instance AsJSON Value where
_JSON f v = case fromJSON v of
Success v' -> toJSON <$> f v'
_ -> pure v
{-# INLINE _JSON #-}
-- $LazyByteStringTests
-- >>> ("42" :: Lazy.ByteString) ^? (_JSON :: Traversal' Lazy.ByteString Value)
-- Just (Number 42.0)
--
-- >>> ("42" :: Lazy.ByteString) ^? _Integer
-- Just 42
-- $StrictByteStringTests
-- >>> ("42" :: Strict.ByteString) ^? (_JSON :: Traversal' Strict.ByteString Value)
-- Just (Number 42.0)
--
-- >>> ("42" :: Lazy.ByteString) ^? _Integer
-- Just 42
-- $StringTests
-- >>> ("42" :: String) ^? (_JSON :: Traversal' String Value)
-- Just (Number 42.0)
--
-- >>> ("42" :: String) ^? _Integer
-- Just 42