methodobject.h 3.23 KB
Newer Older
1

Guido van Rossum's avatar
Guido van Rossum committed
2 3
/* Method object interface */

4 5 6 7 8 9
#ifndef Py_METHODOBJECT_H
#define Py_METHODOBJECT_H
#ifdef __cplusplus
extern "C" {
#endif

10 11 12 13
/* This is about the type 'builtin_function_or_method',
   not Python methods in user-defined classes.  See classobject.h
   for the latter. */

14
PyAPI_DATA(PyTypeObject) PyCFunction_Type;
Guido van Rossum's avatar
Guido van Rossum committed
15

16
#define PyCFunction_Check(op) (Py_TYPE(op) == &PyCFunction_Type)
Guido van Rossum's avatar
Guido van Rossum committed
17

18 19
typedef PyObject *(*PyCFunction)(PyObject *, PyObject *);
typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *,
20
                                             PyObject *);
21
typedef PyObject *(*PyNoArgsFunction)(PyObject *);
Guido van Rossum's avatar
Guido van Rossum committed
22

23 24 25
PyAPI_FUNC(PyCFunction) PyCFunction_GetFunction(PyObject *);
PyAPI_FUNC(PyObject *) PyCFunction_GetSelf(PyObject *);
PyAPI_FUNC(int) PyCFunction_GetFlags(PyObject *);
Guido van Rossum's avatar
Guido van Rossum committed
26

27 28
/* Macros for direct access to these values. Type checks are *not*
   done, so use with care. */
29
#ifndef Py_LIMITED_API
30 31 32
#define PyCFunction_GET_FUNCTION(func) \
        (((PyCFunctionObject *)func) -> m_ml -> ml_meth)
#define PyCFunction_GET_SELF(func) \
33 34
        (((PyCFunctionObject *)func) -> m_ml -> ml_flags & METH_STATIC ? \
         NULL : ((PyCFunctionObject *)func) -> m_self)
35
#define PyCFunction_GET_FLAGS(func) \
36
        (((PyCFunctionObject *)func) -> m_ml -> ml_flags)
37
#endif
38
PyAPI_FUNC(PyObject *) PyCFunction_Call(PyObject *, PyObject *, PyObject *);
39

40
struct PyMethodDef {
41 42 43 44 45
    const char  *ml_name;   /* The name of the built-in function/method */
    PyCFunction ml_meth;    /* The C function that implements it */
    int         ml_flags;   /* Combination of METH_xxx flags, which mostly
                               describe the args expected by the C func */
    const char  *ml_doc;    /* The __doc__ attribute, or NULL */
Guido van Rossum's avatar
Guido van Rossum committed
46
};
47
typedef struct PyMethodDef PyMethodDef;
Guido van Rossum's avatar
Guido van Rossum committed
48

49
#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL)
50
PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *, 
51
                                         PyObject *);
52

Guido van Rossum's avatar
Guido van Rossum committed
53
/* Flag passed to newmethodobject */
Georg Brandl's avatar
Georg Brandl committed
54
/* #define METH_OLDARGS  0x0000   -- unsupported now */
Guido van Rossum's avatar
Guido van Rossum committed
55
#define METH_VARARGS  0x0001
56
#define METH_KEYWORDS 0x0002
57
/* METH_NOARGS and METH_O must not be combined with the flags above. */
58 59
#define METH_NOARGS   0x0004
#define METH_O        0x0008
Guido van Rossum's avatar
Guido van Rossum committed
60

61 62 63 64 65 66
/* METH_CLASS and METH_STATIC are a little different; these control
   the construction of methods for a class.  These cannot be used for
   functions in modules. */
#define METH_CLASS    0x0010
#define METH_STATIC   0x0020

67
/* METH_COEXIST allows a method to be entered even though a slot has
68 69 70 71 72 73
   already filled the entry.  When defined, the flag allows a separate
   method, "__contains__" for example, to coexist with a defined 
   slot like sq_contains. */

#define METH_COEXIST   0x0040

74
#ifndef Py_LIMITED_API
75
typedef struct {
76
    PyObject_HEAD
77 78 79
    PyMethodDef *m_ml; /* Description of the C function to call */
    PyObject    *m_self; /* Passed as 'self' arg to the C func, can be NULL */
    PyObject    *m_module; /* The __module__ attribute, can be anything */
80
} PyCFunctionObject;
81
#endif
82

Christian Heimes's avatar
Christian Heimes committed
83 84
PyAPI_FUNC(int) PyCFunction_ClearFreeList(void);

85 86 87 88 89
#ifndef Py_LIMITED_API
PyAPI_FUNC(void) _PyCFunction_DebugMallocStats(FILE *out);
PyAPI_FUNC(void) _PyMethod_DebugMallocStats(FILE *out);
#endif

90 91 92 93
#ifdef __cplusplus
}
#endif
#endif /* !Py_METHODOBJECT_H */