forked from yesodweb/persistent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPostgresql.hs
More file actions
1417 lines (1320 loc) · 54.7 KB
/
Postgresql.hs
File metadata and controls
1417 lines (1320 loc) · 54.7 KB
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
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{-# LANGUAGE CPP #-}
{-# LANGUAGE DeriveDataTypeable #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE GADTs #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE StandaloneDeriving #-}
{-# LANGUAGE TupleSections #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE TypeOperators #-}
{-# LANGUAGE ViewPatterns #-}
#if MIN_VERSION_base(4,12,0)
{-# LANGUAGE DerivingVia #-}
{-# LANGUAGE QuasiQuotes #-}
{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE UndecidableInstances #-}
#endif
-- | A postgresql backend for persistent.
module Database.Persist.Postgresql
( withPostgresqlPool
, withPostgresqlPoolWithVersion
, withPostgresqlPoolWithConf
, withPostgresqlPoolModified
, withPostgresqlPoolModifiedWithVersion
, withPostgresqlConn
, withPostgresqlConnWithVersion
, createPostgresqlPool
, createPostgresqlPoolModified
, createPostgresqlPoolModifiedWithVersion
, createPostgresqlPoolTailored
, createPostgresqlPoolWithConf
, module Database.Persist.Sql
, ConnectionString
, HandleUpdateCollision
, copyField
, copyUnlessNull
, copyUnlessEmpty
, copyUnlessEq
, excludeNotEqualToOriginal
, PostgresConf (..)
, PgInterval (..)
, upsertWhere
, upsertManyWhere
, openSimpleConn
, openSimpleConnWithVersion
, getServerVersion
, getSimpleConn
, tableName
, fieldName
, mockMigration
, migrateEnableExtension
, PostgresConfHooks (..)
, defaultPostgresConfHooks
, RawPostgresql (..)
, createRawPostgresqlPool
, createRawPostgresqlPoolModified
, createRawPostgresqlPoolModifiedWithVersion
, createRawPostgresqlPoolWithConf
, createBackend
) where
import qualified Database.PostgreSQL.LibPQ as LibPQ
import qualified Database.PostgreSQL.Simple as PG
import qualified Database.PostgreSQL.Simple.FromField as PGFF
import qualified Database.PostgreSQL.Simple.Internal as PG
import Database.PostgreSQL.Simple.Ok (Ok (..))
import qualified Database.PostgreSQL.Simple.Transaction as PG
import qualified Database.PostgreSQL.Simple.Types as PG
import Control.Exception (Exception, throw, throwIO)
import Control.Monad
import Control.Monad.Except
import Control.Monad.IO.Unlift (MonadIO (..), MonadUnliftIO)
import Control.Monad.Logger (MonadLoggerIO, runNoLoggingT)
import Control.Monad.Trans.Reader (ReaderT (..), asks, runReaderT)
#if !MIN_VERSION_base(4,12,0)
import Control.Monad.Trans.Reader (withReaderT)
#endif
import Control.Monad.Trans.Writer (WriterT (..), runWriterT)
import qualified Data.List.NonEmpty as NEL
import Data.Proxy (Proxy (..))
import Data.Acquire (Acquire, mkAcquire)
import Data.Aeson
import Data.Aeson.Types (modifyFailure)
import qualified Data.Attoparsec.Text as AT
import Data.ByteString (ByteString)
import qualified Data.ByteString.Char8 as B8
import Data.Conduit
import Data.Data (Data)
import Data.Either (partitionEithers)
import Data.IORef
import Data.Int (Int64)
import Data.List.NonEmpty (NonEmpty)
import qualified Data.Map as Map
import qualified Data.Monoid as Monoid
import Data.Pool (Pool)
import Data.Text (Text)
import qualified Data.Text as T
import qualified Data.Text.Encoding as T
import qualified Data.Text.IO as T
import Data.Text.Read (rational)
import System.Environment (getEnvironment)
#if MIN_VERSION_base(4,12,0)
import Database.Persist.Compatible
#endif
import qualified Data.Vault.Strict as Vault
import Database.Persist.Postgresql.Internal
import Database.Persist.Sql
import qualified Database.Persist.Sql.Util as Util
import Database.Persist.SqlBackend
import System.IO.Unsafe (unsafePerformIO)
-- | A @libpq@ connection string. A simple example of connection
-- string would be @\"host=localhost port=5432 user=test
-- dbname=test password=test\"@. Please read libpq's
-- documentation at
-- <https://www.postgresql.org/docs/current/static/libpq-connect.html>
-- for more details on how to create such strings.
type ConnectionString = ByteString
-- | PostgresServerVersionError exception. This is thrown when persistent
-- is unable to find the version of the postgreSQL server.
data PostgresServerVersionError = PostgresServerVersionError String
instance Show PostgresServerVersionError where
show (PostgresServerVersionError uniqueMsg) =
"Unexpected PostgreSQL server version, got " <> uniqueMsg
instance Exception PostgresServerVersionError
-- | Create a PostgreSQL connection pool and run the given action. The pool is
-- properly released after the action finishes using it. Note that you should
-- not use the given 'ConnectionPool' outside the action since it may already
-- have been released.
-- The provided action should use 'runSqlConn' and *not* 'runReaderT' because
-- the former brackets the database action with transaction begin/commit.
withPostgresqlPool
:: (MonadLoggerIO m, MonadUnliftIO m)
=> ConnectionString
-- ^ Connection string to the database.
-> Int
-- ^ Number of connections to be kept open in
-- the pool.
-> (Pool SqlBackend -> m a)
-- ^ Action to be executed that uses the
-- connection pool.
-> m a
withPostgresqlPool ci = withPostgresqlPoolWithVersion getServerVersion ci
-- | Same as 'withPostgresPool', but takes a callback for obtaining
-- the server version (to work around an Amazon Redshift bug).
--
-- @since 2.6.2
withPostgresqlPoolWithVersion
:: (MonadUnliftIO m, MonadLoggerIO m)
=> (PG.Connection -> IO (Maybe Double))
-- ^ Action to perform to get the server version.
-> ConnectionString
-- ^ Connection string to the database.
-> Int
-- ^ Number of connections to be kept open in
-- the pool.
-> (Pool SqlBackend -> m a)
-- ^ Action to be executed that uses the
-- connection pool.
-> m a
withPostgresqlPoolWithVersion getVerDouble ci = do
let
getVer = oldGetVersionToNew getVerDouble
withSqlPool $ open' (const $ return ()) getVer id ci
-- | Same as 'withPostgresqlPool', but can be configured with 'PostgresConf' and 'PostgresConfHooks'.
--
-- @since 2.11.0.0
withPostgresqlPoolWithConf
:: (MonadUnliftIO m, MonadLoggerIO m)
=> PostgresConf
-- ^ Configuration for connecting to Postgres
-> PostgresConfHooks
-- ^ Record of callback functions
-> (Pool SqlBackend -> m a)
-- ^ Action to be executed that uses the
-- connection pool.
-> m a
withPostgresqlPoolWithConf conf hooks = do
let
getVer = pgConfHooksGetServerVersion hooks
modConn = pgConfHooksAfterCreate hooks
let
logFuncToBackend = open' modConn getVer id (pgConnStr conf)
withSqlPoolWithConfig logFuncToBackend (postgresConfToConnectionPoolConfig conf)
-- | Same as 'withPostgresqlPool', but with the 'createPostgresqlPoolModified'
-- feature.
--
-- @since 2.13.5.0
withPostgresqlPoolModified
:: (MonadUnliftIO m, MonadLoggerIO m)
=> (PG.Connection -> IO ())
-- ^ Action to perform after connection is created.
-> ConnectionString
-- ^ Connection string to the database.
-> Int
-- ^ Number of connections to be kept open in the pool.
-> (Pool SqlBackend -> m t)
-> m t
withPostgresqlPoolModified = withPostgresqlPoolModifiedWithVersion getServerVersion
-- | Same as 'withPostgresqlPool', but with the
-- 'createPostgresqlPoolModifiedWithVersion' feature.
--
-- @since 2.13.5.0
withPostgresqlPoolModifiedWithVersion
:: (MonadUnliftIO m, MonadLoggerIO m)
=> (PG.Connection -> IO (Maybe Double))
-- ^ Action to perform to get the server version.
-> (PG.Connection -> IO ())
-- ^ Action to perform after connection is created.
-> ConnectionString
-- ^ Connection string to the database.
-> Int
-- ^ Number of connections to be kept open in the pool.
-> (Pool SqlBackend -> m t)
-> m t
withPostgresqlPoolModifiedWithVersion getVerDouble modConn ci = do
withSqlPool (open' modConn (oldGetVersionToNew getVerDouble) id ci)
-- | Create a PostgreSQL connection pool. Note that it's your
-- responsibility to properly close the connection pool when
-- unneeded. Use 'withPostgresqlPool' for an automatic resource
-- control.
createPostgresqlPool
:: (MonadUnliftIO m, MonadLoggerIO m)
=> ConnectionString
-- ^ Connection string to the database.
-> Int
-- ^ Number of connections to be kept open
-- in the pool.
-> m (Pool SqlBackend)
createPostgresqlPool = createPostgresqlPoolModified (const $ return ())
-- | Same as 'createPostgresqlPool', but additionally takes a callback function
-- for some connection-specific tweaking to be performed after connection
-- creation. This could be used, for example, to change the schema. For more
-- information, see:
--
-- <https://groups.google.com/d/msg/yesodweb/qUXrEN_swEo/O0pFwqwQIdcJ>
--
-- @since 2.1.3
createPostgresqlPoolModified
:: (MonadUnliftIO m, MonadLoggerIO m)
=> (PG.Connection -> IO ())
-- ^ Action to perform after connection is created.
-> ConnectionString
-- ^ Connection string to the database.
-> Int
-- ^ Number of connections to be kept open in the pool.
-> m (Pool SqlBackend)
createPostgresqlPoolModified = createPostgresqlPoolModifiedWithVersion getServerVersion
-- | Same as other similarly-named functions in this module, but takes callbacks for obtaining
-- the server version (to work around an Amazon Redshift bug) and connection-specific tweaking
-- (to change the schema).
--
-- @since 2.6.2
createPostgresqlPoolModifiedWithVersion
:: (MonadUnliftIO m, MonadLoggerIO m)
=> (PG.Connection -> IO (Maybe Double))
-- ^ Action to perform to get the server version.
-> (PG.Connection -> IO ())
-- ^ Action to perform after connection is created.
-> ConnectionString
-- ^ Connection string to the database.
-> Int
-- ^ Number of connections to be kept open in the pool.
-> m (Pool SqlBackend)
createPostgresqlPoolModifiedWithVersion = createPostgresqlPoolTailored open'
-- | Same as 'createPostgresqlPoolModifiedWithVersion', but takes a custom connection-creation
-- function.
--
-- The only time you should reach for this function is if you need to write custom logic for creating
-- a connection to the database.
--
-- @since 2.13.6
createPostgresqlPoolTailored
:: (MonadUnliftIO m, MonadLoggerIO m)
=> ( (PG.Connection -> IO ())
-> (PG.Connection -> IO (NonEmpty Word))
-> ((PG.Connection -> SqlBackend) -> PG.Connection -> SqlBackend)
-> ConnectionString
-> LogFunc
-> IO SqlBackend
)
-- ^ Action that creates a postgresql connection (please see documentation on the un-exported @open'@ function in this same module.
-> (PG.Connection -> IO (Maybe Double))
-- ^ Action to perform to get the server version.
-> (PG.Connection -> IO ())
-- ^ Action to perform after connection is created.
-> ConnectionString
-- ^ Connection string to the database.
-> Int
-- ^ Number of connections to be kept open in the pool.
-> m (Pool SqlBackend)
createPostgresqlPoolTailored createConnection getVerDouble modConn ci = do
let
getVer = oldGetVersionToNew getVerDouble
createSqlPool $ createConnection modConn getVer id ci
-- | Same as 'createPostgresqlPool', but can be configured with 'PostgresConf' and 'PostgresConfHooks'.
--
-- @since 2.11.0.0
createPostgresqlPoolWithConf
:: (MonadUnliftIO m, MonadLoggerIO m)
=> PostgresConf
-- ^ Configuration for connecting to Postgres
-> PostgresConfHooks
-- ^ Record of callback functions
-> m (Pool SqlBackend)
createPostgresqlPoolWithConf conf hooks = do
let
getVer = pgConfHooksGetServerVersion hooks
modConn = pgConfHooksAfterCreate hooks
createSqlPoolWithConfig
(open' modConn getVer id (pgConnStr conf))
(postgresConfToConnectionPoolConfig conf)
postgresConfToConnectionPoolConfig :: PostgresConf -> ConnectionPoolConfig
postgresConfToConnectionPoolConfig conf =
ConnectionPoolConfig
{ connectionPoolConfigStripes = pgPoolStripes conf
, connectionPoolConfigIdleTimeout = fromInteger $ pgPoolIdleTimeout conf
, connectionPoolConfigSize = pgPoolSize conf
}
-- | Same as 'withPostgresqlPool', but instead of opening a pool
-- of connections, only one connection is opened.
-- The provided action should use 'runSqlConn' and *not* 'runReaderT' because
-- the former brackets the database action with transaction begin/commit.
withPostgresqlConn
:: (MonadUnliftIO m, MonadLoggerIO m)
=> ConnectionString
-> (SqlBackend -> m a)
-> m a
withPostgresqlConn = withPostgresqlConnWithVersion getServerVersion
-- | Same as 'withPostgresqlConn', but takes a callback for obtaining
-- the server version (to work around an Amazon Redshift bug).
--
-- @since 2.6.2
withPostgresqlConnWithVersion
:: (MonadUnliftIO m, MonadLoggerIO m)
=> (PG.Connection -> IO (Maybe Double))
-> ConnectionString
-> (SqlBackend -> m a)
-> m a
withPostgresqlConnWithVersion getVerDouble = do
let
getVer = oldGetVersionToNew getVerDouble
withSqlConn . open' (const $ return ()) getVer id
open'
:: (PG.Connection -> IO ())
-> (PG.Connection -> IO (NonEmpty Word))
-> ((PG.Connection -> SqlBackend) -> PG.Connection -> backend)
-- ^ How to construct the actual backend type desired. For most uses,
-- this is just 'id', since the desired backend type is 'SqlBackend'.
-- But some callers want a @'RawPostgresql' 'SqlBackend'@, and will
-- pass in 'withRawConnection'.
-> ConnectionString
-> LogFunc
-> IO backend
open' modConn getVer constructor cstr logFunc = do
conn <- PG.connectPostgreSQL cstr
modConn conn
ver <- getVer conn
smap <- newIORef mempty
return $ constructor (createBackend logFunc ver smap) conn
-- | Gets the PostgreSQL server version
--
-- @since 2.13.6
getServerVersion :: PG.Connection -> IO (Maybe Double)
getServerVersion conn = do
[PG.Only version] <- PG.query_ conn "show server_version"
let
version' = rational version
--- λ> rational "9.8.3"
--- Right (9.8,".3")
--- λ> rational "9.8.3.5"
--- Right (9.8,".3.5")
case version' of
Right (a, _) -> return $ Just a
Left err -> throwIO $ PostgresServerVersionError err
getServerVersionNonEmpty :: PG.Connection -> IO (NonEmpty Word)
getServerVersionNonEmpty conn = do
[PG.Only version] <- PG.query_ conn "show server_version"
case AT.parseOnly parseVersion (T.pack version) of
Left err ->
throwIO $
PostgresServerVersionError $
"Parse failure on: " <> version <> ". Error: " <> err
Right versionComponents -> case NEL.nonEmpty versionComponents of
Nothing ->
throwIO $
PostgresServerVersionError $
"Empty Postgres version string: " <> version
Just neVersion -> pure neVersion
where
-- Partially copied from the `versions` package
-- Typically server_version gives e.g. 12.3
-- In Persistent's CI, we get "12.4 (Debian 12.4-1.pgdg100+1)", so we ignore the trailing data.
parseVersion = AT.decimal `AT.sepBy` AT.char '.'
-- | Choose upsert sql generation function based on postgresql version.
-- PostgreSQL version >= 9.5 supports native upsert feature,
-- so depending upon that we have to choose how the sql query is generated.
-- upsertFunction :: Double -> Maybe (EntityDef -> Text -> Text)
upsertFunction :: a -> NonEmpty Word -> Maybe a
upsertFunction f version =
if (version >= postgres9dot5)
then Just f
else Nothing
where
postgres9dot5 :: NonEmpty Word
postgres9dot5 = 9 NEL.:| [5]
-- | If the user doesn't supply a Postgres version, we assume this version.
--
-- This is currently below any version-specific features Persistent uses.
minimumPostgresVersion :: NonEmpty Word
minimumPostgresVersion = 9 NEL.:| [4]
oldGetVersionToNew
:: (PG.Connection -> IO (Maybe Double)) -> (PG.Connection -> IO (NonEmpty Word))
oldGetVersionToNew oldFn = \conn -> do
mDouble <- oldFn conn
case mDouble of
Nothing -> pure minimumPostgresVersion
Just double -> do
let
(major, minor) = properFraction double
pure $ major NEL.:| [floor minor]
-- | Generate a 'SqlBackend' from a 'PG.Connection'.
openSimpleConn :: LogFunc -> PG.Connection -> IO SqlBackend
openSimpleConn = openSimpleConnWithVersion getServerVersion
-- | Generate a 'SqlBackend' from a 'PG.Connection', but takes a callback for
-- obtaining the server version.
--
-- @since 2.9.1
openSimpleConnWithVersion
:: (PG.Connection -> IO (Maybe Double))
-> LogFunc
-> PG.Connection
-> IO SqlBackend
openSimpleConnWithVersion getVerDouble logFunc conn = do
smap <- newIORef mempty
serverVersion <- oldGetVersionToNew getVerDouble conn
return $ createBackend logFunc serverVersion smap conn
underlyingConnectionKey :: Vault.Key PG.Connection
underlyingConnectionKey = unsafePerformIO Vault.newKey
{-# NOINLINE underlyingConnectionKey #-}
-- | Access underlying connection, returning 'Nothing' if the 'SqlBackend'
-- provided isn't backed by postgresql-simple.
--
-- @since 2.13.0
getSimpleConn
:: (BackendCompatible SqlBackend backend) => backend -> Maybe PG.Connection
getSimpleConn = Vault.lookup underlyingConnectionKey <$> getConnVault
-- | Create the backend given a logging function, server version, mutable statement cell,
-- and connection.
--
-- @since 2.13.6
createBackend
:: LogFunc
-> NonEmpty Word
-> IORef (Map.Map Text Statement)
-> PG.Connection
-> SqlBackend
createBackend logFunc serverVersion smap conn =
maybe id setConnPutManySql (upsertFunction putManySql serverVersion) $
maybe id setConnUpsertSql (upsertFunction upsertSql' serverVersion) $
setConnInsertManySql insertManySql' $
maybe id setConnRepsertManySql (upsertFunction repsertManySql serverVersion) $
modifyConnVault (Vault.insert underlyingConnectionKey conn) $
mkSqlBackend
MkSqlBackendArgs
{ connPrepare = prepare' conn
, connStmtMap = smap
, connInsertSql = insertSql'
, connClose = PG.close conn
, connMigrateSql = migrate' emptyBackendSpecificOverrides
, connBegin = \_ mIsolation -> case mIsolation of
Nothing -> PG.begin conn
Just iso ->
PG.beginLevel
( case iso of
ReadUncommitted -> PG.ReadCommitted -- PG Upgrades uncommitted reads to committed anyways
ReadCommitted -> PG.ReadCommitted
RepeatableRead -> PG.RepeatableRead
Serializable -> PG.Serializable
)
conn
, connCommit = const $ PG.commit conn
, connRollback = const $ PG.rollback conn
, connEscapeFieldName = escapeF
, connEscapeTableName = escapeE . getEntityDBName
, connEscapeRawName = escape
, connNoLimit = "LIMIT ALL"
, connRDBMS = "postgresql"
, connLimitOffset = decorateSQLWithLimitOffset "LIMIT ALL"
, connLogFunc = logFunc
}
prepare' :: PG.Connection -> Text -> IO Statement
prepare' conn sql = do
let
query = PG.Query (T.encodeUtf8 sql)
return
Statement
{ stmtFinalize = return ()
, stmtReset = return ()
, stmtExecute = execute' conn query
, stmtQuery = withStmt' conn query
}
insertSql' :: EntityDef -> [PersistValue] -> InsertSqlResult
insertSql' ent vals =
case getEntityId ent of
EntityIdNaturalKey _pdef ->
ISRManyKeys sql vals
EntityIdField field ->
ISRSingle (sql <> " RETURNING " <> escapeF (fieldDB field))
where
(fieldNames, placeholders) = unzip (Util.mkInsertPlaceholders ent escapeF)
sql =
T.concat
[ "INSERT INTO "
, escapeE $ getEntityDBName ent
, if null (getEntityFields ent)
then " DEFAULT VALUES"
else
T.concat
[ "("
, T.intercalate "," fieldNames
, ") VALUES("
, T.intercalate "," placeholders
, ")"
]
]
upsertSql' :: EntityDef -> NonEmpty (FieldNameHS, FieldNameDB) -> Text -> Text
upsertSql' ent uniqs updateVal =
T.concat
[ "INSERT INTO "
, escapeE (getEntityDBName ent)
, "("
, T.intercalate "," fieldNames
, ") VALUES ("
, T.intercalate "," placeholders
, ") ON CONFLICT ("
, T.intercalate "," $ map (escapeF . snd) (NEL.toList uniqs)
, ") DO UPDATE SET "
, updateVal
, " WHERE "
, wher
, " RETURNING ??"
]
where
(fieldNames, placeholders) = unzip (Util.mkInsertPlaceholders ent escapeF)
wher = T.intercalate " AND " $ map (singleClause . snd) $ NEL.toList uniqs
singleClause :: FieldNameDB -> Text
singleClause field = escapeE (getEntityDBName ent) <> "." <> (escapeF field) <> " =?"
-- | SQL for inserting multiple rows at once and returning their primary keys.
insertManySql' :: EntityDef -> [[PersistValue]] -> InsertSqlResult
insertManySql' ent valss =
ISRSingle sql
where
(fieldNames, placeholders) = unzip (Util.mkInsertPlaceholders ent escapeF)
sql =
T.concat
[ "INSERT INTO "
, escapeE (getEntityDBName ent)
, "("
, T.intercalate "," fieldNames
, ") VALUES ("
, T.intercalate "),(" $ replicate (length valss) $ T.intercalate "," placeholders
, ") RETURNING "
, Util.commaSeparated $ NEL.toList $ Util.dbIdColumnsEsc escapeF ent
]
execute' :: PG.Connection -> PG.Query -> [PersistValue] -> IO Int64
execute' conn query vals = PG.execute conn query (map P vals)
withStmt'
:: (MonadIO m)
=> PG.Connection
-> PG.Query
-> [PersistValue]
-> Acquire (ConduitM () [PersistValue] m ())
withStmt' conn query vals =
pull `fmap` mkAcquire openS closeS
where
openS = do
-- Construct raw query
rawquery <- PG.formatQuery conn query (map P vals)
-- Take raw connection
(rt, rr, rc, ids) <- PG.withConnection conn $ \rawconn -> do
-- Execute query
mret <- LibPQ.exec rawconn rawquery
case mret of
Nothing -> do
merr <- LibPQ.errorMessage rawconn
fail $ case merr of
Nothing -> "Postgresql.withStmt': unknown error"
Just e -> "Postgresql.withStmt': " ++ B8.unpack e
Just ret -> do
-- Check result status
status <- LibPQ.resultStatus ret
case status of
LibPQ.TuplesOk -> return ()
_ -> PG.throwResultError "Postgresql.withStmt': bad result status " ret status
-- Get number and type of columns
cols <- LibPQ.nfields ret
oids <- forM [0 .. cols - 1] $ \col -> fmap ((,) col) (LibPQ.ftype ret col)
-- Ready to go!
rowRef <- newIORef (LibPQ.Row 0)
rowCount <- LibPQ.ntuples ret
return (ret, rowRef, rowCount, oids)
let
getters =
map (\(col, oid) -> getGetter oid $ PG.Field rt col oid) ids
return (rt, rr, rc, getters)
closeS (ret, _, _, _) = LibPQ.unsafeFreeResult ret
pull x = do
y <- liftIO $ pullS x
case y of
Nothing -> return ()
Just z -> yield z >> pull x
pullS (ret, rowRef, rowCount, getters) = do
row <- atomicModifyIORef rowRef (\r -> (r + 1, r))
if row == rowCount
then return Nothing
else fmap Just $ forM (zip getters [0 ..]) $ \(getter, col) -> do
mbs <- LibPQ.getvalue' ret row col
case mbs of
Nothing ->
-- getvalue' verified that the value is NULL.
-- However, that does not mean that there are
-- no NULL values inside the value (e.g., if
-- we're dealing with an array of optional values).
return PersistNull
Just bs -> do
ok <- PGFF.runConversion (getter mbs) conn
bs `seq` case ok of
Errors (exc : _) -> throw exc
Errors [] -> error "Got an Errors, but no exceptions"
Ok v -> return v
migrate'
:: BackendSpecificOverrides
-> [EntityDef]
-> (Text -> IO Statement)
-> EntityDef
-> IO (Either [Text] CautiousMigration)
migrate' overrides allDefs getter entity =
fmap (fmap $ map showAlterDb) $
migrateStructured overrides allDefs getter entity
-- | Get the SQL string for the table that a PersistEntity represents.
-- Useful for raw SQL queries.
tableName :: (PersistEntity record) => record -> Text
tableName = escapeE . tableDBName
-- | Get the SQL string for the field that an EntityField represents.
-- Useful for raw SQL queries.
fieldName :: (PersistEntity record) => EntityField record typ -> Text
fieldName = escapeF . fieldDBName
-- | Information required to connect to a PostgreSQL database
-- using @persistent@'s generic facilities. These values are the
-- same that are given to 'withPostgresqlPool'.
data PostgresConf = PostgresConf
{ pgConnStr :: ConnectionString
-- ^ The connection string.
, -- TODO: Currently stripes, idle timeout, and pool size are all separate fields
-- When Persistent next does a large breaking release (3.0?), we should consider making these just a single ConnectionPoolConfig value
--
-- Currently there the idle timeout is an Integer, rather than resource-pool's NominalDiffTime type.
-- This is because the time package only recently added the Read instance for NominalDiffTime.
-- Future TODO: Consider removing the Read instance, and/or making the idle timeout a NominalDiffTime.
pgPoolStripes :: Int
-- ^ How many stripes to divide the pool into. See "Data.Pool" for details.
-- @since 2.11.0.0
, pgPoolIdleTimeout :: Integer -- Ideally this would be a NominalDiffTime, but that type lacks a Read instance https://github.com/haskell/time/issues/130
-- ^ How long connections can remain idle before being disposed of, in seconds.
-- @since 2.11.0.0
, pgPoolSize :: Int
-- ^ How many connections should be held in the connection pool.
}
deriving (Show, Read, Data)
instance FromJSON PostgresConf where
parseJSON v = modifyFailure ("Persistent: error loading PostgreSQL conf: " ++) $
flip (withObject "PostgresConf") v $ \o -> do
let
defaultPoolConfig = defaultConnectionPoolConfig
database <- o .: "database"
host <- o .: "host"
port <- o .:? "port" .!= 5432
user <- o .: "user"
password <- o .: "password"
poolSize <- o .:? "poolsize" .!= (connectionPoolConfigSize defaultPoolConfig)
poolStripes <-
o .:? "stripes" .!= (connectionPoolConfigStripes defaultPoolConfig)
poolIdleTimeout <-
o
.:? "idleTimeout"
.!= (floor $ connectionPoolConfigIdleTimeout defaultPoolConfig)
let
ci =
PG.ConnectInfo
{ PG.connectHost = host
, PG.connectPort = port
, PG.connectUser = user
, PG.connectPassword = password
, PG.connectDatabase = database
}
cstr = PG.postgreSQLConnectionString ci
return $ PostgresConf cstr poolStripes poolIdleTimeout poolSize
instance PersistConfig PostgresConf where
type PersistConfigBackend PostgresConf = SqlPersistT
type PersistConfigPool PostgresConf = ConnectionPool
createPoolConfig conf = runNoLoggingT $ createPostgresqlPoolWithConf conf defaultPostgresConfHooks
runPool _ = runSqlPool
loadConfig = parseJSON
applyEnv c0 = do
env <- getEnvironment
return $
addUser env $
addPass env $
addDatabase env $
addPort env $
addHost env c0
where
addParam param val c =
c{pgConnStr = B8.concat [pgConnStr c, " ", param, "='", pgescape val, "'"]}
pgescape = B8.pack . go
where
go ('\'' : rest) = '\\' : '\'' : go rest
go ('\\' : rest) = '\\' : '\\' : go rest
go (x : rest) = x : go rest
go [] = []
maybeAddParam param envvar env =
maybe id (addParam param) $
lookup envvar env
addHost = maybeAddParam "host" "PGHOST"
addPort = maybeAddParam "port" "PGPORT"
addUser = maybeAddParam "user" "PGUSER"
addPass = maybeAddParam "password" "PGPASS"
addDatabase = maybeAddParam "dbname" "PGDATABASE"
-- | Hooks for configuring the Persistent/its connection to Postgres
--
-- @since 2.11.0
data PostgresConfHooks = PostgresConfHooks
{ pgConfHooksGetServerVersion :: PG.Connection -> IO (NonEmpty Word)
-- ^ Function to get the version of Postgres
--
-- The default implementation queries the server with "show server_version".
-- Some variants of Postgres, such as Redshift, don't support showing the version.
-- It's recommended you return a hardcoded version in those cases.
--
-- @since 2.11.0
, pgConfHooksAfterCreate :: PG.Connection -> IO ()
-- ^ Action to perform after a connection is created.
--
-- Typical uses of this are modifying the connection (e.g. to set the schema) or logging a connection being created.
--
-- The default implementation does nothing.
--
-- @since 2.11.0
}
-- | Default settings for 'PostgresConfHooks'. See the individual fields of 'PostgresConfHooks' for the default values.
--
-- @since 2.11.0
defaultPostgresConfHooks :: PostgresConfHooks
defaultPostgresConfHooks =
PostgresConfHooks
{ pgConfHooksGetServerVersion = getServerVersionNonEmpty
, pgConfHooksAfterCreate = const $ pure ()
}
mockMigrate
:: BackendSpecificOverrides
-> [EntityDef]
-> (Text -> IO Statement)
-> EntityDef
-> IO (Either [Text] [(Bool, Text)])
mockMigrate overrides allDefs _ entity =
fmap (fmap $ map showAlterDb) $
return $
Right $
mockMigrateStructured overrides allDefs entity
-- | Mock a migration even when the database is not present.
-- This function performs the same functionality of 'printMigration'
-- with the difference that an actual database is not needed.
mockMigration :: Migration -> IO ()
mockMigration mig = do
smap <- newIORef mempty
let
sqlbackend =
mkSqlBackend
MkSqlBackendArgs
{ connPrepare = \_ -> do
return
Statement
{ stmtFinalize = return ()
, stmtReset = return ()
, stmtExecute = undefined
, stmtQuery = \_ -> return $ return ()
}
, connInsertSql = undefined
, connStmtMap = smap
, connClose = undefined
, connMigrateSql = mockMigrate emptyBackendSpecificOverrides
, connBegin = undefined
, connCommit = undefined
, connRollback = undefined
, connEscapeFieldName = escapeF
, connEscapeTableName = escapeE . getEntityDBName
, connEscapeRawName = escape
, connNoLimit = undefined
, connRDBMS = undefined
, connLimitOffset = undefined
, connLogFunc = undefined
}
result = runReaderT $ runWriterT $ runWriterT mig
resp <- result sqlbackend
mapM_ T.putStrLn $ map snd $ snd resp
putManySql :: EntityDef -> Int -> Text
putManySql ent n = putManySql' conflictColumns fields ent n
where
fields = getEntityFields ent
conflictColumns =
concatMap
(map (escapeF . snd) . NEL.toList . uniqueFields)
(getEntityUniques ent)
repsertManySql :: EntityDef -> Int -> Text
repsertManySql ent n = putManySql' conflictColumns fields ent n
where
fields = NEL.toList $ keyAndEntityFields ent
conflictColumns = NEL.toList $ escapeF . fieldDB <$> getEntityKeyFields ent
-- | This type is used to determine how to update rows using Postgres'
-- @INSERT ... ON CONFLICT KEY UPDATE@ functionality, exposed via
-- 'upsertWhere' and 'upsertManyWhere' in this library.
--
-- @since 2.12.1.0
data HandleUpdateCollision record where
-- | Copy the field directly from the record.
CopyField :: EntityField record typ -> HandleUpdateCollision record
-- | Only copy the field if it is not equal to the provided value.
CopyUnlessEq
:: (PersistField typ)
=> EntityField record typ
-> typ
-> HandleUpdateCollision record
-- | Copy the field into the database only if the value in the
-- corresponding record is non-@NULL@.
--
-- @since 2.12.1.0
copyUnlessNull
:: (PersistField typ)
=> EntityField record (Maybe typ)
-> HandleUpdateCollision record
copyUnlessNull field = CopyUnlessEq field Nothing
-- | Copy the field into the database only if the value in the
-- corresponding record is non-empty, where "empty" means the Monoid
-- definition for 'mempty'. Useful for 'Text', 'String', 'ByteString', etc.
--
-- The resulting 'HandleUpdateCollision' type is useful for the
-- 'upsertManyWhere' function.
--
-- @since 2.12.1.0
copyUnlessEmpty
:: (Monoid.Monoid typ, PersistField typ)
=> EntityField record typ
-> HandleUpdateCollision record
copyUnlessEmpty field = CopyUnlessEq field Monoid.mempty
-- | Copy the field into the database only if the field is not equal to the
-- provided value. This is useful to avoid copying weird nullary data into
-- the database.
--
-- The resulting 'HandleUpdateCollision' type is useful for the
-- 'upsertMany' function.
--
-- @since 2.12.1.0
copyUnlessEq
:: (PersistField typ)
=> EntityField record typ
-> typ
-> HandleUpdateCollision record
copyUnlessEq = CopyUnlessEq
-- | Copy the field directly from the record.
--
-- @since 2.12.1.0
copyField
:: (PersistField typ) => EntityField record typ -> HandleUpdateCollision record
copyField = CopyField
-- | Postgres specific 'upsertWhere'. This method does the following:
-- It will insert a record if no matching unique key exists.
-- If a unique key exists, it will update the relevant field with a user-supplied value, however,
-- it will only do this update on a user-supplied condition.
-- For example, here's how this method could be called like such:
--
-- @
-- upsertWhere record [recordField =. newValue] [recordField /= newValue]
-- @
--
-- Called thusly, this method will insert a new record (if none exists) OR update a recordField with a new value
-- assuming the condition in the last block is met.
--
-- @since 2.12.1.0
upsertWhere
:: ( backend ~ PersistEntityBackend record
, PersistEntity record
, PersistEntityBackend record ~ SqlBackend
, MonadIO m
, PersistStore backend
, BackendCompatible SqlBackend backend
, OnlyOneUniqueKey record
)
=> record
-> [Update record]
-> [Filter record]
-> ReaderT backend m ()
upsertWhere record updates filts =
upsertManyWhere [record] [] updates filts
-- | Postgres specific 'upsertManyWhere'.
--
-- The first argument is a list of new records to insert.
--
-- If there's unique key collisions for some or all of the proposed insertions,
-- you can use the second argument to specify which fields, under which
-- conditions (using 'HandleUpdateCollision' strategies,) will be copied from
-- each proposed, conflicting new record onto its corresponding row already present
-- in the database. Helpers such as 'copyField', 'copyUnlessEq',
-- 'copyUnlessNull' and 'copyUnlessEmpty' are exported from this module to help
-- with this, as well as the constructors for 'HandleUpdateCollision'.
-- For example, you may have a patch of updates to apply, some of which are NULL
-- to represent "no change"; you'd use 'copyUnlessNull' for each applicable
-- field in this case so any new values in the patch which are NULL don't
-- accidentally overwrite existing values in the database which are non-NULL.
--
-- Further updates to the matching records already in the database can be
-- specified in the third argument, these are arbitrary updates independent of
-- the new records proposed for insertion. For example, you can use this to
-- update a timestamp or a counter for all conflicting rows.