kakoune/src/event_manager.hh

98 lines
2.0 KiB
C++
Raw Normal View History

#ifndef event_manager_hh_INCLUDED
#define event_manager_hh_INCLUDED
#include "utils.hh"
#include "flags.hh"
2015-01-12 14:58:41 +01:00
#include "vector.hh"
2013-01-14 19:07:38 +01:00
#include <chrono>
2014-12-10 21:54:47 +01:00
#include <functional>
2013-01-14 19:07:38 +01:00
#include <sys/select.h>
#include <signal.h>
namespace Kakoune
{
enum class EventMode
{
Normal,
Urgent,
Pending
};
class FDWatcher
{
public:
using Callback = std::function<void (FDWatcher& watcher, EventMode mode)>;
FDWatcher(int fd, Callback callback);
FDWatcher(const FDWatcher&) = delete;
FDWatcher& operator=(const FDWatcher&) = delete;
~FDWatcher();
int fd() const { return m_fd; }
void run(EventMode mode);
void close_fd();
2015-10-01 20:36:37 +02:00
void disable() { m_fd = -1; }
private:
int m_fd;
Callback m_callback;
};
2013-01-14 19:07:38 +01:00
using Clock = std::chrono::steady_clock;
using TimePoint = Clock::time_point;
class Timer
{
public:
using Callback = std::function<void (Timer& timer)>;
Timer(TimePoint date, Callback callback,
EventMode mode = EventMode::Normal);
Timer(const Timer&) = delete;
Timer& operator=(const Timer&) = delete;
2013-01-14 19:07:38 +01:00
~Timer();
TimePoint next_date() const { return m_date; }
void set_next_date(TimePoint date) { m_date = date; }
void run(EventMode mode);
2013-01-14 19:07:38 +01:00
private:
TimePoint m_date;
EventMode m_mode;
2013-01-14 19:07:38 +01:00
Callback m_callback;
};
// The EventManager provides an interface to file descriptor
// based event handling.
//
// The program main loop should call handle_next_events()
// until it's time to quit.
class EventManager : public Singleton<EventManager>
{
public:
EventManager();
~EventManager();
void handle_next_events(EventMode mode, sigset_t* sigmask = nullptr);
// force the watchers associated with fd to be executed
// on next handle_next_events call.
void force_signal(int fd);
private:
friend class FDWatcher;
2013-01-14 19:07:38 +01:00
friend class Timer;
2015-01-12 14:58:41 +01:00
Vector<FDWatcher*> m_fd_watchers;
Vector<Timer*> m_timers;
fd_set m_forced_fd;
2013-01-14 19:07:38 +01:00
TimePoint m_last;
};
}
#endif // event_manager_hh_INCLUDED