Skip to content

nobu-k/mplua

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

MessagePack for Lua

Still writing...

Requirement

MessagePack for C++ and liblua 5.1 is required.

Install

Run ./configure && make && make install.

Usage

Serialization

require "msgpack"

-- pack accepts variable length arguments.
-- data is a string.
data = msgpack.pack(1, 2, 3, "strings", {"a", "r", "r", "a", "y", "s"},
                    {t = "a", b = "l", e = "s"; 1, 2, 3, 4})

Deserialization

Simple deserialization:

require "msgpack"
a, b, c = msgpack.unpack(msgpack.pack(1, 2, 3))
-- a == 1, b == 2, c == 3

ar = msgpack.unpackToArray(msgpack.pack(1, 2, 3))
-- ar[1] == 1, ar[2] == 2, ar[3] == 3

Stream deserialization:

require "msgpack"

u = msgpack.Unpacker()
u:feed(data)

for v in u do
  -- v has a serialized data
end

About

Lua binding of MessagePack

Resources

License

Stars

Watchers

Forks

Packages

No packages published