| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | /***********************************************************
 | 
					
						
							| 
									
										
										
										
											1995-01-04 19:07:38 +00:00
										 |  |  | Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, | 
					
						
							|  |  |  | The Netherlands. | 
					
						
							| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                         All Rights Reserved | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-10-25 14:44:06 +00:00
										 |  |  | Permission to use, copy, modify, and distribute this software and its | 
					
						
							|  |  |  | documentation for any purpose and without fee is hereby granted, | 
					
						
							| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | provided that the above copyright notice appear in all copies and that | 
					
						
							| 
									
										
										
										
											1996-10-25 14:44:06 +00:00
										 |  |  | both that copyright notice and this permission notice appear in | 
					
						
							| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | supporting documentation, and that the names of Stichting Mathematisch | 
					
						
							| 
									
										
										
										
											1996-10-25 14:44:06 +00:00
										 |  |  | Centrum or CWI or Corporation for National Research Initiatives or | 
					
						
							|  |  |  | CNRI not be used in advertising or publicity pertaining to | 
					
						
							|  |  |  | distribution of the software without specific, written prior | 
					
						
							|  |  |  | permission. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | While CWI is the initial source for this software, a modified version | 
					
						
							|  |  |  | is made available by the Corporation for National Research Initiatives | 
					
						
							|  |  |  | (CNRI) at the Internet address ftp://ftp.python.org.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH | 
					
						
							|  |  |  | REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF | 
					
						
							|  |  |  | MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH | 
					
						
							|  |  |  | CENTRUM OR CNRI 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. | 
					
						
							| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | ******************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | /* Method object implementation */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | #include "allobjects.h"
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "token.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct { | 
					
						
							|  |  |  | 	OB_HEAD | 
					
						
							| 
									
										
										
										
											1995-01-07 12:34:58 +00:00
										 |  |  | 	struct methodlist *m_ml; | 
					
						
							| 
									
										
										
										
											1991-12-16 13:07:24 +00:00
										 |  |  | 	object	*m_self; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } methodobject; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | object * | 
					
						
							| 
									
										
										
										
											1995-01-07 12:34:58 +00:00
										 |  |  | newmethodobject(ml, self) | 
					
						
							|  |  |  | 	struct methodlist *ml; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	object *self; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	methodobject *op = NEWOBJ(methodobject, &Methodtype); | 
					
						
							|  |  |  | 	if (op != NULL) { | 
					
						
							| 
									
										
										
										
											1995-01-07 12:34:58 +00:00
										 |  |  | 		op->m_ml = ml; | 
					
						
							|  |  |  | 		XINCREF(self); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 		op->m_self = self; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return (object *)op; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | method | 
					
						
							|  |  |  | getmethod(op) | 
					
						
							|  |  |  | 	object *op; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (!is_methodobject(op)) { | 
					
						
							| 
									
										
										
										
											1990-10-21 22:15:08 +00:00
										 |  |  | 		err_badcall(); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1995-01-07 12:34:58 +00:00
										 |  |  | 	return ((methodobject *)op) -> m_ml -> ml_meth; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | object * | 
					
						
							|  |  |  | getself(op) | 
					
						
							|  |  |  | 	object *op; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (!is_methodobject(op)) { | 
					
						
							| 
									
										
										
										
											1990-10-21 22:15:08 +00:00
										 |  |  | 		err_badcall(); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return ((methodobject *)op) -> m_self; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1991-12-16 13:07:24 +00:00
										 |  |  | int | 
					
						
							| 
									
										
										
										
											1995-07-26 18:07:32 +00:00
										 |  |  | getflags(op) | 
					
						
							| 
									
										
										
										
											1991-12-16 13:07:24 +00:00
										 |  |  | 	object *op; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (!is_methodobject(op)) { | 
					
						
							|  |  |  | 		err_badcall(); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1995-07-26 18:07:32 +00:00
										 |  |  | 	return ((methodobject *)op) -> m_ml -> ml_flags; | 
					
						
							| 
									
										
										
										
											1991-12-16 13:07:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | /* Methods (the standard built-in methods, that is) */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | meth_dealloc(m) | 
					
						
							|  |  |  | 	methodobject *m; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-01-07 12:34:58 +00:00
										 |  |  | 	XDECREF(m->m_self); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	free((char *)m); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-07 12:34:58 +00: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 10:39:49 +00:00
										 |  |  | 		object *self; | 
					
						
							|  |  |  | 		if (getrestricted()) { | 
					
						
							|  |  |  | 			err_setstr(RuntimeError, | 
					
						
							|  |  |  | 			 "method.__self__ not accessible in restricted mode"); | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		self = m->m_self; | 
					
						
							| 
									
										
										
										
											1995-01-07 12:34:58 +00: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 12:07:46 +00:00
										 |  |  | static object * | 
					
						
							|  |  |  | meth_repr(m) | 
					
						
							|  |  |  | 	methodobject *m; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	char buf[200]; | 
					
						
							|  |  |  | 	if (m->m_self == NULL) | 
					
						
							| 
									
										
										
										
											1995-01-07 12:34:58 +00:00
										 |  |  | 		sprintf(buf, "<built-in function %.80s>", m->m_ml->ml_name); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 		sprintf(buf, | 
					
						
							| 
									
										
										
										
											1993-05-21 19:56:10 +00:00
										 |  |  | 			"<built-in method %.80s of %.80s object at %lx>", | 
					
						
							| 
									
										
										
										
											1995-01-07 12:34:58 +00:00
										 |  |  | 			m->m_ml->ml_name, m->m_self->ob_type->tp_name, | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | 			(long)m->m_self); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	return newstringobject(buf); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00: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 12:34:58 +00:00
										 |  |  | 	if (a->m_ml->ml_meth == b->m_ml->ml_meth) | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											1995-01-07 12:34:58 +00:00
										 |  |  | 	if (strcmp(a->m_ml->ml_name, b->m_ml->ml_name) < 0) | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | 		return -1; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static long | 
					
						
							|  |  |  | meth_hash(a) | 
					
						
							|  |  |  | 	methodobject *a; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1995-01-02 19:07:15 +00:00
										 |  |  | 	long x; | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | 	if (a->m_self == NULL) | 
					
						
							|  |  |  | 		x = 0; | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		x = hashobject(a->m_self); | 
					
						
							|  |  |  | 		if (x == -1) | 
					
						
							|  |  |  | 			return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1995-01-07 12:34:58 +00:00
										 |  |  | 	return x ^ (long) a->m_ml->ml_meth; | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | typeobject Methodtype = { | 
					
						
							|  |  |  | 	OB_HEAD_INIT(&Typetype) | 
					
						
							|  |  |  | 	0, | 
					
						
							| 
									
										
										
										
											1992-09-17 17:54:56 +00:00
										 |  |  | 	"builtin_function_or_method", | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	sizeof(methodobject), | 
					
						
							|  |  |  | 	0, | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 	(destructor)meth_dealloc, /*tp_dealloc*/ | 
					
						
							| 
									
										
										
										
											1992-09-17 17:54:56 +00:00
										 |  |  | 	0,		/*tp_print*/ | 
					
						
							| 
									
										
										
										
											1995-01-07 12:34:58 +00:00
										 |  |  | 	(getattrfunc)meth_getattr, /*tp_getattr*/ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	0,		/*tp_setattr*/ | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 	(cmpfunc)meth_compare, /*tp_compare*/ | 
					
						
							|  |  |  | 	(reprfunc)meth_repr, /*tp_repr*/ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	0,		/*tp_as_number*/ | 
					
						
							|  |  |  | 	0,		/*tp_as_sequence*/ | 
					
						
							|  |  |  | 	0,		/*tp_as_mapping*/ | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 	(hashfunc)meth_hash, /*tp_hash*/ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-26 22:58:48 +00:00
										 |  |  | /* List all methods in a chain -- helper for findmethodinchain */ | 
					
						
							| 
									
										
										
										
											1991-10-20 20:21:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static object * | 
					
						
							| 
									
										
										
										
											1995-01-26 22:58:48 +00:00
										 |  |  | listmethodchain(chain) | 
					
						
							|  |  |  | 	struct methodchain *chain; | 
					
						
							| 
									
										
										
										
											1991-10-20 20:21:15 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1995-01-26 22:58:48 +00:00
										 |  |  | 	struct methodchain *c; | 
					
						
							|  |  |  | 	struct methodlist *ml; | 
					
						
							| 
									
										
										
										
											1991-10-20 20:21:15 +00:00
										 |  |  | 	int i, n; | 
					
						
							|  |  |  | 	object *v; | 
					
						
							| 
									
										
										
										
											1995-01-26 22:58:48 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	n = 0; | 
					
						
							|  |  |  | 	for (c = chain; c != NULL; c = c->link) { | 
					
						
							|  |  |  | 		for (ml = c->methods; ml->ml_name != NULL; ml++) | 
					
						
							|  |  |  | 			n++; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1991-10-20 20:21:15 +00:00
										 |  |  | 	v = newlistobject(n); | 
					
						
							| 
									
										
										
										
											1995-01-26 22:58:48 +00: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 20:21:15 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1995-01-26 22:58:48 +00:00
										 |  |  | 	if (err_occurred()) { | 
					
						
							|  |  |  | 		DECREF(v); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	sortlist(v); | 
					
						
							| 
									
										
										
										
											1991-10-20 20:21:15 +00:00
										 |  |  | 	return v; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-26 22:58:48 +00:00
										 |  |  | /* Find a method in a method chain */ | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | object * | 
					
						
							| 
									
										
										
										
											1995-01-26 22:58:48 +00:00
										 |  |  | findmethodinchain(chain, self, name) | 
					
						
							|  |  |  | 	struct methodchain *chain; | 
					
						
							|  |  |  | 	object *self; | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 	char *name; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1991-10-20 20:21:15 +00:00
										 |  |  | 	if (strcmp(name, "__methods__") == 0) | 
					
						
							| 
									
										
										
										
											1995-01-26 22:58:48 +00: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 15:06:42 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1991-12-10 13:58:49 +00:00
										 |  |  | 	err_setstr(AttributeError, name); | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1995-01-26 22:58:48 +00: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); | 
					
						
							|  |  |  | } |