Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nnabeyang/swift-msgpack

swift-msgpack is a library of MessagePack encoder & decoder for Swift based on Codable.
https://github.com/nnabeyang/swift-msgpack

decoder encoder msgpack swift

Last synced: 3 months ago
JSON representation

swift-msgpack is a library of MessagePack encoder & decoder for Swift based on Codable.

Awesome Lists containing this project

README

        

# swift-msgpack

swift-msgpack is a library of MessagePack encoder & decoder for Swift based on Codable.

## Usage

```swift
import SwiftMsgpack

struct Coordinate: Codable {
let latitude: Double
let longitude: Double
}

struct Landmark: Codable {
let name: String
let foundingYear: Int
let location: Coordinate
}

let input = Landmark(
name: "Mojave Desert",
foundingYear: 0,
location: Coordinate(
latitude: 35.0110079,
longitude: -115.4821313
)
)
let encoder = MsgPackEncoder()
let decoder = MsgPackDecoder()
let data = try! encoder.encode(input)
let out = try! decoder.decode(Landmark.self, from: data)
let any = try! decoder.decode(AnyCodable.self, from: data)

print([UInt8](data))
// [131, 164, 110, 97, 109, 101, 173, 77, 111, 106,
// 97, 118, 101, 32, 68, 101, 115, 101, 114, 116,
// 172, 102, 111, 117, 110, 100, 105, 110, 103, 89,
// 101, 97, 114, 0, 168, 108, 111, 99, 97, 116,
// 105, 111, 110, 130, 168, 108, 97, 116, 105, 116,
// 117, 100, 101, 203, 64, 65, 129, 104, 180, 245,
// 63, 179, 169, 108, 111, 110, 103, 105, 116, 117,
// 100, 101, 203, 192, 92, 222, 219, 61, 61, 120,
// 49]

print(out)
// Landmark(
// name: "Mojave Desert",
// foundingYear: 0,
// location: example.Coordinate(
// latitude: 35.0110079,
// longitude: -115.4821313
// )
// )

print(any)
// AnyCodable(
// [
// AnyCodable("foundingYear"): AnyCodable(0),
// AnyCodable("name"): AnyCodable("Mojave Desert"),
// AnyCodable("location"): AnyCodable(
// [
// AnyCodable("longitude"): AnyCodable(-115.4821313),
// AnyCodable("latitude"): AnyCodable(35.0110079),
// ]
// ),
// ]
// )
```

## Installation

### SwiftPM

Add the `SwiftMsgpack` as a dependency:

```swift
let package = Package(
// name, platforms, products, etc.
dependencies: [
// other dependencies
.package(url: "https://github.com/nnabeyang/swift-msgpack", from: "0.5.0"),
],
targets: [
.executableTarget(name: "", dependencies: [
// other dependencies
.product(name: "SwiftMsgpack", package: "swift-msgpack"),
]),
// other targets
]
)
```

### CocoaPods

Add the following to your Podfile:

```terminal
pod 'SwiftMessagePack'
```
## License

swift-msgpack is published under the MIT License, see LICENSE.

## Author
[Noriaki Watanabe@nnabeyang](https://twitter.com/nnabeyang)