2 ly-module.cc -- implement guile module stuff.
4 source file of the GNU LilyPond music typesetter
6 (c) 2002--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
11 #include "lily-guile.hh"
12 #include "ly-module.hh"
13 #include "protected-scm.hh"
15 #define FUNC_NAME __FUNCTION__
17 static int module_count
;
20 ly_init_anonymous_module (void * data
)
23 scm_c_use_module ("lily");
26 Protected_scm anon_modules
;
29 ly_make_anonymous_module ()
31 String s
= "*anonymous-ly-" + to_string (module_count
++) + "*";
32 SCM mod
= scm_c_define_module (s
.to_str0(), ly_init_anonymous_module
, 0);
33 anon_modules
= scm_cons (mod
, anon_modules
);
38 ly_clear_anonymous_modules ()
41 anon_modules
= SCM_EOL
;
43 for (; gh_pair_p (s
) ; s
= gh_cdr (s
))
45 SCM tab
= scm_c_make_hash_table (2);
47 SCM_STRUCT_DATA (gh_car (s
))[scm_module_index_obarray
]
48 = (long unsigned int) tab
;
52 #define FUNC_NAME __FUNCTION__
55 ly_module_define (void *closure
, SCM key
, SCM val
, SCM result
)
58 SCM module
= (SCM
) closure
;
59 scm_module_define (module
, key
, scm_variable_ref (val
));
63 /* Ugh signature of scm_internal_hash_fold () is inaccurate. */
64 typedef SCM (*Hash_cl_func
)();
67 ly_import_module (SCM dest
, SCM src
)
69 SCM_VALIDATE_MODULE (1, src
);
70 scm_internal_hash_fold ((Hash_cl_func
) &ly_module_define
, (void*) dest
,
71 SCM_EOL
, SCM_MODULE_OBARRAY (src
));
75 accumulate_symbol (void *closure
, SCM key
, SCM val
, SCM result
)
79 return scm_cons (key
, result
);
83 ly_module_symbols (SCM mod
)
85 SCM_VALIDATE_MODULE (1, mod
);
87 SCM obarr
= SCM_MODULE_OBARRAY (mod
);
88 return scm_internal_hash_fold ((Hash_cl_func
) &accumulate_symbol
,
89 NULL
, SCM_EOL
, obarr
);
93 entry_to_alist (void *closure
, SCM key
, SCM val
, SCM result
)
96 return scm_cons (scm_cons (key
, scm_variable_ref (val
)), result
);
100 ly_module_to_alist (SCM mod
)
102 SCM_VALIDATE_MODULE (1, mod
);
105 SCM obarr
= SCM_MODULE_OBARRAY (mod
);
107 return scm_internal_hash_fold ((Hash_cl_func
) &entry_to_alist
, NULL
, SCM_EOL
, obarr
);
110 /* Lookup SYM, but don't give error when it is not defined. */
112 ly_module_lookup (SCM module
, SCM sym
)
114 #define FUNC_NAME __FUNCTION__
115 SCM_VALIDATE_MODULE (1, module
);
117 return scm_sym2var (sym
, scm_module_lookup_closure (module
), SCM_BOOL_F
);
122 ly_modules_lookup (SCM modules
, SCM sym
)
124 for (SCM s
= gh_car (modules
); SCM_MODULEP (s
); s
= ly_cdr (s
))
126 SCM v
= scm_sym2var (sym
, scm_module_lookup_closure (s
), SCM_UNDEFINED
);
127 if (v
!= SCM_UNDEFINED
)
130 return SCM_UNDEFINED
;
137 ly_export (SCM module
, SCM namelist
)
139 if (!export_function
)
140 export_function
= scm_permanent_object (scm_c_lookup ("module-export!"));
142 scm_call_2 (SCM_VARIABLE_REF (export_function
), module
, namelist
);
146 ly_reexport_module (SCM mod
)
148 ly_export (mod
, ly_module_symbols (mod
));