aboutsummaryrefslogtreecommitdiff
path: root/src/structmember.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/structmember.c')
-rw-r--r--src/structmember.c246
1 files changed, 123 insertions, 123 deletions
diff --git a/src/structmember.c b/src/structmember.c
index c87a3c7..03b4dcc 100644
--- a/src/structmember.c
+++ b/src/structmember.c
@@ -2,12 +2,12 @@
Copyright 1991 by Stichting Mathematisch Centrum, Amsterdam, The
Netherlands.
- All Rights Reserved
+ All Rights Reserved
-Permission to use, copy, modify, and distribute this software and its
-documentation for any purpose and without fee is hereby granted,
+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
+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.
@@ -30,129 +30,129 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
object *
getmember(addr, mlist, name)
- char *addr;
- struct memberlist *mlist;
- char *name;
+ char *addr;
+ struct memberlist *mlist;
+ char *name;
{
- struct memberlist *l;
-
- for (l = mlist; l->name != NULL; l++) {
- if (strcmp(l->name, name) == 0) {
- object *v;
- addr += l->offset;
- switch (l->type) {
- case T_SHORT:
- v = newintobject((long) *(short*)addr);
- break;
- case T_INT:
- v = newintobject((long) *(int*)addr);
- break;
- case T_LONG:
- v = newintobject(*(long*)addr);
- break;
- case T_FLOAT:
- v = newfloatobject((double)*(float*)addr);
- break;
- case T_DOUBLE:
- v = newfloatobject(*(double*)addr);
- break;
- case T_STRING:
- if (*(char**)addr == NULL) {
- INCREF(None);
- v = None;
- }
- else
- v = newstringobject(*(char**)addr);
- break;
- case T_OBJECT:
- v = *(object **)addr;
- if (v == NULL)
- v = None;
- INCREF(v);
- break;
- default:
- err_setstr(SystemError, "bad memberlist type");
- v = NULL;
- }
- return v;
- }
- }
-
- err_setstr(NameError, name);
- return NULL;
+ struct memberlist *l;
+
+ for (l = mlist; l->name != NULL; l++) {
+ if (strcmp(l->name, name) == 0) {
+ object *v;
+ addr += l->offset;
+ switch (l->type) {
+ case T_SHORT:
+ v = newintobject((long) *(short*)addr);
+ break;
+ case T_INT:
+ v = newintobject((long) *(int*)addr);
+ break;
+ case T_LONG:
+ v = newintobject(*(long*)addr);
+ break;
+ case T_FLOAT:
+ v = newfloatobject((double)*(float*)addr);
+ break;
+ case T_DOUBLE:
+ v = newfloatobject(*(double*)addr);
+ break;
+ case T_STRING:
+ if (*(char**)addr == NULL) {
+ INCREF(None);
+ v = None;
+ }
+ else
+ v = newstringobject(*(char**)addr);
+ break;
+ case T_OBJECT:
+ v = *(object **)addr;
+ if (v == NULL)
+ v = None;
+ INCREF(v);
+ break;
+ default:
+ err_setstr(SystemError, "bad memberlist type");
+ v = NULL;
+ }
+ return v;
+ }
+ }
+
+ err_setstr(NameError, name);
+ return NULL;
}
int
setmember(addr, mlist, name, v)
- char *addr;
- struct memberlist *mlist;
- char *name;
- object *v;
+ char *addr;
+ struct memberlist *mlist;
+ char *name;
+ object *v;
{
- struct memberlist *l;
-
- for (l = mlist; l->name != NULL; l++) {
- if (strcmp(l->name, name) == 0) {
- if (l->readonly || l->type == T_STRING) {
- err_setstr(RuntimeError, "readonly attribute");
- return -1;
- }
- addr += l->offset;
- switch (l->type) {
- case T_SHORT:
- if (!is_intobject(v)) {
- err_badarg();
- return -1;
- }
- *(short*)addr = getintvalue(v);
- break;
- case T_INT:
- if (!is_intobject(v)) {
- err_badarg();
- return -1;
- }
- *(int*)addr = getintvalue(v);
- break;
- case T_LONG:
- if (!is_intobject(v)) {
- err_badarg();
- return -1;
- }
- *(long*)addr = getintvalue(v);
- break;
- case T_FLOAT:
- if (is_intobject(v))
- *(float*)addr = getintvalue(v);
- else if (is_floatobject(v))
- *(float*)addr = getfloatvalue(v);
- else {
- err_badarg();
- return -1;
- }
- break;
- case T_DOUBLE:
- if (is_intobject(v))
- *(double*)addr = getintvalue(v);
- else if (is_floatobject(v))
- *(double*)addr = getfloatvalue(v);
- else {
- err_badarg();
- return -1;
- }
- break;
- case T_OBJECT:
- XDECREF(*(object **)addr);
- XINCREF(v);
- *(object **)addr = v;
- break;
- default:
- err_setstr(SystemError, "bad memberlist type");
- return -1;
- }
- return 0;
- }
- }
-
- err_setstr(NameError, name);
- return -1;
+ struct memberlist *l;
+
+ for (l = mlist; l->name != NULL; l++) {
+ if (strcmp(l->name, name) == 0) {
+ if (l->readonly || l->type == T_STRING) {
+ err_setstr(RuntimeError, "readonly attribute");
+ return -1;
+ }
+ addr += l->offset;
+ switch (l->type) {
+ case T_SHORT:
+ if (!is_intobject(v)) {
+ err_badarg();
+ return -1;
+ }
+ *(short*)addr = getintvalue(v);
+ break;
+ case T_INT:
+ if (!is_intobject(v)) {
+ err_badarg();
+ return -1;
+ }
+ *(int*)addr = getintvalue(v);
+ break;
+ case T_LONG:
+ if (!is_intobject(v)) {
+ err_badarg();
+ return -1;
+ }
+ *(long*)addr = getintvalue(v);
+ break;
+ case T_FLOAT:
+ if (is_intobject(v))
+ *(float*)addr = getintvalue(v);
+ else if (is_floatobject(v))
+ *(float*)addr = getfloatvalue(v);
+ else {
+ err_badarg();
+ return -1;
+ }
+ break;
+ case T_DOUBLE:
+ if (is_intobject(v))
+ *(double*)addr = getintvalue(v);
+ else if (is_floatobject(v))
+ *(double*)addr = getfloatvalue(v);
+ else {
+ err_badarg();
+ return -1;
+ }
+ break;
+ case T_OBJECT:
+ XDECREF(*(object **)addr);
+ XINCREF(v);
+ *(object **)addr = v;
+ break;
+ default:
+ err_setstr(SystemError, "bad memberlist type");
+ return -1;
+ }
+ return 0;
+ }
+ }
+
+ err_setstr(NameError, name);
+ return -1;
}