*** empty log message ***
[bpt/guile.git] / libguile / macros.c
CommitLineData
3063e30a 1/* Copyright (C) 1995,1996,1997,1998,2000,2001,2002 Free Software Foundation, Inc.
99027e3c 2 *
73be1d9e
MV
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
99027e3c 7 *
73be1d9e
MV
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
99027e3c 12 *
73be1d9e
MV
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 */
1bbd0b84 17
1bbd0b84 18
99027e3c
MD
19\f
20
a0599745 21#include "libguile/_scm.h"
726d810a
DH
22#include "libguile/alist.h" /* for SCM_EXTEND_ENV (well...) */
23#include "libguile/eval.h"
24#include "libguile/ports.h"
25#include "libguile/print.h"
a0599745
MD
26#include "libguile/root.h"
27#include "libguile/smob.h"
1d1559ce 28#include "libguile/deprecation.h"
99027e3c 29
a0599745
MD
30#include "libguile/validate.h"
31#include "libguile/macros.h"
99027e3c 32
92c2555f 33scm_t_bits scm_tc16_macro;
99027e3c 34
726d810a
DH
35
36static int
37macro_print (SCM macro, SCM port, scm_print_state *pstate)
38{
39 SCM code = SCM_MACRO_CODE (macro);
40 if (!SCM_CLOSUREP (code)
41 || SCM_FALSEP (scm_procedure_p (SCM_PRINT_CLOSURE))
42 || SCM_FALSEP (scm_printer_apply (SCM_PRINT_CLOSURE,
43 macro, port, pstate)))
44 {
45 if (!SCM_CLOSUREP (code))
46 scm_puts ("#<primitive-", port);
47 else
48 scm_puts ("#<", port);
49
50 if (SCM_MACRO_TYPE (macro) == 0)
51 scm_puts ("syntax", port);
3063e30a
DH
52#if SCM_ENABLE_DEPRECATED == 1
53 if (SCM_MACRO_TYPE (macro) == 1)
726d810a 54 scm_puts ("macro", port);
3063e30a 55#endif
726d810a
DH
56 if (SCM_MACRO_TYPE (macro) == 2)
57 scm_puts ("macro!", port);
58 scm_putc (' ', port);
59 scm_iprin1 (scm_macro_name (macro), port, pstate);
60
61 if (SCM_CLOSUREP (code) && SCM_PRINT_SOURCE_P)
62 {
63 SCM formals = SCM_CLOSURE_FORMALS (code);
64 SCM env = SCM_ENV (code);
65 SCM xenv = SCM_EXTEND_ENV (formals, SCM_EOL, env);
66 SCM src = scm_unmemocopy (SCM_CODE (code), xenv);
67 scm_putc (' ', port);
68 scm_iprin1 (src, port, pstate);
69 }
70
71 scm_putc ('>', port);
72 }
73
74 return 1;
75}
76
77
a1ec6916 78SCM_DEFINE (scm_makacro, "procedure->syntax", 1, 0, 0,
1bbd0b84 79 (SCM code),
1e6808ea
MG
80 "Return a @dfn{macro} which, when a symbol defined to this value\n"
81 "appears as the first symbol in an expression, returns the\n"
82 "result of applying @var{code} to the expression and the\n"
83 "environment.")
1bbd0b84 84#define FUNC_NAME s_scm_makacro
99027e3c 85{
34d19ef6 86 SCM_VALIDATE_PROC (1, code);
54778cd3 87 SCM_RETURN_NEWSMOB (scm_tc16_macro, SCM_UNPACK (code));
99027e3c 88}
1bbd0b84 89#undef FUNC_NAME
99027e3c
MD
90
91
3063e30a
DH
92#if SCM_ENABLE_DEPRECATED == 1
93
3b3b36dd 94SCM_DEFINE (scm_makmacro, "procedure->macro", 1, 0, 0,
1bbd0b84 95 (SCM code),
1e6808ea
MG
96 "Return a @dfn{macro} which, when a symbol defined to this value\n"
97 "appears as the first symbol in an expression, evaluates the\n"
98 "result of applying @var{code} to the expression and the\n"
bb2c02f2 99 "environment. For example:\n"
1e6808ea
MG
100 "\n"
101 "@lisp\n"
872e0c72
NJ
102 "(define trace\n"
103 " (procedure->macro\n"
104 " (lambda (x env) `(set! ,(cadr x) (tracef ,(cadr x) ',(cadr x))))))\n\n"
105 "(trace @i{foo}) @equiv{} (set! @i{foo} (tracef @i{foo} '@i{foo})).\n"
1e6808ea 106 "@end lisp")
1bbd0b84 107#define FUNC_NAME s_scm_makmacro
99027e3c 108{
3063e30a
DH
109 scm_c_issue_deprecation_warning
110 ("The function procedure->macro is deprecated, and so are"
111 " non-memoizing macros in general. Use memoizing macros"
112 " or r5rs macros instead.");
113
34d19ef6 114 SCM_VALIDATE_PROC (1, code);
54778cd3 115 SCM_RETURN_NEWSMOB (scm_tc16_macro | (1L << 16), SCM_UNPACK (code));
99027e3c 116}
1bbd0b84 117#undef FUNC_NAME
99027e3c 118
3063e30a
DH
119#endif
120
99027e3c 121
3b3b36dd 122SCM_DEFINE (scm_makmmacro, "procedure->memoizing-macro", 1, 0, 0,
1bbd0b84 123 (SCM code),
1e6808ea
MG
124 "Return a @dfn{macro} which, when a symbol defined to this value\n"
125 "appears as the first symbol in an expression, evaluates the\n"
bb2c02f2
NJ
126 "result of applying @var{code} to the expression and the\n"
127 "environment.\n\n"
128 "@code{procedure->memoizing-macro} is the same as\n"
129 "@code{procedure->macro}, except that the expression returned by\n"
130 "@var{code} replaces the original macro expression in the memoized\n"
131 "form of the containing code.")
1bbd0b84 132#define FUNC_NAME s_scm_makmmacro
99027e3c 133{
34d19ef6 134 SCM_VALIDATE_PROC (1, code);
54778cd3 135 SCM_RETURN_NEWSMOB (scm_tc16_macro | (2L << 16), SCM_UNPACK (code));
99027e3c 136}
1bbd0b84 137#undef FUNC_NAME
99027e3c
MD
138
139
a1ec6916 140SCM_DEFINE (scm_macro_p, "macro?", 1, 0, 0,
1bbd0b84 141 (SCM obj),
b380b885
MD
142 "Return @code{#t} if @var{obj} is a regular macro, a memoizing macro or a\n"
143 "syntax transformer.")
1bbd0b84 144#define FUNC_NAME s_scm_macro_p
99027e3c 145{
e841c3e0 146 return SCM_BOOL (SCM_TYP16_PREDICATE (scm_tc16_macro, obj));
99027e3c 147}
1bbd0b84 148#undef FUNC_NAME
99027e3c
MD
149
150
151SCM_SYMBOL (scm_sym_syntax, "syntax");
3063e30a 152#if SCM_ENABLE_DEPRECATED == 1
99027e3c 153SCM_SYMBOL (scm_sym_macro, "macro");
3063e30a 154#endif
99027e3c
MD
155SCM_SYMBOL (scm_sym_mmacro, "macro!");
156
a1ec6916 157SCM_DEFINE (scm_macro_type, "macro-type", 1, 0, 0,
1bbd0b84 158 (SCM m),
1e6808ea
MG
159 "Return one of the symbols @code{syntax}, @code{macro} or\n"
160 "@code{macro!}, depending on whether @var{m} is a syntax\n"
8f85c0c6 161 "transformer, a regular macro, or a memoizing macro,\n"
1e6808ea
MG
162 "respectively. If @var{m} is not a macro, @code{#f} is\n"
163 "returned.")
1bbd0b84 164#define FUNC_NAME s_scm_macro_type
99027e3c 165{
e841c3e0 166 if (!SCM_TYP16_PREDICATE (scm_tc16_macro, m))
99027e3c 167 return SCM_BOOL_F;
726d810a 168 switch (SCM_MACRO_TYPE (m))
99027e3c
MD
169 {
170 case 0: return scm_sym_syntax;
3063e30a 171#if SCM_ENABLE_DEPRECATED == 1
99027e3c 172 case 1: return scm_sym_macro;
3063e30a 173#endif
99027e3c 174 case 2: return scm_sym_mmacro;
1bbd0b84 175 default: scm_wrong_type_arg (FUNC_NAME, 1, m);
99027e3c
MD
176 }
177}
1bbd0b84 178#undef FUNC_NAME
99027e3c
MD
179
180
a1ec6916 181SCM_DEFINE (scm_macro_name, "macro-name", 1, 0, 0,
1bbd0b84 182 (SCM m),
88c927e9 183 "Return the name of the macro @var{m}.")
1bbd0b84 184#define FUNC_NAME s_scm_macro_name
99027e3c 185{
34d19ef6 186 SCM_VALIDATE_SMOB (1, m, macro);
88c927e9 187 return scm_procedure_name (SCM_PACK (SCM_SMOB_DATA (m)));
99027e3c 188}
1bbd0b84 189#undef FUNC_NAME
99027e3c
MD
190
191
a1ec6916 192SCM_DEFINE (scm_macro_transformer, "macro-transformer", 1, 0, 0,
1bbd0b84 193 (SCM m),
88c927e9 194 "Return the transformer of the macro @var{m}.")
1bbd0b84 195#define FUNC_NAME s_scm_macro_transformer
99027e3c 196{
34d19ef6 197 SCM_VALIDATE_SMOB (1, m, macro);
88c927e9
MV
198 return ((SCM_CLOSUREP (SCM_PACK (SCM_SMOB_DATA (m)))) ?
199 SCM_PACK(SCM_SMOB_DATA (m)) : SCM_BOOL_F);
99027e3c 200}
1bbd0b84 201#undef FUNC_NAME
99027e3c
MD
202
203SCM
1bbd0b84 204scm_make_synt (const char *name, SCM (*macroizer) (), SCM (*fcn)() )
99027e3c 205{
86d31dfe 206 SCM var = scm_c_define (name, SCM_UNDEFINED);
9a441ddb 207 SCM transformer = scm_c_make_subr (name, scm_tc7_subr_2, fcn);
86d31dfe
MV
208 SCM_VARIABLE_SET (var, macroizer (transformer));
209 return SCM_UNSPECIFIED;
99027e3c
MD
210}
211
212void
213scm_init_macros ()
214{
e841c3e0
KN
215 scm_tc16_macro = scm_make_smob_type ("macro", 0);
216 scm_set_smob_mark (scm_tc16_macro, scm_markcdr);
726d810a 217 scm_set_smob_print (scm_tc16_macro, macro_print);
a0599745 218#include "libguile/macros.x"
99027e3c 219}
89e00824
ML
220
221/*
222 Local Variables:
223 c-file-style: "gnu"
224 End:
225*/