12 #include <lib/base/eptrlist.h>
13 #include <libsig_comp.h>
16 #include <lib/python/connections.h>
20 extern eApplication* eApp;
23 /* TODO: remove these inlines. */
24 static inline bool operator<( const timespec &t1, const timespec &t2 )
26 return t1.tv_sec < t2.tv_sec || (t1.tv_sec == t2.tv_sec && t1.tv_nsec < t2.tv_nsec);
29 static inline bool operator<=( const timespec &t1, const timespec &t2 )
31 return t1.tv_sec < t2.tv_sec || (t1.tv_sec == t2.tv_sec && t1.tv_nsec <= t2.tv_nsec);
34 static inline timespec &operator+=( timespec &t1, const timespec &t2 )
36 t1.tv_sec += t2.tv_sec;
37 if ( (t1.tv_nsec += t2.tv_nsec) >= 1000000000 )
40 t1.tv_nsec -= 1000000000;
45 static inline timespec operator+( const timespec &t1, const timespec &t2 )
48 tmp.tv_sec = t1.tv_sec + t2.tv_sec;
49 if ( (tmp.tv_nsec = t1.tv_nsec + t2.tv_nsec) >= 1000000000 )
52 tmp.tv_nsec -= 1000000000;
57 static inline timespec operator-( const timespec &t1, const timespec &t2 )
60 tmp.tv_sec = t1.tv_sec - t2.tv_sec;
61 if ( (tmp.tv_nsec = t1.tv_nsec - t2.tv_nsec) < 0 )
64 tmp.tv_nsec += 1000000000;
69 static inline timespec operator-=( timespec &t1, const timespec &t2 )
71 t1.tv_sec -= t2.tv_sec;
72 if ( (t1.tv_nsec -= t2.tv_nsec) < 0 )
75 t1.tv_nsec += 1000000000;
80 static inline timespec &operator+=( timespec &t1, const long msek )
82 t1.tv_sec += msek / 1000;
83 if ( (t1.tv_nsec += (msek % 1000) * 1000000) >= 1000000000 )
86 t1.tv_nsec -= 1000000000;
91 static inline timespec operator+( const timespec &t1, const long msek )
94 tmp.tv_sec = t1.tv_sec + msek / 1000;
95 if ( (tmp.tv_nsec = t1.tv_nsec + (msek % 1000) * 1000000) >= 1000000000 )
98 tmp.tv_nsec -= 1000000;
103 static inline timespec operator-( const timespec &t1, const long msek )
106 tmp.tv_sec = t1.tv_sec - msek / 1000;
107 if ( (tmp.tv_nsec = t1.tv_nsec - (msek % 1000)*1000000) < 0 )
110 tmp.tv_nsec += 1000000000;
115 static inline timespec operator-=( timespec &t1, const long msek )
117 t1.tv_sec -= msek / 1000;
118 if ( (t1.tv_nsec -= (msek % 1000) * 1000000) < 0 )
121 t1.tv_nsec += 1000000000;
126 static inline long timeout_usec ( const timespec & orig )
129 clock_gettime(CLOCK_MONOTONIC, &now);
130 if ( (orig-now).tv_sec > 2000 )
131 return 2000*1000*1000;
132 return (orig-now).tv_sec*1000000 + (orig-now).tv_nsec/1000;
137 // die beiden signalquellen: SocketNotifier...
140 * \brief Gives a callback when data on a file descriptor is ready.
142 * This class emits the signal \c eSocketNotifier::activate whenever the
143 * event specified by \c req is available.
145 class eSocketNotifier: iObject
147 DECLARE_REF(eSocketNotifier);
148 friend class eMainloop;
150 enum { Read=POLLIN, Write=POLLOUT, Priority=POLLPRI, Error=POLLERR, Hungup=POLLHUP };
155 int requested; // requested events (POLLIN, ...)
156 void activate(int what) { /*emit*/ activated(what); }
157 eSocketNotifier(eMainloop *context, int fd, int req, bool startnow);
160 * \brief Constructs a eSocketNotifier.
161 * \param context The thread where to bind the socketnotifier to. The signal is emitted from that thread.
162 * \param fd The filedescriptor to monitor. Can be a device or a socket.
163 * \param req The events to watch to, normally either \c Read or \c Write. You can specify any events that \c poll supports.
164 * \param startnow Specifies if the socketnotifier should start immediately.
166 static eSocketNotifier* create(eMainloop *context, int fd, int req, bool startnow=true) { return new eSocketNotifier(context, fd, req, startnow); }
169 PSignal1<void, int> activated;
173 bool isRunning() { return state; }
175 int getFD() { return fd; }
176 int getRequested() { return requested; }
177 void setRequested(int req) { requested=req; }
179 eSmartPtrList<iObject> m_clients;
186 // werden in einer mainloop verarbeitet
190 friend class eSocketNotifier;
191 std::map<int, eSocketNotifier*> notifiers;
192 ePtrList<eTimer> m_timer_list;
195 int processOneEvent(unsigned int user_timeout, PyObject **res=0, ePyObject additional=ePyObject());
199 eSocketNotifier *m_inActivate;
201 int m_interrupt_requested;
202 timespec m_twisted_timer; // twisted timer
204 void addSocketNotifier(eSocketNotifier *sn);
205 void removeSocketNotifier(eSocketNotifier *sn);
206 void addTimer(eTimer* e);
207 void removeTimer(eTimer* e);
208 static ePtrList<eMainloop> existing_loops;
209 static bool isValid(eMainloop *);
212 :app_quit_now(0),loop_level(0),retval(0), m_is_idle(0), m_idle_count(0), m_inActivate(0), m_interrupt_requested(0)
214 existing_loops.push_back(this);
216 virtual ~eMainloop();
218 int looplevel() { return loop_level; }
221 void quit(int ret=0); // leave all pending loops (recursive leave())
224 /* a user supplied timeout. enter_loop will return with:
225 0 - no timeout, no signal
229 int iterate(unsigned int timeout=0, PyObject **res=0, SWIG_PYOBJECT(ePyObject) additional=(PyObject*)0);
231 /* run will iterate endlessly until the app is quit, and return
235 /* our new shared polling interface. */
236 PyObject *poll(SWIG_PYOBJECT(ePyObject) dict, SWIG_PYOBJECT(ePyObject) timeout);
237 void interruptPoll();
240 /* m_is_idle needs to be atomic, but it doesn't really matter much, as it's read-only from outside */
241 int isIdle() { return m_is_idle; }
242 int idleCount() { return m_idle_count; }
246 * \brief The application class.
248 * An application provides a mainloop, and runs in the primary thread.
249 * You can have other threads, too, but this is the primary one.
251 class eApplication: public eMainloop
268 * \brief Gives a callback after a specified timeout.
270 * This class emits the signal \c eTimer::timeout after the specified timeout.
272 class eTimer: iObject
275 friend class eMainloop;
277 timespec nextActivation;
283 eTimer(eMainloop *context): context(*context), bActive(false) { }
286 * \brief Constructs a timer.
288 * The timer is not yet active, it has to be started with \c start.
289 * \param context The thread from which the signal should be emitted.
291 static eTimer *create(eMainloop *context=eApp) { return new eTimer(context); }
292 ~eTimer() { if (bActive) stop(); }
294 PSignal0<void> timeout;
296 bool isActive() { return bActive; }
298 timespec &getNextActivation() { return nextActivation; }
300 void start(long msec, bool b=false);
302 void changeInterval(long msek);
303 void startLongTimer( int seconds );
304 bool operator<(const eTimer& t) const { return nextActivation < t.nextActivation; }
305 eSmartPtrList<iObject> m_clients;