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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
|
module Database.CDBI.ER (
saveEntry, saveMultipleEntries, saveEntryCombined,
insertEntry, insertEntries, restoreEntries,
getEntries, getEntriesCombined, updateEntries, deleteEntries,
insertEntryCombined, updateEntry, updateEntryCombined,
getColumn, getColumnTuple, getColumnTriple, getColumnFourTuple,
getColumnFiveTuple,
DBAction, Connection, SQLResult, printSQLResults,
runInTransaction, (>+), (>+=),
begin, commit, rollback, connectSQLite, disconnect, runWithDB,
EntityDescription, Value, ColumnDescription,
Join, SetOp(..), Specifier(..), Table,
SingleColumnSelect(..), TupleColumnSelect(..),
TripleColumnSelect(..), FourColumnSelect(..),
FiveColumnSelect(..), TableClause(..),
CombinedDescription, combineDescriptions, addDescription,
innerJoin, crossJoin, caseThen,
sum, avg, minV, maxV, none, count,
singleCol, tupleCol, tripleCol, fourCol, fiveCol,
int, float, char, string, bool, date, col, colNum, colVal,
Criteria(..), emptyCriteria, Constraint(Exists, Or, And, Not, None),
isNull, isNotNull, equal, (.=.), notEqual, (./=.), greaterThan, (.>.),
lessThan, (.<.), greaterThanEqual, (.>=.), lessThanEqual, (.<=.), like,
(.~.), between, isIn, (.<->.), Option, ascOrder, descOrder, groupBy,
groupByCol, having, condition, noHave, Condition(..),
sumIntCol, sumFloatCol, countCol, avgIntCol, avgFloatCol, minCol, maxCol,
caseResultInt,
caseResultFloat, caseResultString, caseResultChar, caseResultBool) where
import List (intercalate, nub)
import Time (ClockTime)
import Database.CDBI.Connection
import Database.CDBI.Criteria
import Database.CDBI.Description
import Database.CDBI.QueryTypes
insertEntry :: a -> EntityDescription a -> DBAction ()
insertEntry a en conn = do
let query = ("insert into '" ++ (getTable en)
++ "' values("++ (questionmarks en) ++");")
execute query ((getToInsertValues en) a) conn
saveEntry :: a -> EntityDescription a -> DBAction ()
saveEntry = insertEntry
insertEntries :: [a] -> EntityDescription a -> DBAction ()
insertEntries xs en conn = do
let query = ("insert into '" ++ (getTable en) ++
"' values("++ (questionmarks en) ++");")
executeMultipleTimes query (map (getToInsertValues en) xs) conn
saveMultipleEntries :: [a] -> EntityDescription a -> DBAction ()
saveMultipleEntries = insertEntries
restoreEntries :: [a] -> EntityDescription a -> DBAction ()
restoreEntries xs en conn = do
let query = ("insert into '" ++ (getTable en) ++
"' values("++ (questionmarks en) ++");")
executeMultipleTimes query (map (getToValues en) xs) conn
getEntries :: Specifier ->
EntityDescription a ->
Criteria ->
[Option] ->
Maybe Int ->
DBAction [a]
getEntries spec en crit op limit conn = do
let query = "select " ++ trSpecifier spec ++"* from '" ++ getTable en ++
"' " ++ trCriteria crit ++ trOption op ++ trLimit limit ++";"
((select query [] (getTypes en)) >+=
(\vals _ -> return $ Right (map (getToEntity en) vals)))
conn
getColumn :: [SetOp] ->
[SingleColumnSelect a] ->
[Option] ->
Maybe Int ->
DBAction [a]
getColumn _ [] _ _ _ = return $ Right []
getColumn setops (s:sels) options limit conn = do
let query = ((foldl (\quest (so, sel) -> quest ++ (trSetOp so) ++
(trSingleSelectQuery sel) )
(trSingleSelectQuery s)
(zip setops sels))
++ trOption options ++ trLimit limit++" ;")
((select query [] (getSingleType s)) >+=
(\vals _ -> return $ Right (map ((getSingleValFunc s). head) vals)))
conn
getColumnTuple :: [SetOp] ->
[TupleColumnSelect a b] ->
[Option] ->
Maybe Int ->
DBAction [(a,b)]
getColumnTuple _ [] _ _ _ = return $ Right []
getColumnTuple setops (s:sels) options limit conn = do
let query = ((foldl (\quest (so, sel) -> quest ++ (trSetOp so) ++
(trTupleSelectQuery sel) )
(trTupleSelectQuery s)
(zip setops sels))
++ trOption options ++ trLimit limit++" ;")
let (fun1, fun2) = getTupleValFuncs s
((select query [] (getTupleTypes s)) >+=
(\vals _ -> return $ Right (map (\[val1, val2] -> ((fun1 val1),(fun2 val2)))
vals)))
conn
getColumnTriple :: [SetOp] ->
[TripleColumnSelect a b c] ->
[Option] ->
Maybe Int ->
DBAction [(a,b,c)]
getColumnTriple _ [] _ _ _ = return $ Right []
getColumnTriple setops (s:sels) options limit conn = do
let query = ((foldl (\quest (so, sel) -> quest ++ (trSetOp so) ++
(trTripleSelectQuery sel) )
(trTripleSelectQuery s)
(zip setops sels))
++ trOption options ++ trLimit limit++" ;")
let (fun1, fun2, fun3) = getTripleValFuncs s
((select query [] (getTripleTypes s)) >+=
(\vals _ -> return $
Right
(map (\[val1, val2, val3] -> ((fun1 val1),
(fun2 val2),
(fun3 val3)))
vals)))
conn
getColumnFourTuple :: [SetOp]
-> [FourColumnSelect a b c d]
-> [Option]
-> Maybe Int
-> DBAction [(a,b,c,d)]
getColumnFourTuple _ [] _ _ _ = return $ Right []
getColumnFourTuple setops (s:sels) options limit conn = do
let query = ((foldl (\quest (so, sel) -> quest ++ (trSetOp so) ++
(trFourTupleSelectQuery sel))
(trFourTupleSelectQuery s)
(zip setops sels))
++ trOption options ++ trLimit limit++" ;")
let (fun1, fun2, fun3, fun4) = getFourTupleValFuncs s
((select query [] (getFourTupleTypes s)) >+=
(\vals _ -> return $
Right
(map (\[val1, val2, val3, val4] -> ((fun1 val1),
(fun2 val2),
(fun3 val3),
(fun4 val4)))
vals)))
conn
getColumnFiveTuple :: [SetOp]
-> [FiveColumnSelect a b c d e]
-> [Option]
-> Maybe Int
-> DBAction [(a,b,c,d,e)]
getColumnFiveTuple _ [] _ _ _ = return $ Right []
getColumnFiveTuple setops (s:sels) options limit conn = do
let query = ((foldl (\quest (so, sel) -> quest ++ (trSetOp so) ++
(trFiveTupleSelectQuery sel))
(trFiveTupleSelectQuery s)
(zip setops sels))
++ trOption options ++ trLimit limit++" ;")
let (fun1, fun2, fun3, fun4, fun5) = getFiveTupleValFuncs s
((select query [] (getFiveTupleTypes s)) >+=
(\vals _ -> return $
Right
(map (\[val1, val2, val3, val4, val5] -> ((fun1 val1),
(fun2 val2),
(fun3 val3),
(fun4 val4),
(fun5 val5)))
vals)))
conn
getEntriesCombined :: Specifier ->
CombinedDescription a ->
[Join] ->
Criteria ->
[Option] ->
Maybe Int ->
DBAction [a]
getEntriesCombined spec cd@(CD _ f _ _) joins crit op limit conn = do
let query = "select "++ trSpecifier spec ++ "* from " ++
(getJoinString cd joins) ++ " " ++
(trCriteria crit) ++ trOption op ++ trLimit limit ++ ";"
result <- select query [] (getJoinTypes cd) conn
case result of
Right xs -> return $ Right $ map f xs
Left err -> return $ Left err
insertEntryCombined :: a -> CombinedDescription a -> DBAction ()
insertEntryCombined ent (CD desc _ _ f3) conn = foldIO save
(Right _)
(zip desc (f3 ent))
where
save :: SQLResult () -> ((Table, Int, [SQLType]), [SQLValue])
-> IO (SQLResult ())
save res ((table, _, types), vals) = do
case res of
Left err -> return (Left err)
Right _ -> do let query = ("insert into '" ++ table
++ "' values(" ++
(questionmarksHelp (length types)) ++");")
execute query vals conn
saveEntryCombined :: a -> CombinedDescription a -> DBAction ()
saveEntryCombined = insertEntryCombined
updateEntries :: EntityDescription a -> [ColVal] -> Constraint -> DBAction ()
updateEntries en xs@((ColVal cl val):ys) const conn = do
let query = "update '" ++ (getTable en) ++ "' set " ++
(foldl
(\a (ColVal c v) ->
a ++ ", " ++ (getColumnSimple c)
++ " = " ++ (trValue v))
((getColumnSimple cl) ++ " = " ++ (trValue val)) ys) ++
" " ++ (trCriteria (Criteria const Nothing)) ++ ";"
execute query [] conn
updateEntry :: a -> EntityDescription a -> DBAction ()
updateEntry ent ed conn = do
let table = (getTable ed)
result <- getColumnNames table conn
case result of
Left err -> return (Left err)
Right columns -> do
let values = getToValues ed ent
putStrLn (show values)
let (SQLInt key) = head values
let keycol = head columns
let colvals = zipWith (colValAlt table) (tail columns) (tail values)
let column = Column ("\"" ++ keycol ++ "\"")
("\"" ++ table ++ "\".\"" ++ keycol ++ "\"")
let const = col column .=. int key
updateEntries ed colvals const conn
updateEntryCombined :: a -> CombinedDescription a -> DBAction ()
updateEntryCombined ent (CD desc _ f2 _) conn = foldIO update
(Right ())
(zip desc (f2 ent))
where
update :: SQLResult () -> ((Table, Int, [SQLType]), [SQLValue])
-> IO (SQLResult ())
update res ((table, _, _), values) = do
case res of
Left err -> return (Left err)
Right _ -> do
let (SQLInt key) = (\(x:_) -> x) values
result <- getColumnNames table conn
let const = ((col (Column "\"Key\"" ("\"" ++ table ++ "\".\"Key\""))
.=.
(int key)))
case result of
Left err -> return (Left err)
Right columns -> do
let ((col1,val1):colval) = zip columns values
execute ("update '" ++ table ++ "' set " ++
(foldl
(\a (c, v) -> a ++ ", " ++
c ++ " = " ++ (valueToString v))
(col1 ++ " = " ++ (valueToString val1)) colval) ++
" " ++ (trCriteria (Criteria const Nothing)) ++ ";") [] conn
deleteEntries :: EntityDescription a -> (Maybe Constraint) -> DBAction ()
deleteEntries en const conn = do
let query = "delete from '" ++ (getTable en) ++ "' " ++
(case const of
Just c -> "where "++(trConstraint c)
_ -> "") ++ ";"
execute query [] conn
dropTable :: EntityDescription a -> DBAction ()
dropTable en conn = do
let query = "drop table '" ++ getTable en ++ "';"
execute query [] conn
questionmarks :: EntityDescription a -> String
questionmarks en = questionmarksHelp (length (getTypes en))
questionmarksHelp :: Int -> String
questionmarksHelp n = intercalate ", " (replicate n "'?'")
getJoinString :: CombinedDescription a -> [Join] -> String
getJoinString (CD nametype _ _ _) jns= getJoinString' nametype jns
where getJoinString' ((n,r,_):xs) joins =
"'" ++ (foldl
(\a (table, ren, _ ,join) -> a ++ (trJoinPart1 join) ++" '" ++
table ++ "'" ++ (asTable table ren) ++
(trJoinPart2 join))
(n ++ "'" ++ (asTable n r))
(mapJns xs joins))
mapJns [] _ = []
mapJns ((tb, al, t):xs) (j:js) = ((tb, al , t, j): (mapJns xs js))
getJoinTypes :: CombinedDescription a -> [SQLType]
getJoinTypes (CD nametype _ _ _) = getJoinString' (unzip3 nametype)
where getJoinString' ((_, _, t:types)) = foldl (\a b -> a ++ b) t types
|