cpython/Objects/funcobject.c

90 lines
1.4 KiB
C
Raw Normal View History

1990-10-14 09:07:46 -03:00
/* Function object implementation */
1990-12-20 11:06:42 -04:00
#include "allobjects.h"
1990-10-14 09:07:46 -03:00
1990-12-20 11:06:42 -04:00
#include "structmember.h"
1990-10-14 09:07:46 -03:00
typedef struct {
OB_HEAD
object *func_code;
1990-10-14 09:07:46 -03:00
object *func_globals;
} funcobject;
object *
newfuncobject(code, globals)
object *code;
1990-10-14 09:07:46 -03:00
object *globals;
{
funcobject *op = NEWOBJ(funcobject, &Functype);
if (op != NULL) {
INCREF(code);
op->func_code = code;
INCREF(globals);
1990-10-14 09:07:46 -03:00
op->func_globals = globals;
}
return (object *)op;
}
object *
getfunccode(op)
1990-10-14 09:07:46 -03:00
object *op;
{
if (!is_funcobject(op)) {
1990-10-21 19:15:08 -03:00
err_badcall();
1990-10-14 09:07:46 -03:00
return NULL;
}
return ((funcobject *) op) -> func_code;
1990-10-14 09:07:46 -03:00
}
object *
getfuncglobals(op)
object *op;
{
if (!is_funcobject(op)) {
1990-10-21 19:15:08 -03:00
err_badcall();
1990-10-14 09:07:46 -03:00
return NULL;
}
return ((funcobject *) op) -> func_globals;
}
/* Methods */
1990-12-20 11:06:42 -04:00
#define OFF(x) offsetof(funcobject, x)
static struct memberlist func_memberlist[] = {
{"func_code", T_OBJECT, OFF(func_code)},
{"func_globals",T_OBJECT, OFF(func_globals)},
{NULL} /* Sentinel */
};
static object *
func_getattr(op, name)
funcobject *op;
char *name;
{
return getmember((char *)op, func_memberlist, name);
}
1990-10-14 09:07:46 -03:00
static void
1990-12-20 11:06:42 -04:00
func_dealloc(op)
1990-10-14 09:07:46 -03:00
funcobject *op;
{
DECREF(op->func_code);
1990-10-14 09:07:46 -03:00
DECREF(op->func_globals);
DEL(op);
1990-10-14 09:07:46 -03:00
}
typeobject Functype = {
OB_HEAD_INIT(&Typetype)
0,
"function",
sizeof(funcobject),
0,
1990-12-20 11:06:42 -04:00
func_dealloc, /*tp_dealloc*/
0, /*tp_print*/
1990-12-20 11:06:42 -04:00
func_getattr, /*tp_getattr*/
1990-10-14 09:07:46 -03:00
0, /*tp_setattr*/
0, /*tp_compare*/
0, /*tp_repr*/
1990-10-14 09:07:46 -03:00
};