blob: 9733a774b91925710fb2251c940ab70dbbbf0cc3 [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001/***********************************************************
Guido van Rossumbab9d031992-04-05 14:26:55 +00002Copyright 1991, 1992 by Stichting Mathematisch Centrum, Amsterdam, The
Guido van Rossumf70e43a1991-02-19 12:39:46 +00003Netherlands.
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 Rossum85a5fbb1990-10-14 12:07:46 +000086static object *
Guido van Rossum3f5da241990-12-20 15:06:42 +000087module_repr(m)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000088 moduleobject *m;
89{
90 char buf[100];
Guido van Rossum3f5da241990-12-20 15:06:42 +000091 sprintf(buf, "<module '%.80s'>", getstringvalue(m->md_name));
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000092 return newstringobject(buf);
93}
94
95static object *
Guido van Rossum3f5da241990-12-20 15:06:42 +000096module_getattr(m, name)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000097 moduleobject *m;
98 char *name;
99{
Guido van Rossume87203a1990-10-21 22:12:30 +0000100 object *res;
Guido van Rossum3f5da241990-12-20 15:06:42 +0000101 if (strcmp(name, "__dict__") == 0) {
Guido van Rossume87203a1990-10-21 22:12:30 +0000102 INCREF(m->md_dict);
103 return m->md_dict;
104 }
Guido van Rossum3f5da241990-12-20 15:06:42 +0000105 if (strcmp(name, "__name__") == 0) {
106 INCREF(m->md_name);
107 return m->md_name;
108 }
Guido van Rossume87203a1990-10-21 22:12:30 +0000109 res = dictlookup(m->md_dict, name);
Guido van Rossum2b654f71990-10-14 20:03:32 +0000110 if (res == NULL)
Guido van Rossum87e7ea71991-12-10 14:00:03 +0000111 err_setstr(AttributeError, name);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000112 else
113 INCREF(res);
114 return res;
115}
116
117static int
Guido van Rossum3f5da241990-12-20 15:06:42 +0000118module_setattr(m, name, v)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000119 moduleobject *m;
120 char *name;
121 object *v;
122{
Guido van Rossum3f5da241990-12-20 15:06:42 +0000123 if (strcmp(name, "__dict__") == 0 || strcmp(name, "__name__") == 0) {
Guido van Rossum94472a01992-09-04 09:45:18 +0000124 err_setstr(TypeError, "read-only special attribute");
Guido van Rossum73531a31990-12-20 23:12:40 +0000125 return -1;
Guido van Rossume87203a1990-10-21 22:12:30 +0000126 }
Guido van Rossum94472a01992-09-04 09:45:18 +0000127 if (v == NULL) {
128 int rv = dictremove(m->md_dict, name);
129 if (rv < 0)
130 err_setstr(AttributeError,
131 "delete non-existing module attribute");
132 return rv;
133 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000134 else
135 return dictinsert(m->md_dict, name, v);
136}
137
138typeobject Moduletype = {
139 OB_HEAD_INIT(&Typetype)
140 0, /*ob_size*/
141 "module", /*tp_name*/
142 sizeof(moduleobject), /*tp_size*/
143 0, /*tp_itemsize*/
Guido van Rossum3f5da241990-12-20 15:06:42 +0000144 module_dealloc, /*tp_dealloc*/
Guido van Rossum7066dd71992-09-17 17:54:56 +0000145 0, /*tp_print*/
Guido van Rossum3f5da241990-12-20 15:06:42 +0000146 module_getattr, /*tp_getattr*/
147 module_setattr, /*tp_setattr*/
148 0, /*tp_compare*/
149 module_repr, /*tp_repr*/
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000150};