blob: 62ecbd644924b31626efab61a187a70bb8d83076 [file] [log] [blame]
Antoine Pitrouee58fa42008-08-19 18:22:14 +00001/* Memory view object. In Python this is available as "memoryview". */
Travis E. Oliphantb99f7622007-08-18 11:21:56 +00002
3#ifndef Py_MEMORYOBJECT_H
4#define Py_MEMORYOBJECT_H
5#ifdef __cplusplus
6extern "C" {
7#endif
8
Travis E. Oliphantb99f7622007-08-18 11:21:56 +00009PyAPI_DATA(PyTypeObject) PyMemoryView_Type;
10
Antoine Pitrouee58fa42008-08-19 18:22:14 +000011#define PyMemoryView_Check(op) (Py_TYPE(op) == &PyMemoryView_Type)
Travis E. Oliphantb99f7622007-08-18 11:21:56 +000012
Martin v. Löwis4d0d4712010-12-03 20:14:31 +000013#ifndef Py_LIMITED_API
Antoine Pitrouee58fa42008-08-19 18:22:14 +000014/* 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öwis4d0d4712010-12-03 20:14:31 +000018#endif
Antoine Pitrouee58fa42008-08-19 18:22:14 +000019
Travis E. Oliphantb99f7622007-08-18 11:21:56 +000020
Travis E. Oliphantfe9bed02007-10-12 23:27:53 +000021PyAPI_FUNC(PyObject *) PyMemoryView_GetContiguous(PyObject *base,
22 int buffertype,
23 char fort);
Travis E. Oliphantb99f7622007-08-18 11:21:56 +000024
Antoine Pitrou35b7e832009-01-03 19:20:36 +000025 /* 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. Oliphantb99f7622007-08-18 11:21:56 +000031
Antoine Pitrou35b7e832009-01-03 19:20:36 +000032 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. Oliphantfe9bed02007-10-12 23:27:53 +000052
Antoine Pitrou35b7e832009-01-03 19:20:36 +000053 A new reference is returned that must be DECREF'd when finished.
54 */
Travis E. Oliphantb99f7622007-08-18 11:21:56 +000055
56PyAPI_FUNC(PyObject *) PyMemoryView_FromObject(PyObject *base);
57
Martin v. Löwisc83bc3c2011-01-06 19:15:47 +000058#ifndef Py_LIMITED_API
Antoine Pitrouee58fa42008-08-19 18:22:14 +000059PyAPI_FUNC(PyObject *) PyMemoryView_FromBuffer(Py_buffer *info);
Antoine Pitrou35b7e832009-01-03 19:20:36 +000060 /* create new if bufptr is NULL
61 will be a new bytesobject in base */
Martin v. Löwisc83bc3c2011-01-06 19:15:47 +000062#endif
Travis E. Oliphantb99f7622007-08-18 11:21:56 +000063
Antoine Pitrou35b7e832009-01-03 19:20:36 +000064
Antoine Pitrouee58fa42008-08-19 18:22:14 +000065/* 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öwis4d0d4712010-12-03 20:14:31 +000068#ifndef Py_LIMITED_API
Antoine Pitrouee58fa42008-08-19 18:22:14 +000069typedef struct {
Antoine Pitrou35b7e832009-01-03 19:20:36 +000070 PyObject_HEAD
Antoine Pitrou35b7e832009-01-03 19:20:36 +000071 Py_buffer view;
Antoine Pitrouee58fa42008-08-19 18:22:14 +000072} PyMemoryViewObject;
Martin v. Löwis4d0d4712010-12-03 20:14:31 +000073#endif
Antoine Pitrouee58fa42008-08-19 18:22:14 +000074
Travis E. Oliphantb99f7622007-08-18 11:21:56 +000075#ifdef __cplusplus
76}
77#endif
78#endif /* !Py_MEMORYOBJECT_H */