-
-
Notifications
You must be signed in to change notification settings - Fork 87
Add jsonb support #36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
import Foundation | ||
|
||
fileprivate let jsonBVersionBytes: [UInt8] = [0x01] | ||
|
||
extension PostgresData { | ||
public init(jsonb jsonData: Data) { | ||
let jsonBDataBytes = [UInt8](jsonData) | ||
|
||
var buffer = ByteBufferAllocator().buffer(capacity: jsonBVersionBytes.count + jsonBDataBytes.count) | ||
buffer.writeBytes(jsonBVersionBytes) | ||
buffer.writeBytes(jsonBDataBytes) | ||
|
||
self.init(type: .jsonb, formatCode: .binary, value: buffer) | ||
} | ||
|
||
public var jsonb: Data? { | ||
guard var value = self.value else { | ||
return nil | ||
} | ||
|
||
guard let versionBytes = value.readBytes(length: jsonBVersionBytes.count), [UInt8](versionBytes) == jsonBVersionBytes else { | ||
return nil | ||
} | ||
|
||
guard let dataBytes = value.readBytes(length: value.readableBytes) else { | ||
return nil | ||
} | ||
|
||
return Data(dataBytes) | ||
} | ||
} | ||
|
||
public protocol JSONBCodable: Codable, PostgresDataConvertible { | ||
} | ||
|
||
extension JSONBCodable { | ||
public static var postgresDataType: PostgresDataType { | ||
return .jsonb | ||
} | ||
|
||
public var postgresData: PostgresData? { | ||
guard let jsonData = try? JSONEncoder().encode(self) else { | ||
return nil | ||
} | ||
|
||
return .init(jsonb: jsonData) | ||
} | ||
|
||
public init?(postgresData: PostgresData) { | ||
guard let jsonData = postgresData.jsonb else { | ||
return nil | ||
} | ||
|
||
guard let value = try? JSONDecoder().decode(Self.self, from: jsonData) else { | ||
return nil | ||
} | ||
|
||
self = value | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -387,6 +387,50 @@ final class NIOPostgresTests: XCTestCase { | |
} | ||
} | ||
|
||
func testJSONBSerialize() throws { | ||
struct Object: Codable, JSONBCodable { | ||
let foo: Int | ||
let bar: Int | ||
} | ||
|
||
let conn = try PostgresConnection.test(on: eventLoop).wait() | ||
defer { try! conn.close().wait() } | ||
do { | ||
let jsonData = try JSONEncoder().encode(Object(foo: 1, bar: 2)) | ||
let postgresData = PostgresData(jsonb: jsonData) | ||
|
||
let rows = try conn.query("select $1::jsonb as jsonb", [postgresData]).wait() | ||
|
||
let objectA = try JSONDecoder().decode(Object.self, from: rows[0].column("jsonb")?.jsonb ?? Data()) | ||
XCTAssertEqual(objectA.foo, 1) | ||
XCTAssertEqual(objectA.bar, 2) | ||
|
||
XCTAssertEqual(objectA.postgresData?.type, .jsonb) | ||
XCTAssertEqual(objectA.postgresData?.formatCode, .binary) | ||
|
||
let objectB = Object(postgresData: postgresData) | ||
XCTAssertEqual(objectB?.foo, 1) | ||
XCTAssertEqual(objectB?.bar, 2) | ||
} | ||
} | ||
|
||
func testJSONBParse() throws { | ||
struct Object: Decodable { | ||
let foo: Int | ||
let bar: Int | ||
} | ||
|
||
let conn = try PostgresConnection.test(on: eventLoop).wait() | ||
defer { try! conn.close().wait() } | ||
do { | ||
let rows = try conn.query("select jsonb_build_object('foo',1,'bar',2) as jsonb").wait() | ||
|
||
let object = try JSONDecoder().decode(Object.self, from: rows[0].column("jsonb")?.jsonb ?? Data()) | ||
XCTAssertEqual(object.foo, 1) | ||
XCTAssertEqual(object.bar, 2) | ||
} | ||
} | ||
|
||
func testRemoteTLSServer() throws { | ||
let url = "postgres://uymgphwj:[email protected]:5432/uymgphwj" | ||
let elg = MultiThreadedEventLoopGroup(numberOfThreads: 1) | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.