1 #include <lib/base/ebase.h>
7 #include <lib/base/eerror.h>
8 #include <lib/base/elock.h>
10 eSocketNotifier::eSocketNotifier(eMainloop *context, int fd, int requested, bool startnow): context(*context), fd(fd), state(0), requested(requested)
16 eSocketNotifier::~eSocketNotifier()
21 void eSocketNotifier::start()
26 context.addSocketNotifier(this);
30 void eSocketNotifier::stop()
33 context.removeSocketNotifier(this);
39 void eTimer::start(long msek, bool singleShot)
45 bSingleShot = singleShot;
47 gettimeofday(&nextActivation, 0);
48 // eDebug("this = %p\nnow sec = %d, usec = %d\nadd %d msec", this, nextActivation.tv_sec, nextActivation.tv_usec, msek);
49 nextActivation += (msek<0 ? 0 : msek);
50 // eDebug("next Activation sec = %d, usec = %d", nextActivation.tv_sec, nextActivation.tv_usec );
51 context.addTimer(this);
54 void eTimer::startLongTimer( int seconds )
59 bActive = bSingleShot = true;
61 gettimeofday(&nextActivation, 0);
62 // eDebug("this = %p\nnow sec = %d, usec = %d\nadd %d sec", this, nextActivation.tv_sec, nextActivation.tv_usec, seconds);
64 nextActivation.tv_sec += seconds;
65 // eDebug("next Activation sec = %d, usec = %d", nextActivation.tv_sec, nextActivation.tv_usec );
66 context.addTimer(this);
74 context.removeTimer(this);
78 void eTimer::changeInterval(long msek)
80 if (bActive) // Timer is running?
82 context.removeTimer(this); // then stop
83 nextActivation -= interval; // sub old interval
86 bActive=true; // then activate Timer
88 interval = msek; // set new Interval
89 nextActivation += interval; // calc nextActivation
91 context.addTimer(this); // add Timer to context TimerList
94 void eTimer::activate() // Internal Funktion... called from eApplication
96 context.removeTimer(this);
100 nextActivation += interval;
101 context.addTimer(this);
109 void eTimer::addTimeOffset( int offset )
111 nextActivation.tv_sec += offset;
115 ePtrList<eMainloop> eMainloop::existing_loops;
117 void eMainloop::addSocketNotifier(eSocketNotifier *sn)
119 notifiers.insert(std::pair<int,eSocketNotifier*> (sn->getFD(), sn));
122 void eMainloop::removeSocketNotifier(eSocketNotifier *sn)
124 notifiers.erase(sn->getFD());
127 void eMainloop::processOneEvent()
129 /* get current time */
131 gettimeofday(&now, 0);
132 m_now_is_invalid = 0;
134 int poll_timeout = -1; /* infinite in case of empty timer list */
138 singleLock s(recalcLock);
139 poll_timeout = timeval_to_usec(m_timer_list.begin()->getNextActivation() - now);
140 /* if current timer already passed, don't delay infinite. */
141 if (poll_timeout < 0)
144 /* convert us to ms */
145 poll_timeout /= 1000;
152 // build the poll aray
153 int fdcount = notifiers.size();
154 pollfd* pfd = new pollfd[fdcount]; // make new pollfd array
156 std::map<int,eSocketNotifier*>::iterator it(notifiers.begin());
157 for (int i=0; i < fdcount; i++, it++)
159 pfd[i].fd = it->first;
160 pfd[i].events = it->second->getRequested();
163 ret = poll(pfd, fdcount, poll_timeout);
165 /* ret > 0 means that there are some active poll entries. */
168 for (int i=0; i < fdcount ; i++)
170 if (notifiers.find(pfd[i].fd) == notifiers.end())
173 int req = notifiers[pfd[i].fd]->getRequested();
175 if (pfd[i].revents & req)
177 notifiers[pfd[i].fd]->activate(pfd[i].revents);
181 } else if (pfd[i].revents & (POLLERR|POLLHUP|POLLNVAL))
182 eFatal("poll: unhandled POLLERR/HUP/NVAL for fd %d(%d) -> FIX YOUR CODE", pfd[i].fd,pfd[i].revents);
185 ret = 1; /* poll did not timeout. */
188 /* when we got a signal, we get EINTR. */
190 eDebug("poll made error (%m)");
192 ret = -1; /* don't assume the timeout has passed when we got a signal */
197 /* when we not processed anything, check timers. */
200 /* we know that this time has passed. */
203 singleLock s(recalcLock);
205 /* this will never change while we have the recalcLock */
206 /* we can savely return here, the timer will be re-checked soon. */
207 if (m_now_is_invalid)
210 /* process all timers which are ready. first remove them out of the list. */
211 while ((!m_timer_list.empty()) && (m_timer_list.begin()->getNextActivation() <= now))
212 m_timer_list.begin()->activate();
216 void eMainloop::addTimer(eTimer* e)
218 m_timer_list.insert_in_order(e);
221 void eMainloop::removeTimer(eTimer* e)
223 m_timer_list.remove(e);
226 int eMainloop::exec()
230 app_quit_now = false;
231 app_exit_loop = false;
237 void eMainloop::enter_loop()
240 // Status der vorhandenen Loop merken
241 bool old_exit_loop = app_exit_loop;
243 app_exit_loop = false;
245 while (!app_exit_loop && !app_quit_now)
248 // wiederherstellen der vorherigen app_exit_loop
249 app_exit_loop = old_exit_loop;
255 // do something here on exit the last loop
259 void eMainloop::exit_loop() // call this to leave the current loop
261 app_exit_loop = true;
264 void eMainloop::quit( int ret ) // call this to leave all loops
270 void eMainloop::addTimeOffset(int offset)
272 for (ePtrList<eMainloop>::iterator it(eMainloop::existing_loops)
273 ;it != eMainloop::existing_loops.end(); ++it)
275 singleLock s(it->recalcLock);
276 it->m_now_is_invalid = 1;
277 for (ePtrList<eTimer>::iterator tit = it->m_timer_list.begin(); tit != it->m_timer_list.end(); ++tit )
278 tit->addTimeOffset(offset);
282 eApplication* eApp = 0;