1991-02-19 08:39:46 -04:00
|
|
|
/***********************************************************
|
1992-04-05 11:26:55 -03:00
|
|
|
Copyright 1991, 1992 by Stichting Mathematisch Centrum, Amsterdam, The
|
1991-02-19 08:39:46 -04:00
|
|
|
Netherlands.
|
|
|
|
|
|
|
|
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
|
|
|
/* Module object implementation */
|
|
|
|
|
1990-12-20 11:06:42 -04:00
|
|
|
#include "allobjects.h"
|
1990-10-14 09:07:46 -03:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
OB_HEAD
|
|
|
|
object *md_name;
|
|
|
|
object *md_dict;
|
|
|
|
} moduleobject;
|
|
|
|
|
|
|
|
object *
|
|
|
|
newmoduleobject(name)
|
|
|
|
char *name;
|
|
|
|
{
|
|
|
|
moduleobject *m = NEWOBJ(moduleobject, &Moduletype);
|
|
|
|
if (m == NULL)
|
|
|
|
return NULL;
|
|
|
|
m->md_name = newstringobject(name);
|
|
|
|
m->md_dict = newdictobject();
|
|
|
|
if (m->md_name == NULL || m->md_dict == NULL) {
|
|
|
|
DECREF(m);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return (object *)m;
|
|
|
|
}
|
|
|
|
|
|
|
|
object *
|
|
|
|
getmoduledict(m)
|
|
|
|
object *m;
|
|
|
|
{
|
|
|
|
if (!is_moduleobject(m)) {
|
1990-12-20 11:06:42 -04:00
|
|
|
err_badcall();
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return ((moduleobject *)m) -> md_dict;
|
|
|
|
}
|
|
|
|
|
1990-10-26 12:00:11 -03:00
|
|
|
char *
|
|
|
|
getmodulename(m)
|
|
|
|
object *m;
|
|
|
|
{
|
|
|
|
if (!is_moduleobject(m)) {
|
|
|
|
err_badarg();
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return getstringvalue(((moduleobject *)m) -> md_name);
|
|
|
|
}
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
/* Methods */
|
|
|
|
|
|
|
|
static void
|
1990-12-20 11:06:42 -04:00
|
|
|
module_dealloc(m)
|
1990-10-14 09:07:46 -03:00
|
|
|
moduleobject *m;
|
|
|
|
{
|
|
|
|
if (m->md_name != NULL)
|
|
|
|
DECREF(m->md_name);
|
|
|
|
if (m->md_dict != NULL)
|
|
|
|
DECREF(m->md_dict);
|
|
|
|
free((char *)m);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
1990-12-20 11:06:42 -04:00
|
|
|
module_repr(m)
|
1990-10-14 09:07:46 -03:00
|
|
|
moduleobject *m;
|
|
|
|
{
|
|
|
|
char buf[100];
|
1990-12-20 11:06:42 -04:00
|
|
|
sprintf(buf, "<module '%.80s'>", getstringvalue(m->md_name));
|
1990-10-14 09:07:46 -03:00
|
|
|
return newstringobject(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
1990-12-20 11:06:42 -04:00
|
|
|
module_getattr(m, name)
|
1990-10-14 09:07:46 -03:00
|
|
|
moduleobject *m;
|
|
|
|
char *name;
|
|
|
|
{
|
1990-10-21 19:12:30 -03:00
|
|
|
object *res;
|
1990-12-20 11:06:42 -04:00
|
|
|
if (strcmp(name, "__dict__") == 0) {
|
1990-10-21 19:12:30 -03:00
|
|
|
INCREF(m->md_dict);
|
|
|
|
return m->md_dict;
|
|
|
|
}
|
1990-12-20 11:06:42 -04:00
|
|
|
if (strcmp(name, "__name__") == 0) {
|
|
|
|
INCREF(m->md_name);
|
|
|
|
return m->md_name;
|
|
|
|
}
|
1990-10-21 19:12:30 -03:00
|
|
|
res = dictlookup(m->md_dict, name);
|
1990-10-14 17:03:32 -03:00
|
|
|
if (res == NULL)
|
1991-12-10 10:00:03 -04:00
|
|
|
err_setstr(AttributeError, name);
|
1990-10-14 09:07:46 -03:00
|
|
|
else
|
|
|
|
INCREF(res);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
1990-12-20 11:06:42 -04:00
|
|
|
module_setattr(m, name, v)
|
1990-10-14 09:07:46 -03:00
|
|
|
moduleobject *m;
|
|
|
|
char *name;
|
|
|
|
object *v;
|
|
|
|
{
|
1990-12-20 11:06:42 -04:00
|
|
|
if (strcmp(name, "__dict__") == 0 || strcmp(name, "__name__") == 0) {
|
1992-09-04 06:45:18 -03:00
|
|
|
err_setstr(TypeError, "read-only special attribute");
|
1990-12-20 19:12:40 -04:00
|
|
|
return -1;
|
1990-10-21 19:12:30 -03:00
|
|
|
}
|
1992-09-04 06:45:18 -03:00
|
|
|
if (v == NULL) {
|
|
|
|
int rv = dictremove(m->md_dict, name);
|
|
|
|
if (rv < 0)
|
|
|
|
err_setstr(AttributeError,
|
|
|
|
"delete non-existing module attribute");
|
|
|
|
return rv;
|
|
|
|
}
|
1990-10-14 09:07:46 -03:00
|
|
|
else
|
|
|
|
return dictinsert(m->md_dict, name, v);
|
|
|
|
}
|
|
|
|
|
|
|
|
typeobject Moduletype = {
|
|
|
|
OB_HEAD_INIT(&Typetype)
|
|
|
|
0, /*ob_size*/
|
|
|
|
"module", /*tp_name*/
|
|
|
|
sizeof(moduleobject), /*tp_size*/
|
|
|
|
0, /*tp_itemsize*/
|
1990-12-20 11:06:42 -04:00
|
|
|
module_dealloc, /*tp_dealloc*/
|
1992-09-17 14:54:56 -03:00
|
|
|
0, /*tp_print*/
|
1990-12-20 11:06:42 -04:00
|
|
|
module_getattr, /*tp_getattr*/
|
|
|
|
module_setattr, /*tp_setattr*/
|
|
|
|
0, /*tp_compare*/
|
|
|
|
module_repr, /*tp_repr*/
|
1990-10-14 09:07:46 -03:00
|
|
|
};
|