* io.c (rb_open_file): encoding in mode string was ignored if perm is
[ruby-svn.git] / eval_jump.c
blobf474844ba8dd3b7fc3ee8febfa146941bcfafcad
1 /* -*-c-*- */
2 /*
3 * from eval.c
4 */
6 #include "eval_intern.h"
8 /* exit */
10 void
11 rb_call_end_proc(VALUE data)
13 rb_proc_call(data, rb_ary_new());
17 * call-seq:
18 * at_exit { block } -> proc
20 * Converts _block_ to a +Proc+ object (and therefore
21 * binds it at the point of call) and registers it for execution when
22 * the program exits. If multiple handlers are registered, they are
23 * executed in reverse order of registration.
25 * def do_at_exit(str1)
26 * at_exit { print str1 }
27 * end
28 * at_exit { puts "cruel world" }
29 * do_at_exit("goodbye ")
30 * exit
32 * <em>produces:</em>
34 * goodbye cruel world
37 static VALUE
38 rb_f_at_exit(void)
40 VALUE proc;
42 if (!rb_block_given_p()) {
43 rb_raise(rb_eArgError, "called without a block");
45 proc = rb_block_proc();
46 rb_set_end_proc(rb_call_end_proc, proc);
47 return proc;
50 struct end_proc_data {
51 void (*func) ();
52 VALUE data;
53 int safe;
54 struct end_proc_data *next;
57 static struct end_proc_data *end_procs, *ephemeral_end_procs, *tmp_end_procs;
59 void
60 rb_set_end_proc(void (*func)(VALUE), VALUE data)
62 struct end_proc_data *link = ALLOC(struct end_proc_data);
63 struct end_proc_data **list;
64 rb_thread_t *th = GET_THREAD();
66 if (th->top_wrapper) {
67 list = &ephemeral_end_procs;
69 else {
70 list = &end_procs;
72 link->next = *list;
73 link->func = func;
74 link->data = data;
75 link->safe = rb_safe_level();
76 *list = link;
79 void
80 rb_mark_end_proc(void)
82 struct end_proc_data *link;
84 link = end_procs;
85 while (link) {
86 rb_gc_mark(link->data);
87 link = link->next;
89 link = ephemeral_end_procs;
90 while (link) {
91 rb_gc_mark(link->data);
92 link = link->next;
94 link = tmp_end_procs;
95 while (link) {
96 rb_gc_mark(link->data);
97 link = link->next;
101 void
102 rb_exec_end_proc(void)
104 struct end_proc_data *link, *tmp;
105 int status;
106 volatile int safe = rb_safe_level();
108 while (ephemeral_end_procs) {
109 tmp_end_procs = link = ephemeral_end_procs;
110 ephemeral_end_procs = 0;
111 while (link) {
112 PUSH_TAG();
113 if ((status = EXEC_TAG()) == 0) {
114 rb_set_safe_level_force(link->safe);
115 (*link->func) (link->data);
117 POP_TAG();
118 if (status) {
119 error_handle(status);
121 tmp = link;
122 tmp_end_procs = link = link->next;
123 xfree(tmp);
126 while (end_procs) {
127 tmp_end_procs = link = end_procs;
128 end_procs = 0;
129 while (link) {
130 PUSH_TAG();
131 if ((status = EXEC_TAG()) == 0) {
132 rb_set_safe_level_force(link->safe);
133 (*link->func) (link->data);
135 POP_TAG();
136 if (status) {
137 error_handle(status);
139 tmp = link;
140 tmp_end_procs = link = link->next;
141 xfree(tmp);
144 rb_set_safe_level_force(safe);
147 void
148 Init_jump(void)
150 rb_define_global_function("at_exit", rb_f_at_exit, 0);