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
--- ----------------------------------------------------------------------------
--- This is the main CDBI-module. It provides datatypes and functions to
--- do Database-Queries working with Entities (ER-Model)
--- @author Mike Tallarek, extensions by Julia Krone, Michael Hanus
---
--- @version 0.2
--- @category database
--- ----------------------------------------------------------------------------
module Database.CDBI.ER (
    -- Database Functions
    saveEntry, saveMultipleEntries, saveEntryCombined,
    insertEntry, insertEntries, restoreEntries,
    getEntries, getEntriesCombined, updateEntries, deleteEntries,
    insertEntryCombined, updateEntry, updateEntryCombined,
    getColumn, getColumnTuple, getColumnTriple, getColumnFourTuple,
    getColumnFiveTuple,
    --CDBI.Connection
    DBAction, Connection, SQLResult, printSQLResults,
    runInTransaction, (>+), (>+=),
    begin, commit, rollback, connectSQLite, disconnect, runWithDB,
    -- Datatypes
    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,
    -- CDBI.Criteria
    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

-- -----------------------------------------------------------------------------
-- Database functions with Entities
-- -----------------------------------------------------------------------------

--- Inserts an entry into the database.
--- @param a - The entry to save
--- @param en - The EntityDescription that describes the entity to be saved
--- @param conn - A Connection to a database which will be used for this
--- @return A Result without parameter if saving worked or an Error if there
--- was a problem
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

--- Saves an entry to the database (only for backward compatibility).
saveEntry :: a -> EntityDescription a -> DBAction ()
saveEntry = insertEntry

--- Inserts several entries into the database.
--- @param xs - The list of entries to save
--- @param en - The EntityDescription that describes the entities to be saved
--- @param conn - A Connection to a database which will be used for this
--- @return A Result without parameter if saving worked or an Error if there
--- was a problem. If one saving operation reports an error, every following
--- saving operation will be aborted but every saving operation up to that
--- point will be executed. If these executed saving operations should also
--- be discarded withTransaction or begin/commit/rollback should be used
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

--- Saves multiple entries to the database (only for backward compatibility).
saveMultipleEntries :: [a] -> EntityDescription a -> DBAction ()
saveMultipleEntries = insertEntries

--- Stores entries with their current keys in the database.
--- It is an error if entries with the same key are already in the database.
--- Thus, this operation is useful only to restore a database with saved data.
--- @param xs - The list of entries to save
--- @param en - The EntityDescription that describes the entities to be saved
--- @param conn - A Connection to a database which will be used for this
--- @return A Result without parameter if saving worked or an Error if there
--- was a problem. If one saving operation reports an error, every following
--- saving operation will be aborted but every saving operation up to that
--- point will be executed. If these executed saving operations should also
--- be discarded withTransaction or begin/commit/rollback should be used
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

--- Gets entries from the database.
--- @param spec - Specifier All or Distinct
--- @param en - The EntityDescription that describes the entity
--- @param crit - Criteria for the query
--- @param op - oreder-by clause
--- @param limit - int value to limit number of entities returned
--- @param conn - A Connection to a database which will be used for this
--- @return A Result with a list of entries as parameter or an Error
--- if something went wrong.
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


--- Gets a single Column from the database. 
--- @param setops - list of Setoperators to combine queries if more than one is 
---                 given, can be empty otherwise
--- @param sels - list of SingleColumnSelects to specify query,
---               if there are more requests than can be combined with 
---               setoperators they will be ignored
---@param options - order-by-clause for whole query
---@param limit - value to reduce number of returned rows
---@param conn - A Connection to a database which will be used for this
---@return A Result with a list of a-Values as parameter 
---       (where a is the type of the column) or an Error
---       if something went wrong.
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


--- Gets two Columns from the database. 
--- @param setops - list of Setoperators to combine queries if more than one is
---                 given, can be empty otherwise
--- @param sels - list of TupleColumnSelects to specify queries, if there
---               are more requests than can be combined with setoperators
---               they will be ignored
---@param options - order-by-clause for whole query
---@param limit - value to reduce number of returned rows
---@param conn - A Connection to a database which will be used for this
---@return A Result with a list of a-Values as parameter 
---       (where a is the type of the column) or an Error
---       if something went wrong.     
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

--- Gets three Columns from the database. 
--- @param setops - list of Setoperators to combine queries if more than one is
---                 given, can be empty otherwise
--- @param sels - list of TripleColumnSelects to specify queries, if there
---               are more requests than can be combined with setoperators
---               they will be ignored
---@param options - order-by-clause for whole query
---@param limit - value to reduce number of returned rows
---@param conn - A Connection to a database which will be used for this
---@return A Result with a list of a-Values as parameter 
---       (where a is the type of the column) or an Error
---       if something went wrong.           
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

--- Gets four Columns from the database. 
--- @param setops - list of Setoperators to combine queries if more than one is 
---                 given, can be empty otherwise
--- @param sels - list of FourColumnSelects to specify queries, if there
---               are more requests than can be combined with setoperators
---               they will be ignored
---@param options - order-by-clause for whole query
---@param limit - value to reduce number of returned rows
---@param conn - A Connection to a database which will be used for this
---@return A Result with a list of a-Values as parameter 
---       (where a is the type of the column) or an Error
---       if something went wrong.   
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

--- Gets five Columns from the database. 
--- @param setops - list of Setoperators to combine queries if more than one is
---                 given, can be empty otherwise
--- @param sels - list of FiveColumnSelects to specify queries, if there
---               are more requests than can be combined with setoperators
---               they will be ignored
---@param options - order-by-clause for whole query
---@param limit - value to reduce number of returned rows
---@param conn - A Connection to a database which will be used for this
---@return A Result with a list of a-Values as parameter 
---       (where a is the type of the column) or an Error
---       if something went wrong.     
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


--- Gets combined entries from the database.
--- @param spec - Specifier Distinct or All
--- @param cd - The CombinedDescription that describes the entity
--- @param joins - joins to combine the entity, they will be applied
---                in a left-associative manner 
--- @param crit - Criteria for the query
--- @param op - order-by-clause
--- @param limit - int value to determine number of values returned
--- @param conn - A Connection to a database which will be used for this
--- @return A Result with a list of entries as parameter or an Error
--- if something went wrong.
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

--- Inserts combined entries.
--- @param a - The combined Entity to be saved
--- @param cd - The CombinedDescription that describes the entity
--- @param conn - A Connection to a database which will be used for this
--- @return A Result without parameter if saving worked or an Error if there
--- was a problem
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

--- Saves combined entries (for backward compatibility).
saveEntryCombined :: a -> CombinedDescription a -> DBAction ()
saveEntryCombined = insertEntryCombined

--- Updates entries depending on wether they fulfill the criteria or not
--- @param en - The EntityDescription descriping the Entities that are to be
--- updated
--- @param xs - A list of ColVal that descripe the columns that should be
--- updated and which values are to be inserted into them
--- @param const - A Constraint can be be given as input which describes
--- which entities should be updated. Only entities fulfilling the constraint
--- will be updated. Nothing updates every entry.
--- @param conn - A Connection to a database which will be used for this
--- @return A Result without parameter if everything went right,
--- an Error if something went wrong
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

--- Updates an entry by ID. Works for Entities that have a primary key as first value.
--- Function will update the entry in the
--- database with the ID of the entry that is given as parameter with the values of
--- the entry given as parameter
--- @param entry - The entry that will be updated
--- @param ed -> The EntityDescription describung the entity-type
--- @param conn -> A Connection to a database which will be used for this
--- @return A Result without parameter if everything went right,
--- an Error if something went wrong
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

--- Same as updateEntry but for combined Data
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

--- Deletes entries depending on wether they fulfill the criteria or not
--- @param en - The EntityDescription descriping the Entities that are to
--- be updated
--- @param const - A Constraint can be be given as input which describes
--- which entities should be deleted. Only entities fulfilling the constraint
--- will be deleted. Nothing deletes every entry.
--- @param conn - A Connection to a database which will be used for this
--- @return A Result without parameter if everything went right, an
--- Error if something went wrong
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

--- Drops a table from the database
--- @param en - The EntitiyDescription that describes the entity of which the
--- table should be dropped
--- @param conn -  A Connection to a database which will be used for this
--- @return A Result without paramter if everything went right, an Error if
--- something went wrong
dropTable :: EntityDescription a -> DBAction ()
dropTable en conn = do
  let query = "drop table '" ++ getTable en ++ "';"
  execute query [] conn

-- -----------------------------------------------------------------------------
-- Auxiliary Functions
-- -----------------------------------------------------------------------------

-- Create a String consisting of '?' seperated by commas corresponding to the
-- number of Types an Entity has
questionmarks :: EntityDescription a -> String
questionmarks en = questionmarksHelp (length (getTypes en))

questionmarksHelp :: Int -> String
questionmarksHelp n = intercalate ", " (replicate n "'?'")

-- Create the join String of a CombinedDescription
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))

-- Get the types of a CombinedDescription
getJoinTypes :: CombinedDescription a -> [SQLType]
getJoinTypes (CD nametype _ _ _) = getJoinString' (unzip3 nametype)
    where getJoinString' ((_, _, t:types)) = foldl (\a b -> a ++ b) t types