matsoftware / JSONCore

A Swift JSON parser that doesn't need Objective-C bridging and doesn't depend on Foundation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

JSON Core

Build Status

JSON Core is a JSON parser and serializer written using only core Swift. This means it has no dependencies on Foundation, UIKit, AppKit or even Darwin. This is a true parser and serializer, it doesn't use NSJSONSerialization at all, nor does it call out to any C JSON library.

Why?

Performance

The Swift - Objective-C bridge is very efficient for the most part. However, when dealing with potentially millions of object allocations, passing them back and forth through the bridge is extremely costly. This is completely unnecessary busywork for the CPU and is just a side effect of the fact that the standard JSON engine for Swift today is an Objective-C class, NSJSONSerialization, which returns Objective-C objects.

JSON Core works only on native Swift types, Array, Dictionary, Int64, Double, and Bool, which means there's no bridging required. It's still a long way off being as efficient as NSJSONSerialization in Objective-C only mode, but it's already considerably faster than NSJSONSerialization when used with Swift code.

Here's a chart showing the performance characteristics of JSON Core when parsing an extremely large JSON file from disk. The source JSON file is generated when running the unit test and contains an array of one million JSON objects. The file is approximately 212MB.

Chart

Over time I'd like to improve this but at the moment I'm limited mostly by the performance of Dictionary. It's extremely costly to build up a Dictionary by creating an empty one and then setting values and keys manually, but as of Swift 2.1, there's no other way to create a Dictionary dynamically. In Foundation / CoreFoundation it's possible to very quickly create an NSDictionary using a C array of values and keys. Unless I write my own data structure to represent JSON objects, which means giving up the advantages of simply returning a Swift Dictionary to the caller, I'm probably not going to get a huge amount more performance.

Be aware that if the string you pass in to JSONParser.parseData was bridged using an NSString constructor, there'll be serious performance ramifications. You should be aware of what's constructing your raw JSON data object and how it gets initialised. You'll get an almost 2x speed boost by sticking to String over NSString.

Usage

let json = "{\"test\": 1}"
do {
    let value = try JSONParser.parseString(json)
    // value is a JSONValue enum, which for our JSON should be
    // an Object/Dictionary
    guard let test = value["test"]?.int else { return }
    print("test is \(test)")
} catch let err {
    if let printableError = err as? CustomStringConvertible {
        print("JSON parse error: \(printableError)")
    }
}

Installation

###via Swift Package Manager (Swift 2.2 beta) To use JSONCore as a Swift Package Manager package just add the following in your Package.swift file.

import PackageDescription

let package = Package(
    name: "HelloWorld",
    dependencies: [
        .Package(url: "https://github.com/tyrone-sudeium/JSONCore.git", majorVersion: 1))
    ]
)

###via Carthage To use JSONCore with Carthage add You can use Carthage to install JSONCore add the following lines to your Carthage:

github "tyrone-sudeium/JSONCore"

###via Cocoapods I'm not on CocoaPods (yet!), however, I will add support for CocoaPods when I'm happy JSON Core is stable enough for production use.

###Manual JSON Core is just a single Swift file with zero dependencies, so feel free to make this repo a submodule and just drop the JSONCore.swift file into your project directly.

About

A Swift JSON parser that doesn't need Objective-C bridging and doesn't depend on Foundation

License:MIT License


Languages

Language:Swift 100.0%