Automatically init/shutdown ecore.
[ruby-ecore.git] / src / ecore / rb_ecore.c
1 /*
2  * $Id: rb_ecore.c 342 2005-05-07 12:26:37Z tilman $
3  *
4  * Copyright (C) 2004 ruby-ecore team (see AUTHORS)
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include <ruby.h>
22
23 #include <Ecore.h>
24
25 #define __RB_ECORE_C
26 #include "rb_ecore.h"
27 #include "rb_timer.h"
28 #include "rb_animator.h"
29 #include "rb_idler.h"
30 #include "rb_idle_enterer.h"
31 #include "rb_event_handler.h"
32 #include "rb_fd_handler.h"
33
34 VALUE mEcore;
35
36 /*
37  * call-seq:
38  *  Ecore.main_loop_begin
39  *
40  * Starts the Ecore main loop.
41  */
42 static VALUE m_main_loop_begin (VALUE self)
43 {
44         ecore_main_loop_begin ();
45
46         return Qnil;
47 }
48
49 /*
50  * call-seq:
51  *  Ecore.main_loop_iterate
52  *
53  * Run one iteration of the Ecore main loop.
54  */
55 static VALUE m_main_loop_iterate (VALUE self)
56 {
57         ecore_main_loop_iterate ();
58
59         return Qnil;
60 }
61
62 /*
63  * call-seq:
64  *  Ecore.main_loop_quit
65  *
66  * Stops the Ecore main loop.
67  */
68 static VALUE m_main_loop_quit (VALUE self)
69 {
70         ecore_main_loop_quit ();
71
72         return Qnil;
73 }
74
75 static VALUE m_time_get (VALUE self)
76 {
77         return rb_float_new (ecore_time_get ());
78 }
79
80 static VALUE c_ev_exe_exit_init (VALUE self, VALUE event)
81 {
82         VALUE c = CLASS_OF (self);
83         Ecore_Event_Exe_Exit *e = (void *) event;
84
85         rb_define_attr (c, "pid", 1, 0);
86         rb_define_attr (c, "exit_code", 1, 0);
87         rb_define_attr (c, "exit_signal", 1, 0);
88         rb_define_attr (c, "exited", 1, 0);
89         rb_define_attr (c, "signalled", 1, 0);
90
91         rb_iv_set (self, "@pid", INT2FIX (e->pid));
92         rb_iv_set (self, "@exit_code", INT2FIX (e->exit_code));
93         rb_iv_set (self, "@exit_signal", INT2FIX (e->exit_signal));
94         rb_iv_set (self, "@exited", e->exited ? Qtrue : Qfalse);
95         rb_iv_set (self, "@signalled", e->signalled ? Qtrue : Qfalse);
96
97         return self;
98 }
99
100 static VALUE c_ev_sig_user_init (VALUE self, VALUE event)
101 {
102         Ecore_Event_Signal_User *e = (void *) event;
103
104         rb_define_attr (CLASS_OF (self), "number", 1, 0);
105
106         rb_iv_set (self, "@number", INT2FIX (e->number));
107
108         return self;
109 }
110
111 static VALUE c_ev_sig_exit_init (VALUE self, VALUE event)
112 {
113         VALUE c = CLASS_OF (self);
114         Ecore_Event_Signal_Exit *e = (void *) event;
115
116         rb_define_attr (c, "interrupt", 1, 0);
117         rb_define_attr (c, "quit", 1, 0);
118         rb_define_attr (c, "terminate", 1, 0);
119
120         rb_iv_set (self, "@interrupt", e->interrupt ? Qtrue : Qfalse);
121         rb_iv_set (self, "@quit", e->quit ? Qtrue : Qfalse);
122         rb_iv_set (self, "@terminate", e->terminate ? Qtrue : Qfalse);
123
124         return self;
125 }
126
127 static VALUE c_ev_sig_rt_init (VALUE self, VALUE event)
128 {
129         Ecore_Event_Signal_Realtime *e = (void *) event;
130
131         rb_define_attr (CLASS_OF (self), "number", 1, 0);
132
133         rb_iv_set (self, "@number", INT2FIX (e->num));
134
135         return self;
136 }
137
138 static void at_exit ()
139 {
140         ecore_shutdown ();
141 }
142
143 void Init_ecore (void)
144 {
145         VALUE c;
146
147         ecore_init ();
148
149         atexit (at_exit);
150
151         mEcore = rb_define_module ("Ecore");
152
153         rb_define_module_function (mEcore, "main_loop_begin",
154                                    m_main_loop_begin, 0);
155         rb_define_module_function (mEcore, "main_loop_iterate",
156                                    m_main_loop_iterate, 0);
157         rb_define_module_function (mEcore, "main_loop_quit",
158                                    m_main_loop_quit, 0);
159         rb_define_module_function (mEcore, "time", m_time_get, 0);
160
161         Init_Timer ();
162         Init_Animator ();
163         Init_Idler ();
164         Init_IdleEnterer ();
165         Init_EventHandler ();
166         Init_FdHandler ();
167
168         /* SIGNAL_HUP */
169         ADD_EVENT (mEcore, ECORE_EVENT_, SIGNAL_HUP,
170                    "SignalHup", c);
171         rb_define_private_method (c, "initialize", c_ev_generic_init, 1);
172
173         /* SIGNAL_POWER */
174         ADD_EVENT (mEcore, ECORE_EVENT_, SIGNAL_POWER,
175                    "SignalPower", c);
176         rb_define_private_method (c, "initialize", c_ev_generic_init, 1);
177
178         /* EXE_EXIT */
179         ADD_EVENT (mEcore, ECORE_EVENT_, EXE_EXIT, "ExeExit", c);
180         rb_define_private_method (c, "initialize", c_ev_exe_exit_init, 1);
181
182         /* SIGNAL_USER */
183         ADD_EVENT (mEcore, ECORE_EVENT_, SIGNAL_USER,
184                    "SignalUser", c);
185         rb_define_private_method (c, "initialize", c_ev_sig_user_init, 1);
186
187         /* SIGNAL_EXIT */
188         ADD_EVENT (mEcore, ECORE_EVENT_, SIGNAL_EXIT,
189                    "SignalExit", c);
190         rb_define_private_method (c, "initialize", c_ev_sig_exit_init, 1);
191
192         /* SIGNAL_REALTIME */
193         ADD_EVENT (mEcore, ECORE_EVENT_, SIGNAL_REALTIME,
194                    "SignalRealtime", c);
195         rb_define_private_method (c, "initialize", c_ev_sig_rt_init, 1);
196 }
197