Some optimization on packing.

This commit is contained in:
Naoki INADA
2009-06-30 23:03:33 +09:00
parent b5010c71a9
commit d4317fdc85
3 changed files with 40 additions and 59 deletions

View File

@@ -1,16 +1,23 @@
# coding: utf-8
from cStringIO import StringIO
import cStringIO
cdef extern from "Python.h":
ctypedef char* const_char_ptr "const char*"
ctypedef struct PyObject
cdef object PyString_FromStringAndSize(const_char_ptr b, Py_ssize_t len)
PyObject* Py_True
PyObject* Py_False
char* PyString_AsString(object o)
int PyMapping_Check(object o)
int PySequence_Check(object o)
long long PyLong_AsLongLong(object o)
unsigned long long PyLong_AsUnsignedLongLong(object o)
int PyLong_Check(object o)
int PyInt_Check(object o)
int PyFloat_Check(object o)
int PyString_Check(object o)
int PyUnicode_Check(object o)
cdef extern from "stdlib.h":
void* malloc(size_t)
@@ -22,13 +29,9 @@ cdef extern from "string.h":
void* memmove(char* dst, char* src, size_t size)
cdef extern from "pack.h":
ctypedef int (*msgpack_packer_write)(void* data, const_char_ptr buf, unsigned int len)
struct msgpack_packer:
void *data
msgpack_packer_write callback
PyObject* writer
void msgpack_packer_init(msgpack_packer* pk, void* data, msgpack_packer_write callback)
int msgpack_pack_int(msgpack_packer* pk, int d)
int msgpack_pack_nil(msgpack_packer* pk)
int msgpack_pack_true(msgpack_packer* pk)
@@ -49,28 +52,17 @@ cdef class Packer(object):
strm must have `write(bytes)` method.
size specifies local buffer size.
"""
cdef char* buff
cdef unsigned int length
cdef unsigned int allocated
cdef msgpack_packer pk
cdef object strm
cdef object writer
def __init__(self, strm, int size=4*1024):
self.strm = strm
self.buff = <char*> malloc(size)
self.allocated = size
self.length = 0
msgpack_packer_init(&self.pk, <void*>self, <msgpack_packer_write>_packer_write)
def __del__(self):
free(self.buff)
def __init__(self, strm_, int size=4*1024):
self.strm = strm_
self.writer = strm_.write
self.pk.writer = <PyObject*>self.writer
def flush(self):
"""Flash local buffer and output stream if it has 'flush()' method."""
if self.length > 0:
self.strm.write(PyString_FromStringAndSize(self.buff, self.length))
self.length = 0
if hasattr(self.strm, 'flush'):
self.strm.flush()
@@ -113,28 +105,28 @@ cdef class Packer(object):
if o is None:
msgpack_pack_nil(&self.pk)
elif o is True:
elif <PyObject*>o == Py_True:
msgpack_pack_true(&self.pk)
elif o is False:
elif <PyObject*>o == Py_False:
msgpack_pack_false(&self.pk)
elif isinstance(o, long):
elif PyLong_Check(o):
if o > 0:
ullval = PyLong_AsUnsignedLongLong(o)
msgpack_pack_unsigned_long_long(&self.pk, ullval)
else:
llval = PyLong_AsLongLong(o)
msgpack_pack_long_long(&self.pk, llval)
elif isinstance(o, int):
elif PyInt_Check(o):
longval = o
msgpack_pack_long(&self.pk, longval)
elif isinstance(o, float):
elif PyFloat_Check(o):
fval = o
msgpack_pack_double(&self.pk, fval)
elif isinstance(o, str):
elif PyString_Check(o):
rawval = o
msgpack_pack_raw(&self.pk, len(o))
msgpack_pack_raw_body(&self.pk, rawval, len(o))
elif isinstance(o, unicode):
elif PyUnicode_Check(o):
o = o.encode('utf-8')
rawval = o
msgpack_pack_raw(&self.pk, len(o))
@@ -152,28 +144,13 @@ cdef class Packer(object):
# TODO: Serialize with defalt() like simplejson.
raise TypeError, "can't serialize %r" % (o,)
def pack(self, obj, flush=True):
def pack(self, object obj, flush=True):
self.__pack(obj)
if flush:
self.flush()
close = flush
cdef int _packer_write(Packer packer, const_char_ptr b, unsigned int l):
if packer.length + l > packer.allocated:
if packer.length > 0:
packer.strm.write(PyString_FromStringAndSize(packer.buff, packer.length))
if l > packer.allocated/4:
packer.strm.write(PyString_FromStringAndSize(b, l))
packer.length = 0
else:
memcpy(packer.buff, b, l)
packer.length = l
else:
memcpy(packer.buff + packer.length, b, l)
packer.length += l
return 0
def pack(object o, object stream):
u"""pack o and write to stream)."""
packer = Packer(stream)
@@ -182,7 +159,7 @@ def pack(object o, object stream):
def packb(object o):
u"""pack o and return packed bytes."""
buf = StringIO()
buf = cStringIO.StringIO()
packer = Packer(buf)
packer.pack(o)
return buf.getvalue()

View File

@@ -24,15 +24,11 @@
extern "C" {
#endif
typedef int (*msgpack_packer_write)(void* data, const char* buf, unsigned int len);
typedef struct msgpack_packer {
void* data;
msgpack_packer_write callback;
PyObject* writer;
} msgpack_packer;
static inline void msgpack_packer_init(msgpack_packer* pk, void* data, msgpack_packer_write callback);
typedef struct Packer Packer;
static inline int msgpack_pack_short(msgpack_packer* pk, short d);
static inline int msgpack_pack_int(msgpack_packer* pk, int d);
@@ -66,7 +62,20 @@ static inline int msgpack_pack_map(msgpack_packer* pk, unsigned int n);
static inline int msgpack_pack_raw(msgpack_packer* pk, size_t l);
static inline int msgpack_pack_raw_body(msgpack_packer* pk, const void* b, size_t l);
static inline int msgpack_pack_write(msgpack_packer* pk, const char *data, size_t l)
{
PyObject *buf, *ret;
buf = PyBuffer_FromMemory((void*)data, l);
//buf = PyString_FromStringAndSize(data, l);
if (buf == NULL) return -1;
ret = PyObject_CallFunctionObjArgs(pk->writer, buf, NULL);
Py_DECREF(buf);
if (ret == NULL) return -1;
Py_DECREF(ret);
return 0;
}
#define msgpack_pack_inline_func(name) \
static inline int msgpack_pack ## name
@@ -77,16 +86,10 @@ static inline int msgpack_pack_raw_body(msgpack_packer* pk, const void* b, size_
#define msgpack_pack_user msgpack_packer*
#define msgpack_pack_append_buffer(user, buf, len) \
return (*(user)->callback)((user)->data, (const char*)buf, len)
return msgpack_pack_write(user, (const char*)buf, len)
#include "pack_template.h"
static inline void msgpack_packer_init(msgpack_packer* pk, void* data, msgpack_packer_write callback)
{
pk->data = data;
pk->callback = callback;
}
#ifdef __cplusplus
}
#endif