summaryrefslogtreecommitdiff
path: root/msgpack/pack/inline_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'msgpack/pack/inline_impl.h')
-rw-r--r--msgpack/pack/inline_impl.h58
1 files changed, 34 insertions, 24 deletions
diff --git a/msgpack/pack/inline_impl.h b/msgpack/pack/inline_impl.h
index 08a5bc1..d4d5a5a 100644
--- a/msgpack/pack/inline_impl.h
+++ b/msgpack/pack/inline_impl.h
@@ -18,8 +18,13 @@
#ifndef MSGPACK_PACK_INLINE_IMPL_H__
#define MSGPACK_PACK_INLINE_IMPL_H__
-#include <string.h>
-#include <arpa/inet.h>
+#if !defined(__LITTLE_ENDIAN__) && !defined(__BIG_ENDIAN__)
+#if __BYTE_ORDER == __LITTLE_ENDIAN
+#define __LITTLE_ENDIAN__
+#elif __BYTE_ORDER == __BIG_ENDIAN
+#define __BIG_ENDIAN__
+#endif
+#endif
#ifdef __LITTLE_ENDIAN__
@@ -47,13 +52,17 @@
#endif
+#ifndef msgpack_pack_inline_func(name)
+#define msgpack_pack_inline_func(name) \
+ inline void msgpack_pack_##name
+#endif
/*
* Integer
*/
// wrapper
-inline void msgpack_pack_int(msgpack_pack_context x, int d)
+msgpack_pack_inline_func(int)(msgpack_pack_context x, int d)
{
if(d < -32) {
if(d < -32768) { // signed 32
@@ -86,11 +95,11 @@ inline void msgpack_pack_int(msgpack_pack_context x, int d)
}
// wrapper
-inline void msgpack_pack_unsigned_int(msgpack_pack_context x, unsigned int d)
+msgpack_pack_inline_func(unsigned_int)(msgpack_pack_context x, unsigned int d)
{
if(d < 128) {
// fixnum
- msgpack_pack_append_buffer(x, (uint8_t*)&d, 1);
+ msgpack_pack_append_buffer(x, (unsigned char*)&d, 1);
} else if(d < 256) {
// unsigned 8
const unsigned char buf[2] = {0xcc, (uint8_t)d};
@@ -106,7 +115,7 @@ inline void msgpack_pack_unsigned_int(msgpack_pack_context x, unsigned int d)
}
}
-inline void msgpack_pack_unsigned_int_8(msgpack_pack_context x, uint8_t d)
+msgpack_pack_inline_func(unsigned_int_8)(msgpack_pack_context x, uint8_t d)
{
if(d < 128) {
msgpack_pack_append_buffer(x, &d, 1);
@@ -116,26 +125,26 @@ inline void msgpack_pack_unsigned_int_8(msgpack_pack_context x, uint8_t d)
}
}
-inline void msgpack_pack_unsigned_int_16(msgpack_pack_context x, uint16_t d)
+msgpack_pack_inline_func(unsigned_int_16)(msgpack_pack_context x, uint16_t d)
{
const unsigned char buf[3] = {0xcd, STORE_BE16(d)};
msgpack_pack_append_buffer(x, buf, 3);
}
-inline void msgpack_pack_unsigned_int_32(msgpack_pack_context x, uint32_t d)
+msgpack_pack_inline_func(unsigned_int_32)(msgpack_pack_context x, uint32_t d)
{
const unsigned char buf[5] = {0xce, STORE_BE32(d)};
msgpack_pack_append_buffer(x, buf, 5);
}
-inline void msgpack_pack_unsigned_int_64(msgpack_pack_context x, uint64_t d)
+msgpack_pack_inline_func(unsigned_int_64)(msgpack_pack_context x, uint64_t d)
{
// FIXME optimization
const unsigned char buf[9] = {0xcf, STORE_BE64(d)};
msgpack_pack_append_buffer(x, buf, 9);
}
-inline void msgpack_pack_signed_int_8(msgpack_pack_context x, int8_t d)
+msgpack_pack_inline_func(signed_int_8)(msgpack_pack_context x, int8_t d)
{
if(d > 0) {
msgpack_pack_append_buffer(x, (uint8_t*)&d, 1);
@@ -147,19 +156,19 @@ inline void msgpack_pack_signed_int_8(msgpack_pack_context x, int8_t d)
}
}
-inline void msgpack_pack_signed_int_16(msgpack_pack_context x, int16_t d)
+msgpack_pack_inline_func(signed_int_16)(msgpack_pack_context x, int16_t d)
{
const unsigned char buf[3] = {0xd1, STORE_BE16(d)};
msgpack_pack_append_buffer(x, buf, 3);
}
-inline void msgpack_pack_signed_int_32(msgpack_pack_context x, int32_t d)
+msgpack_pack_inline_func(signed_int_32)(msgpack_pack_context x, int32_t d)
{
const unsigned char buf[5] = {0xd2, STORE_BE32(d)};
msgpack_pack_append_buffer(x, buf, 5);
}
-inline void msgpack_pack_signed_int_64(msgpack_pack_context x, int64_t d)
+msgpack_pack_inline_func(signed_int_64)(msgpack_pack_context x, int64_t d)
{
// FIXME optimization
const unsigned char buf[9] = {0xd3, STORE_BE64(d)};
@@ -171,14 +180,14 @@ inline void msgpack_pack_signed_int_64(msgpack_pack_context x, int64_t d)
* Float
*/
-inline void msgpack_pack_float(msgpack_pack_context x, float d)
+msgpack_pack_inline_func(float)(msgpack_pack_context x, float d)
{
uint32_t n = *((uint32_t*)&d); // FIXME
const unsigned char buf[5] = {0xca, STORE_BE32(n)};
msgpack_pack_append_buffer(x, buf, 5);
}
-inline void msgpack_pack_double(msgpack_pack_context x, double d)
+msgpack_pack_inline_func(double)(msgpack_pack_context x, double d)
{
uint64_t n = *((uint64_t*)&d); // FIXME
const unsigned char buf[9] = {0xcb, STORE_BE64(n)};
@@ -190,7 +199,7 @@ inline void msgpack_pack_double(msgpack_pack_context x, double d)
* Nil
*/
-inline void msgpack_pack_nil(msgpack_pack_context x)
+msgpack_pack_inline_func(nil)(msgpack_pack_context x)
{
static const unsigned char d = 0xc0;
msgpack_pack_append_buffer(x, &d, 1);
@@ -201,13 +210,13 @@ inline void msgpack_pack_nil(msgpack_pack_context x)
* Boolean
*/
-inline void msgpack_pack_true(msgpack_pack_context x)
+msgpack_pack_inline_func(true)(msgpack_pack_context x)
{
static const unsigned char d = 0xc3;
msgpack_pack_append_buffer(x, &d, 1);
}
-inline void msgpack_pack_false(msgpack_pack_context x)
+msgpack_pack_inline_func(false)(msgpack_pack_context x)
{
static const unsigned char d = 0xc2;
msgpack_pack_append_buffer(x, &d, 1);
@@ -218,7 +227,7 @@ inline void msgpack_pack_false(msgpack_pack_context x)
* Array
*/
-inline void msgpack_pack_array(msgpack_pack_context x, unsigned int n)
+msgpack_pack_inline_func(array)(msgpack_pack_context x, unsigned int n)
{
if(n < 16) {
unsigned char d = 0x90 | n;
@@ -239,7 +248,7 @@ inline void msgpack_pack_array(msgpack_pack_context x, unsigned int n)
* Map
*/
-inline void msgpack_pack_map(msgpack_pack_context x, unsigned int n)
+msgpack_pack_inline_func(map)(msgpack_pack_context x, unsigned int n)
{
if(n < 16) {
unsigned char d = 0x80 | n;
@@ -260,13 +269,13 @@ inline void msgpack_pack_map(msgpack_pack_context x, unsigned int n)
* Raw
*/
-inline void msgpack_pack_string(msgpack_pack_context x, const char* b)
+msgpack_pack_inline_func(string)(msgpack_pack_context x, const char* b)
{
uint32_t l = strlen(b);
msgpack_pack_append_buffer(x, (const unsigned char*)b, l+1);
}
-inline void msgpack_pack_raw(msgpack_pack_context x, const void* b, size_t l)
+msgpack_pack_inline_func(raw)(msgpack_pack_context x, const void* b, size_t l)
{
if(l < 32) {
unsigned char d = 0xa0 | l;
@@ -280,14 +289,15 @@ inline void msgpack_pack_raw(msgpack_pack_context x, const void* b, size_t l)
unsigned char buf[5] = {0xdb, STORE_BE32(d)};
msgpack_pack_append_buffer(x, buf, 5);
}
- msgpack_pack_append_buffer(x, b, l);
+ msgpack_pack_append_buffer(x, (const unsigned char*)b, l);
}
+#undef msgpack_pack_inline_func(name)
+
#undef STORE_BE16(d)
#undef STORE_BE32(d)
#undef STORE_BE64(d)
-
#endif /* msgpack/pack/inline_impl.h */