1991-02-19 08:39:46 -04:00
|
|
|
/***********************************************************
|
1993-03-29 06:43:31 -04:00
|
|
|
Copyright 1991, 1992, 1993 by Stichting Mathematisch Centrum,
|
|
|
|
Amsterdam, The Netherlands.
|
1991-02-19 08:39:46 -04:00
|
|
|
|
|
|
|
All Rights Reserved
|
|
|
|
|
|
|
|
Permission to use, copy, modify, and distribute this software and its
|
|
|
|
documentation for any purpose and without fee is hereby granted,
|
|
|
|
provided that the above copyright notice appear in all copies and that
|
|
|
|
both that copyright notice and this permission notice appear in
|
|
|
|
supporting documentation, and that the names of Stichting Mathematisch
|
|
|
|
Centrum or CWI not be used in advertising or publicity pertaining to
|
|
|
|
distribution of the software without specific, written prior permission.
|
|
|
|
|
|
|
|
STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
|
|
|
|
THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
|
|
|
|
FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
|
|
|
|
OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
|
|
|
******************************************************************/
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
/* Method object implementation */
|
|
|
|
|
1990-12-20 11:06:42 -04:00
|
|
|
#include "allobjects.h"
|
1990-10-14 09:07:46 -03:00
|
|
|
|
|
|
|
#include "token.h"
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
OB_HEAD
|
1991-12-16 09:07:24 -04:00
|
|
|
char *m_name;
|
|
|
|
method m_meth;
|
|
|
|
object *m_self;
|
|
|
|
int m_varargs;
|
1990-10-14 09:07:46 -03:00
|
|
|
} methodobject;
|
|
|
|
|
|
|
|
object *
|
1991-12-16 09:07:24 -04:00
|
|
|
newmethodobject(name, meth, self, varargs)
|
1990-10-14 09:07:46 -03:00
|
|
|
char *name; /* static string */
|
|
|
|
method meth;
|
|
|
|
object *self;
|
1991-12-16 09:07:24 -04:00
|
|
|
int varargs;
|
1990-10-14 09:07:46 -03:00
|
|
|
{
|
|
|
|
methodobject *op = NEWOBJ(methodobject, &Methodtype);
|
|
|
|
if (op != NULL) {
|
|
|
|
op->m_name = name;
|
|
|
|
op->m_meth = meth;
|
|
|
|
if (self != NULL)
|
|
|
|
INCREF(self);
|
|
|
|
op->m_self = self;
|
1991-12-16 09:07:24 -04:00
|
|
|
op->m_varargs = varargs;
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
return (object *)op;
|
|
|
|
}
|
|
|
|
|
|
|
|
method
|
|
|
|
getmethod(op)
|
|
|
|
object *op;
|
|
|
|
{
|
|
|
|
if (!is_methodobject(op)) {
|
1990-10-21 19:15:08 -03:00
|
|
|
err_badcall();
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return ((methodobject *)op) -> m_meth;
|
|
|
|
}
|
|
|
|
|
|
|
|
object *
|
|
|
|
getself(op)
|
|
|
|
object *op;
|
|
|
|
{
|
|
|
|
if (!is_methodobject(op)) {
|
1990-10-21 19:15:08 -03:00
|
|
|
err_badcall();
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return ((methodobject *)op) -> m_self;
|
|
|
|
}
|
|
|
|
|
1991-12-16 09:07:24 -04:00
|
|
|
int
|
|
|
|
getvarargs(op)
|
|
|
|
object *op;
|
|
|
|
{
|
|
|
|
if (!is_methodobject(op)) {
|
|
|
|
err_badcall();
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return ((methodobject *)op) -> m_varargs;
|
|
|
|
}
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
/* Methods (the standard built-in methods, that is) */
|
|
|
|
|
|
|
|
static void
|
|
|
|
meth_dealloc(m)
|
|
|
|
methodobject *m;
|
|
|
|
{
|
|
|
|
if (m->m_self != NULL)
|
|
|
|
DECREF(m->m_self);
|
|
|
|
free((char *)m);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
meth_repr(m)
|
|
|
|
methodobject *m;
|
|
|
|
{
|
|
|
|
char buf[200];
|
|
|
|
if (m->m_self == NULL)
|
1990-12-20 11:06:42 -04:00
|
|
|
sprintf(buf, "<built-in function '%.80s'>", m->m_name);
|
1990-10-14 09:07:46 -03:00
|
|
|
else
|
1990-12-20 11:06:42 -04:00
|
|
|
sprintf(buf,
|
1993-03-29 06:43:31 -04:00
|
|
|
"<built-in method '%.80s' of %.80s object at %lx>",
|
|
|
|
m->m_name, m->m_self->ob_type->tp_name,
|
|
|
|
(long)m->m_self);
|
1990-10-14 09:07:46 -03:00
|
|
|
return newstringobject(buf);
|
|
|
|
}
|
|
|
|
|
1993-03-29 06:43:31 -04:00
|
|
|
static int
|
|
|
|
meth_compare(a, b)
|
|
|
|
methodobject *a, *b;
|
|
|
|
{
|
|
|
|
if (a->m_self != b->m_self)
|
|
|
|
return cmpobject(a->m_self, b->m_self);
|
|
|
|
if (a->m_meth == b->m_meth)
|
|
|
|
return 0;
|
|
|
|
if (strcmp(a->m_name, b->m_name) < 0)
|
|
|
|
return -1;
|
|
|
|
else
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static long
|
|
|
|
meth_hash(a)
|
|
|
|
methodobject *a;
|
|
|
|
{
|
|
|
|
long x, y;
|
|
|
|
if (a->m_self == NULL)
|
|
|
|
x = 0;
|
|
|
|
else {
|
|
|
|
x = hashobject(a->m_self);
|
|
|
|
if (x == -1)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return x ^ (long) a->m_meth;
|
|
|
|
}
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
typeobject Methodtype = {
|
|
|
|
OB_HEAD_INIT(&Typetype)
|
|
|
|
0,
|
1992-09-17 14:54:56 -03:00
|
|
|
"builtin_function_or_method",
|
1990-10-14 09:07:46 -03:00
|
|
|
sizeof(methodobject),
|
|
|
|
0,
|
|
|
|
meth_dealloc, /*tp_dealloc*/
|
1992-09-17 14:54:56 -03:00
|
|
|
0, /*tp_print*/
|
1990-10-14 09:07:46 -03:00
|
|
|
0, /*tp_getattr*/
|
|
|
|
0, /*tp_setattr*/
|
1993-03-29 06:43:31 -04:00
|
|
|
meth_compare, /*tp_compare*/
|
1990-10-14 09:07:46 -03:00
|
|
|
meth_repr, /*tp_repr*/
|
|
|
|
0, /*tp_as_number*/
|
|
|
|
0, /*tp_as_sequence*/
|
|
|
|
0, /*tp_as_mapping*/
|
1993-03-29 06:43:31 -04:00
|
|
|
meth_hash, /*tp_hash*/
|
1990-10-14 09:07:46 -03:00
|
|
|
};
|
1990-12-20 11:06:42 -04:00
|
|
|
|
1991-10-20 17:21:15 -03:00
|
|
|
object *listmethods PROTO((struct methodlist *)); /* Forward */
|
|
|
|
|
|
|
|
static object *
|
|
|
|
listmethods(ml)
|
|
|
|
struct methodlist *ml;
|
|
|
|
{
|
|
|
|
int i, n;
|
|
|
|
object *v;
|
|
|
|
for (n = 0; ml[n].ml_name != NULL; n++)
|
|
|
|
;
|
|
|
|
v = newlistobject(n);
|
|
|
|
if (v != NULL) {
|
|
|
|
for (i = 0; i < n; i++)
|
|
|
|
setlistitem(v, i, newstringobject(ml[i].ml_name));
|
|
|
|
if (err_occurred()) {
|
|
|
|
DECREF(v);
|
|
|
|
v = NULL;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
sortlist(v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
1990-12-20 11:06:42 -04:00
|
|
|
/* Find a method in a module's method table.
|
|
|
|
Usually called from an object's getattr method. */
|
|
|
|
|
|
|
|
object *
|
|
|
|
findmethod(ml, op, name)
|
|
|
|
struct methodlist *ml;
|
|
|
|
object *op;
|
|
|
|
char *name;
|
|
|
|
{
|
1991-10-20 17:21:15 -03:00
|
|
|
if (strcmp(name, "__methods__") == 0)
|
|
|
|
return listmethods(ml);
|
1990-12-20 11:06:42 -04:00
|
|
|
for (; ml->ml_name != NULL; ml++) {
|
|
|
|
if (strcmp(name, ml->ml_name) == 0)
|
1991-12-16 09:07:24 -04:00
|
|
|
return newmethodobject(ml->ml_name, ml->ml_meth,
|
|
|
|
op, ml->ml_varargs);
|
1990-12-20 11:06:42 -04:00
|
|
|
}
|
1991-12-10 09:58:49 -04:00
|
|
|
err_setstr(AttributeError, name);
|
1990-12-20 11:06:42 -04:00
|
|
|
return NULL;
|
|
|
|
}
|