1991-02-19 08:39:46 -04:00
|
|
|
/***********************************************************
|
1995-01-04 15:07:38 -04:00
|
|
|
Copyright 1991-1995 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
|
1995-01-07 08:34:58 -04:00
|
|
|
struct methodlist *m_ml;
|
1991-12-16 09:07:24 -04:00
|
|
|
object *m_self;
|
1990-10-14 09:07:46 -03:00
|
|
|
} methodobject;
|
|
|
|
|
|
|
|
object *
|
1995-01-07 08:34:58 -04:00
|
|
|
newmethodobject(ml, self)
|
|
|
|
struct methodlist *ml;
|
1990-10-14 09:07:46 -03:00
|
|
|
object *self;
|
|
|
|
{
|
|
|
|
methodobject *op = NEWOBJ(methodobject, &Methodtype);
|
|
|
|
if (op != NULL) {
|
1995-01-07 08:34:58 -04:00
|
|
|
op->m_ml = ml;
|
|
|
|
XINCREF(self);
|
1990-10-14 09:07:46 -03:00
|
|
|
op->m_self = self;
|
|
|
|
}
|
|
|
|
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;
|
|
|
|
}
|
1995-01-07 08:34:58 -04:00
|
|
|
return ((methodobject *)op) -> m_ml -> ml_meth;
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
1995-07-26 15:07:32 -03:00
|
|
|
getflags(op)
|
1991-12-16 09:07:24 -04:00
|
|
|
object *op;
|
|
|
|
{
|
|
|
|
if (!is_methodobject(op)) {
|
|
|
|
err_badcall();
|
|
|
|
return -1;
|
|
|
|
}
|
1995-07-26 15:07:32 -03:00
|
|
|
return ((methodobject *)op) -> m_ml -> ml_flags;
|
1991-12-16 09:07:24 -04:00
|
|
|
}
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
/* Methods (the standard built-in methods, that is) */
|
|
|
|
|
|
|
|
static void
|
|
|
|
meth_dealloc(m)
|
|
|
|
methodobject *m;
|
|
|
|
{
|
1995-01-07 08:34:58 -04:00
|
|
|
XDECREF(m->m_self);
|
1990-10-14 09:07:46 -03:00
|
|
|
free((char *)m);
|
|
|
|
}
|
|
|
|
|
1995-01-07 08:34:58 -04:00
|
|
|
static object *
|
|
|
|
meth_getattr(m, name)
|
|
|
|
methodobject *m;
|
|
|
|
char *name;
|
|
|
|
{
|
|
|
|
if (strcmp(name, "__name__") == 0) {
|
|
|
|
return newstringobject(m->m_ml->ml_name);
|
|
|
|
}
|
|
|
|
if (strcmp(name, "__doc__") == 0) {
|
|
|
|
char *doc = m->m_ml->ml_doc;
|
|
|
|
if (doc != NULL)
|
|
|
|
return newstringobject(doc);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
if (strcmp(name, "__self__") == 0) {
|
1995-01-10 06:39:49 -04:00
|
|
|
object *self;
|
|
|
|
if (getrestricted()) {
|
|
|
|
err_setstr(RuntimeError,
|
|
|
|
"method.__self__ not accessible in restricted mode");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
self = m->m_self;
|
1995-01-07 08:34:58 -04:00
|
|
|
if (self == NULL)
|
|
|
|
self = None;
|
|
|
|
INCREF(self);
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
if (strcmp(name, "__members__") == 0) {
|
|
|
|
return mkvalue("[sss]", "__doc__", "__name__", "__self__");
|
|
|
|
}
|
|
|
|
err_setstr(AttributeError, name);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
static object *
|
|
|
|
meth_repr(m)
|
|
|
|
methodobject *m;
|
|
|
|
{
|
|
|
|
char buf[200];
|
|
|
|
if (m->m_self == NULL)
|
1995-01-07 08:34:58 -04:00
|
|
|
sprintf(buf, "<built-in function %.80s>", m->m_ml->ml_name);
|
1990-10-14 09:07:46 -03:00
|
|
|
else
|
1990-12-20 11:06:42 -04:00
|
|
|
sprintf(buf,
|
1993-05-21 16:56:10 -03:00
|
|
|
"<built-in method %.80s of %.80s object at %lx>",
|
1995-01-07 08:34:58 -04:00
|
|
|
m->m_ml->ml_name, m->m_self->ob_type->tp_name,
|
1993-03-29 06:43:31 -04:00
|
|
|
(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);
|
1995-01-07 08:34:58 -04:00
|
|
|
if (a->m_ml->ml_meth == b->m_ml->ml_meth)
|
1993-03-29 06:43:31 -04:00
|
|
|
return 0;
|
1995-01-07 08:34:58 -04:00
|
|
|
if (strcmp(a->m_ml->ml_name, b->m_ml->ml_name) < 0)
|
1993-03-29 06:43:31 -04:00
|
|
|
return -1;
|
|
|
|
else
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static long
|
|
|
|
meth_hash(a)
|
|
|
|
methodobject *a;
|
|
|
|
{
|
1995-01-02 15:07:15 -04:00
|
|
|
long x;
|
1993-03-29 06:43:31 -04:00
|
|
|
if (a->m_self == NULL)
|
|
|
|
x = 0;
|
|
|
|
else {
|
|
|
|
x = hashobject(a->m_self);
|
|
|
|
if (x == -1)
|
|
|
|
return -1;
|
|
|
|
}
|
1995-01-07 08:34:58 -04:00
|
|
|
return x ^ (long) a->m_ml->ml_meth;
|
1993-03-29 06:43:31 -04:00
|
|
|
}
|
|
|
|
|
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,
|
1994-08-30 05:27:36 -03:00
|
|
|
(destructor)meth_dealloc, /*tp_dealloc*/
|
1992-09-17 14:54:56 -03:00
|
|
|
0, /*tp_print*/
|
1995-01-07 08:34:58 -04:00
|
|
|
(getattrfunc)meth_getattr, /*tp_getattr*/
|
1990-10-14 09:07:46 -03:00
|
|
|
0, /*tp_setattr*/
|
1994-08-30 05:27:36 -03:00
|
|
|
(cmpfunc)meth_compare, /*tp_compare*/
|
|
|
|
(reprfunc)meth_repr, /*tp_repr*/
|
1990-10-14 09:07:46 -03:00
|
|
|
0, /*tp_as_number*/
|
|
|
|
0, /*tp_as_sequence*/
|
|
|
|
0, /*tp_as_mapping*/
|
1994-08-30 05:27:36 -03:00
|
|
|
(hashfunc)meth_hash, /*tp_hash*/
|
1990-10-14 09:07:46 -03:00
|
|
|
};
|
1990-12-20 11:06:42 -04:00
|
|
|
|
1995-01-26 18:58:48 -04:00
|
|
|
/* List all methods in a chain -- helper for findmethodinchain */
|
1991-10-20 17:21:15 -03:00
|
|
|
|
|
|
|
static object *
|
1995-01-26 18:58:48 -04:00
|
|
|
listmethodchain(chain)
|
|
|
|
struct methodchain *chain;
|
1991-10-20 17:21:15 -03:00
|
|
|
{
|
1995-01-26 18:58:48 -04:00
|
|
|
struct methodchain *c;
|
|
|
|
struct methodlist *ml;
|
1991-10-20 17:21:15 -03:00
|
|
|
int i, n;
|
|
|
|
object *v;
|
1995-01-26 18:58:48 -04:00
|
|
|
|
|
|
|
n = 0;
|
|
|
|
for (c = chain; c != NULL; c = c->link) {
|
|
|
|
for (ml = c->methods; ml->ml_name != NULL; ml++)
|
|
|
|
n++;
|
|
|
|
}
|
1991-10-20 17:21:15 -03:00
|
|
|
v = newlistobject(n);
|
1995-01-26 18:58:48 -04:00
|
|
|
if (v == NULL)
|
|
|
|
return NULL;
|
|
|
|
i = 0;
|
|
|
|
for (c = chain; c != NULL; c = c->link) {
|
|
|
|
for (ml = c->methods; ml->ml_name != NULL; ml++) {
|
|
|
|
setlistitem(v, i, newstringobject(ml->ml_name));
|
|
|
|
i++;
|
1991-10-20 17:21:15 -03:00
|
|
|
}
|
|
|
|
}
|
1995-01-26 18:58:48 -04:00
|
|
|
if (err_occurred()) {
|
|
|
|
DECREF(v);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
sortlist(v);
|
1991-10-20 17:21:15 -03:00
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
1995-01-26 18:58:48 -04:00
|
|
|
/* Find a method in a method chain */
|
1990-12-20 11:06:42 -04:00
|
|
|
|
|
|
|
object *
|
1995-01-26 18:58:48 -04:00
|
|
|
findmethodinchain(chain, self, name)
|
|
|
|
struct methodchain *chain;
|
|
|
|
object *self;
|
1990-12-20 11:06:42 -04:00
|
|
|
char *name;
|
|
|
|
{
|
1991-10-20 17:21:15 -03:00
|
|
|
if (strcmp(name, "__methods__") == 0)
|
1995-01-26 18:58:48 -04:00
|
|
|
return listmethodchain(chain);
|
|
|
|
while (chain != NULL) {
|
|
|
|
struct methodlist *ml = chain->methods;
|
|
|
|
for (; ml->ml_name != NULL; ml++) {
|
|
|
|
if (name[0] == ml->ml_name[0] &&
|
|
|
|
strcmp(name+1, ml->ml_name+1) == 0)
|
|
|
|
return newmethodobject(ml, self);
|
|
|
|
}
|
|
|
|
chain = chain->link;
|
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;
|
|
|
|
}
|
1995-01-26 18:58:48 -04:00
|
|
|
|
|
|
|
/* Find a method in a single method list */
|
|
|
|
|
|
|
|
object *
|
|
|
|
findmethod(methods, self, name)
|
|
|
|
struct methodlist *methods;
|
|
|
|
object *self;
|
|
|
|
char *name;
|
|
|
|
{
|
|
|
|
struct methodchain chain;
|
|
|
|
chain.methods = methods;
|
|
|
|
chain.link = NULL;
|
|
|
|
return findmethodinchain(&chain, self, name);
|
|
|
|
}
|