diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-01-31 03:07:29 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-01-31 03:07:29 -0800 |
commit | 22ff849e9602f1f7120e504d4295f4e9854e0c88 (patch) | |
tree | ac866b5c7316c85f20c80abce9c2ada8d5183f12 /struct.c | |
parent | e080b5acbbe235d3ac32ccaf19826a8fd67e2eaf (diff) | |
download | txr-22ff849e9602f1f7120e504d4295f4e9854e0c88.tar.gz txr-22ff849e9602f1f7120e504d4295f4e9854e0c88.tar.bz2 txr-22ff849e9602f1f7120e504d4295f4e9854e0c88.zip |
Support lazy loading of stdlib struct definitions.
* struct.c (make_struct_type): Use find_struct_type rather
than direct lookup in struct_type_hash.
(find_struct_type): Use lisplib_try_load if a type is
not found to trigger autoloading on the symbol.
Diffstat (limited to 'struct.c')
-rw-r--r-- | struct.c | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -44,6 +44,7 @@ #include "args.h" #include "cadr.h" #include "txr.h" +#include "lisplib.h" #include "struct.h" #define max(a, b) ((a) > (b) ? (a) : (b)) @@ -204,7 +205,7 @@ val make_struct_type(val name, val super, val self = lit("make-struct-type"); if (super && symbolp(super)) { - val supertype = gethash(struct_type_hash, super); + val supertype = find_struct_type(super); if (!super) no_such_struct(self, super); super = supertype; @@ -298,7 +299,10 @@ static val make_struct_type_compat(val name, val super, val slots, val find_struct_type(val sym) { - return gethash(struct_type_hash, sym); + uses_or2; + return or2(gethash(struct_type_hash, sym), + if2(lisplib_try_load(sym), + gethash(struct_type_hash, sym))); } val struct_type_p(val obj) |