/usr/lib/python2.7/dist-packages/numba/mviewbuf.c is in python-numba 0.34.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 | #include "_pymodule.h"
static int get_buffer(PyObject* obj, Py_buffer *buf, int force)
{
Py_buffer read_buf;
int flags = PyBUF_ND|PyBUF_STRIDES|PyBUF_FORMAT;
int ret;
/* Attempt to get a writable buffer */
if (!PyObject_GetBuffer(obj, buf, flags|PyBUF_WRITABLE))
return 0;
if (!force)
return -1;
/* Make a writable buffer from a read-only buffer */
PyErr_Clear();
if(-1 == PyObject_GetBuffer(obj, &read_buf, flags))
return -1;
ret = PyBuffer_FillInfo(buf, NULL, read_buf.buf, read_buf.len, 0,
flags|PyBUF_WRITABLE);
PyBuffer_Release(&read_buf);
return ret;
}
static void free_buffer(Py_buffer * buf)
{
PyBuffer_Release(buf);
}
/**
* Return a pointer to the data of a writable buffer from obj. If only a
* read-only buffer is available and force is True, a read-write buffer based on
* the read-only buffer is obtained. Note that this may have some surprising
* effects on buffers which expect the data from their read-only buffer not to
* be modified.
*/
static PyObject*
memoryview_get_buffer(PyObject *self, PyObject *args){
PyObject *obj = NULL;
int force = 0;
PyObject *ret = NULL;
void * ptr = NULL;
const void* roptr = NULL;
Py_ssize_t buflen;
Py_buffer buf;
if (!PyArg_ParseTuple(args, "O|i", &obj, &force))
return NULL;
if (!get_buffer(obj, &buf, force)) { /* new buffer api */
ret = PyLong_FromVoidPtr(buf.buf);
free_buffer(&buf);
} else { /* old buffer api */
PyErr_Clear();
if (-1 == PyObject_AsWriteBuffer(obj, &ptr, &buflen)) {
if (!force)
return NULL;
PyErr_Clear();
if(-1 == PyObject_AsReadBuffer(obj, &roptr, &buflen))
return NULL;
ptr = (void*) roptr;
}
ret = PyLong_FromVoidPtr(ptr);
}
return ret;
}
/**
* Gets a half-open range [start, end) which contains the array data
* Modified from numpy/core/src/multiarray/array_assign.c
*/
static PyObject*
get_extents(Py_ssize_t *shape, Py_ssize_t *strides, int ndim,
Py_ssize_t itemsize, Py_ssize_t ptr)
{
Py_ssize_t start, end;
int idim;
Py_ssize_t *dimensions = shape;
PyObject *ret = NULL;
if (ndim < 0 ){
PyErr_SetString(PyExc_ValueError, "buffer ndim < 0");
return NULL;
}
if (!dimensions) {
if (ndim == 0) {
start = end = ptr;
end += itemsize;
return Py_BuildValue("nn", start, end);
}
PyErr_SetString(PyExc_ValueError, "buffer shape is not defined");
return NULL;
}
if (!strides) {
PyErr_SetString(PyExc_ValueError, "buffer strides is not defined");
return NULL;
}
/* Calculate with a closed range [start, end] */
start = end = ptr;
for (idim = 0; idim < ndim; ++idim) {
Py_ssize_t stride = strides[idim], dim = dimensions[idim];
/* If the array size is zero, return an empty range */
if (dim == 0) {
start = end = ptr;
ret = Py_BuildValue("nn", start, end);
break;
}
/* Expand either upwards or downwards depending on stride */
else {
if (stride > 0) {
end += stride * (dim - 1);
}
else if (stride < 0) {
start += stride * (dim - 1);
}
}
}
if (!ret) {
/* Return a half-open range */
Py_ssize_t out_start = start;
Py_ssize_t out_end = end + itemsize;
ret = Py_BuildValue("nn", out_start, out_end);
}
return ret;
}
static PyObject*
memoryview_get_extents(PyObject *self, PyObject *args)
{
PyObject *obj = NULL;
PyObject *ret = NULL;
Py_buffer b;
const void * ptr = NULL;
Py_ssize_t bufptr, buflen;
if (!PyArg_ParseTuple(args, "O", &obj))
return NULL;
if (!get_buffer(obj, &b, 0)) { /* new buffer api */
ret = get_extents(b.shape, b.strides, b.ndim, b.itemsize,
(Py_ssize_t)b.buf);
free_buffer(&b);
} else { /* old buffer api */
PyErr_Clear();
if (-1 == PyObject_AsReadBuffer(obj, &ptr, &buflen)) return NULL;
bufptr = (Py_ssize_t)ptr;
ret = Py_BuildValue("nn", bufptr, bufptr + buflen);
}
return ret;
}
static PyObject*
memoryview_get_extents_info(PyObject *self, PyObject *args)
{
int i;
Py_ssize_t *shape_ary = NULL;
Py_ssize_t *strides_ary = NULL;
PyObject *shape_tuple = NULL;
PyObject *strides_tuple = NULL;
PyObject *shape = NULL, *strides = NULL;
Py_ssize_t itemsize = 0;
int ndim = 0;
PyObject* res = NULL;
if (!PyArg_ParseTuple(args, "OOin", &shape, &strides, &ndim, &itemsize))
goto cleanup;
if (ndim < 0) {
PyErr_SetString(PyExc_ValueError, "ndim is negative");
goto cleanup;
}
if (itemsize <= 0) {
PyErr_SetString(PyExc_ValueError, "ndim <= 0");
goto cleanup;
}
shape_ary = malloc(sizeof(Py_ssize_t) * ndim + 1);
strides_ary = malloc(sizeof(Py_ssize_t) * ndim + 1);
shape_tuple = PySequence_Fast(shape, "shape is not a sequence");
if (!shape_tuple) goto cleanup;
for (i = 0; i < ndim; ++i) {
shape_ary[i] = PyNumber_AsSsize_t(
PySequence_Fast_GET_ITEM(shape_tuple, i),
PyExc_OverflowError);
}
strides_tuple = PySequence_Fast(strides, "strides is not a sequence");
if (!strides_tuple) goto cleanup;
for (i = 0; i < ndim; ++i) {
strides_ary[i] = PyNumber_AsSsize_t(
PySequence_Fast_GET_ITEM(strides_tuple, i),
PyExc_OverflowError);
}
res = get_extents(shape_ary, strides_ary, ndim, itemsize, 0);
cleanup:
free(shape_ary);
free(strides_ary);
Py_XDECREF(shape_tuple);
Py_XDECREF(strides_tuple);
return res;
}
/* new type to expose buffer interface */
typedef struct {
PyObject_HEAD
/* Type-specific fields go here. */
} MemAllocObject;
static int
get_bufinfo(PyObject *self, Py_ssize_t *psize, void **pptr)
{
PyObject *buflen = NULL;
PyObject *bufptr = NULL;
Py_ssize_t size = 0;
void* ptr = NULL;
int ret = -1;
buflen = PyObject_GetAttrString(self, "_buflen_");
if (!buflen) goto cleanup;
bufptr = PyObject_GetAttrString(self, "_bufptr_");
if (!bufptr) goto cleanup;
size = PyNumber_AsSsize_t(buflen, PyExc_OverflowError);
if (size == -1 && PyErr_Occurred()) goto cleanup;
else if (size < 0) {
PyErr_SetString(PyExc_ValueError, "negative buffer size");
goto cleanup;
}
ptr = PyLong_AsVoidPtr(PyNumber_Long(bufptr));
if (PyErr_Occurred())
goto cleanup;
else if (!ptr) {
PyErr_SetString(PyExc_ValueError, "null buffer pointer");
goto cleanup;
}
*psize = size;
*pptr = ptr;
ret = 0;
cleanup:
Py_XDECREF(buflen);
Py_XDECREF(bufptr);
return ret;
}
#if PY_MAJOR_VERSION >= 3
static int
MemAllocObject_getbuffer(PyObject *self, Py_buffer *view, int flags)
{
Py_ssize_t size = 0;
void *ptr = 0;
int readonly;
if(-1 == get_bufinfo(self, &size, &ptr))
return -1;
readonly = (PyBUF_WRITABLE & flags) != PyBUF_WRITABLE;
/* fill buffer */
if (-1 == PyBuffer_FillInfo(view, self, (void*)ptr, size, readonly, flags))
return -1;
return 0;
}
static void
MemAllocObject_releasebuffer(PyObject *self, Py_buffer *view)
{
/* Do nothing */
}
static PyBufferProcs MemAlloc_as_buffer = {
MemAllocObject_getbuffer,
MemAllocObject_releasebuffer,
};
#else
static int
MemAllocObject_getbufferproc(PyObject *self, Py_buffer *view, int flags)
{
Py_ssize_t size = 0;
void *ptr = 0;
int readonly;
if(-1 == get_bufinfo(self, &size, &ptr))
return -1;
readonly = (PyBUF_WRITABLE & flags) != PyBUF_WRITABLE;
/* fill buffer */
if (-1 == PyBuffer_FillInfo(view, self, (void*)ptr, size, readonly, flags))
return -1;
return 0;
}
static Py_ssize_t
MemAllocObject_writebufferproc(PyObject *self, Py_ssize_t segment,
void **ptrptr)
{
Py_ssize_t size = 0;
if (segment != 0) {
PyErr_SetString(PyExc_ValueError, "invalid segment");
return -1;
}
if(-1 == get_bufinfo(self, &size, ptrptr))
return -1;
return size;
}
static Py_ssize_t
MemAllocObject_readbufferproc(PyObject *self, Py_ssize_t segment,
void **ptrptr)
{
return MemAllocObject_writebufferproc(self, segment, ptrptr);
}
static Py_ssize_t
MemAllocObject_segcountproc(PyObject *self, Py_ssize_t *lenp)
{
void *ptr = 0;
if (lenp){
if(-1 == get_bufinfo(self, lenp, &ptr)) return 0;
}
return 1;
}
static Py_ssize_t
MemAllocObject_charbufferproc(PyObject *self, Py_ssize_t segment,
char **ptrptr)
{
return MemAllocObject_writebufferproc(self, segment, (void*)ptrptr);
}
static PyBufferProcs MemAlloc_as_buffer = {
MemAllocObject_readbufferproc, /*bf_getreadbuffer*/
MemAllocObject_writebufferproc, /*bf_getwritebuffer*/
MemAllocObject_segcountproc, /*bf_getsegcount*/
MemAllocObject_charbufferproc, /*bf_getcharbuffer*/
/* new buffer protocol */
MemAllocObject_getbufferproc, /*bf_getbuffer*/
NULL, /*bf_releasebuffer*/
};
#endif
static PyTypeObject MemAllocType = {
#if PY_MAJOR_VERSION >= 3
PyVarObject_HEAD_INIT(NULL, 0)
#else
PyObject_HEAD_INIT(NULL)
0, /* ob_size */
#endif
"mviewbuf.MemAlloc", /* tp_name */
sizeof(MemAllocObject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
0, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
#if PY_MAJOR_VERSION >= 3
0, /* tp_reserved */
#else
0, /* tp_compare */
#endif
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash */
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
&MemAlloc_as_buffer, /*tp_as_buffer*/
(Py_TPFLAGS_DEFAULT
#if PY_MAJOR_VERSION < 3
| Py_TPFLAGS_CHECKTYPES
#endif
#if (PY_VERSION_HEX >= 0x02060000) && (PY_VERSION_HEX < 0x03000000)
| Py_TPFLAGS_HAVE_NEWBUFFER
#endif
| Py_TPFLAGS_BASETYPE), /* tp_flags */
0, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
0, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
0, /* tp_new */
0, /* tp_free */
0, /* tp_is_gc */
0, /* tp_bases */
0, /* tp_mro */
0, /* tp_cache */
0, /* tp_subclasses */
0, /* tp_weaklist */
0, /* tp_del */
#if PY_VERSION_HEX >= 0x02060000
0, /* tp_version_tag */
#endif
};
static PyMethodDef core_methods[] = {
#define declmethod(func) { #func , ( PyCFunction )func , METH_VARARGS , NULL }
declmethod(memoryview_get_buffer),
declmethod(memoryview_get_extents),
declmethod(memoryview_get_extents_info),
{ NULL },
#undef declmethod
};
MOD_INIT(mviewbuf) {
PyObject *module;
MOD_DEF(module, "mviewbuf", "No docs", core_methods)
if (module == NULL)
return MOD_ERROR_VAL;
MemAllocType.tp_new = PyType_GenericNew;
if (PyType_Ready(&MemAllocType) < 0){
return MOD_ERROR_VAL;
}
Py_INCREF(&MemAllocType);
PyModule_AddObject(module, "MemAlloc", (PyObject*)&MemAllocType);
return MOD_SUCCESS_VAL(module);
}
|