make scm_make_continuation internal
[bpt/guile.git] / test-suite / standalone / test-unwind.c
CommitLineData
997659f8 1/* Copyright (C) 2004, 2005, 2008, 2009, 2010 Free Software Foundation, Inc.
eedcb08a
LC
2 *
3 * This library is free software; you can redistribute it and/or
53befeb7
NJ
4 * modify it under the terms of the GNU Lesser General Public License
5 * as published by the Free Software Foundation; either version 3 of
6 * the License, or (at your option) any later version.
eedcb08a 7 *
53befeb7
NJ
8 * This library is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
eedcb08a
LC
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
12 *
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
53befeb7
NJ
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16 * 02110-1301 USA
eedcb08a
LC
17 */
18
19#if HAVE_CONFIG_H
20# include <config.h>
21#endif
22
23#include <alloca.h>
24
3c8fb18e
MV
25#include <libguile.h>
26#include <stdlib.h>
27#include <stdio.h>
c05d0e8f 28#include <unistd.h>
3c8fb18e 29
eedcb08a
LC
30#ifdef HAVE_STRING_H
31# include <string.h>
32#endif
33
34
3c8fb18e
MV
35void set_flag (void *data);
36void func1 (void);
37void func2 (void);
38void func3 (void);
39void func4 (void);
40void check_flag1 (const char *msg, void (*func)(void), int val);
41SCM check_flag1_body (void *data);
42SCM return_tag (void *data, SCM tag, SCM args);
43void check_cont (int rewindable);
44SCM check_cont_body (void *data);
c05d0e8f
MV
45void close_port (SCM port);
46void delete_file (void *data);
47void check_ports (void);
8843e1fa 48void check_fluid (void);
3c8fb18e
MV
49
50int flag1, flag2, flag3;
51
52void
53set_flag (void *data)
54{
55 int *f = (int *)data;
56 *f = 1;
57}
58
59/* FUNC1 should leave flag1 zero.
60 */
61
62void
63func1 ()
64{
661ae7ab 65 scm_dynwind_begin (0);
3c8fb18e 66 flag1 = 0;
661ae7ab
MV
67 scm_dynwind_unwind_handler (set_flag, &flag1, 0);
68 scm_dynwind_end ();
3c8fb18e
MV
69}
70
71/* FUNC2 should set flag1.
72 */
73
74void
75func2 ()
76{
661ae7ab 77 scm_dynwind_begin (0);
3c8fb18e 78 flag1 = 0;
661ae7ab
MV
79 scm_dynwind_unwind_handler (set_flag, &flag1, SCM_F_WIND_EXPLICITLY);
80 scm_dynwind_end ();
3c8fb18e
MV
81}
82
83/* FUNC3 should set flag1.
84 */
85
86void
87func3 ()
88{
661ae7ab 89 scm_dynwind_begin (0);
3c8fb18e 90 flag1 = 0;
661ae7ab 91 scm_dynwind_unwind_handler (set_flag, &flag1, 0);
3c8fb18e 92 scm_misc_error ("func3", "gratuitous error", SCM_EOL);
661ae7ab 93 scm_dynwind_end ();
3c8fb18e
MV
94}
95
96/* FUNC4 should set flag1.
97 */
98
99void
100func4 ()
101{
661ae7ab 102 scm_dynwind_begin (0);
3c8fb18e 103 flag1 = 0;
661ae7ab 104 scm_dynwind_unwind_handler (set_flag, &flag1, SCM_F_WIND_EXPLICITLY);
3c8fb18e 105 scm_misc_error ("func4", "gratuitous error", SCM_EOL);
661ae7ab 106 scm_dynwind_end ();
3c8fb18e
MV
107}
108
109SCM
110check_flag1_body (void *data)
111{
112 void (*f)(void) = (void (*)(void))data;
113 f ();
114 return SCM_UNSPECIFIED;
115}
116
117SCM
118return_tag (void *data, SCM tag, SCM args)
119{
120 return tag;
121}
122
123void
124check_flag1 (const char *tag, void (*func)(void), int val)
125{
126 scm_internal_catch (SCM_BOOL_T,
127 check_flag1_body, func,
128 return_tag, NULL);
129 if (flag1 != val)
130 {
131 printf ("%s failed\n", tag);
132 exit (1);
133 }
134}
135
136SCM
137check_cont_body (void *data)
138{
98241dc5 139 scm_t_dynwind_flags flags = (data? SCM_F_DYNWIND_REWINDABLE : 0);
3c8fb18e
MV
140 SCM val;
141
661ae7ab 142 scm_dynwind_begin (flags);
997659f8 143 val = scm_c_eval_string ("(call/cc (lambda (k) k))");
661ae7ab 144 scm_dynwind_end ();
3c8fb18e
MV
145 return val;
146}
147
148void
149check_cont (int rewindable)
150{
151 SCM res;
152
153 res = scm_internal_catch (SCM_BOOL_T,
4858610b 154 check_cont_body, (void *)(long)rewindable,
3c8fb18e
MV
155 return_tag, NULL);
156
157 /* RES is now either the created continuation, the value passed to
158 the continuation, or a catch-tag, such as 'misc-error.
159 */
160
66dd7f14 161 if (scm_is_true (scm_procedure_p (res)))
3c8fb18e
MV
162 {
163 /* a continuation, invoke it */
164 scm_call_1 (res, SCM_BOOL_F);
165 }
66dd7f14 166 else if (scm_is_false (res))
3c8fb18e 167 {
661ae7ab 168 /* the result of invoking the continuation, dynwind must be
3c8fb18e
MV
169 rewindable */
170 if (rewindable)
171 return;
172 printf ("continuation not blocked\n");
173 exit (1);
174 }
175 else
176 {
661ae7ab 177 /* the catch tag, dynwind must not have been rewindable. */
3c8fb18e
MV
178 if (!rewindable)
179 return;
180 printf ("continuation didn't work\n");
181 exit (1);
182 }
183}
c05d0e8f
MV
184
185void
186close_port (SCM port)
187{
188 scm_close_port (port);
189}
190
191void
192delete_file (void *data)
193{
194 unlink ((char *)data);
195}
196
197void
198check_ports ()
199{
eedcb08a
LC
200#define FILENAME_TEMPLATE "/check-ports.XXXXXX"
201 char *filename;
202 const char *tmpdir = getenv ("TMPDIR");
203
204 if (tmpdir == NULL)
205 tmpdir = "/tmp";
206
c291b588 207 filename = alloca (strlen (tmpdir) + sizeof (FILENAME_TEMPLATE) + 1);
eedcb08a
LC
208 strcpy (filename, tmpdir);
209 strcat (filename, FILENAME_TEMPLATE);
c05d0e8f 210
bd4b6c1a
TTN
211 /* Sanity check: Make sure that `filename' is actually writeable.
212 We used to use mktemp(3), but that is now considered a security risk. */
213 if (0 > mkstemp (filename))
c05d0e8f
MV
214 exit (1);
215
661ae7ab 216 scm_dynwind_begin (0);
c05d0e8f 217 {
ad6dec05
MV
218 SCM port = scm_open_file (scm_from_locale_string (filename),
219 scm_from_locale_string ("w"));
661ae7ab 220 scm_dynwind_unwind_handler_with_scm (close_port, port,
f1da8e4e 221 SCM_F_WIND_EXPLICITLY);
c05d0e8f 222
661ae7ab 223 scm_dynwind_current_output_port (port);
c05d0e8f
MV
224 scm_write (scm_version (), SCM_UNDEFINED);
225 }
661ae7ab 226 scm_dynwind_end ();
c05d0e8f 227
661ae7ab 228 scm_dynwind_begin (0);
c05d0e8f 229 {
ad6dec05
MV
230 SCM port = scm_open_file (scm_from_locale_string (filename),
231 scm_from_locale_string ("r"));
c05d0e8f 232 SCM res;
661ae7ab 233 scm_dynwind_unwind_handler_with_scm (close_port, port,
f1da8e4e 234 SCM_F_WIND_EXPLICITLY);
661ae7ab 235 scm_dynwind_unwind_handler (delete_file, filename, SCM_F_WIND_EXPLICITLY);
c05d0e8f 236
661ae7ab 237 scm_dynwind_current_input_port (port);
c05d0e8f 238 res = scm_read (SCM_UNDEFINED);
66dd7f14 239 if (scm_is_false (scm_equal_p (res, scm_version ())))
c05d0e8f
MV
240 {
241 printf ("ports didn't work\n");
242 exit (1);
243 }
244 }
661ae7ab 245 scm_dynwind_end ();
eedcb08a 246#undef FILENAME_TEMPLATE
c05d0e8f 247}
8843e1fa
MV
248
249void
250check_fluid ()
251{
252 SCM f = scm_make_fluid ();
253 SCM x;
254
79e9bca7 255 scm_fluid_set_x (f, scm_from_int (12));
8843e1fa 256
661ae7ab
MV
257 scm_dynwind_begin (0);
258 scm_dynwind_fluid (f, scm_from_int (13));
8843e1fa 259 x = scm_fluid_ref (f);
661ae7ab 260 scm_dynwind_end ();
8843e1fa 261
79e9bca7 262 if (!scm_is_eq (x, scm_from_int (13)))
8843e1fa
MV
263 {
264 printf ("setting fluid didn't work\n");
265 exit (1);
266 }
267
79e9bca7 268 if (!scm_is_eq (scm_fluid_ref (f), scm_from_int (12)))
8843e1fa
MV
269 {
270 printf ("resetting fluid didn't work\n");
271 exit (1);
272 }
273}
274
3c8fb18e
MV
275static void
276inner_main (void *data, int argc, char **argv)
277{
278 check_flag1 ("func1", func1, 0);
279 check_flag1 ("func2", func2, 1);
280 check_flag1 ("func3", func3, 1);
281 check_flag1 ("func4", func4, 1);
282
283 check_cont (0);
284 check_cont (1);
285
c05d0e8f
MV
286 check_ports ();
287
8843e1fa
MV
288 check_fluid ();
289
3c8fb18e
MV
290 exit (0);
291}
292
293int
294main (int argc, char **argv)
295{
296 scm_boot_guile (argc, argv, inner_main, 0);
297 return 0;
298}