X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/108a8e97174ca4142c6e96d21320086c50eee4e6..0103839d01b8762a836265695cee4efbecc057da:/lib/base/ebase.h diff --git a/lib/base/ebase.h b/lib/base/ebase.h index a224e2cc..32a22dbe 100644 --- a/lib/base/ebase.h +++ b/lib/base/ebase.h @@ -140,13 +140,11 @@ class eSocketNotifier { public: enum { Read=POLLIN, Write=POLLOUT, Priority=POLLPRI, Error=POLLERR, Hungup=POLLHUP }; -#ifndef SWIG private: eMainloop &context; int fd; int state; int requested; // requested events (POLLIN, ...) -#endif public: /** * \brief Constructs a eSocketNotifier. @@ -175,7 +173,6 @@ class eTimer; // werden in einer mainloop verarbeitet class eMainloop { -#ifndef SWIG friend class eTimer; friend class eSocketNotifier; std::multimap notifiers; @@ -187,20 +184,20 @@ class eMainloop pthread_mutex_t recalcLock; int m_now_is_invalid; -#endif -public: - static void addTimeOffset(int offset); + int m_interrupt_requested; void addSocketNotifier(eSocketNotifier *sn); void removeSocketNotifier(eSocketNotifier *sn); void addTimer(eTimer* e); void removeTimer(eTimer* e); +public: + static void addTimeOffset(int offset); #ifndef SWIG static ePtrList existing_loops; #endif eMainloop() - :app_quit_now(0),loop_level(0),retval(0) + :app_quit_now(0),loop_level(0),retval(0), m_interrupt_requested(0) { m_now_is_invalid = 0; existing_loops.push_back(this); @@ -230,6 +227,8 @@ public: /* our new shared polling interface. */ PyObject *poll(PyObject *dict, PyObject *timeout); + void interruptPoll(); + void reset(); }; /** @@ -260,14 +259,13 @@ public: */ class eTimer { -#ifndef SWIG friend class eMainloop; eMainloop &context; timeval nextActivation; long interval; bool bSingleShot; bool bActive; -#endif + void addTimeOffset(int); public: /** * \brief Constructs a timer. @@ -291,6 +289,5 @@ public: bool operator<(const eTimer& t) const { return nextActivation < t.nextActivation; } #endif void startLongTimer( int seconds ); - void addTimeOffset(int); }; #endif