Clean up some leftover code

This commit is contained in:
Mark Florisson
2015-08-11 21:04:18 +01:00
parent 4956b12aca
commit d91731734c
7 changed files with 17 additions and 116 deletions

View File

@@ -10,7 +10,6 @@ from cpython.bytes cimport PyBytes_AS_STRING
# checking. Only string objects are supported; no Unicode objects
# should be passed.
from cassandra.buffer cimport Buffer
cdef struct Buffer:
char *ptr

View File

@@ -15,36 +15,16 @@
# limitations under the License.
import six
import sys
import struct
import math
from libc.stdint cimport (int8_t, int16_t, int32_t, int64_t,
uint8_t, uint16_t, uint32_t, uint64_t)
from cassandra.buffer cimport Buffer, buf_read
from cassandra.buffer cimport Buffer, buf_read, to_bytes
cdef bint is_little_endian
from cassandra.util import is_little_endian
cdef bint PY3 = six.PY3
# cdef extern from "marshal.h":
# cdef str c_string_to_python(char *p, Py_ssize_t len)
def _make_packer(format_string):
packer = struct.Struct(format_string)
pack = packer.pack
unpack = lambda s: packer.unpack(s)[0]
return pack, unpack
cdef inline bytes pack(char *buf, Py_ssize_t size):
"""
Pack a buffer, given as a char *, into Python bytes in byte order.
"""
swap_order(buf, size)
return buf[:size]
cdef inline void swap_order(char *buf, Py_ssize_t size):
"""
@@ -65,10 +45,7 @@ cdef inline void swap_order(char *buf, Py_ssize_t size):
cdef inline Py_ssize_t div2(Py_ssize_t x):
return x >> 1
### Packing and unpacking of signed integers
cdef inline bytes int64_pack(int64_t x):
return pack(<char *> &x, 8)
### Unpacking of signed integers
cdef inline int64_t int64_unpack(Buffer *buf) except ?0xDEAD:
cdef int64_t x = (<int64_t *> buf_read(buf, 8))[0]
@@ -76,106 +53,58 @@ cdef inline int64_t int64_unpack(Buffer *buf) except ?0xDEAD:
swap_order(<char *> &x, 8)
return x
cdef inline bytes int32_pack(int32_t x):
return pack(<char *> &x, 4)
cdef inline int32_t int32_unpack(Buffer *buf) except ?0xDEAD:
cdef int32_t x = (<int32_t *> buf_read(buf, 4))[0]
cdef char *p = <char *> &x
swap_order(<char *> &x, 4)
return x
cdef inline bytes int16_pack(int16_t x):
return pack(<char *> &x, 2)
cdef inline int16_t int16_unpack(Buffer *buf) except ?0xDED:
cdef int16_t x = (<int16_t *> buf_read(buf, 2))[0]
swap_order(<char *> &x, 2)
return x
cdef inline bytes int8_pack(int8_t x):
return (<char *> &x)[:1]
cdef inline int8_t int8_unpack(Buffer *buf) except ?80:
return (<int8_t *> buf_read(buf, 1))[0]
cdef inline bytes uint64_pack(uint64_t x):
return pack(<char *> &x, 8)
cdef inline uint64_t uint64_unpack(Buffer *buf) except ?0xDEAD:
cdef uint64_t x = (<uint64_t *> buf_read(buf, 8))[0]
swap_order(<char *> &x, 8)
return x
cdef inline bytes uint32_pack(uint32_t x):
return pack(<char *> &x, 4)
cdef inline uint32_t uint32_unpack(Buffer *buf) except ?0xDEAD:
cdef uint32_t x = (<uint32_t *> buf_read(buf, 4))[0]
swap_order(<char *> &x, 4)
return x
cdef inline bytes uint16_pack(uint16_t x):
return pack(<char *> &x, 2)
cdef inline uint16_t uint16_unpack(Buffer *buf) except ?0xDEAD:
cdef uint16_t x = (<uint16_t *> buf_read(buf, 2))[0]
swap_order(<char *> &x, 2)
return x
cdef inline bytes uint8_pack(uint8_t x):
return pack(<char *> &x, 1)
cdef inline uint8_t uint8_unpack(Buffer *buf) except ?0xff:
return (<uint8_t *> buf_read(buf, 1))[0]
cdef inline bytes double_pack(double x):
return pack(<char *> &x, 8)
cdef inline double double_unpack(Buffer *buf) except ?1.74:
cdef double x = (<double *> buf_read(buf, 8))[0]
swap_order(<char *> &x, 8)
return x
cdef inline bytes float_pack(float x):
return pack(<char *> &x, 4)
cdef inline float float_unpack(Buffer *buf) except ?1.74:
cdef float x = (<float *> buf_read(buf, 4))[0]
swap_order(<char *> &x, 4)
return x
# int64_pack, int64_unpack = _make_packer('>q')
# int32_pack, int32_unpack = _make_packer('>i')
# int16_pack, int16_unpack = _make_packer('>h')
# int8_pack, int8_unpack = _make_packer('>b')
# uint64_pack, uint64_unpack = _make_packer('>Q')
# uint32_pack, uint32_unpack = _make_packer('>I')
# uint16_pack, uint16_unpack = _make_packer('>H')
# uint8_pack, uint8_unpack = _make_packer('>B')
# float_pack, float_unpack = _make_packer('>f')
# double_pack, double_unpack = _make_packer('>d')
# Special case for cassandra header
header_struct = struct.Struct('>BBbB')
header_pack = header_struct.pack
header_unpack = header_struct.unpack
# in protocol version 3 and higher, the stream ID is two bytes
v3_header_struct = struct.Struct('>BBhB')
v3_header_pack = v3_header_struct.pack
v3_header_unpack = v3_header_struct.unpack
cdef varint_unpack(term):
cdef varint_unpack(Buffer *term):
"""Unpack a variable-sized integer"""
if PY3:
return varint_unpack_py3(term)
return varint_unpack_py3(to_bytes(term))
else:
return varint_unpack_py2(term)
return varint_unpack_py2(to_bytes(term))
# TODO: Optimize these two functions
def varint_unpack_py3(term):
cdef varint_unpack_py3(bytes term):
cdef int64_t one = 1L
val = int(''.join("%02x" % i for i in term), 16)
@@ -186,36 +115,9 @@ def varint_unpack_py3(term):
val -= one << (len(term) * 8)
return val
def varint_unpack_py2(term): # noqa
cdef varint_unpack_py2(bytes term): # noqa
cdef int64_t one = 1L
val = int(term.encode('hex'), 16)
if (ord(term[0]) & 128) != 0:
val = val - (one << (len(term) * 8))
return val
def bitlength(n):
# return int(math.log2(n)) + 1
bitlen = 0
while n > 0:
n >>= 1
bitlen += 1
return bitlen
def varint_pack(big):
pos = True
if big == 0:
return b'\x00'
if big < 0:
bytelength = bitlength(abs(big) - 1) // 8 + 1
big = (1 << bytelength * 8) + big
pos = False
revbytes = bytearray()
while big > 0:
revbytes.append(big & 0xff)
big >>= 8
if pos and revbytes[-1] & 0x80:
revbytes.append(0)
revbytes.reverse()
return six.binary_type(revbytes)

View File

@@ -16,13 +16,14 @@ from cpython.datetime cimport (
import datetime
import sys
DATETIME_EPOC = datetime.datetime(1970, 1, 1)
assert sys.byteorder in ('little', 'big')
is_little_endian = sys.byteorder == 'little'
cdef bint is_little_endian
from cassandra.util import is_little_endian
import_datetime()
DATETIME_EPOC = datetime.datetime(1970, 1, 1)
cdef datetime_from_timestamp(double timestamp):
cdef int seconds = <int> timestamp
cdef int microseconds = (<int64_t> (timestamp * 1000000)) % 1000000

View File

@@ -42,7 +42,7 @@ cdef class DesDecimalType(Deserializer):
slice_buffer(buf, &varint_buf, 4, buf.size - 4)
scale = int32_unpack(buf)
unscaled = varint_unpack(to_bytes(&varint_buf))
unscaled = varint_unpack(&varint_buf)
return Decimal('%de%d' % (unscaled, -scale))
@@ -93,7 +93,7 @@ cdef class DesInt32Type(Deserializer):
cdef class DesIntegerType(Deserializer):
cdef deserialize(self, Buffer *buf, int protocol_version):
return varint_unpack(to_bytes(buf))
return varint_unpack(buf)
cdef class DesInetAddressType(Deserializer):

View File

@@ -75,7 +75,6 @@ cdef class NumpyParser(ColumnParser):
arrays = [make_native_byteorder(arr) for arr in arrays]
result = dict(zip(desc.colnames, arrays))
# return pd.DataFrame(result)
return result

View File

@@ -3,8 +3,8 @@ Module with constants for Cassandra type codes.
These constants are useful for
a) mapping messages to cqltypes (cassandra/cqltypes.py)
b) optimizezd dispatching for (de)serialization (cassandra/encoding.py)
a) mapping messages to cqltypes (cassandra/cqltypes.py)
b) optimized dispatching for (de)serialization (cassandra/encoding.py)
Type codes are repeated here from the Cassandra binary protocol specification:

View File

@@ -11,7 +11,7 @@ def cyimport(import_path):
(and skip any relevant tests).
"""
try:
return __import__(import_path, fromlist=True)
return __import__(import_path, fromlist=[True])
except ImportError:
if HAVE_CYTHON:
raise