Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 1 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2 | /* Method object interface */ |
| 3 | |
Fred Drake | ea9cb5a | 2000-07-09 00:20:36 +0000 | [diff] [blame] | 4 | #ifndef Py_METHODOBJECT_H |
| 5 | #define Py_METHODOBJECT_H |
| 6 | #ifdef __cplusplus |
| 7 | extern "C" { |
| 8 | #endif |
| 9 | |
Armin Rigo | 89a3946 | 2004-10-28 16:32:00 +0000 | [diff] [blame] | 10 | /* This is about the type 'builtin_function_or_method', |
| 11 | not Python methods in user-defined classes. See classobject.h |
| 12 | for the latter. */ |
| 13 | |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 14 | PyAPI_DATA(PyTypeObject) PyCFunction_Type; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 15 | |
Christian Heimes | 90aa764 | 2007-12-19 02:45:37 +0000 | [diff] [blame] | 16 | #define PyCFunction_Check(op) (Py_TYPE(op) == &PyCFunction_Type) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 17 | |
Tim Peters | dbd9ba6 | 2000-07-09 03:09:57 +0000 | [diff] [blame] | 18 | typedef PyObject *(*PyCFunction)(PyObject *, PyObject *); |
Serhiy Storchaka | a5552f0 | 2017-12-15 13:11:11 +0200 | [diff] [blame] | 19 | typedef PyObject *(*_PyCFunctionFast) (PyObject *, PyObject *const *, Py_ssize_t); |
Tim Peters | dbd9ba6 | 2000-07-09 03:09:57 +0000 | [diff] [blame] | 20 | typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *, |
Eli Bendersky | 0069bab | 2012-04-05 06:42:48 +0300 | [diff] [blame] | 21 | PyObject *); |
Serhiy Storchaka | 6969eaf | 2017-07-03 21:20:15 +0300 | [diff] [blame] | 22 | typedef PyObject *(*_PyCFunctionFastWithKeywords) (PyObject *, |
Serhiy Storchaka | a5552f0 | 2017-12-15 13:11:11 +0200 | [diff] [blame] | 23 | PyObject *const *, Py_ssize_t, |
Serhiy Storchaka | 6969eaf | 2017-07-03 21:20:15 +0300 | [diff] [blame] | 24 | PyObject *); |
Jeremy Hylton | 910d7d4 | 2001-08-12 21:52:24 +0000 | [diff] [blame] | 25 | typedef PyObject *(*PyNoArgsFunction)(PyObject *); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 26 | |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 27 | PyAPI_FUNC(PyCFunction) PyCFunction_GetFunction(PyObject *); |
| 28 | PyAPI_FUNC(PyObject *) PyCFunction_GetSelf(PyObject *); |
| 29 | PyAPI_FUNC(int) PyCFunction_GetFlags(PyObject *); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 30 | |
Guido van Rossum | 9223351 | 1998-07-10 15:21:55 +0000 | [diff] [blame] | 31 | /* Macros for direct access to these values. Type checks are *not* |
| 32 | done, so use with care. */ |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 33 | #ifndef Py_LIMITED_API |
Guido van Rossum | 9223351 | 1998-07-10 15:21:55 +0000 | [diff] [blame] | 34 | #define PyCFunction_GET_FUNCTION(func) \ |
| 35 | (((PyCFunctionObject *)func) -> m_ml -> ml_meth) |
| 36 | #define PyCFunction_GET_SELF(func) \ |
Antoine Pitrou | 5b62942 | 2011-12-23 12:40:16 +0100 | [diff] [blame] | 37 | (((PyCFunctionObject *)func) -> m_ml -> ml_flags & METH_STATIC ? \ |
| 38 | NULL : ((PyCFunctionObject *)func) -> m_self) |
Guido van Rossum | 9223351 | 1998-07-10 15:21:55 +0000 | [diff] [blame] | 39 | #define PyCFunction_GET_FLAGS(func) \ |
Eli Bendersky | 0069bab | 2012-04-05 06:42:48 +0300 | [diff] [blame] | 40 | (((PyCFunctionObject *)func) -> m_ml -> ml_flags) |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 41 | #endif |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 42 | PyAPI_FUNC(PyObject *) PyCFunction_Call(PyObject *, PyObject *, PyObject *); |
Guido van Rossum | 9223351 | 1998-07-10 15:21:55 +0000 | [diff] [blame] | 43 | |
Victor Stinner | 9be7e7b | 2016-08-19 16:11:43 +0200 | [diff] [blame] | 44 | #ifndef Py_LIMITED_API |
Victor Stinner | b900939 | 2016-08-22 23:15:44 +0200 | [diff] [blame] | 45 | PyAPI_FUNC(PyObject *) _PyCFunction_FastCallDict(PyObject *func, |
Serhiy Storchaka | a5552f0 | 2017-12-15 13:11:11 +0200 | [diff] [blame] | 46 | PyObject *const *args, |
Victor Stinner | 74319ae | 2016-08-25 00:04:09 +0200 | [diff] [blame] | 47 | Py_ssize_t nargs, |
Victor Stinner | 9be7e7b | 2016-08-19 16:11:43 +0200 | [diff] [blame] | 48 | PyObject *kwargs); |
Victor Stinner | ae8b69c | 2016-09-09 14:07:44 -0700 | [diff] [blame] | 49 | |
| 50 | PyAPI_FUNC(PyObject *) _PyCFunction_FastCallKeywords(PyObject *func, |
Serhiy Storchaka | a5552f0 | 2017-12-15 13:11:11 +0200 | [diff] [blame] | 51 | PyObject *const *stack, |
Victor Stinner | ae8b69c | 2016-09-09 14:07:44 -0700 | [diff] [blame] | 52 | Py_ssize_t nargs, |
| 53 | PyObject *kwnames); |
Victor Stinner | 9be7e7b | 2016-08-19 16:11:43 +0200 | [diff] [blame] | 54 | #endif |
| 55 | |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 56 | struct PyMethodDef { |
Eli Bendersky | 0069bab | 2012-04-05 06:42:48 +0300 | [diff] [blame] | 57 | const char *ml_name; /* The name of the built-in function/method */ |
| 58 | PyCFunction ml_meth; /* The C function that implements it */ |
| 59 | int ml_flags; /* Combination of METH_xxx flags, which mostly |
| 60 | describe the args expected by the C func */ |
| 61 | const char *ml_doc; /* The __doc__ attribute, or NULL */ |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 62 | }; |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 63 | typedef struct PyMethodDef PyMethodDef; |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 64 | |
Andrew Svetlov | 192b10b | 2012-12-26 22:52:04 +0200 | [diff] [blame] | 65 | #define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) |
Serhiy Storchaka | 45ec328 | 2015-04-03 19:42:32 +0300 | [diff] [blame] | 66 | PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *, |
Eli Bendersky | 0069bab | 2012-04-05 06:42:48 +0300 | [diff] [blame] | 67 | PyObject *); |
Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 68 | |
Guido van Rossum | 5799b52 | 1995-01-04 19:06:22 +0000 | [diff] [blame] | 69 | /* Flag passed to newmethodobject */ |
Georg Brandl | f2fc934 | 2007-09-01 13:59:50 +0000 | [diff] [blame] | 70 | /* #define METH_OLDARGS 0x0000 -- unsupported now */ |
Guido van Rossum | 5799b52 | 1995-01-04 19:06:22 +0000 | [diff] [blame] | 71 | #define METH_VARARGS 0x0001 |
Guido van Rossum | bebdc37 | 1995-07-26 17:58:29 +0000 | [diff] [blame] | 72 | #define METH_KEYWORDS 0x0002 |
Fred Drake | 7bf9715 | 2002-03-28 05:33:33 +0000 | [diff] [blame] | 73 | /* METH_NOARGS and METH_O must not be combined with the flags above. */ |
Jeremy Hylton | 910d7d4 | 2001-08-12 21:52:24 +0000 | [diff] [blame] | 74 | #define METH_NOARGS 0x0004 |
| 75 | #define METH_O 0x0008 |
Guido van Rossum | 5799b52 | 1995-01-04 19:06:22 +0000 | [diff] [blame] | 76 | |
Fred Drake | 7bf9715 | 2002-03-28 05:33:33 +0000 | [diff] [blame] | 77 | /* METH_CLASS and METH_STATIC are a little different; these control |
| 78 | the construction of methods for a class. These cannot be used for |
| 79 | functions in modules. */ |
| 80 | #define METH_CLASS 0x0010 |
| 81 | #define METH_STATIC 0x0020 |
| 82 | |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 83 | /* METH_COEXIST allows a method to be entered even though a slot has |
Raymond Hettinger | 8f5cdaa | 2003-12-13 11:26:12 +0000 | [diff] [blame] | 84 | already filled the entry. When defined, the flag allows a separate |
Serhiy Storchaka | 45ec328 | 2015-04-03 19:42:32 +0300 | [diff] [blame] | 85 | method, "__contains__" for example, to coexist with a defined |
Raymond Hettinger | 8f5cdaa | 2003-12-13 11:26:12 +0000 | [diff] [blame] | 86 | slot like sq_contains. */ |
| 87 | |
| 88 | #define METH_COEXIST 0x0040 |
| 89 | |
Victor Stinner | 137f39a | 2016-09-12 15:55:21 +0200 | [diff] [blame] | 90 | #ifndef Py_LIMITED_API |
Victor Stinner | a9efb2f | 2016-09-09 17:40:22 -0700 | [diff] [blame] | 91 | #define METH_FASTCALL 0x0080 |
Anselm Kruis | 9e33973 | 2017-11-02 23:54:57 +0100 | [diff] [blame] | 92 | #endif |
Victor Stinner | a9efb2f | 2016-09-09 17:40:22 -0700 | [diff] [blame] | 93 | |
Anselm Kruis | 9e33973 | 2017-11-02 23:54:57 +0100 | [diff] [blame] | 94 | /* This bit is preserved for Stackless Python */ |
| 95 | #ifdef STACKLESS |
| 96 | #define METH_STACKLESS 0x0100 |
| 97 | #else |
| 98 | #define METH_STACKLESS 0x0000 |
| 99 | #endif |
| 100 | |
| 101 | #ifndef Py_LIMITED_API |
Guido van Rossum | 9223351 | 1998-07-10 15:21:55 +0000 | [diff] [blame] | 102 | typedef struct { |
Fred Drake | ea9cb5a | 2000-07-09 00:20:36 +0000 | [diff] [blame] | 103 | PyObject_HEAD |
Armin Rigo | 89a3946 | 2004-10-28 16:32:00 +0000 | [diff] [blame] | 104 | PyMethodDef *m_ml; /* Description of the C function to call */ |
| 105 | PyObject *m_self; /* Passed as 'self' arg to the C func, can be NULL */ |
| 106 | PyObject *m_module; /* The __module__ attribute, can be anything */ |
Antoine Pitrou | b349e4c | 2014-08-06 19:31:40 -0400 | [diff] [blame] | 107 | PyObject *m_weakreflist; /* List of weak references */ |
Guido van Rossum | 9223351 | 1998-07-10 15:21:55 +0000 | [diff] [blame] | 108 | } PyCFunctionObject; |
Victor Stinner | c525723 | 2017-01-18 10:38:09 +0100 | [diff] [blame] | 109 | |
| 110 | PyAPI_FUNC(PyObject *) _PyMethodDef_RawFastCallDict( |
| 111 | PyMethodDef *method, |
| 112 | PyObject *self, |
Serhiy Storchaka | a5552f0 | 2017-12-15 13:11:11 +0200 | [diff] [blame] | 113 | PyObject *const *args, |
Victor Stinner | c525723 | 2017-01-18 10:38:09 +0100 | [diff] [blame] | 114 | Py_ssize_t nargs, |
| 115 | PyObject *kwargs); |
INADA Naoki | 5566bbb | 2017-02-03 07:43:03 +0900 | [diff] [blame] | 116 | |
| 117 | PyAPI_FUNC(PyObject *) _PyMethodDef_RawFastCallKeywords( |
| 118 | PyMethodDef *method, |
| 119 | PyObject *self, |
Serhiy Storchaka | a5552f0 | 2017-12-15 13:11:11 +0200 | [diff] [blame] | 120 | PyObject *const *args, |
INADA Naoki | 5566bbb | 2017-02-03 07:43:03 +0900 | [diff] [blame] | 121 | Py_ssize_t nargs, |
| 122 | PyObject *kwnames); |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 123 | #endif |
Guido van Rossum | 9223351 | 1998-07-10 15:21:55 +0000 | [diff] [blame] | 124 | |
Christian Heimes | a156e09 | 2008-02-16 07:38:31 +0000 | [diff] [blame] | 125 | PyAPI_FUNC(int) PyCFunction_ClearFreeList(void); |
| 126 | |
David Malcolm | 49526f4 | 2012-06-22 14:55:41 -0400 | [diff] [blame] | 127 | #ifndef Py_LIMITED_API |
| 128 | PyAPI_FUNC(void) _PyCFunction_DebugMallocStats(FILE *out); |
| 129 | PyAPI_FUNC(void) _PyMethod_DebugMallocStats(FILE *out); |
| 130 | #endif |
| 131 | |
Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 132 | #ifdef __cplusplus |
| 133 | } |
| 134 | #endif |
| 135 | #endif /* !Py_METHODOBJECT_H */ |