-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathGraphula.hs
More file actions
executable file
·285 lines (256 loc) · 7.75 KB
/
Copy pathGraphula.hs
File metadata and controls
executable file
·285 lines (256 loc) · 7.75 KB
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
{-# LANGUAGE AllowAmbiguousTypes #-}
{-# LANGUAGE ConstraintKinds #-}
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE DerivingStrategies #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE GADTs #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE InstanceSigs #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE PolyKinds #-}
{-# LANGUAGE RankNTypes #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE TypeFamilyDependencies #-}
{-# LANGUAGE TypeOperators #-}
{-# LANGUAGE UndecidableInstances #-}
{-# LANGUAGE UndecidableSuperClasses #-}
-- |
--
-- Graphula is a compact interface for generating data and linking its
-- dependencies. You can use this interface to generate fixtures for automated
-- testing.
--
-- @
-- {- config/models
--
-- School
-- name Text
-- deriving Generic
--
-- Teacher
-- schoolId SchoolId
-- name Text
-- deriving Generic
--
-- Course
-- schoolId SchoolId
-- teacherId TeacherId
-- name Text
-- deriving Generic
--
-- -}
--
-- instance Arbitrary School where
-- -- ...
--
-- instance Arbitrary Teacher where
-- -- ...
--
-- instance Arbitrary Course where
-- -- ...
--
-- instance 'HasDependencies' School
--
-- instance 'HasDependencies' Teacher where
-- type Dependencies Teacher = Only SchoolId
--
-- instance 'HasDependencies' Course where
-- type Dependencies Course = (SchoolId, CourseId)
--
-- 'runGraphulaT' runDB $ do
-- school <- 'node' \@School () mempty
--
-- teacher <- 'node' \@Teacher ('onlyKey' school)
-- $ edit
-- $ \t -> t { teacherName = \"Alice\" }
--
-- course <- 'node' \@Course ('keys' (school, teacher))
-- $ 'ensure'
-- $ not . courseIsArchived
-- @
module Graphula
( -- * Basic usage
-- ** Model requirements
HasDependencies (..)
, Only (..)
, only
-- ** Defining the graph
, node
, edit
, ensure
-- ** Running the graph
, GraphulaT
, runGraphulaT
, GenerationFailure (..)
-- * Advanced usage
-- ** Non-serial keys
, KeySourceType (..)
, nodeKeyed
-- ** Running with logging
, GraphulaLoggedT
, runGraphulaLoggedT
, runGraphulaLoggedWithFileT
-- ** Running idempotently
, GraphulaIdempotentT
, runGraphulaIdempotentT
-- * Useful synonymns
-- |
--
-- When declaring your own functions that call 'node', these synonyms can help
-- with the constraint soup.
--
-- > genSchoolWithTeacher
-- > :: GraphulaContext m '[School, Teacher]
-- > -> m (Entity Teacher)
-- > genSchoolWithTeacher = do
-- > school <- node @School () mempty
-- > node @Teacher (onlyKey school) mempty
, GraphulaContext
, GraphulaNode
-- * Lower-level details
-- |
--
-- These exports are likely to be removed from this module in a future
-- version. If you are using them, consider importing from their own modules.
, MonadGraphula
, MonadGraphulaBackend (..)
, MonadGraphulaFrontend (..)
, NodeOptions
, GenerateKey
, NoConstraint
) where
import Prelude hiding (readFile)
import Control.Exception.Annotated.UnliftIO (Annotation (..), checkpoint)
import Control.Monad.IO.Unlift
import Control.Monad.Reader (MonadReader, ReaderT, asks, runReaderT)
import Control.Monad.Trans (MonadTrans, lift)
import Data.IORef (IORef, newIORef)
import Data.Kind (Constraint, Type)
import Data.Typeable (Typeable)
import Database.Persist
( PersistEntity
, PersistEntityBackend
, checkUnique
, delete
, get
, getEntity
, insertUnique
)
import qualified Database.Persist as Persist
import Database.Persist.Sql (SqlBackend)
import Graphula.Class
import Graphula.Dependencies
import Graphula.Idempotent
import Graphula.Logged
import Graphula.NoConstraint
import Graphula.Node
import System.Random (randomIO)
import Test.HUnit.Lang
( FailureReason (..)
, HUnitFailure (..)
, formatFailureReason
)
import Test.QuickCheck (Arbitrary (..))
import Test.QuickCheck.Random (QCGen, mkQCGen)
import UnliftIO.Exception (SomeException, catch, fromException, throwIO)
-- | A constraint over lists of nodes for 'MonadGraphula', and 'GraphulaNode'.
--
-- Helpful for defining utility functions over many nodes.
--
-- @
-- mkABC :: (GraphulaContext m '[A, B, C]) => m (Node m C)
-- mkABC = do
-- a <- node @A () mempty
-- b <- node @B (only a) mempty
-- node @C (a, b) $ edit $ \n ->
-- n { cc = "spanish" }
-- @
type family GraphulaContext (m :: Type -> Type) (ts :: [Type]) :: Constraint where
GraphulaContext m '[] = MonadGraphula m
GraphulaContext m (t ': ts) = (GraphulaNode m t, GraphulaContext m ts)
data Args backend n m = Args
{ dbRunner :: RunDB backend n m
, gen :: IORef QCGen
}
newtype RunDB backend n m = RunDB (forall b. ReaderT backend n b -> m b)
newtype GraphulaT n m a = GraphulaT {runGraphulaT' :: ReaderT (Args SqlBackend n m) m a}
deriving newtype
(Functor, Applicative, Monad, MonadIO, MonadReader (Args SqlBackend n m))
instance MonadTrans (GraphulaT n) where
lift = GraphulaT . lift
instance MonadUnliftIO m => MonadUnliftIO (GraphulaT n m) where
{-# INLINE withRunInIO #-}
withRunInIO inner =
GraphulaT $ withRunInIO $ \run -> inner $ run . runGraphulaT'
instance MonadIO m => MonadGraphulaBackend (GraphulaT n m) where
type Logging (GraphulaT n m) = NoConstraint
askGen = asks gen
logNode _ = pure ()
instance (MonadIO m, MonadIO n) => MonadGraphulaFrontend (GraphulaT n m) where
insertEither mKey n = do
RunDB runDB <- asks dbRunner
lift . runDB $ case mKey of
Nothing ->
insertUnique n >>= \case
Nothing -> pure $ Left "entity violated a unique constraint"
Just key -> maybe (Left "inserted entity not found") Right <$> getEntity key
Just key -> do
existingKey <- get key
case existingKey of
Just _ -> pure $ Left "entity already exists by this key"
Nothing -> do
existingUnique <- checkUnique n
case existingUnique of
Just _ -> pure $ Left "entity would violate unique constraint"
Nothing -> do
Persist.insertKey key n
maybe (Left "inserted entity not found") Right <$> getEntity key
insertKeyedEither key n = do
RunDB runDB <- asks dbRunner
lift . runDB $ do
existingKey <- get key
case existingKey of
Just _ -> pure $ Left "entity already exists by this key"
Nothing -> do
existingUnique <- checkUnique n
case existingUnique of
Just _ -> pure $ Left "entity would violate unique constraint"
Nothing -> do
Persist.insertKey key n
maybe (Left "inserted entity not found") Right <$> getEntity key
remove key = do
RunDB runDB <- asks dbRunner
lift . runDB $ delete key
runGraphulaT
:: MonadUnliftIO m
=> Maybe Int
-- ^ Optional seed
-> (forall b. ReaderT SqlBackend n b -> m b)
-- ^ Database runner
-> GraphulaT n m a
-> m a
runGraphulaT mSeed runDB action = do
seed <- maybe (liftIO randomIO) pure mSeed
qcGen <- liftIO $ newIORef $ mkQCGen seed
runReaderT (runGraphulaT' action) (Args (RunDB runDB) qcGen)
`catch` logFailingSeed seed
newtype GraphulaSeed = GraphulaSeed Int
deriving stock (Show)
logFailingSeed :: MonadUnliftIO m => Int -> SomeException -> m a
logFailingSeed seed ex = case fromException ex of
Just hf -> rethrowHUnitWith ("Graphula with seed: " <> show seed) hf
_ -> checkpoint (Annotation $ GraphulaSeed seed) $ throwIO ex
rethrowHUnitWith :: MonadIO m => String -> HUnitFailure -> m a
rethrowHUnitWith message (HUnitFailure l r) =
throwIO . HUnitFailure l . Reason $ message ++ "\n\n" ++ formatFailureReason r
type GraphulaNode m a =
( HasDependencies a
, Logging m a
, PersistEntityBackend a ~ SqlBackend
, PersistEntity a
, Typeable a
, Arbitrary a
)