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
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
|
module Database.CDBI.Connection
(
SQLValue(..), SQLType(..), SQLResult, fromSQLResult, printSQLResults
, DBAction, DBError (..), DBErrorKind (..), Connection (..)
, runDBAction, runInTransaction, returnDB, failDB, (>+), (>+=)
, executeRaw, execute, select
, executeMultipleTimes, getColumnNames, valueToString
, connectSQLite, disconnect, writeConnection
, begin, commit, rollback, setForeignKeyCheck
, runWithDB
) where
import Data.Time
import Data.Char ( isDigit )
import Data.Function ( on )
import Data.List ( init, insertBy, intercalate, isInfixOf, isPrefixOf
, nub, tails, (\\) )
import System.IO ( Handle, hPutStrLn, hGetLine, hFlush, hClose, stderr )
import System.Process ( system )
import Control.Monad ( when, unless )
import ReadShowTerm ( readQTerm, readsQTerm, showQTerm )
import Global ( Global, GlobalSpec(..), global
, readGlobal, writeGlobal )
import System.IOExts ( connectToCommand )
import Text.CSV ( readCSV )
infixl 1 >+, >+=
dbDebug :: Bool
dbDebug = False
dbWithCSVMode :: Bool
dbWithCSVMode = True
type SQLResult a = Either DBError a
fromSQLResult :: SQLResult a -> a
fromSQLResult (Left err) = error $ "Database connection error: " ++ show err
fromSQLResult (Right val) = val
printSQLResults :: Show a => SQLResult [a] -> IO ()
printSQLResults (Left err) = putStrLn $ show err
printSQLResults (Right res) = mapM_ print res
data DBError = DBError DBErrorKind String
deriving (Eq,Show)
data DBErrorKind
= TableDoesNotExist
| ParameterError
| ConstraintViolation
| SyntaxError
| NoLineError
| LockedDBError
| UnknownError
deriving (Eq,Show)
data SQLValue
= SQLString String
| SQLInt Int
| SQLFloat Float
| SQLChar Char
| SQLBool Bool
| SQLDate ClockTime
| SQLNull
deriving Show
data SQLType
= SQLTypeString
| SQLTypeInt
| SQLTypeFloat
| SQLTypeChar
| SQLTypeBool
| SQLTypeDate
data DBAction a = DBAction (Connection -> IO (SQLResult a))
runDBAction :: DBAction a -> Connection -> IO (SQLResult a)
runDBAction (DBAction a) conn = a conn
runInTransaction :: DBAction a -> DBAction a
runInTransaction act = DBAction $ \conn -> do
res <- flip runDBAction conn $ do
begin
kes1 <- getForeignKeyErrors
r <- act
kes2 <- getForeignKeyErrors
return (kes2 \\ kes1, r)
case res of
Left err -> runDBAction rollback conn >> return (Left err)
Right (newkes,ares) ->
if null newkes
then runDBAction commit conn >> return (Right ares)
else runDBAction rollback conn >>
return (Left (DBError ConstraintViolation (showFKErrors newkes)))
where
showFKErrors = intercalate "," . nub .
concatMap (\row -> if length row < 3 then []
else [row!!0 ++ "/" ++ row!!2])
(>+=) :: DBAction a -> (a -> DBAction b) -> DBAction b
m >+= f = DBAction $ \conn -> do
v1 <- runDBAction m conn
case v1 of
Right val -> runDBAction (f val) conn
Left err -> return (Left err)
(>+) :: DBAction a -> DBAction b -> DBAction b
(>+) x y = x >+= (\_ -> y)
returnDB :: SQLResult a -> DBAction a
returnDB r = DBAction $ \_ -> return r
failDB :: DBError -> DBAction a
failDB err = returnDB (Left err)
instance Functor DBAction where
fmap f x = x >>= \a -> return (f a)
instance Applicative DBAction where
pure = return
a1 <*> a2 = a1 >>= \x -> fmap x a2
instance Monad DBAction where
a1 >>= a2 = a1 >+= a2
a1 >> a2 = a1 >+ a2
return x = returnDB (Right x)
instance MonadFail DBAction where
fail s = returnDB (Left (DBError UnknownError s))
select :: String -> [SQLValue] -> [SQLType] -> DBAction [[SQLValue]]
select query values types =
executeRaw query (map valueToString values) >+=
\a -> returnDB (convertValues a types)
execute :: String -> [SQLValue] -> DBAction ()
execute query values =
executeRaw query (map valueToString values) >+ return ()
executeMultipleTimes :: String -> [[SQLValue]] -> DBAction ()
executeMultipleTimes query values = mapM_ (execute query) values
data Connection = SQLiteConnection Handle
connectSQLite :: String -> IO Connection
connectSQLite db = do
exsqlite3 <- system "which sqlite3 > /dev/null"
when (exsqlite3>0) $ error
"Database interface `sqlite3' not found. Please install package `sqlite3'!"
h <- connectToCommand $ "sqlite3 " ++ db ++ " 2>&1"
hPutAndFlush h $ ".mode " ++ if dbWithCSVMode then "csv" else "line"
hPutAndFlush h $ ".log " ++ if dbWithCSVMode then "off" else "stdout"
hPutAndFlush h $ ".timeout 10000"
return $ SQLiteConnection h
disconnect :: Connection -> IO ()
disconnect (SQLiteConnection h) = hClose h
hPutAndFlush :: Handle -> String -> IO ()
hPutAndFlush h s = do
when dbDebug $ hPutStrLn stderr ("DB>>> " ++ s) >> hFlush stderr
hPutStrLn h s >> hFlush h
writeConnection :: String -> Connection -> IO ()
writeConnection str (SQLiteConnection h) = hPutAndFlush h str
readRawConnectionLine :: Connection -> IO String
readRawConnectionLine (SQLiteConnection h) = do
inp <- hGetLine h >>= return . stripCR
when dbDebug $ hPutStrLn stderr ("DB<<< " ++ inp) >> hFlush stderr
return inp
where
stripCR [] = []
stripCR [c] = if c == '\r' then [] else [c]
stripCR (c:cs@(_:_)) = c : stripCR cs
begin :: DBAction ()
begin = DBAction $ \conn -> do
writeConnection "begin;" conn
writeConnection "PRAGMA foreign_keys=ON;" conn
return (Right ())
commit :: DBAction ()
commit = DBAction $ \conn -> do
writeConnection "commit;" conn
return (Right ())
rollback :: DBAction ()
rollback = DBAction $ \conn -> do
writeConnection "rollback;" conn
return (Right ())
setForeignKeyCheck :: Bool -> DBAction ()
setForeignKeyCheck flag = DBAction $ \conn -> do
writeConnection ("PRAGMA foreign_keys=" ++ showFlag ++ ";") conn
return (Right ())
where
showFlag = if flag then "ON" else "OFF"
runWithDB :: String -> DBAction a -> IO (SQLResult a)
runWithDB dbname dbaction =
ensureSQLiteConnection dbname >>= runDBAction dbaction
runWithDB' :: String -> (Connection -> IO a) -> IO a
runWithDB' dbname dbaction = do
conn <- connectSQLite dbname
result <- dbaction conn
disconnect conn
return result
executeRaw :: String -> [String] -> DBAction [[String]]
executeRaw query para =
case insertParams query para of
Left err -> failDB err
Right qu -> DBAction $ \conn -> do
writeConnection qu conn
parseLines conn
getColumnNames :: String -> DBAction [String]
getColumnNames table = DBAction $ \conn -> do
writeConnection ("pragma table_info(" ++ table ++ ");") conn
result <- parseLines conn
case result of
Left err -> return (Left err)
Right xs -> return (Right (map retrieveColumnNames xs))
where
retrieveColumnNames xs = case xs of
(_:y:_) -> y
_ -> error "Database.CDBI.Connection.getColumnNames: wrong arguments"
getForeignKeyErrors :: DBAction [[String]]
getForeignKeyErrors = DBAction $ \conn -> do
writeConnection ("PRAGMA foreign_key_check;") conn
parseLines conn
parseLines :: Connection -> IO (SQLResult [[String]])
parseLines conn@(SQLiteConnection _) = do
random <- getRandom
case random of
Left err -> return (Left err)
Right val -> do
writeConnection ("select '" ++ val ++ "';") conn
parseSQLOutputUntil val conn
getRandom :: IO (SQLResult String)
getRandom = do
conn <- ensureSQLiteConnection ""
writeConnection "select hex(randomblob(8));" conn
result <- readConnectionLine conn
return result
insertParams :: String -> [String] -> SQLResult String
insertParams qu xs =
if (length xs == (countPlaceholder qu))
then Right (insertParams' qu xs)
else Left (DBError ParameterError
"Amount of placeholders not equal to length of placeholder-list")
where
insertParams' sql [] = sql
insertParams' sql params@(p:ps) = case sql of
"" -> ""
'\'':'?':'\'':cs->p ++ insertParams' cs ps
c:cs -> c : insertParams' cs params
countPlaceholder qu2 = case qu2 of
"" -> 0
'\'':'?':'\'':cs->1 + (countPlaceholder cs)
_:cs -> countPlaceholder cs
parseSQLOutputUntil :: String -> Connection -> IO (SQLResult [[String]])
parseSQLOutputUntil = if dbWithCSVMode then parseCSVUntil else parseLinesUntil
parseCSVUntil :: String -> Connection -> IO (SQLResult [[String]])
parseCSVUntil stop conn = do
output <- readLinesUntil
case output of Left err -> return $ Left err
Right csvlines -> return $ Right (concatMap readCSV csvlines)
where
readLinesUntil = do
line <- readConnectionLine conn
case line of
Left err -> return $ Left err
Right s -> if s == stop
then return $ Right []
else do rest <- readLinesUntil
case rest of Left err -> return $ Left err
Right ls -> return $ Right (s:ls)
parseLinesUntil :: String -> Connection -> IO (SQLResult [[String]])
parseLinesUntil stop conn@(SQLiteConnection _) = next
where
next = do
value <- readConnectionLine conn
case value of
Left (DBError NoLineError "") -> do
rest <- next
case rest of
Left err -> return $ Left err
Right xs -> return $ Right ([]:xs)
Left err -> readRawConnectionLine conn >> return (Left err)
Right val
| val == "index" -> next
| val == stop -> return (Right [[]])
| otherwise -> do
rest <- next
case rest of
Left err -> return $ Left err
Right ([]:xs) -> return $ Right ([val]:xs)
Right ((x:ys):xs) -> return $ Right ((val:(x:ys)):xs)
Right [] ->
error "Database.CDBI.Connection.parseLinesUntil: wrong arguments"
readConnectionLine :: Connection -> IO (SQLResult String)
readConnectionLine conn =
check <$> readRawConnectionLine conn
where
check :: String -> SQLResult String
check s = if dbWithCSVMode then checkCSV s else checkLine s
checkCSV s | "Error" `isPrefixOf` s
= Left (DBError (getErrorKindSQLite s) s)
| otherwise
= Right s
checkLine s | null s
= Left (DBError NoLineError "")
| "Error" `isPrefixOf` s
= Left (DBError (getErrorKindSQLite s) s)
| '=' `elem` s
= Right (getValue s)
| "automatic index on" `isInfixOf` s
= Right "index"
| otherwise
= Left (DBError (getErrorKindSQLite s) s)
getValue :: String -> String
getValue s =
if "case" `isInfixOf` s
then getCaseValue s
else
let taileq = tail (snd (break (== '=') s))
in if null taileq then "" else let (' ':val) = taileq
in val
where
getCaseValue str = getValue (readTilEnd str)
readTilEnd rest = head (filter (\ls -> "end" `isPrefixOf` ls) (tails rest))
getErrorKindSQLite :: String -> DBErrorKind
getErrorKindSQLite str
| "UNIQUE constraint" `isInfixOf` str = ConstraintViolation
| "FOREIGN KEY constraint" `isInfixOf` str = ConstraintViolation
| "no such table" `isInfixOf` str = TableDoesNotExist
| "syntax error" `isInfixOf` str = SyntaxError
| "database is locked" `isInfixOf` str = LockedDBError
| otherwise = UnknownError
valueToString :: SQLValue -> String
valueToString x = replaceEmptyString $
case x of
SQLString a -> "'" ++ encodeStringToSQL a ++ "'"
SQLChar a -> "'" ++ encodeStringToSQL [a] ++ "'"
SQLNull -> "NULL"
SQLDate a -> "'" ++ show (toUTCTime a) ++ "'"
SQLInt a -> show a
SQLFloat a -> show a
SQLBool a -> "'" ++ show a ++ "'"
replaceEmptyString :: String -> String
replaceEmptyString str = case str of
"''" -> "NULL"
st -> st
convertValues :: [[String]] -> [SQLType] -> SQLResult [[SQLValue]]
convertValues [] _ = Right []
convertValues (s:str) types =
if length s == length types
then Right (map (\x -> map convertValue (zip x types)) (s:str))
else if null s
then Right []
else Left (DBError ParameterError
"Number of returned parameters and types not equal")
convertValue :: (String,SQLType) -> SQLValue
convertValue (s, SQLTypeString) = if null s
then SQLNull
else SQLString (decodeStringFromSQL s)
convertValue (s, SQLTypeInt) =
case reads s of
[(a,"")] -> SQLInt a
_ -> SQLNull
convertValue (s, SQLTypeFloat) =
if isFloat s
then case readsQTerm s of
[] -> SQLNull
((a,_):_) -> SQLFloat a
else SQLNull
convertValue (s, SQLTypeBool) =
case readsQTerm s of
[(True,[])] -> SQLBool True
[(False,[])] -> SQLBool False
_ -> SQLNull
convertValue (s, SQLTypeDate) =
case readsQTerm s of
[(CalendarTime a b c d e f g, [])]
-> SQLDate (toClockTime (CalendarTime a b c d e f g))
_ -> SQLNull
convertValue ("", SQLTypeChar) = SQLNull
convertValue (s:_, SQLTypeChar) = SQLChar s
encodeStringToSQL :: String -> String
encodeStringToSQL s = doubleQuote (init (tail (showQTerm s)))
where
doubleQuote "" = ""
doubleQuote (c:cs) | c == '\'' = "''" ++ doubleQuote cs
| otherwise = c : doubleQuote cs
decodeStringFromSQL :: String -> String
decodeStringFromSQL s = readQTerm ('"' : s ++ ['"'])
isFloat :: String -> Bool
isFloat [a] = isDigit a
isFloat (a:b:_) = (isDigit a) || (isDigit b && a == '-')
isFloat [] = False
openDBConnections :: Global [(String,Connection)]
openDBConnections = global [] Temporary
ensureSQLiteConnection :: String -> IO Connection
ensureSQLiteConnection db = do
dbConnections <- readGlobal openDBConnections
maybe (addNewConnection dbConnections) return (lookup db dbConnections)
where
addNewConnection dbConnections = do
dbcon <- connectSQLite db
writeGlobal openDBConnections $
insertBy ((<=) `on` fst) (db,dbcon) dbConnections
return dbcon
withAllDBConnections :: (Connection -> IO _) -> IO ()
withAllDBConnections f = readGlobal openDBConnections >>= mapM_ (f . snd)
closeDBConnections :: IO ()
closeDBConnections = do
withAllDBConnections disconnect
writeGlobal openDBConnections []
|