mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-16 19:22:22 +03:00
46 lines
1.1 KiB
Haskell
46 lines
1.1 KiB
Haskell
module Noun
|
|
( module Noun.Core
|
|
, module Noun.Convert
|
|
, module Noun.Conversions
|
|
, module Noun.Atom
|
|
, module Noun.Jam
|
|
, module Noun.Cue
|
|
, module Noun.TH
|
|
, module Data.Word
|
|
, _Cue
|
|
, loadFile
|
|
) where
|
|
|
|
import ClassyPrelude
|
|
import Control.Lens
|
|
|
|
import Noun.Atom
|
|
import Noun.Conversions
|
|
import Noun.Convert
|
|
import Noun.Core
|
|
import Noun.Cue
|
|
import Noun.Jam
|
|
import Noun.TH
|
|
import Data.Word
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
_Cue :: Prism' ByteString Noun
|
|
_Cue = prism' jamBS (eitherToMaybe . cueBS)
|
|
where
|
|
eitherToMaybe (Left _) = Nothing
|
|
eitherToMaybe (Right x) = Just x
|
|
|
|
data LoadErr = CueErr DecodeErr
|
|
| ParseErr [Text] Text
|
|
deriving (Eq, Ord, Show)
|
|
|
|
loadFile :: ∀a. FromNoun a => FilePath -> IO (Either LoadErr a)
|
|
loadFile pax = do
|
|
bs <- readFile pax
|
|
case cueBS bs of
|
|
Left e -> pure $ Left (CueErr e)
|
|
Right n -> case fromNounErr n of
|
|
Left (p,e) -> pure $ Left (ParseErr p e)
|
|
Right x -> pure $ Right x
|