blob: 1104986b8f61481d31fa85a2b7296dd433c7475f [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001/***********************************************************
2Copyright 1991 by Stichting Mathematisch Centrum, Amsterdam, The
3Netherlands.
4
5 All Rights Reserved
6
7Permission to use, copy, modify, and distribute this software and its
8documentation for any purpose and without fee is hereby granted,
9provided that the above copyright notice appear in all copies and that
10both that copyright notice and this permission notice appear in
11supporting documentation, and that the names of Stichting Mathematisch
12Centrum or CWI not be used in advertising or publicity pertaining to
13distribution of the software without specific, written prior permission.
14
15STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
16THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
18FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
20ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
21OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22
23******************************************************************/
24
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000025/* Module object implementation */
26
Guido van Rossum3f5da241990-12-20 15:06:42 +000027#include "allobjects.h"
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000028
29typedef struct {
30 OB_HEAD
31 object *md_name;
32 object *md_dict;
33} moduleobject;
34
35object *
36newmoduleobject(name)
37 char *name;
38{
39 moduleobject *m = NEWOBJ(moduleobject, &Moduletype);
40 if (m == NULL)
41 return NULL;
42 m->md_name = newstringobject(name);
43 m->md_dict = newdictobject();
44 if (m->md_name == NULL || m->md_dict == NULL) {
45 DECREF(m);
46 return NULL;
47 }
48 return (object *)m;
49}
50
51object *
52getmoduledict(m)
53 object *m;
54{
55 if (!is_moduleobject(m)) {
Guido van Rossum3f5da241990-12-20 15:06:42 +000056 err_badcall();
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000057 return NULL;
58 }
59 return ((moduleobject *)m) -> md_dict;
60}
61
Guido van Rossum0558a201990-10-26 15:00:11 +000062char *
63getmodulename(m)
64 object *m;
65{
66 if (!is_moduleobject(m)) {
67 err_badarg();
68 return NULL;
69 }
70 return getstringvalue(((moduleobject *)m) -> md_name);
71}
72
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000073/* Methods */
74
75static void
Guido van Rossum3f5da241990-12-20 15:06:42 +000076module_dealloc(m)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000077 moduleobject *m;
78{
79 if (m->md_name != NULL)
80 DECREF(m->md_name);
81 if (m->md_dict != NULL)
82 DECREF(m->md_dict);
83 free((char *)m);
84}
85
Guido van Rossum90933611991-06-07 16:10:43 +000086static int
Guido van Rossum3f5da241990-12-20 15:06:42 +000087module_print(m, fp, flags)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000088 moduleobject *m;
89 FILE *fp;
90 int flags;
91{
Guido van Rossum3f5da241990-12-20 15:06:42 +000092 fprintf(fp, "<module '%s'>", getstringvalue(m->md_name));
Guido van Rossum90933611991-06-07 16:10:43 +000093 return 0;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000094}
95
96static object *
Guido van Rossum3f5da241990-12-20 15:06:42 +000097module_repr(m)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000098 moduleobject *m;
99{
100 char buf[100];
Guido van Rossum3f5da241990-12-20 15:06:42 +0000101 sprintf(buf, "<module '%.80s'>", getstringvalue(m->md_name));
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000102 return newstringobject(buf);
103}
104
105static object *
Guido van Rossum3f5da241990-12-20 15:06:42 +0000106module_getattr(m, name)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000107 moduleobject *m;
108 char *name;
109{
Guido van Rossume87203a1990-10-21 22:12:30 +0000110 object *res;
Guido van Rossum3f5da241990-12-20 15:06:42 +0000111 if (strcmp(name, "__dict__") == 0) {
Guido van Rossume87203a1990-10-21 22:12:30 +0000112 INCREF(m->md_dict);
113 return m->md_dict;
114 }
Guido van Rossum3f5da241990-12-20 15:06:42 +0000115 if (strcmp(name, "__name__") == 0) {
116 INCREF(m->md_name);
117 return m->md_name;
118 }
Guido van Rossume87203a1990-10-21 22:12:30 +0000119 res = dictlookup(m->md_dict, name);
Guido van Rossum2b654f71990-10-14 20:03:32 +0000120 if (res == NULL)
Guido van Rossum87e7ea71991-12-10 14:00:03 +0000121 err_setstr(AttributeError, name);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000122 else
123 INCREF(res);
124 return res;
125}
126
127static int
Guido van Rossum3f5da241990-12-20 15:06:42 +0000128module_setattr(m, name, v)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000129 moduleobject *m;
130 char *name;
131 object *v;
132{
Guido van Rossum3f5da241990-12-20 15:06:42 +0000133 if (strcmp(name, "__dict__") == 0 || strcmp(name, "__name__") == 0) {
Guido van Rossum87e7ea71991-12-10 14:00:03 +0000134 err_setstr(TypeError, "can't assign to reserved member name");
Guido van Rossum73531a31990-12-20 23:12:40 +0000135 return -1;
Guido van Rossume87203a1990-10-21 22:12:30 +0000136 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000137 if (v == NULL)
138 return dictremove(m->md_dict, name);
139 else
140 return dictinsert(m->md_dict, name, v);
141}
142
143typeobject Moduletype = {
144 OB_HEAD_INIT(&Typetype)
145 0, /*ob_size*/
146 "module", /*tp_name*/
147 sizeof(moduleobject), /*tp_size*/
148 0, /*tp_itemsize*/
Guido van Rossum3f5da241990-12-20 15:06:42 +0000149 module_dealloc, /*tp_dealloc*/
150 module_print, /*tp_print*/
151 module_getattr, /*tp_getattr*/
152 module_setattr, /*tp_setattr*/
153 0, /*tp_compare*/
154 module_repr, /*tp_repr*/
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000155};