-
Notifications
You must be signed in to change notification settings - Fork 12
/
examples.hs
192 lines (147 loc) · 4.96 KB
/
examples.hs
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
{-# LANGUAGE TypeOperators, MultiParamTypeClasses, DeriveGeneric, OverloadedStrings #-}
import Control.Exception
import qualified Data.ByteString as S
import Data.Int
import Data.Maybe
import Database.PostgreSQL.ORM.Association
import Database.PostgreSQL.ORM.CreateTable
import Database.PostgreSQL.ORM.Model
import Database.PostgreSQL.Simple
import GHC.Generics
import Control.Applicative
import Database.PostgreSQL.Devel
import Database.PostgreSQL.Keywords
import System.IO.Unsafe
import Data.GetField
import Database.PostgreSQL.ORM.DBSelect
data MyType = MyType { myString :: String -- position 0
, myInt :: Int -- position 1
, myBool :: Bool -- position 2
, myMaybeChar :: Maybe Char -- position 3
, myMaybeString :: Maybe String -- position 4
} deriving (Show, Generic)
myType :: MyType
myType = MyType "my type" 21 True Nothing (Just "maybe string")
data Foo = Foo {
foo_key :: !DBKey
, foo_name :: String
, parent :: !(Maybe (DBRef Bar))
} deriving (Show, Generic)
instance Model Foo
mkFoo :: String -> Foo
mkFoo name = Foo NullKey name Nothing
data Bar = Bar {
barId :: !DBKey
, barNone :: !(Maybe Int32)
, barName :: !String
, barParent :: !(Maybe (DBRef Bar))
} deriving (Show, Generic)
instance Model Bar where modelInfo = underscoreModelInfo "bar"
data ParentBar = ParentBar
instance RowAlias ParentBar where rowAliasName _ = "parent_bar"
selfJoinTable :: JoinTable Bar (As ParentBar Bar)
selfJoinTable = defaultJoinTable
selfJoin :: Association Bar (As ParentBar Bar)
otherSelfJoin :: Association (As ParentBar Bar) Bar
(selfJoin, otherSelfJoin) = jtAssocs selfJoinTable
toParent :: Association Bar (As ParentBar Bar)
toParent = belongsTo
toChild :: Association (As ParentBar Bar) Bar
toChild = has
mkBar :: String -> Bar
mkBar msg = Bar NullKey (Just n) msg Nothing
where n = foldl (+) 0 $ map (toEnum . fromEnum) msg
data Joiner = Joiner {
jkey :: !DBKey
, jcomment :: !String
, jfoo :: (DBRef Foo)
, jbar :: !(Maybe (DBRef Bar))
} deriving (Show, Generic)
instance Model Joiner
joiner :: Joiner
joiner = Joiner (DBKey 5) "join comment" (DBRef 1) Nothing
bar :: Bar
bar = Bar NullKey (Just 44) "hi" Nothing
mkc :: IO Connection
mkc = connectPostgreSQL ""
c :: Connection
{-# NOINLINE c #-}
c = unsafePerformIO mkc
bar' :: Bar
bar' = Bar NullKey (Just 75) "bye" Nothing
data X = X deriving (Generic)
instance RowAlias X
{-
selfjoin :: IO [Bar :. As X Bar]
selfjoin = bracket mkc close $ \c ->
findWhere "bar.id = x.parent" c () :: IO [Bar :. As X Bar]
selfjoin' :: IO [(Bar,Bar)]
selfjoin' = bracket mkc close $ \c ->
map (\(b1 :. b2) -> (b1, fromAs X b2)) <$>
findWhere "bar.bar_key = X.bar_parent" c ()
getOne :: (Model a) => DBKeyType -> IO a
getOne k = bracket mkc close $ \c ->
let r = fromJust <$> findRow c (DBRef k `gAsTypeOf1` r)
in r
-}
data T1 = T1 deriving (Show, Generic)
instance RowAlias T1
data Author = Author {
authorId :: DBKey
} deriving (Show, Generic)
instance Model Author where modelInfo = underscoreModelInfo "author"
data Post = Post {
postId :: DBKey
, postAuthorId :: DBRef Author
} deriving (Show, Generic)
instance Model Post where modelInfo = underscoreModelInfo "post"
data Comment = Comment {
commentId :: DBKey
, commentPostId :: DBRef Post
} deriving (Show, Generic)
instance Model Comment where modelInfo = underscoreModelInfo "comment"
author_posts :: Association Author Post
post_author :: Association Post Author
(post_author, author_posts) = dbrefAssocs defaultDBRefInfo
post_comments :: Association Post Comment
post_comments = has
comment_post :: Association Comment Post
comment_post = belongsTo
comment_author :: Association Comment Author
comment_author = chainAssoc comment_post post_author
author_comments :: Association Author Comment
author_comments = chainAssoc author_posts post_comments
{-
junk = do
foos <- findAll c :: IO [Foo]
bars <- findAll c :: IO [Bar]
-- sequence $ zipWith (addJoin c) foos (drop 4 bars)
-- sequence $ zipWith (addJoin c) foos (drop 19 bars)
-- sequence $ zipWith (addJoin c) (drop 41 foos) bars
-}
data Quizog = Quizog {
qId :: !DBKey
, qNone :: !(Maybe Int32)
, qName :: !String
, qParent :: !(Maybe (DBRef Bar))
, qEd :: !String
} deriving (Show, Generic)
instance Model Quizog
quizog :: Quizog
quizog = Quizog { qId = NullKey
, qNone = Just 3
, qName = "Mr. Quizog to you"
, qParent = Nothing
, qEd = "Q.E.D."
}
dumbdbs :: DBSelect (Only Int)
dumbdbs = expressionDBSelect "1 + 1"
postdbs :: DBSelect Post
postdbs = modelDBSelect
lastval :: DBSelect (Only DBKeyType)
lastval = expressionDBSelect "lastval ()"
rankFraction :: DBSelect (Int, Maybe Double)
rankFraction = expressionDBSelect
"rank() OVER (ORDER BY none), none::float4/SUM(none) OVER () AS fraction"
bardbs :: DBSelect Bar
bardbs = modelDBSelect