descrobject.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /* Descriptors */
  2. #ifndef Py_DESCROBJECT_H
  3. #define Py_DESCROBJECT_H
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. typedef PyObject *(*getter)(PyObject *, void *);
  8. typedef int (*setter)(PyObject *, PyObject *, void *);
  9. typedef struct PyGetSetDef {
  10. char *name;
  11. getter get;
  12. setter set;
  13. char *doc;
  14. void *closure;
  15. } PyGetSetDef;
  16. #ifndef Py_LIMITED_API
  17. typedef PyObject *(*wrapperfunc)(PyObject *self, PyObject *args,
  18. void *wrapped);
  19. typedef PyObject *(*wrapperfunc_kwds)(PyObject *self, PyObject *args,
  20. void *wrapped, PyObject *kwds);
  21. struct wrapperbase {
  22. char *name;
  23. int offset;
  24. void *function;
  25. wrapperfunc wrapper;
  26. char *doc;
  27. int flags;
  28. PyObject *name_strobj;
  29. };
  30. /* Flags for above struct */
  31. #define PyWrapperFlag_KEYWORDS 1 /* wrapper function takes keyword args */
  32. /* Various kinds of descriptor objects */
  33. typedef struct {
  34. PyObject_HEAD
  35. PyTypeObject *d_type;
  36. PyObject *d_name;
  37. PyObject *d_qualname;
  38. } PyDescrObject;
  39. #define PyDescr_COMMON PyDescrObject d_common
  40. #define PyDescr_TYPE(x) (((PyDescrObject *)(x))->d_type)
  41. #define PyDescr_NAME(x) (((PyDescrObject *)(x))->d_name)
  42. typedef struct {
  43. PyDescr_COMMON;
  44. PyMethodDef *d_method;
  45. } PyMethodDescrObject;
  46. typedef struct {
  47. PyDescr_COMMON;
  48. struct PyMemberDef *d_member;
  49. } PyMemberDescrObject;
  50. typedef struct {
  51. PyDescr_COMMON;
  52. PyGetSetDef *d_getset;
  53. } PyGetSetDescrObject;
  54. typedef struct {
  55. PyDescr_COMMON;
  56. struct wrapperbase *d_base;
  57. void *d_wrapped; /* This can be any function pointer */
  58. } PyWrapperDescrObject;
  59. #endif /* Py_LIMITED_API */
  60. PyAPI_DATA(PyTypeObject) PyClassMethodDescr_Type;
  61. PyAPI_DATA(PyTypeObject) PyGetSetDescr_Type;
  62. PyAPI_DATA(PyTypeObject) PyMemberDescr_Type;
  63. PyAPI_DATA(PyTypeObject) PyMethodDescr_Type;
  64. PyAPI_DATA(PyTypeObject) PyWrapperDescr_Type;
  65. PyAPI_DATA(PyTypeObject) PyDictProxy_Type;
  66. PyAPI_DATA(PyTypeObject) _PyMethodWrapper_Type;
  67. PyAPI_FUNC(PyObject *) PyDescr_NewMethod(PyTypeObject *, PyMethodDef *);
  68. PyAPI_FUNC(PyObject *) PyDescr_NewClassMethod(PyTypeObject *, PyMethodDef *);
  69. struct PyMemberDef; /* forward declaration for following prototype */
  70. PyAPI_FUNC(PyObject *) PyDescr_NewMember(PyTypeObject *,
  71. struct PyMemberDef *);
  72. PyAPI_FUNC(PyObject *) PyDescr_NewGetSet(PyTypeObject *,
  73. struct PyGetSetDef *);
  74. #ifndef Py_LIMITED_API
  75. PyAPI_FUNC(PyObject *) PyDescr_NewWrapper(PyTypeObject *,
  76. struct wrapperbase *, void *);
  77. #define PyDescr_IsData(d) (Py_TYPE(d)->tp_descr_set != NULL)
  78. #endif
  79. PyAPI_FUNC(PyObject *) PyDictProxy_New(PyObject *);
  80. PyAPI_FUNC(PyObject *) PyWrapper_New(PyObject *, PyObject *);
  81. PyAPI_DATA(PyTypeObject) PyProperty_Type;
  82. #ifdef __cplusplus
  83. }
  84. #endif
  85. #endif /* !Py_DESCROBJECT_H */