-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathFluentPostgresConfiguration.swift
196 lines (185 loc) · 9.12 KB
/
FluentPostgresConfiguration.swift
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
import Logging
import FluentKit
import AsyncKit
import NIOCore
import NIOSSL
import Foundation
import PostgresKit
import PostgresNIO
extension DatabaseConfigurationFactory {
/// Create a PostgreSQL database configuration from a URL string.
///
/// See ``PostgresKit/SQLPostgresConfiguration/init(url:)`` for the allowed URL format.
///
/// - Parameters:
/// - urlString: The URL describing the connection, as a string.
/// - maxConnectionsPerEventLoop: Maximum number of connections to open per event loop.
/// - connectionPoolTimeout: Maximum time to wait for a connection to become available per request.
/// - encodingContext: Encoding context to use for serializing data.
/// - decodingContext: Decoding context to use for deserializing data.
/// - sqlLogLevel: Level at which to log SQL queries.
public static func postgres(
url urlString: String,
maxConnectionsPerEventLoop: Int = 1,
connectionPoolTimeout: TimeAmount = .seconds(10),
encodingContext: PostgresEncodingContext<some PostgresJSONEncoder> = .default,
decodingContext: PostgresDecodingContext<some PostgresJSONDecoder> = .default,
sqlLogLevel: Logger.Level = .debug
) throws -> DatabaseConfigurationFactory {
.postgres(
configuration: try .init(url: urlString),
maxConnectionsPerEventLoop: maxConnectionsPerEventLoop,
connectionPoolTimeout: connectionPoolTimeout,
encodingContext: encodingContext, decodingContext: decodingContext,
sqlLogLevel: sqlLogLevel
)
}
/// Create a PostgreSQL database configuration from a URL.
///
/// See ``PostgresKit/SQLPostgresConfiguration/init(url:)`` for the allowed URL format.
///
/// - Parameters:
/// - url: The URL describing the connection.
/// - maxConnectionsPerEventLoop: Maximum number of connections to open per event loop.
/// - connectionPoolTimeout: Maximum time to wait for a connection to become available per request.
/// - encodingContext: Encoding context to use for serializing data.
/// - decodingContext: Decoding context to use for deserializing data.
/// - sqlLogLevel: Level at which to log SQL queries.
public static func postgres(
url: URL,
maxConnectionsPerEventLoop: Int = 1,
connectionPoolTimeout: TimeAmount = .seconds(10),
encodingContext: PostgresEncodingContext<some PostgresJSONEncoder> = .default,
decodingContext: PostgresDecodingContext<some PostgresJSONDecoder> = .default,
sqlLogLevel: Logger.Level = .debug
) throws -> DatabaseConfigurationFactory {
.postgres(
configuration: try .init(url: url),
maxConnectionsPerEventLoop: maxConnectionsPerEventLoop,
connectionPoolTimeout: connectionPoolTimeout,
encodingContext: encodingContext, decodingContext: decodingContext,
sqlLogLevel: sqlLogLevel
)
}
/// Create a PostgreSQL database configuration from lower-level configuration.
///
/// - Parameters:
/// - configuration: A ``PostgresKit/SQLPostgresConfiguration`` describing the connection.
/// - maxConnectionsPerEventLoop: Maximum number of connections to open per event loop.
/// - connectionPoolTimeout: Maximum time to wait for a connection to become available per request.
/// - encodingContext: Encoding context to use for serializing data.
/// - decodingContext: Decoding context to use for deserializing data.
/// - sqlLogLevel: Level at which to log SQL queries.
public static func postgres(
configuration: SQLPostgresConfiguration,
maxConnectionsPerEventLoop: Int = 1,
connectionPoolTimeout: TimeAmount = .seconds(10),
encodingContext: PostgresEncodingContext<some PostgresJSONEncoder>,
decodingContext: PostgresDecodingContext<some PostgresJSONDecoder>,
sqlLogLevel: Logger.Level = .debug
) -> DatabaseConfigurationFactory {
let configuration = FakeSendable(wrappedValue: configuration)
return .init {
FluentPostgresConfiguration(
configuration: configuration,
maxConnectionsPerEventLoop: maxConnectionsPerEventLoop,
connectionPoolTimeout: connectionPoolTimeout,
encodingContext: encodingContext, decodingContext: decodingContext,
sqlLogLevel: sqlLogLevel
)
}
}
}
fileprivate struct FakeSendable<T>: @unchecked Sendable { let wrappedValue: T }
/// We'd like to just default the context parameters of the "actual" method. Unfortunately, there are a few
/// cases involving the UNIX domain socket initalizer where usage can resolve to either the new
/// `SQLPostgresConfiguration`-based method or the deprecated `PostgresConfiguration`-based method, with no
/// obvious way to disambiguate which to call. Because the context parameters are generic, if they are defaulted,
/// the compiler resolves the ambiguity in favor of the deprecated method (which has no generic parameters).
/// However, by adding the non-defaulted-parameter variant which takes neither context, we've provided a version
/// which has no generic parameters either, which allows the compiler to resolve the ambiguity in favor of
/// the one with better availability (i.e. the one that isn't deprecated).
///
/// Example affected code:
///
/// _ = DatabaseConfigurationFactory.postgres(configuration: .init(unixDomainSocketPath: "", username: ""))
extension DatabaseConfigurationFactory {
/// ``postgres(configuration:maxConnectionsPerEventLoop:connectionPoolTimeout:encodingContext:decodingContext:sqlLogLevel:)``
/// with the `decodingContext` defaulted.
public static func postgres(
configuration: SQLPostgresConfiguration,
maxConnectionsPerEventLoop: Int = 1,
connectionPoolTimeout: TimeAmount = .seconds(10),
encodingContext: PostgresEncodingContext<some PostgresJSONEncoder>,
sqlLogLevel: Logger.Level = .debug
) -> DatabaseConfigurationFactory {
.postgres(
configuration: configuration,
maxConnectionsPerEventLoop: maxConnectionsPerEventLoop,
connectionPoolTimeout: connectionPoolTimeout,
encodingContext: encodingContext,
decodingContext: .default,
sqlLogLevel: sqlLogLevel
)
}
/// ``postgres(configuration:maxConnectionsPerEventLoop:connectionPoolTimeout:encodingContext:decodingContext:sqlLogLevel:)``
/// with the `encodingContext` defaulted.
public static func postgres(
configuration: SQLPostgresConfiguration,
maxConnectionsPerEventLoop: Int = 1,
connectionPoolTimeout: TimeAmount = .seconds(10),
decodingContext: PostgresDecodingContext<some PostgresJSONDecoder>,
sqlLogLevel: Logger.Level = .debug
) -> DatabaseConfigurationFactory {
.postgres(
configuration: configuration,
maxConnectionsPerEventLoop: maxConnectionsPerEventLoop,
connectionPoolTimeout: connectionPoolTimeout,
encodingContext: .default,
decodingContext: decodingContext,
sqlLogLevel: sqlLogLevel
)
}
/// ``postgres(configuration:maxConnectionsPerEventLoop:connectionPoolTimeout:encodingContext:decodingContext:sqlLogLevel:)``
/// with both `encodingContext` and `decodingContext` defaulted.
public static func postgres(
configuration: SQLPostgresConfiguration,
maxConnectionsPerEventLoop: Int = 1,
connectionPoolTimeout: TimeAmount = .seconds(10),
sqlLogLevel: Logger.Level = .debug
) -> DatabaseConfigurationFactory {
.postgres(
configuration: configuration,
maxConnectionsPerEventLoop: maxConnectionsPerEventLoop,
connectionPoolTimeout: connectionPoolTimeout,
encodingContext: .default,
decodingContext: .default,
sqlLogLevel: sqlLogLevel
)
}
}
/// The actual concrete configuration type produced by a configuration factory.
struct FluentPostgresConfiguration<E: PostgresJSONEncoder, D: PostgresJSONDecoder>: DatabaseConfiguration {
var middleware: [any AnyModelMiddleware] = []
fileprivate let configuration: FakeSendable<SQLPostgresConfiguration>
let maxConnectionsPerEventLoop: Int
let connectionPoolTimeout: TimeAmount
let encodingContext: PostgresEncodingContext<E>
let decodingContext: PostgresDecodingContext<D>
let sqlLogLevel: Logger.Level
func makeDriver(for databases: Databases) -> any DatabaseDriver {
let connectionSource = PostgresConnectionSource(sqlConfiguration: self.configuration.wrappedValue)
let elgPool = EventLoopGroupConnectionPool(
source: connectionSource,
maxConnectionsPerEventLoop: self.maxConnectionsPerEventLoop,
requestTimeout: self.connectionPoolTimeout,
on: databases.eventLoopGroup
)
return _FluentPostgresDriver(
pool: elgPool,
encodingContext: self.encodingContext,
decodingContext: self.decodingContext,
sqlLogLevel: self.sqlLogLevel
)
}
}