ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/server/evthread.C
Revision: 1.6
Committed: Thu May 29 03:33:20 2008 UTC (16 years ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-2_6, rel-2_7, rel-2_71, rel-2_56, rel-2_61
Changes since 1.5: +0 -4 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 /*
2     * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3     *
4     * Copyright (©) 2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5     *
6     * Deliantra is free software: you can redistribute it and/or modify
7     * it under the terms of the GNU General Public License as published by
8     * the Free Software Foundation, either version 3 of the License, or
9     * (at your option) any later version.
10     *
11     * This program 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
14     * GNU General Public License for more details.
15     *
16     * You should have received a copy of the GNU General Public License
17     * along with this program. If not, see <http://www.gnu.org/licenses/>.
18     *
19     * The authors can be reached via e-mail to <support@deliantra.net>
20     */
21    
22     #include "global.h"
23     #include "evthread.h"
24     #include "cfperl.h"
25    
26     thread evthread;
27     static ev_loop *loop;
28    
29 root 1.2 #define TICK_CYCLES 4
30 root 1.1
31 root 1.4 // the tick watcher is activated every TICK_CYCLES
32     ev_async tick_watcher;
33     EV_ATOMIC_T coroapi::cede_pending;
34    
35 root 1.1 // the ticker runs TICK_CYCLES times as fast as the main server tick
36     static ev_periodic cede_watcher;
37    
38 root 1.4 /////////////////////////////////////////////////////////////////////////////
39 root 1.1
40     // it is a bit silly to have to use a mutex, but contention
41     // is basically non-existant, favouring good mutex implementations.
42     static SMUTEX (evthread_mutex);
43     static NV next_tick;
44    
45     NV get_next_tick ()
46     {
47     SMUTEX_LOCK (evthread_mutex);
48     NV retval = next_tick;
49     SMUTEX_UNLOCK (evthread_mutex);
50     return retval;
51     }
52    
53     static void
54     cede_cb (EV_P_ ev_periodic *w, int revents)
55     {
56     static int cycle = 0;
57    
58     if (++cycle == TICK_CYCLES)
59     {
60     cycle = 0;
61    
62     SMUTEX_LOCK (evthread_mutex);
63     next_tick = w->at + TICK / TICK_CYCLES * (TICK_CYCLES - 1);
64     SMUTEX_UNLOCK (evthread_mutex);
65    
66 root 1.4 ev_async_send (EV_DEFAULT_UC, &tick_watcher);
67 root 1.1 }
68    
69     coroapi::cede_pending = 1;
70     }
71    
72     static void
73     tick_cb (EV_P_ ev_async *w, int revents)
74     {
75     cfperl_tick ();
76     }
77    
78 root 1.4 /////////////////////////////////////////////////////////////////////////////
79    
80     static ev_async async_watcher;
81     static ev_io aio1_watcher;
82     static ev_idle aio2_watcher;
83     static EV_ATOMIC_T aio_pending;
84    
85     static void
86     aio2_cb (EV_P_ ev_idle *w, int revents)
87     {
88     CALL_BEGIN (0);
89     CALL_CALL ("IO::AIO::poll_cb", G_SCALAR);
90    
91 root 1.5 if (count > 0 && TOPi < 0)
92 root 1.4 ev_idle_start (EV_A, w);
93     else
94     ev_idle_stop (EV_A, w);
95    
96     CALL_END;
97     }
98    
99     static void
100     async_cb (EV_P_ ev_async *w, int revents)
101     {
102     aio2_cb (EV_A, &aio2_watcher, 0);
103     }
104    
105     static void
106     aio1_cb (EV_P_ ev_io *w, int revents)
107     {
108     char dummy;
109    
110     if (read (w->fd, &dummy, 1) > 0)
111     {
112     ev_async_send (EV_DEFAULT_UC, &async_watcher);
113     coroapi::cede_pending = 1;
114     }
115     }
116    
117     /////////////////////////////////////////////////////////////////////////////
118    
119 root 1.1 static void *
120     evthread_proc (void *arg)
121     {
122     ev_loop (loop, 0);
123    
124     return 0;
125     }
126    
127 root 1.4 void evthread_start (int aiofd)
128 root 1.1 {
129     I_EV_API ("evthread");
130 root 1.3
131 root 1.4 // main loop
132 root 1.3 ev_async_init (&tick_watcher, tick_cb);
133     ev_set_priority (&tick_watcher, 1);
134 root 1.4 ev_async_start (EV_DEFAULT_UC, &tick_watcher);
135    
136     ev_async_init (&async_watcher, async_cb);
137     ev_set_priority (&async_watcher, 1);
138     ev_async_start (EV_DEFAULT_UC, &async_watcher);
139    
140     ev_idle_init (&aio2_watcher, aio2_cb);
141    
142     // secondary loop
143     loop = ev_loop_new (0);
144    
145     ev_periodic_init (&cede_watcher, cede_cb, 0, TICK / TICK_CYCLES, 0);
146     ev_periodic_start (loop, &cede_watcher);
147    
148     ev_io_init (&aio1_watcher, aio1_cb, aiofd, EV_READ);
149     ev_io_start (loop, &aio1_watcher);
150 root 1.3
151 root 1.1 evthread.start (evthread_proc);
152     }
153    
154    
155