IkigaJSON
IkigaJSON is a really fast JSON parser. It performed ~4x faster than Foundation in our tests when decoding a type from JSON.
Adding the dependency
SPM:
.package(url: "https://github.com/Ikiga/IkigaJSON.git", from: "1.1.0"),
Cocoapods:
pod 'IkigaJSON', '>= 1.1'
Usage
import IkigaJSON
struct User: Codable {
let id: Int
let name: String
}
let data = Data()
var decoder = IkigaJSONDecoder()
let user = try decoder.decode(User.self, from: data)
Raw JSON
IkigaJSON supports raw JSON types (JSONObject and JSONArray) like many other libraries do, alongside the codable API described above. The critical difference is that IkigaJSON edits the JSON inline, so there's no additional conversion overhead from Swift type to JSON.
var user = JSONObject()
user["username"] = "Joannis"
user["roles"] = ["admin", "moderator", "user"] as JSONArray
user["programmer"] = true
print(user.string)
print(user["username"].string)
// OR
print(user["username"] as? String)
SwiftNIO support
The encoders and decoders support SwiftNIO.
var user = try JSONObject(buffer: byteBuffer)
print(user["username"].string)
We also have added the ability to use the IkigaJSONEncoder and IkigaJSONDecoder with JSON.
let user = try decoder.decode([User].self, from: byteBuffer)
var buffer: ByteBuffer = ...
try encoder.encodeAndWrite(user, into: &buffer)
The above method can be used to stream multiple entities from a source like a database over the socket asynchronously. This can greatly reduce memory usage.
Performance
By design you can build on top of any data storage as long as it exposes a pointer API. This way, IkigaJSON doesn't (need to) copy any data from your buffer keeping it lightweight. The entire parser can function with only 1 memory allocation and allows for reusing the Decoder to reuse the memory allocation.
Support
- All decoding strategies that Foundation supports
- Unicode
- Codable
- Escaping
- Performance
🚀 - Date/Data encoding strategies
- Raw JSON APIs (non-codable)
TODO:
\u
escaped unicode characters- Codable decoding from
JSONObject
andJSONArray
- Lightweight JSON inline comparison helpers