Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preliminary implementation of the formatted packer #416

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions include/msgpack/pack.h
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,33 @@ int msgpack_pack_object(msgpack_packer* pk, msgpack_object d);
#define msgpack_pack_append_buffer(user, buf, len) \
return (*(user)->callback)((user)->data, (const char*)buf, len)

#ifdef MSGPACK_C11
#define msgpack_pack_genint(pk, i) \
_Generic((i), char: msgpack_pack_char, \
signed char: msgpack_pack_signed_char, \
unsigned char: msgpack_pack_unsigned_char, \
short: msgpack_pack_short, \
unsigned short: msgpack_pack_unsigned_short, \
int: msgpack_pack_int, \
unsigned int: msgpack_pack_unsigned_int, \
long: msgpack_pack_long, \
unsigned long: msgpack_pack_unsigned_long, \
long long: msgpack_pack_long_long, \
unsigned long long: msgpack_pack_unsigned_long_long, \
uint8_t: msgpack_pack_uint8, \
uint16_t: msgpack_pack_uint16, \
uint32_t: msgpack_pack_uint32, \
uint64_t: msgpack_pack_uint64, \
int8_t: msgpack_pack_int8, \
int16_t: msgpack_pack_int16, \
int32_t: msgpack_pack_int32, \
int64_t: msgpack_pack_int64)((pk), (i))

#define msgpack_pack_genfloat(pk, i) \
_Generic((i), float: msgpack_pack_float, \
double: msgpack_pack_double)((pk), (i))
#endif

#include "pack_template.h"

inline void msgpack_packer_init(msgpack_packer* pk, void* data, msgpack_packer_write callback)
Expand Down