30 lines
958 B
Cython
30 lines
958 B
Cython
include 'marshal.pyx'
|
|
from cassandra.buffer cimport Buffer
|
|
|
|
from libc.stdint cimport int32_t
|
|
from cassandra.bytesio cimport BytesIOReader
|
|
|
|
|
|
cdef inline int get_buf(BytesIOReader reader, Buffer *buf_out) except -1:
|
|
"""
|
|
Get a pointer into the buffer provided by BytesIOReader for the
|
|
next data item in the stream of values.
|
|
|
|
BEWARE:
|
|
If the next item has a zero negative size, the pointer will be set to NULL.
|
|
A negative size happens when the value is NULL in the database, whereas a
|
|
zero size may happen either for legacy reasons, or for data types such as
|
|
strings (which may be empty).
|
|
"""
|
|
cdef Py_ssize_t raw_val_size = read_int(reader)
|
|
if raw_val_size <= 0:
|
|
buf_out.ptr = NULL
|
|
else:
|
|
buf_out.ptr = reader.read(raw_val_size)
|
|
|
|
buf_out.size = raw_val_size
|
|
return 0
|
|
|
|
cdef inline int32_t read_int(BytesIOReader reader) except ?0xDEAD:
|
|
return int32_unpack(reader.read(4))
|