1
0
Fork 0
mirror of https://code.sup39.dev/repos/Wqawg synced 2024-12-27 02:54:51 +09:00

PersistEntityGraph is for any graph, PersistEntityHierarchy for DAGs

This commit is contained in:
fr33domlover 2016-07-05 16:13:48 +00:00
parent 7d8596c52b
commit 7a33ef16f8
4 changed files with 61 additions and 8 deletions

View file

@ -23,5 +23,5 @@ import Prelude
import Database.Persist
class (PersistEntity n, PersistEntity e) => PersistEntityGraph n e where
parentField :: EntityField e (Key n)
childField :: EntityField e (Key n)
sourceField :: EntityField e (Key n)
destField :: EntityField e (Key n)

View file

@ -0,0 +1,52 @@
{- This file is part of Vervis.
-
- Written in 2016 by fr33domlover <fr33domlover@riseup.net>.
-
- Copying is an act of love. Please copy, reuse and share.
-
- The author(s) have dedicated all copyright and related and neighboring
- rights to this software to the public domain worldwide. This software is
- distributed without any warranty.
-
- You should have received a copy of the CC0 Public Domain Dedication along
- with this software. If not, see
- <http://creativecommons.org/publicdomain/zero/1.0/>.
-}
module Database.Persist.Local.Class.PersistEntityHierarchy
( HierarchyEdgeDirection (..)
, PersistEntityHierarchy (..)
, defParentField
, defChildField
)
where
import Prelude
import Database.Persist
import Database.Persist.Local.Class.PersistEntityGraph
data HierarchyEdgeDirection n e = TowardsChild | TowardsParent
class PersistEntityGraph n e => PersistEntityHierarchy n e where
edgeDirection :: HierarchyEdgeDirection n e
parentField :: EntityField e (Key n)
childField :: EntityField e (Key n)
defParentField
:: PersistEntityGraph n e
=> HierarchyEdgeDirection n e
-> EntityField e (Key n)
defParentField dir =
case dir of
TowardsChild -> sourceField
TowardsParent -> destField
defChildField
:: PersistEntityGraph n e
=> HierarchyEdgeDirection n e
-> EntityField e (Key n)
defChildField dir =
case dir of
TowardsChild -> destField
TowardsParent -> sourceField

View file

@ -49,17 +49,17 @@ dummyFromFst _ = Nothing
dummyFromSnd :: Proxy (a, b) -> Maybe b
dummyFromSnd _ = Nothing
childFieldFromProxy
destFieldFromProxy
:: PersistEntityGraph node edge
=> Proxy (node, edge)
-> EntityField edge (Key node)
childFieldFromProxy _ = childField
destFieldFromProxy _ = destField
parentFieldFromProxy
sourceFieldFromProxy
:: PersistEntityGraph node edge
=> Proxy (node, edge)
-> EntityField edge (Key node)
parentFieldFromProxy _ = parentField
sourceFieldFromProxy _ = sourceField
rawSqlWithGraph
:: ( RawSql a
@ -139,8 +139,8 @@ containsCycle' proxy = do
conn <- ask
let tNode = entityDef $ dummyFromFst proxy
tEdge = entityDef $ dummyFromSnd proxy
fwd = childFieldFromProxy proxy
bwd = parentFieldFromProxy proxy
fwd = destFieldFromProxy proxy
bwd = sourceFieldFromProxy proxy
start = DBName "temp_start_cte"
temp = DBName "temp_hierarchy_cte"
tid = DBName "id"

View file

@ -69,6 +69,7 @@ library
Database.Persist.Class.Local
Database.Persist.Sql.Local
Database.Persist.Local.Class.PersistEntityGraph
Database.Persist.Local.Class.PersistEntityHierarchy
Database.Persist.Local.Class.PersistQueryForest
Database.Persist.Local.RecursionDoc
Database.Persist.Local.Sql