Antoine Pitrou | ee58fa4 | 2008-08-19 18:22:14 +0000 | [diff] [blame] | 1 | /* Memory view object. In Python this is available as "memoryview". */ |
Travis E. Oliphant | b99f762 | 2007-08-18 11:21:56 +0000 | [diff] [blame] | 2 | |
| 3 | #ifndef Py_MEMORYOBJECT_H |
| 4 | #define Py_MEMORYOBJECT_H |
| 5 | #ifdef __cplusplus |
| 6 | extern "C" { |
| 7 | #endif |
| 8 | |
Travis E. Oliphant | b99f762 | 2007-08-18 11:21:56 +0000 | [diff] [blame] | 9 | PyAPI_DATA(PyTypeObject) PyMemoryView_Type; |
| 10 | |
Antoine Pitrou | ee58fa4 | 2008-08-19 18:22:14 +0000 | [diff] [blame] | 11 | #define PyMemoryView_Check(op) (Py_TYPE(op) == &PyMemoryView_Type) |
Travis E. Oliphant | b99f762 | 2007-08-18 11:21:56 +0000 | [diff] [blame] | 12 | |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 13 | #ifndef Py_LIMITED_API |
Antoine Pitrou | ee58fa4 | 2008-08-19 18:22:14 +0000 | [diff] [blame] | 14 | /* Get a pointer to the underlying Py_buffer of a memoryview object. */ |
| 15 | #define PyMemoryView_GET_BUFFER(op) (&((PyMemoryViewObject *)(op))->view) |
| 16 | /* Get a pointer to the PyObject from which originates a memoryview object. */ |
| 17 | #define PyMemoryView_GET_BASE(op) (((PyMemoryViewObject *)(op))->view.obj) |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 18 | #endif |
Antoine Pitrou | ee58fa4 | 2008-08-19 18:22:14 +0000 | [diff] [blame] | 19 | |
Travis E. Oliphant | b99f762 | 2007-08-18 11:21:56 +0000 | [diff] [blame] | 20 | |
Travis E. Oliphant | fe9bed0 | 2007-10-12 23:27:53 +0000 | [diff] [blame] | 21 | PyAPI_FUNC(PyObject *) PyMemoryView_GetContiguous(PyObject *base, |
| 22 | int buffertype, |
| 23 | char fort); |
Travis E. Oliphant | b99f762 | 2007-08-18 11:21:56 +0000 | [diff] [blame] | 24 | |
Antoine Pitrou | 35b7e83 | 2009-01-03 19:20:36 +0000 | [diff] [blame] | 25 | /* Return a contiguous chunk of memory representing the buffer |
| 26 | from an object in a memory view object. If a copy is made then the |
| 27 | base object for the memory view will be a *new* bytes object. |
| 28 | |
| 29 | Otherwise, the base-object will be the object itself and no |
| 30 | data-copying will be done. |
Travis E. Oliphant | b99f762 | 2007-08-18 11:21:56 +0000 | [diff] [blame] | 31 | |
Antoine Pitrou | 35b7e83 | 2009-01-03 19:20:36 +0000 | [diff] [blame] | 32 | The buffertype argument can be PyBUF_READ, PyBUF_WRITE, |
| 33 | PyBUF_SHADOW to determine whether the returned buffer |
| 34 | should be READONLY, WRITABLE, or set to update the |
| 35 | original buffer if a copy must be made. If buffertype is |
| 36 | PyBUF_WRITE and the buffer is not contiguous an error will |
| 37 | be raised. In this circumstance, the user can use |
| 38 | PyBUF_SHADOW to ensure that a a writable temporary |
| 39 | contiguous buffer is returned. The contents of this |
| 40 | contiguous buffer will be copied back into the original |
| 41 | object after the memoryview object is deleted as long as |
| 42 | the original object is writable and allows setting an |
| 43 | exclusive write lock. If this is not allowed by the |
| 44 | original object, then a BufferError is raised. |
| 45 | |
| 46 | If the object is multi-dimensional and if fortran is 'F', |
| 47 | the first dimension of the underlying array will vary the |
| 48 | fastest in the buffer. If fortran is 'C', then the last |
| 49 | dimension will vary the fastest (C-style contiguous). If |
| 50 | fortran is 'A', then it does not matter and you will get |
| 51 | whatever the object decides is more efficient. |
Travis E. Oliphant | fe9bed0 | 2007-10-12 23:27:53 +0000 | [diff] [blame] | 52 | |
Antoine Pitrou | 35b7e83 | 2009-01-03 19:20:36 +0000 | [diff] [blame] | 53 | A new reference is returned that must be DECREF'd when finished. |
| 54 | */ |
Travis E. Oliphant | b99f762 | 2007-08-18 11:21:56 +0000 | [diff] [blame] | 55 | |
| 56 | PyAPI_FUNC(PyObject *) PyMemoryView_FromObject(PyObject *base); |
| 57 | |
Martin v. Löwis | c83bc3c | 2011-01-06 19:15:47 +0000 | [diff] [blame] | 58 | #ifndef Py_LIMITED_API |
Antoine Pitrou | ee58fa4 | 2008-08-19 18:22:14 +0000 | [diff] [blame] | 59 | PyAPI_FUNC(PyObject *) PyMemoryView_FromBuffer(Py_buffer *info); |
Antoine Pitrou | 35b7e83 | 2009-01-03 19:20:36 +0000 | [diff] [blame] | 60 | /* create new if bufptr is NULL |
| 61 | will be a new bytesobject in base */ |
Martin v. Löwis | c83bc3c | 2011-01-06 19:15:47 +0000 | [diff] [blame] | 62 | #endif |
Travis E. Oliphant | b99f762 | 2007-08-18 11:21:56 +0000 | [diff] [blame] | 63 | |
Antoine Pitrou | 35b7e83 | 2009-01-03 19:20:36 +0000 | [diff] [blame] | 64 | |
Antoine Pitrou | ee58fa4 | 2008-08-19 18:22:14 +0000 | [diff] [blame] | 65 | /* The struct is declared here so that macros can work, but it shouldn't |
| 66 | be considered public. Don't access those fields directly, use the macros |
| 67 | and functions instead! */ |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 68 | #ifndef Py_LIMITED_API |
Antoine Pitrou | ee58fa4 | 2008-08-19 18:22:14 +0000 | [diff] [blame] | 69 | typedef struct { |
Antoine Pitrou | 35b7e83 | 2009-01-03 19:20:36 +0000 | [diff] [blame] | 70 | PyObject_HEAD |
Antoine Pitrou | 35b7e83 | 2009-01-03 19:20:36 +0000 | [diff] [blame] | 71 | Py_buffer view; |
Antoine Pitrou | ee58fa4 | 2008-08-19 18:22:14 +0000 | [diff] [blame] | 72 | } PyMemoryViewObject; |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 73 | #endif |
Antoine Pitrou | ee58fa4 | 2008-08-19 18:22:14 +0000 | [diff] [blame] | 74 | |
Travis E. Oliphant | b99f762 | 2007-08-18 11:21:56 +0000 | [diff] [blame] | 75 | #ifdef __cplusplus |
| 76 | } |
| 77 | #endif |
| 78 | #endif /* !Py_MEMORYOBJECT_H */ |