Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

MessagePack serializer - msgpack.org[Swift]

License

Notifications You must be signed in to change notification settings

swiftstack/messagepack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

90 Commits

Repository files navigation

MessagePack

MessagePack is an efficient binary serialization format. It lets you exchange data among multiple languages like JSON. But it's faster and smaller. Small integers are encoded into a single byte, and typical short strings require only one extra byte in addition to the strings themselves.

Package.swift

.package(url: "https://github.com/swiftstack/messagepack.git", .branch("dev"))

Memo

public enum MessagePack {
 case `nil`
 case int(Int)
 case uint(UInt)
 case bool(Bool)
 case float(Float)
 case double(Double)
 case string(String)
 case binary([UInt8])
 case array([MessagePack])
 case map([MessagePack : MessagePack])
 case extended(Extended)
 public struct Extended {
 public let type: Int8
 public let data: [UInt8]
 public init(type: Int8, data: [UInt8]) {
 self.type = type
 self.data = data
 }
 }
}

Usage

You can find this code and more in examples.

Basic API

let hey = MessagePack("hey there!")
let bytes = try MessagePack.encode(hey)
let original = String(try MessagePack.decode(bytes: bytes))

Stream API

let hey = MessagePack("hey there!")
let stream = BufferedStream(stream: NetworkStream(socket: client))
try MessagePack.encode(hey, to: stream)
try stream.flush()
let original = String(try MessagePack.decode(from: stream))

Performance optimized

let output = OutputByteStream()
var encoder = MessagePackWriter(output)
try encoder.encode("one")
try encoder.encode(2)
try encoder.encode(3.0)
let encoded = output.bytes
var decoder = MessagePackReader(InputByteStream(encoded))
let string = try decoder.decode(String.self)
let int = try decoder.decode(UInt8.self)
let double = try decoder.decode(Double.self)
print("decoded manually: \(string), \(int), \(double)")

About

MessagePack serializer - msgpack.org[Swift]

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

AltStyle によって変換されたページ (->オリジナル) /