Fix:core: Want to call callback_list, not callback
[navit-package] / navit / event.c
1 /**
2  * Navit, a modular navigation system.
3  * Copyright (C) 2005-2008 Navit Team
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * version 2 as published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA  02110-1301, USA.
18  */
19
20 #include <string.h>
21 #include <stdlib.h>
22 #include "event.h"
23 #include "plugin.h"
24 #include "debug.h"
25
26 static struct event_methods event_methods;
27 static char *e_requestor;
28 static char *e_system;
29
30 void event_main_loop_run(void)
31 {
32         if (! event_methods.main_loop_run) {
33                 dbg(0,"no event system set\n");
34                 exit(1);
35         }
36         event_methods.main_loop_run();
37 }
38
39 void event_main_loop_quit(void)
40 {
41         if (event_methods.main_loop_quit)
42                 event_methods.main_loop_quit();
43 }
44
45 struct event_watch *
46 event_add_watch(struct file *file, enum event_watch_cond cond, struct callback *cb)
47 {
48         return event_methods.add_watch(file, cond, cb);
49 }
50
51 void
52 event_remove_watch(struct event_watch *ev)
53 {
54         event_methods.remove_watch(ev);
55 }
56
57 struct event_timeout *
58 event_add_timeout(int timeout, int multi, struct callback *cb)
59 {
60         return event_methods.add_timeout(timeout, multi, cb);
61 }
62
63 void
64 event_remove_timeout(struct event_timeout *ev)
65 {
66         event_methods.remove_timeout(ev);
67 }
68
69 struct event_idle *
70 event_add_idle(struct callback *cb)
71 {
72         return event_methods.add_idle(cb);
73 }
74
75 void
76 event_remove_idle(struct event_idle *ev)
77 {
78         event_methods.remove_idle(ev);
79 }
80
81 void
82 event_call_callback(struct callback_list *cb)
83 {
84         event_methods.call_callback(cb);
85 }
86
87 int
88 event_request_system(char *system, char *requestor)
89 {
90         void (*event_type_new)(struct event_methods *meth);
91         if (e_system) {
92                 if (strcmp(e_system, system)) {
93                         dbg(0,"system '%s' already requested by '%s', can't set to '%s' as requested from '%s'\n", e_system, e_requestor, system, requestor);
94                         return 0;
95                 }
96                 return 1;
97         }
98         event_type_new=plugin_get_event_type(system);
99         if (! event_type_new) {
100                 dbg(0,"unsupported event system '%s' requested from '%s'\n", system, requestor);
101                 return 0;
102         }
103         event_type_new(&event_methods);
104         e_system=system;
105         e_requestor=requestor;
106         
107         return 1;
108 }
109
110