-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathFluentSQLiteConfiguration.swift
52 lines (47 loc) · 1.54 KB
/
FluentSQLiteConfiguration.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
import NIO
import FluentKit
import SQLiteKit
import AsyncKit
extension DatabaseConfigurationFactory {
public static func sqlite(
_ configuration: SQLiteConfiguration = .init(storage: .memory),
maxConnectionsPerEventLoop: Int = 1,
connectionPoolTimeout: NIO.TimeAmount = .seconds(10)
) -> Self {
return .init {
FluentSQLiteConfiguration(
configuration: configuration,
maxConnectionsPerEventLoop: maxConnectionsPerEventLoop,
middleware: [],
connectionPoolTimeout: connectionPoolTimeout
)
}
}
}
struct FluentSQLiteConfiguration: DatabaseConfiguration {
let configuration: SQLiteConfiguration
let maxConnectionsPerEventLoop: Int
var middleware: [AnyModelMiddleware]
let connectionPoolTimeout: NIO.TimeAmount
func makeDriver(for databases: Databases) -> DatabaseDriver {
let db = SQLiteConnectionSource(
configuration: configuration,
threadPool: databases.threadPool
)
let pool = EventLoopGroupConnectionPool(
source: db,
maxConnectionsPerEventLoop: maxConnectionsPerEventLoop,
requestTimeout: connectionPoolTimeout,
on: databases.eventLoopGroup
)
return _FluentSQLiteDriver(pool: pool)
}
}
extension SQLiteConfiguration {
public static func file(_ path: String) -> Self {
.init(storage: .file(path: path))
}
public static var memory: Self {
.init(storage: .memory)
}
}