memoryobject.h 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /* Memory view object. In Python this is available as "memoryview". */
  2. #ifndef Py_MEMORYOBJECT_H
  3. #define Py_MEMORYOBJECT_H
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. #ifndef Py_LIMITED_API
  8. PyAPI_DATA(PyTypeObject) _PyManagedBuffer_Type;
  9. #endif
  10. PyAPI_DATA(PyTypeObject) PyMemoryView_Type;
  11. #define PyMemoryView_Check(op) (Py_TYPE(op) == &PyMemoryView_Type)
  12. #ifndef Py_LIMITED_API
  13. /* Get a pointer to the memoryview's private copy of the exporter's buffer. */
  14. #define PyMemoryView_GET_BUFFER(op) (&((PyMemoryViewObject *)(op))->view)
  15. /* Get a pointer to the exporting object (this may be NULL!). */
  16. #define PyMemoryView_GET_BASE(op) (((PyMemoryViewObject *)(op))->view.obj)
  17. #endif
  18. PyAPI_FUNC(PyObject *) PyMemoryView_FromObject(PyObject *base);
  19. PyAPI_FUNC(PyObject *) PyMemoryView_FromMemory(char *mem, Py_ssize_t size,
  20. int flags);
  21. #ifndef Py_LIMITED_API
  22. PyAPI_FUNC(PyObject *) PyMemoryView_FromBuffer(Py_buffer *info);
  23. #endif
  24. PyAPI_FUNC(PyObject *) PyMemoryView_GetContiguous(PyObject *base,
  25. int buffertype,
  26. char order);
  27. /* The structs are declared here so that macros can work, but they shouldn't
  28. be considered public. Don't access their fields directly, use the macros
  29. and functions instead! */
  30. #ifndef Py_LIMITED_API
  31. #define _Py_MANAGED_BUFFER_RELEASED 0x001 /* access to exporter blocked */
  32. #define _Py_MANAGED_BUFFER_FREE_FORMAT 0x002 /* free format */
  33. typedef struct {
  34. PyObject_HEAD
  35. int flags; /* state flags */
  36. Py_ssize_t exports; /* number of direct memoryview exports */
  37. Py_buffer master; /* snapshot buffer obtained from the original exporter */
  38. } _PyManagedBufferObject;
  39. /* memoryview state flags */
  40. #define _Py_MEMORYVIEW_RELEASED 0x001 /* access to master buffer blocked */
  41. #define _Py_MEMORYVIEW_C 0x002 /* C-contiguous layout */
  42. #define _Py_MEMORYVIEW_FORTRAN 0x004 /* Fortran contiguous layout */
  43. #define _Py_MEMORYVIEW_SCALAR 0x008 /* scalar: ndim = 0 */
  44. #define _Py_MEMORYVIEW_PIL 0x010 /* PIL-style layout */
  45. typedef struct {
  46. PyObject_VAR_HEAD
  47. _PyManagedBufferObject *mbuf; /* managed buffer */
  48. Py_hash_t hash; /* hash value for read-only views */
  49. int flags; /* state flags */
  50. Py_ssize_t exports; /* number of buffer re-exports */
  51. Py_buffer view; /* private copy of the exporter's view */
  52. PyObject *weakreflist;
  53. Py_ssize_t ob_array[1]; /* shape, strides, suboffsets */
  54. } PyMemoryViewObject;
  55. #endif
  56. #ifdef __cplusplus
  57. }
  58. #endif
  59. #endif /* !Py_MEMORYOBJECT_H */