WellFormed.hs 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. {-# LANGUAGE PatternSynonyms #-}
  2. {-# LANGUAGE ViewPatterns #-}
  3. module Data.SCargot.Repr.WellFormed
  4. ( -- * 'WellFormedSExpr' representation
  5. R.WellFormedSExpr(..)
  6. , R.toWellFormed
  7. , R.fromWellFormed
  8. -- * Constructing and Deconstructing
  9. , cons
  10. , uncons
  11. -- * Useful pattern synonyms
  12. , pattern (:::)
  13. , pattern L
  14. , pattern A
  15. , pattern Nil
  16. -- * Useful processing functions
  17. , fromPair
  18. , fromList
  19. , fromAtom
  20. , asPair
  21. , asList
  22. , isAtom
  23. , asAtom
  24. , asAssoc
  25. , car
  26. , cdr
  27. ) where
  28. import Control.Applicative ((<$>), (<*>), pure)
  29. import Data.SCargot.Repr as R
  30. -- | Produce the head and tail of the s-expression (if possible).
  31. --
  32. -- >>> uncons (L [A "el", A "eph", A "ant"])
  33. -- Just (WFSAtom "el",WFSList [WFSAtom "eph",WFSAtom "ant"])
  34. uncons :: WellFormedSExpr a -> Maybe (WellFormedSExpr a, WellFormedSExpr a)
  35. uncons R.WFSAtom {} = Nothing
  36. uncons (R.WFSList (x:xs)) = Just (x, R.WFSList xs)
  37. -- | Combine the two-expressions into a new one. This will return
  38. -- @Nothing@ if the resulting s-expression is not well-formed.
  39. --
  40. -- >>> cons (A "el") (L [A "eph", A "ant"])
  41. -- Just (WFSList [WFSAtom "el",WFSAtom "eph",WFSAtom "ant"])
  42. -- >>> cons (A "pachy") (A "derm"))
  43. -- Nothing
  44. cons :: WellFormedSExpr a -> WellFormedSExpr a -> Maybe (WellFormedSExpr a)
  45. cons _ (R.WFSAtom {}) = Nothing
  46. cons x (R.WFSList xs) = Just (R.WFSList (x:xs))
  47. -- | A shorter infix alias to grab the head and tail of a `WFSList`. This
  48. -- pattern is unidirectional, because it cannot be guaranteed that it
  49. -- is used to construct well-formed s-expressions; use the function "cons"
  50. -- instead.
  51. --
  52. -- >>> let sum (x ::: xs) = x + sum xs; sum Nil = 0
  53. pattern x ::: xs <- (uncons -> Just (x, xs))
  54. -- | A shorter alias for `WFSList`
  55. --
  56. -- >>> L [A "pachy", A "derm"]
  57. -- WFSList [WFSAtom "pachy",WFSAtom "derm"]
  58. pattern L xs = R.WFSList xs
  59. -- | A shorter alias for `WFSAtom`
  60. --
  61. -- >>> A "elephant"
  62. -- WFSAtom "elephant"
  63. pattern A a = R.WFSAtom a
  64. -- | A shorter alias for `WFSList` @[]@
  65. --
  66. -- >>> Nil
  67. -- WFSList []
  68. pattern Nil = R.WFSList []
  69. getShape :: WellFormedSExpr a -> String
  70. getShape A {} = "atom"
  71. getShape Nil = "empty list"
  72. getShape (L sx) = "list of length " ++ show (length sx)
  73. -- | Utility function for parsing a pair of things.
  74. --
  75. -- >>> fromPair (isAtom "pachy") (asAtom return) (L [A "pachy", A "derm"])
  76. -- Right ((), "derm")
  77. -- >>> fromPair (isAtom "pachy") fromAtom (L [A "pachy"])
  78. -- Left "Expected two-element list"
  79. fromPair :: (WellFormedSExpr t -> Either String a)
  80. -> (WellFormedSExpr t -> Either String b)
  81. -> WellFormedSExpr t -> Either String (a, b)
  82. fromPair pl pr (L [l, r]) = (,) <$> pl l <*> pr r
  83. fromPair _ _ sx = Left ("fromPair: expected two-element list; found " ++ getShape sx)
  84. -- | Utility function for parsing a list of things.
  85. --
  86. -- >>> fromList fromAtom (L [A "this", A "that", A "the-other"])
  87. -- Right ["this","that","the-other"]
  88. -- >>> fromList fromAtom (A "pachyderm")
  89. -- Left "asList: expected proper list; found dotted list"
  90. fromList :: (WellFormedSExpr t -> Either String a)
  91. -> WellFormedSExpr t -> Either String [a]
  92. fromList p (L ss) = mapM p ss
  93. fromList _ sx = Left ("fromList: expected list; found " ++ getShape sx)
  94. -- | Utility function for parsing a single atom
  95. --
  96. -- >>> fromAtom (A "elephant")
  97. -- Right "elephant"
  98. -- >>> fromAtom (L [A "elephant"])
  99. -- Left "fromAtom: expected atom; found list"
  100. fromAtom :: WellFormedSExpr t -> Either String t
  101. fromAtom (A a) = return a
  102. fromAtom sx = Left ("fromAtom: expected atom; found " ++ getShape sx)
  103. -- | Parses a two-element list using the provided function.
  104. --
  105. -- >>> let go (A l) (A r) = return (l ++ r); go _ _ = Left "expected atoms"
  106. -- >>> asPair go (L [A "pachy", A "derm"])
  107. -- Right "pachyderm"
  108. -- >>> asPair go (L [A "elephant"])
  109. -- Left "asPair: expected two-element list; found list of length 1"
  110. asPair :: ((WellFormedSExpr t, WellFormedSExpr t) -> Either String a)
  111. -> WellFormedSExpr t -> Either String a
  112. asPair f (L [l, r]) = f (l, r)
  113. asPair _ sx = Left ("asPair: expected two-element list; found " ++ getShape sx)
  114. -- | Parse an arbitrary-length list using the provided function.
  115. --
  116. -- >>> let go xs = concat <$> mapM fromAtom xs
  117. -- >>> asList go (L [A "el", A "eph", A "ant"])
  118. -- Right "elephant"
  119. -- >>> asList go (A "pachyderm")
  120. -- Left "asList: expected list; found atom"
  121. asList :: ([WellFormedSExpr t] -> Either String a)
  122. -> WellFormedSExpr t -> Either String a
  123. asList f (L ls) = f ls
  124. asList _ sx = Left ("asList: expected list; found " ++ getShape sx)
  125. -- | Match a given literal atom, failing otherwise.
  126. --
  127. -- >>> isAtom "elephant" (A "elephant")
  128. -- Right ()
  129. -- >>> isAtom "elephant" (L [A "elephant"])
  130. -- Left "isAtom: expected atom; found list"
  131. isAtom :: Eq t => t -> WellFormedSExpr t -> Either String ()
  132. isAtom s (A s')
  133. | s == s' = return ()
  134. | otherwise = Left "isAtom: failed to match atom"
  135. isAtom _ sx = Left ("isAtom: expected atom; found " ++ getShape sx)
  136. -- | Match an empty list, failing otherwise.
  137. --
  138. -- >>> isNil (L [])
  139. -- Right ()
  140. -- >>> isNil (A "elephant")
  141. -- Left "isNil: expected nil; found atom"
  142. isNil :: WellFormedSExpr t -> Either String ()
  143. isNil Nil = return ()
  144. isNil sx = Left ("isNil: expected nil; found " ++ getShape sx)
  145. -- | Parse an atom using the provided function.
  146. --
  147. -- >>> import Data.Char (toUpper)
  148. -- >>> asAtom (return . map toUpper) (A "elephant")
  149. -- Right "ELEPHANT"
  150. -- >>> asAtom (return . map toUpper) (L [])
  151. -- Left "asAtom: expected atom; found list"
  152. asAtom :: (t -> Either String a) -> WellFormedSExpr t -> Either String a
  153. asAtom f (A s) = f s
  154. asAtom _ sx = Left ("asAtom: expected atom; found " ++ getShape sx)
  155. -- | Parse an assoc-list using the provided function.
  156. --
  157. -- >>> let def (x, y) = do { a <- fromAtom x; b <- fromAtom y; return (a ++ ": " ++ b) }
  158. -- >>> let defList xs = do { defs <- mapM def xs; return (unlines defs) }
  159. -- >>> asAssoc defList (L [ L [A "legs", A "four"], L [ A "trunk", A "one"] ])
  160. -- Right "legs: four\ntrunk: one\n"
  161. -- >>> asAssoc defList (L [ L [A "legs", A "four"], L [ A "elephant"] ])
  162. -- Left "asAssoc: expected pair; found list of length 1"
  163. asAssoc :: ([(WellFormedSExpr t, WellFormedSExpr t)] -> Either String a)
  164. -> WellFormedSExpr t -> Either String a
  165. asAssoc f (L ss) = gatherPairs ss >>= f
  166. where gatherPairs (L [a, b] : ss) = (:) <$> pure (a, b) <*> gatherPairs ss
  167. gatherPairs [] = pure []
  168. gatherPairs (sx:_) = Left ("asAssoc: expected pair; found " ++ getShape sx)
  169. asAssoc _ sx = Left ("asAssoc: expected list; found " ++ getShape sx)
  170. -- | Run the parser on the first element of a Haskell list of "WellFormedSExpr" values,
  171. -- failing if the list is empty. This is useful in conjunction with the `asList`
  172. -- function.
  173. car :: (WellFormedSExpr t -> Either String t')
  174. -> [WellFormedSExpr t] -> Either String t'
  175. car f (x:_) = f x
  176. car _ [] = Left "car: Taking car of zero-element list"
  177. -- | Run the parser on all but the first element of a Haskell list of "WellFormedSExpr" values,
  178. -- failing if the list is empty. This is useful in conjunction with the `asList`
  179. -- function.
  180. cdr :: ([WellFormedSExpr t] -> Either String t')
  181. -> [WellFormedSExpr t] -> Either String t'
  182. cdr f (_:xs) = f xs
  183. cdr _ [] = Left "cdr: Taking cdr of zero-element list"